
:root {
  --ink: #171717;
  --muted: #6d6d6d;
  --paper: #fbfaf7;
  --sand: #eee8dc;
  --accent: #80533f;
  --line: #dedbd4;
  --white: #fff;
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button { cursor: pointer; }
.announcement {
  padding: 9px 20px;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .08em;
  background: var(--ink);
  color: var(--white);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 70px);
  background: rgba(251,250,247,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 120px; }
nav { display: flex; justify-content: center; gap: clamp(12px, 2vw, 28px); font-size: .9rem; }
nav a:hover { color: var(--accent); }
.menu-button { display: none; background: none; border: 0; font-size: 1.5rem; }
.cart-button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  padding: 10px 15px;
}
.cart-button span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-left: 6px;
  border-radius: 50%;
  color: white;
  background: var(--ink);
}
.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 45px;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 7vw, 100px);
  background: linear-gradient(130deg, #f8f4eb, #e8ded0);
}
.hero-copy { max-width: 700px; }
.eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
}
h1, h2 { font-family: "Playfair Display", serif; line-height: 1.03; margin: 0; }
h1 { font-size: clamp(3rem, 6.6vw, 6.7rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2.2rem, 4vw, 4.4rem); letter-spacing: -.03em; }
.hero p, .split-section p, .about p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}
.hero-art img { width: 100%; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
}
.button.primary { color: white; background: var(--ink); }
.button.secondary { background: transparent; }
.button.full { width: 100%; }
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.benefits article {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 28px clamp(20px, 5vw, 70px);
  border-right: 1px solid var(--line);
}
.benefits article:last-child { border-right: 0; }
.benefits span { color: var(--muted); font-size: .88rem; }
.section { padding: clamp(65px, 8vw, 110px) clamp(20px, 6vw, 85px); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 30px; }
.section-heading p { color: var(--muted); }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filters select, .text-button {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}
.text-button { color: var(--accent); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.product-card { position: relative; }
.product-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  aspect-ratio: 4/5;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.03); }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.product-info { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 15px 2px; }
.product-info h3 { margin: 0; font-size: 1rem; }
.product-info p { margin: 4px 0 0; color: var(--muted); font-size: .85rem; }
.product-info strong { white-space: nowrap; }
.product-actions { display: flex; gap: 8px; grid-column: 1 / -1; }
.product-actions button { flex: 1; min-height: 40px; border-radius: 999px; border: 1px solid var(--ink); background: transparent; }
.product-actions .add { background: var(--ink); color: white; }
.empty { grid-column: 1 / -1; padding: 70px 20px; text-align: center; color: var(--muted); }
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(35px, 7vw, 100px);
  padding: clamp(65px, 8vw, 110px) clamp(20px, 7vw, 100px);
  background: #e8ded0;
}
.split-section img { border-radius: var(--radius); }
.social-section { text-align: center; }
.social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.social-links a { padding: 15px 24px; border: 1px solid var(--line); border-radius: 999px; background: white; }
.about { border-top: 1px solid var(--line); }
footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 35px;
  padding: 55px clamp(20px, 6vw, 85px);
  color: #e8e8e8;
  background: #151515;
}
footer > div { display: flex; flex-direction: column; gap: 10px; }
footer a, footer span, footer p { color: #aaa; font-size: .9rem; }
.footer-logo { width: 115px; margin-bottom: 8px; }
.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: min(430px, 92vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(105%);
  transition: transform .28s ease;
  background: white;
  box-shadow: -15px 0 50px rgba(0,0,0,.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header, .cart-footer { padding: 22px; border-bottom: 1px solid var(--line); }
.cart-header { display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { font-size: 2rem; }
.cart-header button, .dialog-close { border: 0; background: transparent; font-size: 2rem; }
.cart-items { overflow-y: auto; padding: 10px 22px; }
.cart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.cart-item img { border-radius: 10px; }
.cart-item h4 { margin: 0 0 4px; }
.cart-item small { color: var(--muted); }
.cart-item button { border: 0; background: transparent; color: var(--accent); }
.cart-footer { border-top: 1px solid var(--line); border-bottom: 0; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 18px; }
.cart-footer small { display: block; margin-top: 12px; color: var(--muted); text-align: center; }
.overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  background: rgba(0,0,0,.36);
}
.overlay.show { display: block; }
dialog {
  width: min(900px, 92vw);
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}
dialog::backdrop { background: rgba(0,0,0,.5); }
.dialog-close { position: absolute; top: 12px; right: 16px; z-index: 2; }
.dialog-grid { display: grid; grid-template-columns: 1fr 1fr; }
.dialog-grid img { width: 100%; height: 100%; object-fit: cover; background: var(--sand); }
.dialog-copy { padding: 50px 36px; }
.dialog-copy h2 { font-size: 2.8rem; }
.dialog-copy p { color: var(--muted); line-height: 1.7; }
.option-row { margin: 20px 0; }
.option-row label { display: block; margin-bottom: 8px; font-weight: 700; }
.option-row select { width: 100%; min-height: 45px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; }
.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  padding: 14px 19px;
  border-radius: 999px;
  color: white;
  background: #171717;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  font-weight: 800;
}
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .menu-button { display: block; order: -1; }
  nav {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  nav.open { display: flex; }
  .brand { justify-self: start; }
  .cart-button { justify-self: end; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { max-width: 620px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .announcement { font-size: .66rem; }
  .site-header { padding: 12px 16px; gap: 10px; }
  .brand img { width: 90px; }
  .cart-button { font-size: 0; padding: 7px; border: 0; }
  .cart-button span { font-size: .8rem; margin: 0; }
  .hero { padding-top: 55px; }
  h1 { font-size: 3.25rem; }
  .benefits { grid-template-columns: 1fr; }
  .benefits article { border-right: 0; border-bottom: 1px solid var(--line); }
  .product-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  .filters select, .text-button { width: 100%; }
  .split-section, .dialog-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
}
