.shop-page {
  background: #fff;
  color: #2a2c35;
}

.shop-page h1,
.shop-page h2,
.shop-page h3,
.shop-page p {
  margin-top: 0;
}

.shop-hero {
  background: #2a2c35;
  color: #fff;
  padding: clamp(44px, 7vw, 92px) 0;
  overflow: hidden;
}

.shop-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.shop-hero__content {
  max-width: 820px;
}

.shop-eyebrow {
  color: #ab7f70;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.shop-hero .shop-eyebrow {
  color: #f8b69d;
}

.shop-hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 20px;
}

.shop-hero__lead {
  font-size: clamp(17px, 2.3vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .86);
  max-width: 760px;
  margin-bottom: 28px;
}

.shop-hero__points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}

.shop-hero__points li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .88);
  line-height: 1.45;
}

.shop-hero__points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f8b69d;
  position: absolute;
  left: 4px;
  top: .65em;
}

.shop-hero__actions,
.shop-cta__inner {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.shop-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.shop-btn--primary {
  background: #f8b69d;
  border-color: #f8b69d;
  color: #2a2c35;
}

.shop-btn--primary:hover {
  background: #e6a084;
  border-color: #e6a084;
  color: #2a2c35;
}

.shop-btn--light {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.shop-btn--light:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.shop-hero__visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px;
}

.shop-visual-tile {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.shop-visual-tile i {
  color: #8fc7ff;
  font-size: 30px;
}

.shop-visual-tile span {
  font-weight: 900;
  overflow-wrap: anywhere;
}

.shop-visual-tile--accent {
  background: #f8b69d;
  color: #2a2c35;
}

.shop-visual-tile--accent i {
  color: #2a2c35;
}

.shop-visual-tile--dark {
  background: #1f6f62;
}

.shop-visual-tile--dark i {
  color: #d6fff6;
}

.shop-hero__summary {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  padding: clamp(28px, 5vw, 44px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.shop-summary__label {
  color: #f8b69d;
  font-weight: 800;
}

.shop-hero__summary strong {
  font-size: clamp(58px, 9vw, 96px);
  line-height: 1;
  color: #fff;
}

.shop-section,
.shop-nav-section,
.shop-cta {
  padding: clamp(44px, 6vw, 78px) 0;
}

.shop-nav-section {
  padding: 22px 0;
  border-bottom: 1px solid #ece8e6;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 5;
}

.shop-section--muted {
  background: #f7f4f2;
}

.shop-section__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.shop-section__head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.shop-section__head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 0;
}

.shop-section__note {
  max-width: 470px;
  color: #666a73;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.shop-groups-grid,
.shop-products-grid,
.shop-benefits {
  display: grid;
  gap: 22px;
}

.shop-groups-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-group-card,
.shop-product,
.shop-benefit,
.shop-faq__item {
  border: 1px solid #e7e1de;
  border-radius: 8px;
  background: #fff;
}

.shop-group-card {
  padding: 28px;
  display: grid;
  gap: 22px;
  align-content: space-between;
}

.shop-group-card__icon,
.shop-product__icon,
.shop-benefit i {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #f8e1d7;
  color: #2a2c35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.shop-group-card h3,
.shop-product h3,
.shop-benefit h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 10px;
}

.shop-group-card p,
.shop-benefit p,
.shop-product__text,
.shop-faq__item p {
  color: #62656c;
  line-height: 1.55;
  margin-bottom: 0;
}

.shop-chip-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.shop-chip,
.shop-tab,
.shop-product__badge {
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
}

.shop-chip {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid #ead9d1;
  color: #2a2c35;
  background: #fff7f3;
  text-decoration: none;
}

.shop-chip:hover,
.shop-card-link:hover,
.shop-product__action:hover {
  color: #ab7f70;
  text-decoration: none;
}

.shop-card-link,
.shop-product__action {
  color: #2a2c35;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shop-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.shop-tab {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px 14px;
  border: 1px solid #ead9d1;
  color: #2a2c35;
  background: #fff;
  text-decoration: none;
}

.shop-tab:hover {
  color: #ab7f70;
  text-decoration: none;
}

.shop-tab.is-active {
  color: #2a2c35;
  background: #f8b69d;
  border-color: #f8b69d;
}

.shop-product {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.shop-product__image-link {
  display: block;
  margin: -6px -6px 18px;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f4f2;
}

.shop-product__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.shop-product__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.shop-product__badge {
  background: #edf7f5;
  color: #1f6f62;
  padding: 7px 10px;
  max-width: 150px;
  overflow-wrap: anywhere;
  text-align: center;
}

.shop-product h3 a {
  color: #2a2c35;
  text-decoration: none;
}

.shop-product h3 a:hover {
  color: #ab7f70;
}

.shop-product__features {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 8px;
}

.shop-product__features li {
  position: relative;
  color: #474a52;
  padding-left: 22px;
  line-height: 1.35;
}

.shop-product__features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f6f62;
  position: absolute;
  left: 2px;
  top: .45em;
}

.shop-product__footer {
  margin-top: auto;
  border-top: 1px solid #eee7e4;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shop-price {
  display: grid;
  gap: 3px;
}

.shop-price span {
  font-weight: 900;
  font-size: 1.08rem;
  color: #2a2c35;
}

.shop-price del {
  color: #8b8f98;
  font-size: .92rem;
}

.shop-benefit {
  padding: 24px;
}

.shop-benefit i {
  margin-bottom: 18px;
  color: #1f6f62;
  background: #e8f5f2;
}

.shop-faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.shop-faq__item {
  padding: 18px 20px;
}

.shop-faq__item summary {
  cursor: pointer;
  font-weight: 900;
  color: #2a2c35;
}

.shop-faq__item p {
  margin-top: 12px;
}

.shop-cta {
  background: #2a2c35;
  color: #fff;
}

.shop-cta__inner {
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 42px);
}

.shop-cta__inner h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
}

.shop-cta__inner p {
  color: rgba(255, 255, 255, .82);
  max-width: 720px;
  margin-bottom: 0;
}

.shop-product-hero {
  background: #2a2c35;
  color: #fff;
  padding: clamp(44px, 7vw, 92px) 0;
}

.shop-product-hero__grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.shop-product-hero__media {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  padding: 14px;
}

.shop-product-hero__image {
  display: block;
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.shop-product-hero__content h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 18px;
}

.shop-product-hero__lead {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.58;
  margin-bottom: 24px;
}

.shop-product-hero__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.shop-product-hero__price span {
  color: #f8b69d;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
}

.shop-product-hero__price del {
  color: rgba(255, 255, 255, .62);
  font-size: 1.05rem;
}

.shop-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 22px;
}

.shop-detail-panel {
  border: 1px solid #e7e1de;
  border-radius: 8px;
  background: #fff;
  padding: clamp(22px, 4vw, 34px);
}

.shop-detail-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 900;
  margin-bottom: 14px;
}

.shop-detail-panel p {
  color: #62656c;
  line-height: 1.65;
  margin-bottom: 0;
}

.shop-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.shop-detail-list li {
  position: relative;
  color: #474a52;
  line-height: 1.45;
  padding-left: 26px;
}

.shop-detail-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1f6f62;
  position: absolute;
  left: 2px;
  top: .5em;
}

@media (max-width: 1100px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .shop-hero__grid,
  .shop-product-hero__grid,
  .shop-detail-grid,
  .shop-groups-grid,
  .shop-benefits {
    grid-template-columns: 1fr;
  }

  .shop-hero__visual {
    max-width: 520px;
  }

  .shop-section__head--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-nav-section {
    position: static;
  }
}

@media (max-width: 640px) {
  .shop-products-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero__visual {
    grid-template-columns: 1fr;
  }

  .shop-visual-tile {
    min-height: 112px;
  }

  .shop-btn,
  .shop-cta__inner .shop-btn {
    width: 100%;
  }

  .shop-product__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
