:root {
  --wine: #8d2d31;
  --wine-dark: #662125;
  --wine-soft: #f4e8e7;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --ink: #201b19;
  --muted: #716b68;
  --line: #e9e2dc;
  --gold: #c69b59;
  --success: #238b57;
  --shadow: 0 18px 60px rgba(59, 34, 31, .12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); }
body.cart-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.topbar { background: var(--wine-dark); color: #fff; text-align: center; padding: 8px 16px; font-size: 12px; letter-spacing: .04em; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,253,249,.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(233,226,220,.85); }
.nav-shell { max-width: 1180px; margin: 0 auto; min-height: 78px; padding: 10px 20px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; justify-self: start; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; }
.brand small { color: var(--muted); margin-top: 4px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.desktop-nav { display: flex; gap: 28px; font-size: 14px; }
.desktop-nav a { color: #4d4541; transition: color .2s; }
.desktop-nav a:hover { color: var(--wine); }
.nav-actions { justify-self: end; display: flex; gap: 8px; align-items: center; }
.icon-btn, .cart-btn { border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 999px; min-height: 42px; transition: transform .15s, border-color .2s, background .2s; }
.icon-btn:hover, .cart-btn:hover { transform: translateY(-1px); border-color: #d8cac1; }
.icon-btn { width: 42px; display: grid; place-items: center; font-size: 22px; }
.cart-btn { padding: 0 12px; display: flex; align-items: center; gap: 7px; }
.cart-btn b { background: var(--wine); color: white; min-width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center; font-size: 11px; }
.mobile-search { max-width: 1180px; margin: 0 auto; padding: 0 20px 14px; }
.mobile-search label { display: none; }
.search-row { display: flex; gap: 8px; }
.search-row input { flex: 1; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fff; }
.search-row button { border: 0; background: transparent; color: var(--wine); }
.hero { max-width: 1180px; margin: 0 auto; padding: 70px 20px 58px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-block; color: var(--wine); font-size: 11px; font-weight: 800; letter-spacing: .16em; margin-bottom: 12px; }
.hero h1 { margin: 0; max-width: 660px; font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(44px, 6vw, 78px); line-height: .98; letter-spacing: -.04em; }
.hero p { max-width: 620px; color: var(--muted); line-height: 1.7; font-size: 18px; margin: 24px 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 999px; padding: 0 21px; border: 1px solid transparent; font-weight: 700; font-size: 14px; transition: transform .15s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--wine); color: #fff; box-shadow: 0 10px 28px rgba(141,45,49,.22); }
.btn.primary:hover { background: var(--wine-dark); }
.btn.secondary { background: #fff; border-color: var(--line); }
.btn.full { width: 100%; }
.hero-facts { display: flex; gap: 18px; flex-wrap: wrap; color: #5a504c; font-size: 12px; margin-top: 24px; }
.hero-showcase { min-height: 520px; position: relative; border-radius: 40px; background: radial-gradient(circle at 65% 20%, #f8d9c8, transparent 34%), linear-gradient(145deg, #f5e7dc, #f9f1e7 64%, #efddd3); overflow: hidden; box-shadow: inset 0 0 0 1px rgba(141,45,49,.08); }
.showcase-card { position: absolute; width: 210px; aspect-ratio: 1; padding: 12px; background: #fff; border-radius: 30px; box-shadow: var(--shadow); }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }
.card-a { left: 9%; top: 12%; transform: rotate(-8deg); }
.card-b { right: 7%; top: 20%; transform: rotate(7deg); }
.card-c { left: 29%; bottom: 8%; transform: rotate(2deg); }
.hero-badge { position: absolute; right: 6%; bottom: 8%; width: 140px; height: 140px; border-radius: 50%; background: var(--wine); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 16px 38px rgba(102,33,37,.25); }
.hero-badge strong { font-family: Georgia, serif; font-size: 34px; }
.hero-badge span { font-size: 11px; max-width: 90px; line-height: 1.3; }
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1180px; margin: 0 auto; }
.trust-strip div { padding: 22px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { font-size: 13px; }
.trust-strip span { color: var(--muted); font-size: 12px; }
.section { max-width: 1180px; margin: 0 auto; padding: 78px 20px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-heading h2, .about-copy h2, .contact-section h2, .gift-section h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4.6vw, 52px); font-weight: 500; letter-spacing: -.03em; margin: 0; }
.section-heading > a { color: var(--wine); font-size: 13px; font-weight: 700; }
.section-heading p { margin: 10px 0 0; color: var(--muted); max-width: 720px; font-size: 13px; line-height: 1.55; }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.category-card { border: 1px solid var(--line); background: white; border-radius: 22px; padding: 10px; text-align: left; transition: transform .2s, box-shadow .2s, border-color .2s; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dccac0; }
.category-card img { width: 100%; aspect-ratio: 1.15/1; object-fit: cover; border-radius: 16px; background: var(--cream); }
.category-card span { display: flex; flex-direction: column; padding: 13px 7px 7px; gap: 5px; }
.category-card strong { font-size: 14px; }
.category-card small { color: var(--muted); font-size: 11px; }
.catalog-section { padding-top: 54px; }
.catalog-count { min-width: 95px; height: 95px; border-radius: 50%; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; align-items: center; }
.catalog-count b { font-size: 24px; font-family: Georgia, serif; }
.catalog-count span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.catalog-tools { display: grid; grid-template-columns: 1fr 230px; gap: 12px; margin-bottom: 14px; }
.search-box { min-height: 50px; border: 1px solid var(--line); border-radius: 16px; padding: 0 15px; background: #fff; display: flex; align-items: center; gap: 10px; }
.search-box span { font-size: 24px; color: #867b75; }
.search-box input { border: 0; outline: 0; width: 100%; background: transparent; color: var(--ink); }
#sortSelect { border: 1px solid var(--line); border-radius: 16px; padding: 0 14px; background: #fff; color: var(--ink); }
.filter-chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 28px; scrollbar-width: none; }
.filter-chips::-webkit-scrollbar { display: none; }
.chip { white-space: nowrap; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 15px; color: #4e4642; }
.chip.active { background: var(--wine); color: #fff; border-color: var(--wine); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; min-width: 0; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 45px rgba(59,34,31,.10); border-color: #dccac0; }
.product-media { position: relative; aspect-ratio: 1.15/1; padding: 20px; background: linear-gradient(160deg,#fff9f3,#f7eee6); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: contain; border-radius: 18px; mix-blend-mode: multiply; }
.badge { position: absolute; left: 14px; top: 14px; background: var(--wine); color: #fff; font-size: 10px; font-weight: 800; padding: 6px 9px; border-radius: 999px; letter-spacing: .04em; }
.product-body { padding: 17px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.product-body h3 { font-size: 15px; line-height: 1.35; margin: 8px 0 12px; min-height: 41px; font-weight: 750; }
.price-line { min-height: 45px; display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.price-line strong { font-family: Georgia, serif; font-size: 21px; color: var(--wine-dark); }
.price-line del { color: #9b918d; font-size: 12px; }
.add-btn { margin-top: 11px; width: 100%; min-height: 42px; border: 1px solid var(--wine); color: var(--wine); background: transparent; border-radius: 999px; font-weight: 800; font-size: 12px; transition: background .2s, color .2s; }
.add-btn:hover { background: var(--wine); color: #fff; }
.empty-state { padding: 60px 20px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-state h3 { margin: 0 0 8px; }
.empty-state p { color: var(--muted); margin: 0 0 18px; }
.gift-section { background: var(--wine-dark); color: #fff; margin-top: 40px; }
.gift-inner { max-width: 1180px; margin: 0 auto; padding: 72px 20px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 60px; }
.eyebrow.light { color: #efd2b0; }
.gift-section p { color: #e4cecc; max-width: 670px; line-height: 1.7; }
.light-btn { background: #fff; color: var(--wine-dark); margin-top: 10px; }
.gift-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gift-stats div { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); border-radius: 20px; min-height: 116px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gift-stats strong { font-size: 31px; }
.gift-stats span { font-size: 12px; color: #e5d8d6; margin-top: 5px; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.logo-card { min-height: 430px; border-radius: 36px; background: var(--cream); display: grid; place-items: center; border: 1px solid var(--line); }
.logo-card img { width: 60%; max-width: 300px; border-radius: 50%; }
.about-copy p { color: var(--muted); line-height: 1.8; font-size: 16px; }
.about-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.about-actions a { color: var(--wine); font-weight: 700; font-size: 14px; }
.contact-section { max-width: 1180px; margin: 0 auto 70px; border: 1px solid var(--line); border-radius: 30px; padding: 45px; display: flex; justify-content: space-between; align-items: center; gap: 35px; background: #fff; }
.contact-section p { color: var(--muted); max-width: 700px; line-height: 1.6; }
footer { background: #1f1917; color: #f7f1ed; }
.footer-main { max-width: 1180px; margin: 0 auto; padding: 54px 20px; display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; }
.footer-brand div, .footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-main strong { font-size: 14px; }
.footer-main span, .footer-main a { color: #bfb4ae; font-size: 12px; }
.footer-main a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); max-width: 1180px; margin: 0 auto; padding: 18px 20px 28px; display: flex; justify-content: space-between; color: #91837c; font-size: 11px; }
.whatsapp-float { position: fixed; z-index: 22; right: 22px; bottom: 22px; width: 54px; height: 54px; border-radius: 50%; background: #1fa855; color: white; display: grid; place-items: center; font-size: 12px; font-weight: 900; box-shadow: 0 12px 28px rgba(31,168,85,.28); border: 3px solid white; }
.overlay { position: fixed; inset: 0; z-index: 40; background: rgba(25,18,17,.48); backdrop-filter: blur(2px); }
.cart-drawer { position: fixed; z-index: 50; right: 0; top: 0; bottom: 0; width: min(460px, 100%); background: var(--paper); box-shadow: -20px 0 60px rgba(0,0,0,.16); transform: translateX(102%); transition: transform .28s ease; display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-header .eyebrow { margin-bottom: 4px; }
.cart-header h2 { margin: 0; font-family: Georgia, serif; font-weight: 500; }
.cart-items { overflow-y: auto; padding: 12px 20px; flex: 1; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 14px; background: var(--cream); }
.cart-item h4 { margin: 0 0 4px; font-size: 13px; line-height: 1.25; }
.cart-item .unit-price { color: var(--muted); font-size: 11px; }
.qty-controls { display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.qty-controls button { border: 0; background: transparent; width: 27px; height: 27px; border-radius: 50%; }
.qty-controls button:hover { background: var(--wine-soft); }
.cart-line-total { text-align: right; }
.cart-line-total strong { font-size: 13px; white-space: nowrap; }
.cart-line-total button { border: 0; background: transparent; color: #9b6d6d; font-size: 10px; margin-top: 8px; padding: 0; }
.cart-empty { margin: auto; text-align: center; padding: 40px; }
.cart-empty span { font-size: 40px; }
.cart-empty h3 { margin: 12px 0 6px; }
.cart-empty p { color: var(--muted); font-size: 13px; }
.cart-footer { border-top: 1px solid var(--line); padding: 20px 24px 26px; background: #fff; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; }
.cart-total strong { font-family: Georgia, serif; font-size: 24px; }
.cart-footer p { color: var(--muted); font-size: 11px; line-height: 1.45; margin: 0 0 15px; }
.text-btn { width: 100%; border: 0; background: transparent; color: var(--muted); padding: 12px; font-size: 11px; }
.toast { position: fixed; z-index: 80; left: 50%; bottom: 24px; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; background: #1f1917; color: white; padding: 11px 16px; border-radius: 999px; font-size: 12px; transition: .22s; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; gap: 35px; padding-top: 45px; }
  .hero-showcase { min-height: 460px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 35px; }
}
@media (max-width: 720px) {
  .topbar { font-size: 10px; }
  .nav-shell { min-height: 68px; padding: 8px 14px; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 17px; }
  .brand small, .cart-label, #searchToggle { display: none; }
  .cart-btn { padding: 0 9px; }
  .hero { padding: 40px 16px 38px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero p { font-size: 16px; }
  .hero-showcase { min-height: 390px; border-radius: 28px; }
  .showcase-card { width: 160px; border-radius: 22px; }
  .showcase-card img { border-radius: 16px; }
  .card-a { left: 5%; top: 10%; }
  .card-b { right: 4%; top: 16%; }
  .card-c { left: 22%; bottom: 6%; }
  .hero-badge { width: 105px; height: 105px; right: 4%; bottom: 7%; }
  .hero-badge strong { font-size: 26px; }
  .trust-strip { grid-template-columns: 1fr; margin: 0 16px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
  .section { padding: 58px 16px; }
  .section-heading { align-items: start; }
  .section-heading > a { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-card:last-child { grid-column: 1 / -1; }
  .catalog-count { display: none; }
  .catalog-tools { grid-template-columns: 1fr; }
  #sortSelect { min-height: 48px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-media { padding: 10px; }
  .product-body { padding: 13px; }
  .product-body h3 { font-size: 13px; min-height: 36px; }
  .price-line strong { font-size: 18px; }
  .badge { left: 8px; top: 8px; }
  .gift-inner { grid-template-columns: 1fr; padding: 58px 16px; gap: 35px; }
  .about-grid { grid-template-columns: 1fr; }
  .logo-card { min-height: 300px; }
  .contact-section { margin: 0 16px 50px; padding: 30px 22px; flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 42px 16px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 18px 16px 24px; flex-direction: column; gap: 8px; }
  .whatsapp-float { right: 14px; bottom: 14px; }
}
@media (max-width: 420px) {
  .brand span { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 1.45/1; padding: 14px; }
  .product-body h3 { min-height: auto; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .hero-showcase { min-height: 340px; }
  .showcase-card { width: 142px; }
  .card-c { left: 20%; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }
