:root {
  --page-bg: #edeee6;
  --brown: #715729;
  --brown-dark: #14120e;
  --green: #4f7c2c;
  --gold: #caa341;
  --muted: #6d6a5f;
  --card: #ffffff;
  --border: #dedbd0;
  --danger: #e2211c;
  --shadow: 0 14px 35px rgba(23, 20, 14, 0.14);
}

@font-face {
  font-family: Quicksand;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("fonts/quicksand_n4.woff2") format("woff2");
}

@font-face {
  font-family: Quicksand;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/quicksand_n7.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Quicksand, Arial, sans-serif;
  color: #2f321d;
  background: var(--page-bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.store-header {
  width: 100%;
  background: var(--brown);
  color: #fff5db;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.12);
}

.store-header__inner {
  width: min(1180px, calc(100% - 34px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 13px;
  font-weight: 700;
}

.store-nav a {
  transition: opacity .2s ease, transform .2s ease;
}

.store-nav a:hover {
  opacity: .8;
  transform: translateY(-1px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #1c1308;
}

.brand-logo__mark {
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: #111;
  letter-spacing: -4px;
}

.brand-logo__name {
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #111;
}

.brand-logo__name small {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .18em;
  margin-left: 5px;
}

.store-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.store-actions button {
  border: 0;
  background: transparent;
  color: #fff5db;
  font-size: 18px;
  padding: 6px;
}

.product-shell {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 32px 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .9fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.product-media {
  position: sticky;
  top: 112px;
}

.product-gallery {
  position: relative;
  min-height: 535px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-product-image {
  width: min(530px, 95%);
  max-height: 660px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, .08));
  transition: transform .35s ease, opacity .2s ease;
}

.main-product-image.is-changing {
  opacity: .45;
  transform: scale(.985);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 42px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .72);
  color: var(--brown);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
  font-size: 26px;
  z-index: 2;
}

.gallery-arrow--prev {
  left: 0;
}

.gallery-arrow--next {
  right: 0;
}

.thumb-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 3px auto 0;
}

.thumb {
  width: 74px;
  height: 74px;
  padding: 5px;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(39, 35, 25, .08);
  opacity: .9;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.thumb.is-active {
  border-color: #1d1d1d;
  opacity: 1;
}

.product-info {
  padding-top: 10px;
}

.limited-badge {
  display: table;
  border: 1px solid var(--brown);
  background: #efe8cd;
  color: var(--brown-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 9px;
  margin-bottom: 14px;
  letter-spacing: .03em;
}

.product-info h1 {
  margin: 0 0 11px;
  color: #35411c;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: .02em;
}

.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.old-price {
  color: #3d3a30;
  font-weight: 700;
  text-decoration: line-through;
  font-size: 17px;
}

.current-price {
  color: var(--danger);
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 700;
}

.promo-badge,
.small-promo {
  background: #1e1e1b;
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  color: #5c6048;
  line-height: 1.75;
  font-size: 15px;
}

.benefits-list li::before {
  content: "👉";
  margin-right: 7px;
}

.option-group {
  margin: 14px 0;
}

.option-group p {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: #33361f;
}

.swatches {
  display: flex;
  gap: 9px;
}

.swatch {
  border: 1px solid #d7d1bd;
  background: #ebe5d3;
  color: #67624e;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
}

.swatch.is-selected {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 43px 54px 43px;
  height: 42px;
  overflow: hidden;
  border: 1px solid #cfc9b8;
  border-radius: 3px;
  background: #f6f4ec;
}

.quantity-control button,
.quantity-control input {
  border: 0;
  background: transparent;
  text-align: center;
  color: #30311e;
  font-weight: 700;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.checkout-card {
  margin-top: 16px;
  background: var(--card);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
  width: min(420px, 100%);
}

.order-line {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.order-line img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.order-line strong {
  display: block;
  font-size: 13px;
  line-height: 1.1;
  text-decoration: underline;
}

.order-line span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.order-line b {
  font-size: 13px;
  white-space: nowrap;
}

.delivery-box {
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
}

.delivery-box > span {
  display: block;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 700;
}

.delivery-box div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e3e3e3;
  padding: 10px 11px;
  font-size: 13px;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin: 12px 0 6px;
}

.field-label span,
.promo-code {
  color: #ff1b1b;
}

.input-group {
  display: grid;
  grid-template-columns: 46px 1fr;
  min-height: 43px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d6d6d6;
  background: #f1f1ee;
  font-size: 15px;
}

.input-group input {
  border: 0;
  outline: none;
  padding: 0 12px;
  width: 100%;
  color: #25271c;
}

.discount-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
  margin: 14px 0 8px;
}

.discount-row input,
.discount-row button {
  min-height: 44px;
  border-radius: 4px;
}

.discount-row input {
  border: 1px solid #d8d8d8;
  padding: 0 12px;
}

.discount-row button {
  border: 0;
  background: #090909;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

.promo-code {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
}

.summary-box {
  background: #f2f2f2;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.summary-box div {
  display: flex;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 13px;
}

.summary-total {
  background: #e6e6e6;
  font-weight: 700;
}

.buy-button,
.whatsapp-order,
.btn-cmd {
  width: 100%;
  border: 0;
  border-radius: 5px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.buy-button {
  min-height: 62px;
  background: #050505;
  color: #fff;
  display: grid;
  place-items: center;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 13px;
}

.buy-button small {
  display: block;
  text-transform: none;
  opacity: .9;
  font-size: 12px;
}

.whatsapp-order {
  margin-top: 12px;
  min-height: 52px;
  background: #40d263;
  color: #fff;
  font-size: 15px;
}

.buy-button:hover,
.whatsapp-order:hover,
.btn-cmd:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.load {
  width: 78px;
  height: 78px;
  margin: 10px auto;
  display: none;
}

.stock-note {
  margin: 12px 0 18px;
  color: #916128;
  font-size: 13px;
}

.trust-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
  color: #6a662f;
}

.trust-icons span {
  display: block;
  font-size: 30px;
  margin-bottom: 4px;
  color: var(--gold);
}

.trust-icons strong {
  font-size: 15px;
  line-height: 1.05;
}

.description-accordion {
  margin-top: 24px;
  border: 1px solid #dcd8c9;
  border-radius: 7px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .32);
  font-weight: 700;
}

.description-accordion p {
  font-weight: 400;
  color: var(--muted);
}

.brown-reviews {
  background: var(--brown);
  color: #fff;
  padding: 27px 14px 64px;
  text-align: center;
}

.brown-reviews h2,
.customer-section h2,
.related-section h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.brown-reviews > p,
.customer-section > p {
  margin: 4px 0 18px;
  color: #f1d772;
  font-weight: 700;
  font-size: 13px;
}

.review-marquee {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-marquee article {
  background: #fff;
  color: #41412e;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: left;
  min-height: 72px;
  box-shadow: 0 8px 22px rgba(0,0,0,.13);
}

.review-marquee b,
.review-marquee span {
  display: block;
  font-size: 13px;
}

.review-marquee span {
  color: var(--muted);
  margin-top: 3px;
}

.quality-section {
  width: min(980px, calc(100% - 34px));
  margin: 0 auto;
  padding: 34px 0 50px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.quality-copy {
  text-align: center;
}

.quality-copy h2 {
  color: #59682e;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.1;
  margin-bottom: 26px;
}

.quality-copy p {
  color: #565743;
  line-height: 1.85;
  font-size: 15px;
}

.price-pyramid {
  background: #050505;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0,0,0,.15);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 0 0;
}

.pyramid-brand {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 30px;
  letter-spacing: .04em;
  text-align: center;
  margin-bottom: auto;
  padding-top: 20px;
}

.pyramid-brand span {
  font-size: 44px;
  letter-spacing: -7px;
  vertical-align: middle;
  margin-right: 11px;
}

.pyramid-level {
  margin: 0 auto;
  border: 1px solid rgba(202, 163, 65, .88);
  border-bottom: 0;
  text-align: center;
  padding: 16px 15px;
  color: #ecd79a;
  background: linear-gradient(180deg, rgba(202,163,65,.08), rgba(0,0,0,.2));
}

.pyramid-level strong,
.pyramid-level span {
  display: block;
}

.pyramid-level strong {
  font-size: 15px;
}

.pyramid-level span {
  font-size: 12px;
  margin-top: 5px;
  color: #f4e9bf;
}

.level-1 { width: 32%; clip-path: polygon(50% 0, 100% 100%, 0 100%); padding-top: 85px; min-height: 150px; }
.level-2 { width: 52%; }
.level-3 { width: 70%; }
.level-4 { width: 86%; }
.level-5 { width: 100%; background: #222; }
.level-6 { width: 100%; background: linear-gradient(90deg, #f4dfca, #a38d79); color: #1d160f; border-color: transparent; }
.level-6 span { color: #2a2017; }

.customer-section,
.related-section {
  width: min(980px, calc(100% - 34px));
  margin: 0 auto;
  padding: 20px 0 45px;
  text-align: center;
}

.testimonial-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.testimonial-card,
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(58, 52, 38, .08);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: contain;
  background: #f5f3ec;
  mix-blend-mode: multiply;
}

.testimonial-card {
  padding-bottom: 18px;
}

.testimonial-card .stars {
  display: inline-block;
  background: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  margin-top: -16px;
  position: relative;
  font-size: 15px;
  box-shadow: 0 5px 14px rgba(0,0,0,.1);
}

.testimonial-card strong {
  display: block;
  margin: 9px 0;
  color: #73704e;
}

.testimonial-card p {
  padding: 0 14px;
  margin: 0;
  color: #696958;
  font-size: 13px;
  line-height: 1.55;
}

.related-section {
  text-align: left;
}

.related-section h2 {
  color: #415428;
}

.product-card {
  position: relative;
  padding: 0 0 16px;
  background: transparent;
  box-shadow: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: .9 / 1;
  object-fit: contain;
  background: rgba(255,255,255,.35);
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.product-card .small-promo {
  position: absolute;
  left: 9px;
  top: calc(100% - 110px);
}

.product-card h3 {
  min-height: 42px;
  margin: 12px 0 6px;
  font-size: 14px;
  color: #222b17;
}

.product-card p {
  margin: 0;
  font-size: 13px;
  color: #736331;
}

.product-card s {
  color: #8c8068;
  margin-left: 4px;
}

.review-strip {
  width: min(980px, calc(100% - 34px));
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.rating-summary,
.review-strip article {
  background: #fff;
  border-radius: 9px;
  padding: 18px;
  min-height: 135px;
}

.rating-summary {
  background: var(--brown);
  color: #fff;
}

.rating-summary strong,
.rating-summary span,
.rating-summary small,
.review-strip article b,
.review-strip article span {
  display: block;
}

.rating-summary span {
  color: #fff;
  margin: 18px 0 6px;
}

.review-strip article b {
  color: #3d3e2b;
  font-size: 13px;
  margin-bottom: 6px;
}

.review-strip article span {
  color: #19a949;
  font-size: 11px;
  margin-bottom: 10px;
  font-weight: 700;
}

.review-strip article p {
  margin: 0;
  color: #555548;
  font-size: 12px;
  line-height: 1.55;
}

.store-footer {
  background: #111;
  color: #fff;
  padding-top: 40px;
}

.footer-grid {
  width: min(1020px, calc(100% - 34px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.45fr;
  gap: 44px;
  padding-bottom: 38px;
}

.footer-logo {
  color: #f4d9b0;
  font-size: 32px;
  font-family: Georgia, serif;
  line-height: 1;
  letter-spacing: .05em;
  margin-bottom: 22px;
}

.store-footer h3 {
  font-size: 16px;
  margin: 0 0 19px;
}

.store-footer p,
.store-footer a,
.footer-bottom {
  color: #d7d7d7;
  font-size: 13px;
  line-height: 1.75;
}

.store-footer a {
  display: block;
  margin-bottom: 9px;
}

.newsletter {
  margin-top: 18px;
  border: 1px solid #5a5a5a;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 1fr 44px;
  overflow: hidden;
}

.newsletter input,
.newsletter button {
  border: 0;
  background: transparent;
  color: #fff;
  min-height: 44px;
  outline: 0;
}

.newsletter input {
  padding: 0 13px;
}

.newsletter button {
  border-left: 1px solid #5a5a5a;
}

.footer-bottom {
  border-top: 1px solid #252525;
  text-align: center;
  padding: 18px 12px;
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  top: 34%;
  z-index: 70;
  display: grid;
  gap: 160px;
  pointer-events: none;
}

.floating-whatsapp button {
  pointer-events: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  background: #4bd86d;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  font-size: 24px;
  display: grid;
  place-items: center;
}

#div-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(237, 238, 230, .9);
  padding: 9px 14px;
  backdrop-filter: blur(8px);
}

.btn-cmd {
  max-width: 440px;
  min-height: 52px;
  margin: 0 auto;
  display: block;
  background: #040404;
  color: #fff;
}

@media (max-width: 980px) {
  .store-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .store-nav {
    display: none;
  }

  .brand-logo {
    justify-self: start;
  }

  .product-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }

  .product-media {
    position: relative;
    top: auto;
  }

  .product-gallery {
    min-height: 430px;
  }

  .checkout-card {
    width: 100%;
  }

  .quality-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testimonial-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-whatsapp {
    right: 14px;
    gap: 120px;
  }
}

@media (max-width: 640px) {
  .store-header__inner,
  .product-shell,
  .quality-section,
  .customer-section,
  .related-section,
  .review-strip,
  .footer-grid {
    width: calc(100% - 24px);
  }

  .brand-logo__mark {
    font-size: 27px;
  }

  .brand-logo__name {
    font-size: 17px;
  }

  .brand-logo__name small {
    font-size: 7px;
  }

  .store-actions {
    gap: 3px;
  }

  .store-actions button {
    font-size: 15px;
  }

  .product-gallery {
    min-height: 360px;
  }

  .main-product-image {
    width: 92%;
  }

  .thumb-strip {
    gap: 8px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 3px 5px;
  }

  .thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }

  .product-info h1 {
    font-size: 24px;
  }

  .current-price {
    font-size: 26px;
  }

  .checkout-card {
    padding: 14px;
  }

  .order-line {
    grid-template-columns: 44px 1fr;
  }

  .order-line b {
    grid-column: 2;
  }

  .discount-row {
    grid-template-columns: 1fr;
  }

  .trust-icons {
    gap: 7px;
  }

  .trust-icons span {
    font-size: 24px;
  }

  .trust-icons strong {
    font-size: 12px;
  }

  .review-marquee,
  .testimonial-grid,
  .related-grid,
  .review-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brown-reviews {
    padding-bottom: 42px;
  }

  .price-pyramid {
    min-height: 510px;
  }

  .pyramid-brand {
    font-size: 22px;
  }

  .pyramid-brand span {
    font-size: 34px;
  }

  .pyramid-level {
    padding: 12px 10px;
  }

  .pyramid-level strong {
    font-size: 12px;
  }

  .pyramid-level span {
    font-size: 10px;
  }

  .level-1 {
    min-height: 125px;
    padding-top: 70px;
    width: 42%;
  }

  .floating-whatsapp {
    display: none;
  }
}
