/* /assets/css/style.css */

:root {
    --paper: #fbf8f1;
    --paper-2: #f4eee3;
    --surface: #ffffff;
    --surface-soft: #f8f5ef;
    --ink: #15130f;
    --muted: #6f685d;
    --gold: #b78328;
    --gold-strong: #966717;
    --gold-soft: #ead8b4;
    --line: #e7ded0;
    --dark: #10100f;
    --success: #0b6b46;
    --danger: #a62b26;
    --shadow-sm: 0 12px 35px rgba(48, 36, 19, .08);
    --shadow-lg: 0 30px 80px rgba(33, 25, 14, .14);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font: 16px/1.6 var(--sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; left: 18px; top: 12px; z-index: 200; transform: translateY(-150%); padding: 10px 14px; background: var(--dark); color: #fff; border-radius: 10px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(14px);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(42, 33, 20, .05); background: var(--paper); }
.nav-wrap { min-height: 84px; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 30px; }
.brand-logo { display: block; width: 180px; }
.brand-logo img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.3vw, 30px); }
.site-nav a { position: relative; font-size: 13px; font-weight: 650; color: var(--ink); white-space: nowrap; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gold); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.site-nav a.active-link { color: var(--gold-strong); }
.site-nav a.active-link::after { right: 0; background: var(--gold-strong); }
.mobile-menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.mobile-menu-button > span:not(.sr-only) { display: block; height: 2px; width: 100%; margin: 5px 0; background: var(--ink); border-radius: 3px; transition: transform .2s ease, opacity .2s ease; }
.menu-open .mobile-menu-button > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .mobile-menu-button > span:nth-child(2) { opacity: 0; }
.menu-open .mobile-menu-button > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 999px; padding: 0 20px; font-size: 14px; font-weight: 800; letter-spacing: -.01em; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.985); }
.button-gold { color: #18140e; background: var(--gold); border-color: var(--gold); box-shadow: 0 10px 25px rgba(174, 124, 36, .2); }
.button-gold:hover { background: var(--gold); filter: brightness(1.08); box-shadow: 0 14px 32px rgba(174,124,36,.25); }
.button-outline { border-color: #cfc3b1; color: var(--ink); background: var(--surface); }
.button-outline:hover { background: var(--surface); border-color: var(--line); }
.button-dark { background: var(--dark); color: #fff; }
.button-dark:hover { background: #27241f; }
.button-light-outline { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(0,0,0,.08); }
.button-light-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.button.full { width: 100%; }
.nav-whatsapp { justify-self: end; min-height: 48px; padding-inline: 18px; }
.nav-whatsapp svg { width: 21px; height: 21px; }

.hero { position: relative; overflow: hidden; padding: 58px 0 72px; }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(196,151,60,.12), transparent 70%); left: -160px; top: -150px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr); align-items: center; gap: 56px; }
.hero-copy-block { position: relative; z-index: 2; padding: 26px 0; }
.section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-strong); font-size: 11px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.section-kicker.light { color: #e7c684; }
.hero h1 { margin: 17px 0 18px; max-width: 720px; font-family: var(--serif); font-size: clamp(49px, 5.2vw, 76px); line-height: .98; font-weight: 600; letter-spacing: -.055em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-copy { max-width: 590px; margin: 0; color: var(--muted); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin: 28px 0 30px; }
.hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 650px; }
.hero-benefits article { min-width: 0; display: flex; gap: 10px; align-items: center; padding-right: 12px; border-right: 1px solid var(--line); }
.hero-benefits article:last-child { border-right: 0; }
.benefit-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--gold-strong); flex: none; }
.benefit-icon svg { width: 34px; height: 34px; }
.hero-benefits strong, .hero-benefits small { display: block; }
.hero-benefits strong { font-size: 13px; line-height: 1.25; }
.hero-benefits small { margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.35; }

