:root {
  --background: #fbfaf7;
  --surface: #f3eee7;
  --surface-2: #ede4da;
  --text: #332e2a;
  --muted: #7c736b;
  --line: #e2d8cc;
  --gold: #bd8a35;
  --gold-dark: #946821;
  --rose: #c88978;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(51, 46, 42, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  min-height: 80px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(226, 216, 204, 0.8);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #5d554d;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-button span {
  position: absolute;
  top: 4px;
  right: 3px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
}

.menu-button {
  display: none;
}

.menu-button span {
  width: 20px;
  height: 1px;
  background: currentColor;
}

.menu-button span + span {
  margin-top: 6px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  min-height: calc(100svh - 80px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.78) 46%, rgba(251, 250, 247, 0.2) 100%),
    var(--background);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 88px 0 120px 7vw;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 1;
}

h1 {
  color: #6a645f;
  font-size: clamp(58px, 8vw, 118px);
}

.hero-text {
  max-width: 520px;
  margin: 28px 0 36px;
  color: #8a837b;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button.primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
}

.hero-media {
  position: relative;
  height: 100%;
  min-height: 620px;
}

.hero-media::before {
  position: absolute;
  inset: 7% 7% 7% 18%;
  border: 1px solid rgba(189, 138, 53, 0.25);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) brightness(1.06);
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 3;
  color: #746b63;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint::after {
  display: block;
  width: 1px;
  height: 44px;
  margin: 10px auto 0;
  background: var(--gold);
  content: "";
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.benefits article {
  min-height: 188px;
  padding: 38px 28px;
  background: var(--background);
  text-align: center;
}

.benefits svg {
  width: 30px;
  height: 30px;
  margin: 0 auto 18px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefits h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.benefits p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 6vw;
}

.section.muted {
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.row {
  display: flex;
  max-width: 1280px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.section-heading h2,
.loyalty h2,
.about h2 {
  color: #3f3934;
  font-size: clamp(42px, 5vw, 70px);
}

.section-heading p:not(.eyebrow),
.loyalty > p,
.about p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.category-grid,
.product-grid,
.testimonial-grid {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  gap: 24px;
}

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

.category-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 6px;
  background: #222;
  box-shadow: 0 10px 30px rgba(51, 46, 42, 0.08);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76));
  content: "";
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-card span,
.category-card h3,
.category-card p {
  position: absolute;
  right: 28px;
  left: 28px;
  z-index: 2;
  color: var(--white);
}

.category-card span {
  top: 24px;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.category-card h3 {
  bottom: 82px;
  font-size: 34px;
}

.category-card p {
  bottom: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

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

.product-card {
  min-width: 0;
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  background: #e8dfd5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(51, 46, 42, 0.82);
  color: var(--white);
  font-size: 12px;
}

.badge.sale {
  background: #b65345;
}

.product-image button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.product-card h3 {
  margin-top: 18px;
  font-size: 26px;
}

.product-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.product-card strong {
  color: var(--gold-dark);
  font-weight: 600;
}

.product-card s {
  margin-left: 8px;
  color: #9e958c;
}

.loyalty {
  max-width: 980px;
  margin: 0 auto;
  padding: 58px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f7f1ea, #efe4d8);
  text-align: center;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.tiers article {
  padding: 26px;
  border: 1px solid rgba(189, 138, 53, 0.22);
  background: rgba(255, 255, 255, 0.52);
}

.tiers h3 {
  font-size: 28px;
}

.tiers p {
  color: var(--muted);
  font-size: 14px;
}

.tiers strong {
  color: var(--gold-dark);
  font-size: 14px;
}

.testimonials {
  background: var(--background);
}

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

.testimonial-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(51, 46, 42, 0.05);
}

.testimonial-grid p {
  margin: 0 0 24px;
  color: #5a5149;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.25;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 14px;
}

.instagram {
  background: var(--surface);
}

.instagram .button {
  margin-top: 28px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
}

.instagram-grid a {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: #ded4c9;
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.instagram-grid a:hover img {
  transform: scale(1.07);
}

.about {
  display: grid;
  grid-template-columns: 280px minmax(0, 720px);
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.about img {
  width: 260px;
  height: 260px;
  object-fit: contain;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 44px;
  padding: 64px 6vw 30px;
  border-top: 1px solid var(--line);
  background: #312b26;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer img {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  object-fit: contain;
  filter: brightness(1.2);
}

.site-footer h4 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer .footer-admin-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-top: 12px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.58);
}

.footer-admin-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.newsletter p {
  margin-top: 0;
}

.newsletter input {
  width: 100%;
  height: 46px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter .button {
  width: 100%;
}

.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 60;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: #20c363;
  box-shadow: 0 16px 30px rgba(32, 195, 99, 0.32);
}

.whatsapp svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  background: rgba(35, 30, 26, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

.cart-panel {
  width: min(460px, 100%);
  height: 100%;
  overflow: auto;
  padding: 28px;
  background: var(--background);
  box-shadow: -20px 0 50px rgba(51, 46, 42, 0.16);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

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

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  font-size: 44px;
}

.cart-items {
  display: grid;
  gap: 16px;
  padding: 22px 0;
}

.empty-cart {
  margin: 0;
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.cart-item img {
  width: 84px;
  height: 84px;
  border-radius: 4px;
  object-fit: cover;
}

.cart-item h3 {
  font-size: 24px;
}

.cart-item p {
  margin: 4px 0 10px;
  color: var(--gold-dark);
  font-weight: 600;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.qty-control button,
.qty-control span {
  display: grid;
  width: 34px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
}

.qty-control span {
  border-inline: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.checkout-form h3 {
  font-size: 30px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}

.checkout-form textarea {
  resize: vertical;
}

.checkout-note {
  min-height: 22px;
  margin: 0;
  color: var(--gold-dark);
  font-size: 13px;
}

.shipping-button {
  width: 100%;
}

.shipping-options {
  display: grid;
  gap: 8px;
}

.shipping-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  font-size: 13px;
}

.shipping-option strong,
.shipping-option span {
  display: block;
}

.shipping-option small {
  color: var(--muted);
}

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

  .main-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 76px 6vw 36px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    min-height: 420px;
  }

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

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

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

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 56px 1fr 112px;
    min-height: 70px;
    padding: 0 16px;
  }

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

  .menu-button {
    display: inline-flex;
    justify-self: start;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 10px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 247, 0.98);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(226, 216, 204, 0.7);
  }

  .header-actions {
    gap: 2px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 58px 22px 28px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }

  .benefits,
  .category-grid,
  .product-grid,
  .testimonial-grid,
  .tiers,
  .about,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 22px;
  }

  .section-heading.row {
    display: block;
    text-align: center;
  }

  .section-heading.row .button {
    margin-top: 24px;
  }

  .category-card,
  .category-card img {
    min-height: 380px;
  }

  .loyalty {
    padding: 34px 22px;
  }

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

  .about {
    gap: 24px;
    text-align: center;
  }

  .about img {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .site-footer {
    padding: 48px 22px 28px;
  }

  .whatsapp {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .cart-panel {
    padding: 22px;
  }
}
