* { box-sizing: border-box; }

:root {
  --bg: #f3eadc;
  --bg-alt: #fff8ed;
  --paper: rgba(255, 249, 239, 0.88);
  --text: #24150f;
  --muted: #6f5748;
  --brand: #8f4f2c;
  --brand-deep: #4b2718;
  --brand-dark: #2f1a12;
  --accent: #c58c4f;
  --accent-soft: #e6c99d;
  --border: rgba(75, 39, 24, 0.16);
  --shadow: 0 24px 70px rgba(75, 39, 24, 0.14);
  --success: #1f8f4e;
  --danger: #9b2f21;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, rgba(197, 140, 79, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 12%, rgba(75, 39, 24, 0.08), transparent 24rem),
    linear-gradient(180deg, #efe1cf 0%, #fff7ec 44%, #f0dfcd 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .09;
  background-image:
    linear-gradient(90deg, rgba(75,39,24,.18) 1px, transparent 1px),
    linear-gradient(rgba(75,39,24,.14) 1px, transparent 1px);
  background-size: 52px 52px;
  mix-blend-mode: multiply;
}

body.no-scroll { overflow: hidden; }

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

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

button, input, select { font: inherit; }

button { color: inherit; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 234, 220, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  background:
    linear-gradient(90deg, rgba(47,26,18,.98), rgba(111,58,32,.96)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 1px, transparent 1px 8px);
  color: #fff7eb;
  font-weight: 900;
  letter-spacing: .02em;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
  font-size: .92rem;
}

.topbar-inner span:first-child {
  color: #f4d28f;
  text-transform: uppercase;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 17px;
  background: rgba(255, 249, 239, .82);
  padding: 4px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 19px;
}

.nav-links a {
  font-weight: 800;
  font-size: .93rem;
  color: var(--brand-deep);
}

.nav-links a:hover { color: var(--brand); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-alt);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 4px;
}

.btn,
.cart-button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn {
  background: var(--brand);
  color: #fff9f0;
  box-shadow: 0 12px 28px rgba(143, 79, 44, .23);
}

.btn:hover,
.cart-button:hover {
  transform: translateY(-2px);
}

.btn:hover { background: var(--brand-deep); }

.btn-ghost {
  background: rgba(255,249,239,.76);
  color: var(--brand-deep);
  border: 1px solid var(--border);
  box-shadow: none;
}

.cart-button {
  position: relative;
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 0;
  background:
    linear-gradient(145deg, #fff4df, #d9b77a);
  color: var(--brand-dark);
  border: 1px solid rgba(75,39,24,.18);
  box-shadow: 0 12px 28px rgba(75,39,24,.16);
}

.cart-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-deep);
  color: #fff9f0;
  border: 2px solid var(--bg);
  font-size: .76rem;
  line-height: 1;
}

.hero {
  position: relative;
  padding: 82px 0 70px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 20%, rgba(143,79,44,.13), transparent 18rem),
    radial-gradient(circle at 75% 70%, rgba(203,147,88,.20), transparent 24rem);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--brand);
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Marcellus", Georgia, serif;
  letter-spacing: -.04em;
}

h1 {
  max-width: 700px;
  font-size: clamp(3.05rem, 7vw, 6.25rem);
}

h2 { font-size: clamp(2rem, 4vw, 3.8rem); }

h3 {
  font-size: 1.18rem;
  letter-spacing: -.02em;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions { margin-top: 30px; }

.hero-badges { margin-top: 28px; }

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,249,239,.78);
  border: 1px solid var(--border);
  color: var(--brand-deep);
  font-weight: 800;
  font-size: .92rem;
}

.hero-feature-card,
.product-card,
.founders-card,
.benefit-card,
.shipping-card,
.cta-card,
.faq-grid details {
  border: 1px solid var(--border);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(75,39,24,.08);
}

.hero-feature-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,249,239,.92), rgba(232,210,184,.82)),
    radial-gradient(circle at 50% 40%, rgba(197,140,79,.15), transparent 40%);
  box-shadow: var(--shadow);
}

.hero-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.badge {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff9f0;
  background: var(--brand-deep);
  font-size: .82rem;
  font-weight: 900;
}

.price,
.product-price {
  color: var(--brand-deep);
  font-size: 1.38rem;
  font-weight: 900;
}

.image-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.hero-product-image {
  width: min(340px, 92%);
  margin: 24px auto 10px;
  border-radius: 24px;
  object-fit: cover;
  filter: sepia(.08) drop-shadow(0 24px 36px rgba(75,39,24,.18));
}

.hero-feature-content p { margin: 12px 0 0; }

.mini-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 900;
  color: var(--brand);
}

.section { padding: 72px 0; }

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

.info-strip-grid,
.catalog-grid,
.split-layout,
.benefits-grid,
.shipping-card,
.cta-card,
.footer-content,
.faq-grid {
  display: grid;
}

.info-strip-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-strip-grid > div {
  border: 1px solid var(--border);
  background: rgba(255,249,239,.76);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.info-strip-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
}

.info-strip-grid p { margin: 0; }

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.catalog-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.product-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.product-gallery,
.product-image-frame {
  padding: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(197,140,79,.20), transparent 45%),
    linear-gradient(180deg, rgba(230,201,157,.38), rgba(255,249,239,.26));
}

.main-product-image {
  width: min(320px, 100%);
  height: 380px;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: sepia(.08);
}

.product-image-frame.tall {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.simple-product-image {
  max-height: 370px;
  object-fit: contain;
  filter: sepia(.08);
}

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

.thumb {
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,249,239,.9);
  cursor: pointer;
}