.hero-visual { position: relative; min-height: 610px; border-radius: 0 0 0 84px; overflow: hidden; box-shadow: var(--shadow-lg); background: #9c7b4f; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(13,11,8,.04) 25%, transparent 55%, rgba(13,11,8,.15)); pointer-events: none; }
.hero-visual > img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; }
.hero-floating-card { position: absolute; z-index: 2; left: 26px; bottom: 24px; display: flex; align-items: center; gap: 13px; max-width: 310px; padding: 14px 17px; color: #fff; background: rgba(17, 15, 12, .76); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(12px); border-radius: 17px; box-shadow: 0 14px 35px rgba(0,0,0,.18); }
.floating-dot { width: 10px; height: 10px; border-radius: 50%; background: #d2a044; box-shadow: 0 0 0 6px rgba(210,160,68,.15); flex: none; }
.hero-floating-card strong, .hero-floating-card small { display: block; }
.hero-floating-card strong { font-size: 13px; }
.hero-floating-card small { color: rgba(255,255,255,.72); font-size: 10px; margin-top: 2px; }

.section { padding: 86px 0; }
.section-intro { max-width: 760px; margin-bottom: 36px; }
.section-intro.centered { margin-inline: auto; text-align: center; }
.section-intro.centered .section-kicker { justify-content: center; }
.section-intro.narrow { max-width: 820px; }
.section-intro.compact { max-width: 330px; margin: 0; }
.section-intro h2 { margin: 10px 0 13px; font-family: var(--serif); font-size: clamp(37px, 4.4vw, 58px); line-height: 1.02; font-weight: 600; letter-spacing: -.04em; }
.section-intro p { margin: 0; color: var(--muted); font-size: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--gold-strong); font-weight: 800; }
.text-link svg { width: 18px; height: 18px; }

.how-section { background: var(--surface); border-block: 1px solid var(--line); }
.how-layout { display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: stretch; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step-card { position: relative; min-height: 290px; padding: 28px 22px 24px; background: linear-gradient(180deg, #fffdf9, #f8f3e9); border: 1px solid #ece1cf; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(55,42,21,.04); overflow: hidden; }
.step-number { position: absolute; top: 18px; left: 18px; width: 36px; height: 36px; display: grid; place-items: center; color: #fff; background: var(--gold); border-radius: 50%; font: 800 14px/1 var(--sans); }
.step-icon { width: 76px; height: 76px; display: grid; place-items: center; margin: 12px auto 22px; color: var(--ink); }
.step-icon svg { width: 66px; height: 66px; stroke-width: 1.45; }
.step-card h3 { margin: 0 0 8px; font-size: 17px; text-align: center; }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; text-align: center; line-height: 1.55; }

.products-section { background: var(--paper); }
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; align-items: stretch; }
.product-card { position: relative; display: flex; flex-direction: column; min-width: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 28px rgba(44,33,18,.04); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-5px); border-color: #d7c39e; box-shadow: var(--shadow-sm); }
.product-card.featured { border-color: #caa55d; box-shadow: 0 14px 40px rgba(150,103,23,.12); }
.product-badge { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 6px 9px; color: #fff; background: var(--dark); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-image-wrap { aspect-ratio: 1; padding: 10px; background: #fff; overflow: hidden; border-bottom: 1px solid #eee6dc; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.025); }
.product-body { display: flex; flex-direction: column; flex: 1; padding: 17px 14px 14px; text-align: center; }
.product-variant { color: var(--gold-strong); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.product-body h3 { min-height: 42px; margin: 7px 0 6px; font-size: 15px; line-height: 1.35; }
.product-price { display: block; margin-bottom: 14px; color: var(--gold-strong); font: 750 24px/1 var(--serif); }
.product-order { min-height: 44px; width: 100%; margin-top: auto; padding-inline: 10px; font-size: 12px; }
.products-note { margin: 20px auto 0; text-align: center; color: var(--muted); font-size: 12px; }

.value-section { padding-top: 20px; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.value-grid article { position: relative; padding: 29px 26px; border-right: 1px solid var(--line); }
.value-grid article:last-child { border-right: 0; }
.value-grid article > svg { width: 42px; height: 42px; color: var(--gold-strong); }
.value-grid h3 { margin: 14px 0 6px; font-size: 16px; }
.value-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.cta-section { padding: 36px 0 72px; }
.cta-card { position: relative; min-height: 390px; overflow: hidden; display: grid; grid-template-columns: .85fr 1.15fr; color: #fff; background: #15120e; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.cta-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,15,10,.98) 0%, rgba(19,15,10,.9) 43%, rgba(19,15,10,.25) 75%, rgba(19,15,10,.08)); pointer-events: none; }
.cta-content { position: relative; z-index: 2; padding: 55px 0 52px 52px; }
.cta-content h2 { max-width: 640px; margin: 12px 0 14px; font: 600 clamp(36px, 4vw, 54px)/1.03 var(--serif); letter-spacing: -.04em; }
.cta-content p { max-width: 510px; margin: 0; color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.cta-image { position: absolute; inset: 0 0 0 38%; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }

.faq-contact-section { background: var(--surface); border-top: 1px solid var(--line); }
.faq-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.faq-list { margin-top: 24px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; list-style: none; cursor: pointer; padding: 20px 36px 20px 0; font-weight: 750; font-size: 15px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--gold-strong); font-size: 23px; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: -5px 30px 18px 0; color: var(--muted); font-size: 13px; }
.contact-panel { padding: 32px; background: var(--paper); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-sm); }
.contact-panel h2 { margin: 10px 0 10px; font: 600 clamp(33px, 3.5vw, 46px)/1.04 var(--serif); letter-spacing: -.04em; }
.contact-panel > p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.contact-form { display: grid; gap: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: grid; gap: 6px; color: #3f392f; font-size: 11px; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #dcd2c2; background: #fff; color: var(--ink); border-radius: 12px; padding: 12px 13px; outline: none; transition: border-color .18s, box-shadow .18s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #b78a3b; box-shadow: 0 0 0 4px rgba(183,138,59,.12); }
.contact-form textarea { resize: vertical; min-height: 105px; }
.honeypot { position: absolute; left: -99999px; width: 1px; height: 1px; overflow: hidden; }
.alert { margin-bottom: 16px; padding: 12px 14px; border-radius: 12px; font-size: 13px; font-weight: 700; }
.alert.success { background: #e8f6ef; color: var(--success); }
.alert.error { background: #fbeceb; color: var(--danger); }
.contact-whatsapp { margin-top: 16px; display: grid; grid-template-columns: 42px 1fr 24px; align-items: center; gap: 11px; padding: 14px; border: 1px solid #d9ccb7; border-radius: 14px; background: #fff; }
.contact-whatsapp > svg:first-child { width: 28px; height: 28px; color: var(--gold-strong); }
.contact-whatsapp strong, .contact-whatsapp small { display: block; }
.contact-whatsapp strong { font-size: 16px; }
.contact-whatsapp small { color: var(--muted); font-size: 10px; }

.site-footer { color: #fff; background: var(--dark); padding: 46px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.5fr .8fr; gap: 50px; align-items: center; }
.footer-logo-box { display: inline-block; width: 180px; padding: 7px 10px; background: #fff; border-radius: 10px; }
.footer-logo-box img { width: 100%; height: auto; }
.footer-brand p { max-width: 300px; margin: 13px 0 0; color: rgba(255,255,255,.56); font-size: 12px; }
.footer-grid nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 23px; }
.footer-grid nav a { color: rgba(255,255,255,.72); font-size: 12px; }
.footer-grid nav a:hover { color: #fff; }
.footer-contact { text-align: right; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.footer-contact a svg { color: #d4a143; width: 27px; height: 27px; }
.footer-contact small { display: block; margin-top: 3px; color: rgba(255,255,255,.55); font-size: 10px; }
.footer-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: 10px; }

.floating-whatsapp { position: fixed; z-index: 80; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); min-height: 48px; display: inline-flex; align-items: center; gap: 8px; padding: 0 16px; color: #17140e; background: #d4a143; border: 1px solid #bd8b2f; border-radius: 999px; font-size: 12px; font-weight: 850; box-shadow: 0 15px 35px rgba(49,34,10,.25); transition: transform .18s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { width: 21px; height: 21px; }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(160,112,28,.42); outline-offset: 3px; }

@media (max-width: 1080px) {
    .nav-wrap { grid-template-columns: 160px 1fr auto; gap: 18px; }
    .brand-logo { width: 155px; }
    .site-nav { gap: 15px; }
    .site-nav a { font-size: 12px; }
    .nav-whatsapp span { display: none; }
    .nav-whatsapp { width: 48px; padding: 0; }
    .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 36px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .product-card:nth-child(4), .product-card:nth-child(5) { max-width: 360px; }
}

@media (max-width: 960px) {
    html { scroll-padding-top: 76px; }
    .nav-wrap { min-height: 74px; display: flex; justify-content: space-between; gap: 15px; }
    .brand-logo { width: 145px; }
    .mobile-menu-button { display: block; margin-left: auto; }
    .nav-whatsapp { display: none; }
    .site-nav { position: fixed; inset: 74px 0 auto 0; min-height: calc(100vh - 74px); padding: 30px 24px 110px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px; background: rgba(251,248,241,.99); border-top: 1px solid var(--line); transform: translateX(100%); opacity: 0; visibility: hidden; transition: transform .22s ease, opacity .22s ease, visibility .22s; }
    .menu-open .site-nav { transform: translateX(0); opacity: 1; visibility: visible; }
    .site-nav a { width: 100%; padding: 13px 4px; font-size: 20px; font-family: var(--serif); border-bottom: 1px solid var(--line); }
    .site-nav a::after { display: none; }
    .hero { padding-top: 35px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy-block { padding-bottom: 5px; }
    .hero-visual { min-height: 480px; border-radius: 28px; }
    .hero-visual > img { min-height: 480px; }
    .how-layout { grid-template-columns: 1fr; }
    .section-intro.compact { max-width: 650px; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid article:nth-child(2) { border-right: 0; }
    .value-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .cta-card { grid-template-columns: 1fr; min-height: 430px; }
    .cta-content { padding: 48px; }
    .cta-image { inset: 0; opacity: .72; }
    .cta-card::after { background: linear-gradient(90deg, rgba(19,15,10,.97), rgba(19,15,10,.72) 70%, rgba(19,15,10,.5)); }
    .faq-contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid nav { display: none; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 32px, 1180px); }
    .hero { padding: 28px 0 48px; }
    .hero h1 { font-size: clamp(45px, 13vw, 62px); letter-spacing: -.05em; }
    .hero-copy { font-size: 17px; }
    .hero-actions .button { width: 100%; }
    .hero-benefits { grid-template-columns: 1fr; gap: 0; border-block: 1px solid var(--line); }
    .hero-benefits article { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .hero-benefits article:last-child { border-bottom: 0; }
    .benefit-icon { width: 44px; }
    .hero-benefits small { font-size: 11px; }
    .hero-visual { min-height: 410px; border-radius: 22px; }
    .hero-visual > img { min-height: 410px; }
    .hero-floating-card { left: 15px; right: 15px; bottom: 15px; max-width: none; }
    .section { padding: 66px 0; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { min-height: 240px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card:nth-child(4), .product-card:nth-child(5) { max-width: none; }
    .product-body { padding-inline: 12px; }
    .product-body h3 { font-size: 14px; }
    .product-price { font-size: 22px; }
    .value-grid { grid-template-columns: 1fr; }
    .value-grid article, .value-grid article:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
    .value-grid article:last-child { border-bottom: 0; }
    .cta-section { padding-top: 10px; }
    .cta-card { min-height: 500px; border-radius: 24px; }
    .cta-content { padding: 38px 26px; }
    .cta-actions .button { width: 100%; }
    .cta-image { left: 0; }
    .cta-card::after { background: linear-gradient(180deg, rgba(19,15,10,.98) 0%, rgba(19,15,10,.88) 62%, rgba(19,15,10,.5)); }
    .contact-panel { padding: 24px 18px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .footer-logo-box { margin-inline: auto; }
    .footer-brand p { margin-inline: auto; }
    .footer-contact { text-align: center; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
    .floating-whatsapp span { display: none; }
    .floating-whatsapp { width: 52px; height: 52px; min-height: 52px; padding: 0; justify-content: center; }
}

@media (max-width: 430px) {
    .container { width: min(100% - 28px, 1180px); }
    .brand-logo { width: 132px; }
    .section-kicker { font-size: 9px; letter-spacing: .14em; }
    .hero h1 { font-size: 44px; }
    .hero-copy { font-size: 16px; }
    .hero-visual { min-height: 350px; }
    .hero-visual > img { min-height: 350px; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { display: grid; grid-template-columns: 142px 1fr; align-items: stretch; }
    .product-image-wrap { aspect-ratio: auto; padding: 7px; border-bottom: 0; border-right: 1px solid #eee6dc; }
    .product-body { text-align: left; padding: 15px 12px; }
    .product-body h3 { min-height: 0; margin: 5px 0 4px; }
    .product-order { margin-top: 9px; }
    .product-badge { top: 8px; left: 8px; }
    .section-intro h2 { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Dinamik CMS ekleri */
.product-description { margin: 0 0 10px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.product-image-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted); background: #f4f1eb; font-size: 12px; }
@media (max-width: 1180px) { .products-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 720px) { .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 460px) { .products-grid { grid-template-columns: 1fr; } }
