:root {
  --black: #050505;
  --ink: #171717;
  --charcoal: #2a2a2a;
  --gold: #f1e18a;
  --gold-dark: #d8c25d;
  --cream: #fff8da;
  --ivory: #fffdf4;
  --mist: #f6f2e7;
  --warm: #eee8c7;
  --line: #e4ddbf;
  --gray: #77746b;
  --green: #25d366;
  --rose: #d98d8d;
  --clay: #b46b52;
  --blue: #4d6d86;
  --mint: #8db8a6;
  --shadow: 0 24px 70px rgba(5, 5, 5, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: Inter, system-ui, sans-serif;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 244, 0.92);
  border-bottom: 1px solid rgba(228, 221, 191, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img,
.site-footer img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand span,
.site-footer h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.cart-button,
.button,
.whatsapp-button,
.icon-button,
.chip {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  color: white;
  background: var(--black);
  border-radius: 8px;
  font-weight: 800;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  color: var(--black);
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  gap: 64px;
  align-items: center;
  min-height: 540px;
  padding: 64px clamp(22px, 6vw, 86px);
  color: white;
  background: var(--black);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 6vw, 82px);
  max-width: 760px;
}

.hero p:not(.eyebrow) {
  max-width: 580px;
  color: var(--warm);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.section-heading,
.cart-header,
.cart-summary div {
  display: flex;
  align-items: center;
}

.hero-actions {
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
}

.button.gold {
  background: var(--gold);
  color: var(--black);
}

.button.light {
  background: white;
  color: var(--black);
}

.button.dark {
  width: 100%;
  color: white;
  background: var(--black);
}

.button.green,
.whatsapp-button {
  color: white;
  background: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 390px;
}

.gold-card,
.ivory-card {
  position: absolute;
  border-radius: 8px;
}

.gold-card {
  top: 34px;
  left: 20px;
  width: 42%;
  height: 320px;
  background: var(--gold);
}

.ivory-card {
  right: 80px;
  bottom: 0;
  width: 46%;
  height: 300px;
  background: white;
}

.hero-visual img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(260px, 42vw);
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.28));
}

.category-strip {
  display: flex;
  gap: 16px;
  padding: 28px clamp(22px, 6vw, 86px);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  min-width: 112px;
  min-height: 36px;
  padding: 0 18px;
  color: var(--black);
  background: var(--cream);
  border: 1px solid var(--gold-dark);
  border-radius: 999px;
  font-weight: 700;
}

.chip.active {
  color: var(--gold);
  background: var(--black);
  border-color: var(--black);
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 38px;
  padding: 54px clamp(22px, 6vw, 86px) 78px;
  background: var(--mist);
}

.filters,
.product-card,
.cart-panel,
.product-modal,
.feature-cards article,
.how-it-works,
.accessories {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filters {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 24px;
}

.filters h2 {
  margin-bottom: 22px;
  font-size: 30px;
}

.filters label,
.modal-copy label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.filters input,
.filters select,
.modal-copy select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--black);
}

.filter-note,
.cart-disclaimer {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
}

.section-heading {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
}

.section-heading > p,
.section-heading > a {
  color: var(--gray);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(5, 5, 5, 0.04);
}

.product-media {
  position: relative;
  display: block;
  width: calc(100% - 24px);
  height: 210px;
  margin: 12px;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--product-color, var(--warm));
  background-position: center;
  background-size: cover;
}

.product-media::before {
  position: absolute;
  top: 30px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  content: none;
}

.product-media::after {
  position: absolute;
  right: 24px;
  bottom: 56px;
  left: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(7deg);
  transform-origin: left;
  content: none;
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 8px 16px;
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.product-body {
  padding: 0 16px 16px;
}

.product-body h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.product-body p {
  min-height: 38px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.45;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.product-footer strong {
  font-size: 19px;
}

.add-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold);
  background: var(--black);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 23px;
  font-weight: 800;
}

.feature-section,
.promo-section,
.accessories,
.how-it-works,
.site-footer {
  margin: 0;
  padding: 72px clamp(22px, 6vw, 86px);
}

.feature-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: var(--cream);
}

.feature-section h2,
.promo-section h2,
.how-it-works h2 {
  font-size: clamp(36px, 5vw, 62px);
}

.feature-section p,
.promo-section p {
  color: var(--gray);
  line-height: 1.7;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-cards article {
  padding: 24px;
}

.feature-cards span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  background: var(--gold);
  border-radius: 999px;
  font-weight: 800;
}

.promo-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
  color: white;
  background: var(--black);
}

.promo-section h2 {
  max-width: 720px;
  color: var(--gold);
}

.countdown {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 38px;
  color: var(--black);
  background: var(--ivory);
  border-radius: 8px;
}

.countdown strong {
  font-size: clamp(36px, 5vw, 68px);
}

.accessories {
  margin: 72px clamp(22px, 6vw, 86px);
  padding: 40px;
}

.accessory-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 34px;
  color: var(--gold);
  background: var(--black);
  border-radius: 8px;
}

.accessory-row span {
  display: grid;
  place-items: center;
  min-height: 108px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(241, 225, 138, 0.28);
  border-radius: 8px;
  font-weight: 800;
}

.how-it-works {
  margin: 0 clamp(22px, 6vw, 86px) 86px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 82px;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--gold);
  border-radius: 999px;
}

.steps span {
  font-weight: 800;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  padding: 18px;
  background: rgba(5, 5, 5, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(440px, 100%);
  height: 100%;
  padding: 28px;
  box-shadow: var(--shadow);
  transform: translateX(24px);
  transition: transform 180ms ease;
  overflow: auto;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  justify-content: space-between;
  margin-bottom: 22px;
}

.cart-header h2 {
  margin: 0;
  font-size: 38px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--black);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background-color: var(--product-color, var(--warm));
  background-position: center;
  background-size: cover;
}

.cart-item h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--gray);
  font-size: 12px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.cart-empty {
  padding: 28px;
  text-align: center;
  background: var(--ivory);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.cart-summary {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.cart-summary div {
  justify-content: space-between;
}

.whatsapp-button {
  width: 100%;
}

.product-modal {
  width: min(920px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  box-shadow: var(--shadow);
}

.product-modal::backdrop {
  background: rgba(5, 5, 5, 0.48);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 42px;
}

.modal-image {
  min-height: 480px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.modal-image::after {
  position: absolute;
  right: 40px;
  bottom: 90px;
  left: 40px;
  height: 6px;
  background: rgba(255, 255, 255, 0.62);
  transform: rotate(9deg);
  content: none;
}

.modal-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4vw, 54px);
}

.modal-copy > strong {
  display: block;
  margin-bottom: 24px;
  font-size: 28px;
}

.modal-copy p {
  color: var(--gray);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--black);
  color: white;
}

.site-footer p {
  margin: 0;
  color: var(--warm);
}

.site-footer .button {
  margin-left: auto;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .shop-layout,
  .feature-section,
  .promo-section {
    grid-template-columns: 1fr;
  }

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

  .filters {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 74px;
    padding: 10px 16px;
  }

  .brand span {
    font-size: 25px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .cart-button span {
    display: none;
  }

  .hero {
    padding: 44px 20px;
    min-height: auto;
  }

  .hero-visual {
    min-height: 300px;
  }

  .product-grid,
  .feature-cards,
  .steps,
  .accessory-row,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    height: 240px;
  }

  .category-strip,
  .shop-layout,
  .feature-section,
  .promo-section,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .accessories,
  .how-it-works {
    margin-right: 20px;
    margin-left: 20px;
    padding: 28px 20px;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer .button {
    margin-left: 0;
  }
}