.thumb.active {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 2px rgba(143,79,44,.18);
}

.thumb img {
  width: 100%;
  height: 66px;
  object-fit: cover;
  border-radius: 10px;
  filter: sepia(.08);
}

.product-content { padding: 24px; }

.product-tag {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  font-weight: 900;
  font-size: .78rem;
}

.product-description { min-height: 86px; }

.field-label {
  display: block;
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 900;
  color: var(--brand-deep);
}

select,
input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fffdf8;
  color: var(--text);
  outline: none;
}

select:focus,
input:focus {
  border-color: rgba(143, 79, 44, .55);
  box-shadow: 0 0 0 4px rgba(143, 79, 44, .08);
}

.qty-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  margin-top: 8px;
}

.add-to-cart:disabled,
.checkout-whatsapp:disabled {
  cursor: not-allowed;
  opacity: .6;
  transform: none;
}

.stock-message {
  min-height: 24px;
  margin: 12px 0 0;
  font-weight: 900;
  font-size: .92rem;
}

.stock-message.out { color: var(--danger); }

.stock-message.limit { color: var(--brand); }

.about-section {
  background: linear-gradient(180deg, rgba(75,39,24,.04), rgba(75,39,24,.01));
}

.split-layout {
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.big-quote {
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(1.45rem, 2.8vw, 2.3rem);
  line-height: 1.36;
  color: var(--brand-deep);
}

.founders-card {
  padding: 20px;
  border-radius: var(--radius-xl);
}

.founders-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  filter: sepia(.12) contrast(1.02);
}

.founders-card p {
  margin: 18px 6px 4px;
  font-weight: 700;
}

.why-layout { align-items: center; }

.highlight-copy {
  font-weight: 900;
  color: var(--brand-deep);
  line-height: 1.8;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: rgba(255,249,239,.74);
  border-radius: 0 18px 18px 0;
}

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

.benefit-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.benefit-card span {
  color: var(--accent);
  font-weight: 900;
}

.benefit-card h3 { margin-top: 12px; }

.benefit-card p { margin-bottom: 0; }

.shipping-card,
.cta-card {
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.shipping-note,
.contact-mail {
  font-weight: 900;
  color: var(--brand);
}

.social-links {
  display: grid;
  gap: 14px;
  align-content: start;
}

.social-links a {
  padding: 16px 18px;
  border-radius: 16px;
  background: #fffdf8;
  border: 1px solid var(--border);
  font-weight: 800;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-grid details {
  border-radius: var(--radius-lg);
  padding: 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--brand-deep);
}

.faq-grid p { margin-bottom: 0; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.whatsapp-btn,
.checkout-whatsapp {
  background: var(--success);
}

.whatsapp-btn:hover,
.checkout-whatsapp:hover {
  background: #176f3c;
}

.wa-svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--border);
  background: rgba(255,249,239,.56);
}

.footer-content {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.footer p { margin: 6px 0 0; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.28), transparent 30%),
    var(--success);
  color: white;
  box-shadow: 0 16px 34px rgba(31, 143, 78, .34);
  border: 3px solid rgba(255,249,239,.86);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 42px rgba(31, 143, 78, .42);
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(470px, 100%);
  height: 100vh;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff9ef;
  transform: translateX(100%);
  transition: transform .28s ease;
  box-shadow: -14px 0 40px rgba(0,0,0,.16);
}

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

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(36,21,15,.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.cart-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-header,
.cart-footer {
  padding: 22px;
}

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

.cart-footer {
  border-top: 1px solid var(--border);
  background: rgba(255,249,239,.92);
}

.close-cart {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fffdf8;
  cursor: pointer;
}

.cart-body {
  padding: 18px 22px;
  overflow: auto;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,249,239,.9);
}

.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-item h4 {
  margin: 0;
  font-size: 1rem;
}

.cart-item p {
  margin: 6px 0 0;
  font-size: .92rem;
}

.cart-item small {
  display: block;
  margin-top: 10px;
  font-weight: 800;
  color: var(--brand-deep);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.cart-item-actions button,
.cart-item-top button {
  border: 1px solid var(--border);
  background: #fffdf8;
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 800;
}

.cart-item-actions button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.checkout-whatsapp {
  width: 100%;
  min-height: 54px;
}

.checkout-note {
  margin: 10px 0 0;
  font-size: .88rem;
  text-align: center;
}

.empty-cart {
  text-align: center;
  padding: 20px 10px;
  color: var(--muted);
}

.checkout-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.checkout-form h3 {
  margin-bottom: 14px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  font-size: .92rem;
  font-weight: 900;
  color: var(--brand-deep);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(24,14,10,.82);
}

.image-modal.open { display: flex; }

.image-modal img {
  max-width: min(980px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.modal-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(255,249,239,.96);
  color: var(--brand-deep);
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-layout,
  .shipping-card,
  .cta-card,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .info-strip-grid,
  .benefits-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature-card {
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 132px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,249,239,.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }

  .cart-button {
    align-self: flex-start;
  }

  .section { padding: 56px 0; }

  .hero { padding-top: 58px; }

  .footer-content { grid-template-columns: 1fr; }

  .qty-row { grid-template-columns: 76px 1fr; }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp svg {
    width: 33px;
    height: 33px;
  }
}

@media (max-width: 520px) {
  .topbar-inner {
    gap: 6px;
    font-size: .82rem;
    line-height: 1.45;
    padding: 7px 0;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .catalog-grid {
    gap: 18px;
  }

  .main-product-image {
    height: 310px;
  }

  .product-image-frame.tall {
    min-height: 350px;
  }
}
