:root {
    --ink: #073f3a;
    --muted: #5e7771;
    --paper: #f8fcfa;
    --surface: #ffffff;
    --green: #07845f;
    --green-dark: #00685a;
    --brand-teal: #007060;
    --brand-green: #10b050;
    --lime: #d9f7e2;
    --line: #d5e7e1;
    --danger: #b42318;
    --shadow: 0 18px 50px rgba(0, 112, 96, .11);
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.55; animation: page-in .35s ease-out both; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid rgba(0,112,96,.14); background: rgba(248,252,250,.94); backdrop-filter: blur(16px); }
.nav { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand-logo { width: 190px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions svg { width: 18px; height: 18px; }
.header-cart { min-width: 112px; min-height: 44px; display: inline-grid; grid-template-columns: 23px auto 22px; align-items: center; justify-content: center; gap: 8px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--surface); font-weight: 750; }
.header-cart-icon { width: 23px; height: 23px; }
.header-cart .badge { min-width: 22px; justify-content: center; }
.btn { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; cursor: pointer; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--surface); font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(28,55,44,.08); }
.btn-primary { color: #fff; border-color: var(--green); background: var(--green); }
.btn-primary:hover { background: var(--green-dark); }
.btn-link { padding-inline: 4px; border: 0; background: transparent; box-shadow: none; }
.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px; background: var(--lime); color: var(--green-dark); font-size: .8rem; font-weight: 800; }
.hero { padding: 88px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; }
.eyebrow { color: var(--green); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 14px; line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.25rem; }
.lead { max-width: 650px; color: var(--muted); font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-card { min-height: 430px; display: grid; align-content: end; padding: 34px; overflow: hidden; position: relative; border-radius: 36px; background: linear-gradient(145deg,#dff5ee,#a9e6c1); box-shadow: var(--shadow); }
.hero-card::before { content: '🥬'; position: absolute; top: 12%; right: 10%; font-size: 10rem; transform: rotate(9deg); filter: drop-shadow(0 20px 20px rgba(15,99,61,.14)); }
.hero-card strong { position: relative; font-size: 1.7rem; }
.section { padding: 64px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 8px 28px rgba(28,55,44,.05); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(28,55,44,.12); }
.card-body { padding: 22px; }
.product-image { height: 210px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg,#eaf7f2,#caecd7); color: var(--green); font-size: 4rem; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .9rem; }
.card-actions { display: flex; gap: 10px; margin-top: 18px; }
.price-row { display: flex; min-height: 42px; align-items: center; justify-content: space-between; gap: 12px; margin: 18px 0; }
.price { color: var(--green-dark); font-size: 1.45rem; }
.price small { margin-left: 3px; color: var(--muted); font-size: .8rem; font-weight: 650; }
.product-purchase { display: grid; grid-template-columns: 105px 1fr; align-items: end; gap: 10px; }
.product-purchase label, .hero-actions label, .cart-controls label { color: var(--muted); font-size: .78rem; font-weight: 750; }
.product-purchase input, .hero-actions input, .cart-controls input { margin-top: 5px; color: var(--ink); }
.product-link { display: inline-block; margin-top: 15px; color: var(--green-dark); font-size: .9rem; font-weight: 750; }
.page-head { padding: 56px 0 30px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter { padding: 9px 15px; cursor: pointer; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 700; }
.filter.active { color: #fff; border-color: var(--green); background: var(--green); }
.form-shell { width: min(680px, calc(100% - 32px)); margin: 56px auto; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 750; }
input, textarea { width: 100%; padding: 12px 14px; border: 1px solid #cbd8d0; border-radius: 11px; outline: none; background: #fff; }
input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(25,135,84,.12); }
.form-message { min-height: 24px; margin: 12px 0; color: var(--danger); }
.stack { display: grid; gap: 16px; }
.order-row, .cart-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.cart-row { grid-template-columns: 92px 1fr auto; }
.cart-thumb { width: 92px; height: 92px; display: grid; overflow: hidden; place-items: center; border-radius: 15px; background: linear-gradient(145deg,#eaf7f2,#caecd7); font-size: 2.5rem; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-product h3 { margin-bottom: 5px; }
.cart-product span { color: var(--green-dark); font-weight: 800; }
.cart-controls { display: grid; grid-template-columns: 110px auto auto; align-items: end; gap: 14px; }
.line-total { align-self: center; color: var(--green-dark); font-size: 1.1rem; }
.cart-summary { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
.cart-summary strong { color: var(--green-dark); font-size: 1.7rem; }
.quantity { width: 90px; }
.empty { padding: 42px; text-align: center; border: 1px dashed #b9c9bf; border-radius: 18px; color: var(--muted); }
.notice { position: fixed; z-index: 50; right: 20px; bottom: 20px; max-width: 380px; padding: 14px 18px; color: #fff; border-radius: 12px; background: var(--ink); box-shadow: var(--shadow); }
.cart-drawer-open { overflow: hidden; }
.cart-drawer-backdrop { position: fixed; z-index: 70; inset: 0; pointer-events: none; opacity: 0; background: rgba(4,35,31,.42); backdrop-filter: blur(3px); transition: opacity .28s ease; }
.cart-drawer-backdrop.open { pointer-events: auto; opacity: 1; }
.cart-drawer { width: min(470px,100%); display: flex; position: fixed; z-index: 71; top: 0; right: 0; bottom: 0; flex-direction: column; transform: translateX(105%); border-left: 1px solid rgba(0,112,96,.12); background: #fff; box-shadow: -24px 0 60px rgba(0,55,46,.18); transition: transform .32s cubic-bezier(.22,1,.36,1); }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 26px 20px; border-bottom: 1px solid var(--line); }
.cart-drawer-header .eyebrow { font-size: .72rem; }
.cart-drawer-header h2 { margin: 4px 0 0; font-size: 2rem; }
.cart-drawer-close { width: 44px; height: 44px; display: grid; flex: 0 0 auto; place-items: center; cursor: pointer; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #f7fbf9; font-size: 1.8rem; line-height: 1; transition: transform .2s ease, background .2s ease; }
.cart-drawer-close:hover { transform: rotate(6deg); background: #edf7f3; }
.cart-drawer-content { flex: 1; overflow-y: auto; padding: 8px 26px; overscroll-behavior: contain; }
.cart-drawer-item { display: grid; grid-template-columns: 82px minmax(0,1fr) auto; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-drawer-thumb { width: 82px; height: 82px; display: grid; overflow: hidden; place-items: center; border-radius: 15px; background: linear-gradient(145deg,#fbfdfc,#eaf5f0); font-size: 2rem; }
.cart-drawer-thumb img { width: 100%; height: 100%; padding: 5px; object-fit: contain; }
.cart-drawer-item-copy { min-width: 0; display: grid; gap: 3px; }
.cart-drawer-item-copy > a { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-drawer-item-copy > span { color: var(--muted); font-size: .78rem; font-weight: 700; }
.cart-drawer-item-actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.drawer-quantity { height: 34px; display: grid; grid-template-columns: 30px auto 30px; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.drawer-quantity button { height: 100%; cursor: pointer; border: 0; color: var(--brand-teal); background: transparent; font-size: 1rem; }
.drawer-quantity button:hover { background: #edf7f3; }
.drawer-quantity span { min-width: 48px; text-align: center; font-size: .76rem; font-weight: 850; }
.drawer-remove, .cart-drawer-continue { padding: 0; cursor: pointer; border: 0; color: var(--muted); background: transparent; font-size: .75rem; font-weight: 750; }
.drawer-remove { display: inline-flex; align-items: center; gap: 4px; }
.drawer-remove svg { width: 13px; height: 13px; }
.drawer-remove:hover { color: var(--danger); }
.cart-drawer-line-total { align-self: start; color: var(--brand-teal); font-size: .88rem; white-space: nowrap; }
.cart-drawer-footer { display: grid; gap: 11px; padding: 20px 26px 24px; border-top: 1px solid var(--line); background: #fbfdfc; }
.cart-drawer-total { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 3px; }
.cart-drawer-total span { color: var(--muted); font-size: .88rem; font-weight: 700; }
.cart-drawer-total strong { color: var(--brand-teal); font-size: 1.45rem; }
.cart-drawer-notes { display: grid; gap: 7px; }
.cart-drawer-notes > span { display: flex; align-items: center; gap: 7px; color: var(--ink); font-size: .82rem; font-weight: 800; }
.cart-drawer-notes > span svg { width: 17px; height: 17px; color: var(--brand-teal); }
.cart-drawer-notes textarea { min-height: 64px; resize: vertical; font-size: .86rem; }
.cart-drawer-whatsapp { width: 100%; color: #fff; border-color: #128c5a; background: linear-gradient(135deg,#128c5a,#20b96c); box-shadow: 0 9px 22px rgba(18,140,90,.22); }
.cart-drawer-whatsapp:hover { background: linear-gradient(135deg,#0e774b,#18a85f); }
.cart-drawer-whatsapp svg, .cart-drawer-checkout svg { width: 19px; height: 19px; }
.cart-drawer-checkout { width: 100%; color: var(--brand-teal); background: #fff; }
.cart-drawer-continue { min-height: 34px; color: var(--brand-teal); }
.cart-drawer-empty { display: grid; min-height: 100%; align-content: center; justify-items: center; padding: 50px 20px; text-align: center; }
.cart-drawer-empty > span { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; color: var(--brand-teal); background: #edf7f3; }
.cart-drawer-empty > span svg { width: 34px; height: 34px; }
.cart-drawer-empty h3 { margin: 18px 0 6px; }
.cart-drawer-empty p { max-width: 290px; margin: 0; color: var(--muted); }
.product-modal-open { overflow: hidden; }
.product-modal-backdrop { position: fixed; z-index: 58; inset: 0; pointer-events: none; opacity: 0; background: rgba(3,35,30,.52); backdrop-filter: blur(6px); transition: opacity .25s ease; }
.product-modal-backdrop.open { pointer-events: auto; opacity: 1; }
.product-modal { display: grid; position: fixed; z-index: 59; inset: 0; padding: 28px; pointer-events: none; place-items: center; opacity: 0; transition: opacity .2s ease; }
.product-modal.open { pointer-events: auto; opacity: 1; }
.product-modal-panel { width: min(980px,100%); max-height: min(720px,calc(100vh - 56px)); overflow: hidden; position: relative; transform: translateY(18px) scale(.985); border: 1px solid rgba(0,112,96,.14); border-radius: 28px; background: #fff; box-shadow: 0 35px 90px rgba(0,52,43,.28); transition: transform .3s cubic-bezier(.22,1,.36,1); }
.product-modal.open .product-modal-panel { transform: translateY(0) scale(1); }
.product-modal-close { width: 44px; height: 44px; display: grid; position: absolute; z-index: 3; top: 18px; right: 18px; cursor: pointer; place-items: center; border: 1px solid rgba(0,112,96,.14); border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.92); box-shadow: 0 8px 22px rgba(0,60,50,.1); }
.product-modal-close:hover { color: #fff; background: var(--brand-teal); }
.product-modal-close svg { width: 20px; height: 20px; }
.product-modal-content { min-height: 550px; display: grid; grid-template-columns: 1.05fr .95fr; overflow-y: auto; }
.product-modal-media { min-height: 550px; display: grid; place-items: center; overflow: hidden; position: relative; padding: 35px; background: radial-gradient(circle at 50% 45%,#fff 0%,#f4faf7 47%,#e5f2ec 100%); }
.product-modal-media > img { width: 100%; height: 100%; max-height: 480px; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(0,75,60,.13)); }
.product-modal-placeholder { width: 110px; height: 110px; display: grid; place-items: center; border-radius: 50%; color: var(--brand-teal); background: #fff; }
.product-modal-placeholder svg { width: 44px; height: 44px; }
.product-modal-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 64px 54px 48px; }
.product-modal-copy h2 { margin: 10px 0 17px; color: #073f3a; font-size: clamp(2.2rem,4vw,3.6rem); }
.product-modal-copy > p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.product-modal-facts { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 23px; color: #315b53; font-size: .78rem; font-weight: 800; }
.product-modal-facts span { display: inline-flex; align-items: center; gap: 6px; }
.product-modal-facts svg { width: 17px; height: 17px; color: var(--brand-teal); }
.product-modal-price { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding: 30px 0 18px; }
.product-modal-price > strong { color: var(--brand-teal); font-size: 1.9rem; }
.product-modal-price small { margin-left: 4px; color: var(--muted); font-size: .8rem; }
.product-modal-purchase > label { display: block; margin-bottom: 7px; color: var(--muted); font-size: .76rem; }
.product-modal-controls { display: grid; grid-template-columns: 150px minmax(180px,1fr); gap: 10px; }
.product-modal-controls .quantity-stepper, .product-modal-controls .catalog-add-button { height: 50px; }
.product-modal-skeleton { min-height: 550px; border-radius: 0; }
.product-modal-loading { align-self: center; padding: 55px; }
.product-modal-error { grid-column: 1 / -1; align-self: center; margin: 50px; }
.footer { margin-top: 70px; padding: 34px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-logo { width: 150px; height: auto; }
.hidden { display: none !important; }
.reveal { animation: reveal .45s ease-out both; }
.reveal:nth-child(2) { animation-delay: .05s; }
.reveal:nth-child(3) { animation-delay: .1s; }
.reveal:nth-child(4) { animation-delay: .15s; }
.skeleton { position: relative; overflow: hidden; border-radius: 10px; background: #e7eee9; }
.skeleton::after { content: ''; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg,transparent,rgba(255,255,255,.72),transparent); animation: shimmer 1.25s infinite; }
.skeleton-image { height: 210px; border-radius: 0; }
.skeleton-line { height: 16px; margin: 14px 0; }
.skeleton-line.short { width: 45%; }
.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.is-loading::after { content: ''; position: absolute; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.45); border-top-color: currentColor; border-radius: 50%; color: #fff; animation: spin .7s linear infinite; }
.btn:disabled { cursor: wait; opacity: .75; }

@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { to { transform: translateX(100%); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 820px) {
    .hero-grid, .grid { grid-template-columns: 1fr 1fr; }
    .hero-grid > :first-child { grid-column: 1 / -1; }
    .hero-card { min-height: 300px; grid-column: 1 / -1; }
    .nav-links { display: none; }
    .cart-row { grid-template-columns: 72px 1fr; }
    .cart-thumb { width: 72px; height: 72px; }
    .cart-controls { grid-column: 1 / -1; grid-template-columns: 1fr auto auto; }
    .product-modal { padding: 18px; }
    .product-modal-panel { max-height: calc(100vh - 36px); }
    .product-modal-content { grid-template-columns: 1fr; }
    .product-modal-media { min-height: 310px; padding: 25px; }
    .product-modal-media > img { max-height: 280px; }
    .product-modal-copy { padding: 38px 34px 34px; }
    .product-modal-copy h2 { font-size: 2.55rem; }
}

@media (max-width: 560px) {
    .grid, .form-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .hero { padding-top: 50px; }
    .hero-card::before { font-size: 7rem; }
    .nav { gap: 10px; }
    .nav-actions .account-label { display: none; }
    .brand-logo { width: 145px; }
    .form-shell { padding: 22px; }
    .product-purchase { grid-template-columns: 1fr; }
    .cart-controls { grid-template-columns: 1fr 1fr; }
    .cart-controls .remove-cart { grid-column: 1 / -1; }
    .footer-content { align-items: flex-start; flex-direction: column; }
    .cart-drawer-header { padding: 20px 18px 16px; }
    .cart-drawer-content { padding-inline: 18px; }
    .cart-drawer-footer { padding: 17px 18px 20px; }
    .cart-drawer-item { grid-template-columns: 70px minmax(0,1fr); }
    .cart-drawer-thumb { width: 70px; height: 70px; }
    .cart-drawer-line-total { grid-column: 2; margin-top: -6px; }
    .product-modal { align-items: end; padding: 0; }
    .product-modal-panel { width: 100%; max-height: 92vh; border-radius: 24px 24px 0 0; }
    .product-modal-media { min-height: 230px; padding: 18px; }
    .product-modal-media > img { max-height: 210px; }
    .product-modal-copy { padding: 30px 20px 24px; }
    .product-modal-copy h2 { padding-right: 32px; font-size: 2.1rem; }
    .product-modal-controls { grid-template-columns: 1fr; }
    .product-modal-price { padding-top: 24px; }
}

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

/* Landing page */
.landing-page { background: #fbfdfc; }
.landing-page .site-header { background: rgba(255,255,255,.94); }
.landing-page .nav { min-height: 78px; }
.landing-hero { overflow: hidden; position: relative; padding: 72px 0 42px; background: radial-gradient(circle at 72% 47%,rgba(162,231,190,.22),transparent 31%), linear-gradient(115deg,#fff 0%,#fbfdfc 55%,#f0faf5 100%); }
.landing-hero::before { width: 520px; height: 520px; content: ''; position: absolute; right: -220px; bottom: -330px; border-radius: 50%; background: rgba(16,176,80,.08); filter: blur(8px); }
.landing-hero-grid { min-height: 500px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.landing-hero-copy { position: relative; z-index: 2; }
.landing-hero-copy h1 { max-width: 670px; margin: 18px 0 20px; color: #073f3a; font-size: clamp(3.8rem,6.4vw,6.1rem); line-height: .98; }
.landing-hero-copy .lead { max-width: 650px; line-height: 1.7; }
.landing-hero-copy .hero-actions .btn { min-height: 52px; padding-inline: 22px; }
.landing-hero-copy .hero-actions svg { width: 18px; height: 18px; }
.landing-hero-card { min-height: 430px; display: flex; align-items: center; justify-content: flex-end; position: relative; padding: 28px 30px 30px; border: 1px solid rgba(0,112,96,.08); border-radius: 38px; background: linear-gradient(145deg,rgba(235,250,242,.86),rgba(170,235,194,.72)); box-shadow: 0 28px 65px rgba(0,112,96,.16); }
.landing-hero-card img { width: 118%; max-width: 660px; position: absolute; z-index: 2; top: -62px; right: -48px; filter: drop-shadow(0 26px 22px rgba(3,73,55,.2)); }
.landing-hero-card strong { max-width: 420px; position: relative; z-index: 3; margin-top: auto; margin-right: auto; color: #073f3a; font-size: clamp(1.35rem,2vw,1.8rem); line-height: 1.25; }
.landing-hero-glow { width: 85%; height: 62%; position: absolute; top: 9%; right: 0; border-radius: 50%; background: rgba(50,203,111,.24); filter: blur(50px); }
.featured-strip { position: relative; z-index: 4; padding: 13px 0 18px; border-block: 1px solid rgba(0,112,96,.09); background: rgba(255,255,255,.96); box-shadow: 0 15px 40px rgba(0,60,48,.06); }
.featured-strip-layout { display: grid; grid-template-columns: 205px minmax(0,1fr); align-items: center; gap: 24px; }
.featured-heading .eyebrow { font-size: .68rem; }
.featured-heading h2 { margin: 5px 0 0; font-size: 1.3rem; letter-spacing: -.025em; }
.featured-products-wrap { min-width: 0; display: grid; grid-template-columns: 38px minmax(0,1fr) 38px; align-items: center; gap: 9px; }
.featured-products { min-width: 0; display: flex; gap: 12px; overflow-x: auto; padding: 7px 2px 10px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.featured-products::-webkit-scrollbar { display: none; }
.featured-product { min-width: 250px; height: 92px; display: grid; flex: 0 0 auto; grid-template-columns: 82px minmax(0,1fr) 20px; align-items: center; gap: 12px; overflow: hidden; padding: 5px 13px 5px 5px; scroll-snap-align: start; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 8px 22px rgba(0,70,55,.07); transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.featured-product:hover { transform: translateY(-2px); border-color: rgba(0,132,95,.35); box-shadow: 0 12px 28px rgba(0,70,55,.12); }
.featured-product-image { width: 82px; height: 80px; display: grid; overflow: hidden; place-items: center; border-radius: 11px; background: linear-gradient(145deg,#f8fcfa,#e6f4ed); }
.featured-product-image img { width: 100%; height: 100%; padding: 4px; object-fit: contain; }
.featured-product-image { position: relative; }
.featured-product-image .featured-quality-seal { width: 31px; height: 31px; position: absolute; top: 5px; left: 5px; z-index: 2; padding: 0; object-fit: contain; filter: drop-shadow(0 3px 4px rgba(75,0,0,.3)); transform: rotate(-8deg); }
.featured-placeholder { color: var(--green); }
.featured-placeholder svg { width: 27px; height: 27px; }
.featured-product-copy { min-width: 0; display: grid; gap: 1px; }
.featured-product-copy > small { overflow: hidden; color: var(--muted); font-size: .63rem; text-overflow: ellipsis; white-space: nowrap; }
.featured-product-copy > strong { overflow: hidden; color: var(--ink); font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }
.featured-product-copy > span { color: var(--green-dark); font-size: .86rem; font-weight: 850; }
.featured-product-copy > span small { margin-left: 2px; color: var(--muted); font-size: .62rem; }
.featured-product > svg { width: 17px; height: 17px; color: var(--green); }
.featured-arrow { width: 38px; height: 38px; display: grid; cursor: pointer; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green-dark); background: #fff; }
.featured-arrow:hover { border-color: var(--green); background: #f0f9f5; }
.featured-arrow svg { width: 17px; height: 17px; }
.featured-loading { min-width: 250px; height: 92px; flex: 0 0 auto; border-radius: 15px; }
.featured-empty { margin: 0; color: var(--muted); }
.landing-process { padding-top: 70px; }
.landing-process .section-head { margin-bottom: 30px; }
.landing-process .section-head h2 { margin-top: 7px; font-size: clamp(2.25rem,4vw,3.65rem); }
.process-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.process-card { min-height: 300px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; overflow: hidden; position: relative; padding: 28px 16px 22px 28px; border: 1px solid rgba(0,112,96,.12); border-radius: 25px; background: radial-gradient(circle at 83% 40%,rgba(185,230,202,.25),transparent 45%),#fffdfa; box-shadow: 0 18px 42px rgba(28,55,44,.1); transition: transform .25s ease,box-shadow .25s ease; }
.process-card:hover { transform: translateY(-6px); box-shadow: 0 25px 55px rgba(28,55,44,.15); }
.process-copy { position: relative; z-index: 2; }
.process-number { display: inline-flex; min-width: 36px; height: 27px; align-items: center; justify-content: center; margin-bottom: 13px; border-radius: 999px; color: var(--green-dark); background: var(--lime); font-size: .75rem; font-weight: 900; }
.process-copy h3 { font-size: 1.35rem; }
.process-copy p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.55; }
.process-card img { width: 120%; max-width: 255px; justify-self: end; filter: drop-shadow(0 16px 15px rgba(0,70,55,.12)); }

@media (max-width: 980px) {
    .landing-hero-grid { grid-template-columns: 1fr; gap: 55px; }
    .landing-hero-copy { text-align: center; }
    .landing-hero-copy .lead { margin-inline: auto; }
    .landing-hero-copy .hero-actions { justify-content: center; }
    .landing-hero-card { width: min(620px,100%); min-height: 390px; justify-self: center; }
    .featured-strip-layout { grid-template-columns: 1fr; gap: 6px; }
    .featured-heading { display: flex; align-items: baseline; justify-content: space-between; }
    .process-grid { grid-template-columns: 1fr; }
    .process-card { min-height: 250px; grid-template-columns: 1fr 1fr; }
    .process-card img { width: min(100%,270px); justify-self: center; }
}

@media (max-width: 600px) {
    .landing-hero { padding: 44px 0 30px; }
    .landing-hero-grid { min-height: auto; gap: 38px; }
    .landing-hero-copy h1 { font-size: clamp(2.75rem,13vw,4rem); }
    .landing-hero-copy .lead { font-size: 1rem; }
    .landing-hero-copy .hero-actions { display: grid; grid-template-columns: 1fr; }
    .landing-hero-card { min-height: 300px; padding: 20px; border-radius: 26px; }
    .landing-hero-card img { width: 116%; top: -38px; right: -32px; }
    .landing-hero-card strong { font-size: 1.18rem; }
    .featured-strip { padding-block: 18px; }
    .featured-products-wrap { grid-template-columns: minmax(0,1fr); }
    .featured-arrow { display: none; }
    .featured-product { min-width: min(82vw,270px); }
    .landing-process { padding-top: 54px; }
    .landing-process .section-head h2 { font-size: 2.35rem; }
    .process-card { min-height: 290px; grid-template-columns: .9fr 1.1fr; padding: 24px 10px 20px 22px; }
    .process-card img { width: 122%; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.catalog-page { background: #f3f8f6; }
.catalog-container { width: min(1400px, calc(100% - 48px)); margin-inline: auto; }
.catalog-page .site-header { background: rgba(255,255,255,.96); }
.catalog-page .site-header .container { width: min(1400px, calc(100% - 48px)); }
.catalog-page .nav { min-height: 84px; }
.catalog-page .nav-links a { position: relative; padding: 30px 5px; color: var(--muted); font-weight: 700; }
.catalog-page .nav-links a:first-child { color: var(--brand-teal); }
.catalog-page .nav-links a:first-child::after { content: ''; position: absolute; right: 4px; bottom: 18px; left: 4px; height: 2px; border-radius: 2px; background: linear-gradient(90deg,var(--brand-teal),var(--brand-green)); }

.catalog-hero { position: relative; overflow: hidden; border-bottom: 1px solid rgba(0,112,96,.08); background: radial-gradient(ellipse at 78% 42%,rgba(141,203,166,.42) 0%,rgba(220,240,229,.72) 27%,rgba(245,250,247,.44) 52%,transparent 70%), linear-gradient(105deg,#fff 0%,#fbfdfc 40%,#e7f3ec 100%); }
.catalog-hero::before { width: 760px; height: 310px; content: ''; position: absolute; top: -185px; right: -70px; border-radius: 0 0 45% 55%; background: rgba(255,255,255,.44); transform: rotate(-4deg); }
.catalog-hero::after { width: 430px; height: 530px; content: ''; position: absolute; left: 37%; bottom: -210px; opacity: .18; background: radial-gradient(ellipse,rgba(0,112,96,.22),transparent 68%); transform: rotate(-25deg); }
.catalog-hero-grid { min-height: 620px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 18px; }
.catalog-hero-copy { z-index: 3; padding: 68px 0 110px; }
.catalog-hero-copy .eyebrow { letter-spacing: .18em; }
.catalog-hero-copy h1 { max-width: 670px; margin: 18px 0 20px; color: #073f3a; font-family: Inter,ui-sans-serif,system-ui,sans-serif; font-size: clamp(3.8rem,6.4vw,6.1rem); font-weight: 700; line-height: .98; letter-spacing: -.035em; }
.catalog-hero-copy h1 span { display: block; }
.catalog-hero-copy .lead { max-width: 570px; color: #526963; font-size: 1.15rem; line-height: 1.72; }
.catalog-highlights { display: flex; flex-wrap: wrap; gap: 13px 27px; margin-top: 27px; color: #173f38; font-size: .88rem; font-weight: 800; }
.catalog-highlights > span { display: inline-flex; align-items: center; gap: 9px; }
.catalog-highlights svg { width: 38px; height: 38px; padding: 9px; border: 1px solid rgba(0,112,96,.15); border-radius: 50%; color: var(--brand-teal); background: rgba(255,255,255,.55); }
.catalog-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.catalog-hero-actions a { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 12px 22px; border: 1px solid rgba(0,112,96,.24); border-radius: 12px; font-size: .9rem; font-weight: 850; transition: transform .2s ease,box-shadow .2s ease,background .2s ease; }
.catalog-hero-actions a:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,112,96,.13); }
.catalog-hero-actions svg { width: 19px; height: 19px; }
.catalog-hero-primary { min-width: 230px; color: #fff; border-color: var(--brand-teal) !important; background: linear-gradient(135deg,#007b5d,#00966c); box-shadow: 0 10px 24px rgba(0,112,96,.2); }
.catalog-hero-primary svg:last-child { margin-left: auto; }
.catalog-hero-secondary { min-width: 170px; color: var(--brand-teal); background: rgba(255,255,255,.48); }
.catalog-hero-visual { min-height: 570px; display: flex; align-items: flex-end; justify-content: center; align-self: end; position: relative; z-index: 2; }
.catalog-hero-visual img { z-index: 2; width: min(790px,118%); max-width: none; max-height: 535px; object-fit: contain; filter: drop-shadow(0 30px 32px rgba(0,58,49,.18)); transform: translate(45px,18px) scale(1.08); }
.hero-glow { position: absolute; width: 610px; height: 330px; right: 0; bottom: 35px; border-radius: 50%; background: rgba(16,176,80,.18); filter: blur(65px); }

.catalog-content { padding: 0 0 70px; }
.catalog-toolbar { position: relative; z-index: 4; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: -48px; padding: 18px 20px; border: 1px solid rgba(0,112,96,.11); border-radius: 26px; background: rgba(255,255,255,.96); box-shadow: 0 20px 54px rgba(0,80,65,.12); backdrop-filter: blur(18px); }
.category-tabs { min-width: 0; display: flex; align-items: center; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab { min-height: 52px; display: inline-flex; flex: 0 0 auto; align-items: center; gap: 9px; padding: 10px 17px; cursor: pointer; border: 1px solid #dbe9e3; border-radius: 13px; color: #244f47; background: rgba(255,255,255,.75); font: inherit; font-size: .82rem; font-weight: 800; transition: .2s ease; }
.category-tab svg { width: 17px; height: 17px; }
.category-tab:hover { border-color: rgba(0,112,96,.15); background: #f1f8f5; }
.category-tab.active { color: #fff; border-color: var(--brand-teal); background: linear-gradient(135deg,#007b5d,#00966c); box-shadow: 0 9px 22px rgba(0,112,96,.23); }
.catalog-tools { display: flex; flex: 0 0 auto; gap: 9px; }
.catalog-search { width: 230px; position: relative; }
.catalog-search input { height: 52px; padding: 10px 42px 10px 15px; border-color: #d8e5e0; background: #fff; }
.catalog-search svg { width: 19px; position: absolute; top: 16px; right: 14px; fill: none; stroke: var(--brand-teal); stroke-linecap: round; stroke-width: 1.8; }
.filter-button { min-height: 52px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; cursor: pointer; border: 1px solid #d8e5e0; border-radius: 12px; color: #345b53; background: #fff; font: inherit; font-size: .82rem; font-weight: 800; }
.filter-button svg { width: 18px; fill: none; stroke: currentColor; stroke-linejoin: round; stroke-width: 1.7; }
.filter-button.active { color: #fff; border-color: var(--brand-teal); background: var(--brand-teal); }
.catalog-results-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 54px 2px 22px; scroll-margin-top: 110px; }
.catalog-results-head h2 { margin: 5px 0 0; font-size: clamp(2rem,3vw,2.8rem); }
.result-count { color: var(--muted); font-size: .9rem; font-weight: 700; }

.catalog-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.catalog-grid .product-card { min-width: 0; display: flex; overflow: hidden; flex-direction: column; border-color: rgba(0,112,96,.1); border-radius: 22px; box-shadow: 0 10px 32px rgba(0,67,56,.07); }
.catalog-grid .product-card:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(0,67,56,.13); }
.product-media { height: 270px; display: grid; flex: 0 0 auto; place-items: center; overflow: hidden; position: relative; margin: 12px 12px 0; border-radius: 16px; background: linear-gradient(145deg,#fbfdfc,#eef6f2); }
.product-modal-trigger { cursor: pointer; }
.product-media img { width: 100%; height: 100%; padding: 10px; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-media .quality-seal { width: 70px; height: 70px; position: absolute; z-index: 3; top: 14px; left: 14px; padding: 0; object-fit: contain; filter: drop-shadow(0 7px 7px rgba(75,0,0,.28)); transform: rotate(-8deg); transition: transform .25s ease; }
.product-card:hover .product-media .quality-seal { transform: rotate(-4deg) scale(1.06); }
.product-placeholder { font-size: 5rem; filter: drop-shadow(0 10px 12px rgba(0,80,60,.12)); }
.seasonal-badge { display: inline-flex; position: absolute; top: 12px; right: 12px; align-items: center; gap: 4px; padding: 5px 9px; border-radius: 999px; color: #fff; background: rgba(0,112,96,.9); font-size: .7rem; font-weight: 800; backdrop-filter: blur(8px); }
.seasonal-badge svg { width: 12px; height: 12px; }
.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 19px 18px 18px; }
.product-category { margin-bottom: 7px; color: var(--muted); font-size: .76rem; font-weight: 700; }
.product-card h3 { min-height: 2.35em; margin-bottom: 10px; color: #092f39; font-size: 1.14rem; letter-spacing: -.02em; }
.product-description { min-height: 4.8em; margin: 0; overflow: hidden; color: #4c625d; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; font-size: .88rem; line-height: 1.6; }
.product-card .price-row { margin: auto 0 14px; padding-top: 18px; }
.product-card .price { color: #007754; font-size: 1.35rem; }
.product-price-summary { min-width: 0; display: grid; gap: 3px; }
.product-total-preview { color: var(--brand-teal); font-size: .78rem; font-weight: 800; transition: color .2s ease,transform .2s ease; }
.product-total-preview.is-updated { color: #12a86f; transform: translateY(-1px); }
.product-modal-price .product-price-summary > strong { color: var(--brand-teal); font-size: 1.9rem; }
.product-purchase { display: grid; grid-template-columns: minmax(118px,1fr) minmax(116px,1fr); gap: 10px; }
.quantity-stepper { height: 46px; display: grid; grid-template-columns: 36px minmax(40px,1fr) 36px; align-items: center; overflow: hidden; border: 1px solid #d8e5e0; border-radius: 12px; background: #fff; }
.qty-step { height: 100%; cursor: pointer; border: 0; color: var(--brand-teal); background: transparent; font-size: 1.2rem; transition: background .2s ease; }
.qty-step svg { width: 17px; height: 17px; margin: auto; }
.qty-step:hover { background: #edf7f3; }
.quantity-stepper input { height: 100%; padding: 0; border: 0; border-radius: 0; text-align: center; appearance: textfield; font-weight: 850; box-shadow: none; }
.quantity-stepper input::-webkit-inner-spin-button { margin: 0; appearance: none; }
.catalog-add-button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border: 0; border-radius: 12px; color: #fff; background: linear-gradient(135deg,var(--brand-teal),#079366); font: inherit; font-size: .83rem; font-weight: 850; box-shadow: 0 8px 18px rgba(0,112,96,.2); transition: .2s ease; }
.catalog-add-button:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,112,96,.28); }
.catalog-add-button svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.catalog-empty { grid-column: 1 / -1; }
.catalog-pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 38px 0 12px; }
.pagination-pages { display: flex; align-items: center; gap: 7px; }
.catalog-pagination button { min-width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; border: 1px solid #d5e7e1; border-radius: 12px; color: #315b53; background: #fff; font: inherit; font-size: .84rem; font-weight: 800; box-shadow: 0 7px 18px rgba(0,80,65,.06); transition: transform .2s ease,border-color .2s ease,background .2s ease,color .2s ease; }
.catalog-pagination button:hover:not(:disabled) { transform: translateY(-2px); border-color: rgba(0,112,96,.35); color: var(--brand-teal); background: #f4faf7; }
.catalog-pagination button:disabled { cursor: default; opacity: .38; box-shadow: none; }
.catalog-pagination .pagination-direction { min-width: 126px; padding: 0 15px; }
.catalog-pagination svg { width: 17px; height: 17px; }
.pagination-page.active { color: #fff; border-color: var(--brand-teal); background: linear-gradient(135deg,#007b5d,#00966c); box-shadow: 0 9px 22px rgba(0,112,96,.22); }
.pagination-ellipsis { min-width: 25px; color: var(--muted); text-align: center; }

.catalog-services { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-bottom: 20px; padding: 28px 18px; border: 1px solid rgba(0,112,96,.09); border-radius: 24px; background: linear-gradient(120deg,#f7fbf9,#edf7f3); }
.catalog-services article { display: flex; align-items: flex-start; gap: 14px; padding: 10px 24px; border-right: 1px solid rgba(0,112,96,.1); }
.catalog-services article:last-child { border-right: 0; }
.service-icon { width: 44px; height: 44px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 14px; color: var(--brand-teal); background: #fff; font-size: 1.35rem; box-shadow: 0 7px 18px rgba(0,90,70,.08); }
.catalog-services h3 { margin: 2px 0 6px; font-size: .95rem; }
.catalog-services p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }

@media (max-width: 1220px) {
    .catalog-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .catalog-toolbar { align-items: stretch; flex-direction: column; }
    .catalog-tools { justify-content: flex-end; }
    .category-tabs { padding-bottom: 2px; }
}

@media (max-width: 900px) {
    .catalog-container, .catalog-page .site-header .container { width: min(100% - 30px,720px); }
    .catalog-hero-grid { min-height: auto; grid-template-columns: 1fr; }
    .catalog-hero-copy { padding: 54px 0 18px; }
    .catalog-hero-copy h1 { font-size: clamp(3.8rem,6.4vw,6.1rem); }
    .catalog-hero-visual { min-height: 300px; }
    .catalog-hero-visual img { width: 100%; max-width: 720px; max-height: 330px; transform: translateY(12px) scale(1.06); }
    .catalog-toolbar { margin-top: -28px; }
    .catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .catalog-services { grid-template-columns: repeat(2,1fr); }
    .catalog-services article:nth-child(2) { border-right: 0; }
    .catalog-services article:nth-child(-n+2) { border-bottom: 1px solid rgba(0,112,96,.1); }
}

@media (max-width: 600px) {
    .catalog-container, .catalog-page .site-header .container { width: calc(100% - 22px); }
    .catalog-hero-copy { min-width: 0; padding-top: 40px; }
    .catalog-hero-copy h1 { margin-top: 16px; font-size: clamp(2.75rem,13vw,4rem); }
    .catalog-hero-copy .lead { font-size: 1rem; }
    .catalog-highlights { align-items: flex-start; flex-direction: column; }
    .catalog-hero-actions { display: grid; grid-template-columns: 1fr; }
    .catalog-hero-actions a { width: 100%; min-width: 0; }
    .catalog-hero-visual { min-height: 235px; }
    .catalog-hero-visual img { width: 118%; max-width: none; max-height: 255px; transform: translate(14px,10px) scale(1.05); }
    .catalog-toolbar { margin-top: -18px; padding: 11px; border-radius: 16px; }
    .catalog-tools { flex-direction: column; }
    .catalog-search { width: 100%; }
    .filter-button { justify-content: center; }
    .catalog-results-head { padding-top: 38px; }
    .catalog-grid { grid-template-columns: 1fr; gap: 17px; }
    .product-media { height: 310px; }
    .product-description { min-height: auto; }
    .catalog-pagination { gap: 8px; margin-top: 25px; }
    .catalog-pagination .pagination-direction { min-width: 44px; width: 44px; padding: 0; }
    .catalog-pagination .pagination-direction span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    .pagination-pages { gap: 5px; }
    .catalog-pagination button { min-width: 40px; height: 40px; border-radius: 10px; }
    .catalog-services { grid-template-columns: 1fr; }
    .catalog-services article { border-right: 0; border-bottom: 1px solid rgba(0,112,96,.1); }
    .catalog-services article:last-child { border-bottom: 0; }
}

/* Shared responsive refinement */
html { -webkit-text-size-adjust: 100%; }
body, main, .site-header, .nav, .nav > *, .nav-actions, .nav-links { min-width: 0; }
body { width: 100%; overflow-x: clip; }
html, body { touch-action: pan-y; }
.nav-links a { display: inline-flex; align-items: center; gap: 7px; }
.nav-links svg { width: 17px; height: 17px; }
.catalog-results-actions { display: flex; align-items: center; gap: 14px; }
.catalog-carousel-controls { display: none; align-items: center; gap: 7px; }
.catalog-carousel-controls button { width: 42px; height: 42px; display: grid; cursor: pointer; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--brand-teal); background: #fff; box-shadow: 0 6px 16px rgba(0,80,65,.08); }
.catalog-carousel-controls svg { width: 18px; height: 18px; }
.auth-page { background: radial-gradient(circle at 50% 15%,#fff 0%,#f3faf7 48%,#edf7f3 100%); }
.auth-main { min-height: calc(100vh - 210px); display: grid; align-items: center; padding: 20px 0; }
.auth-form { width: min(680px,calc(100% - 32px)); }
.auth-form-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.auth-form-head h2 { margin: 3px 0 0; }
.auth-form-icon { width: 52px; height: 52px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid rgba(0,112,96,.13); border-radius: 16px; color: var(--brand-teal); background: #edf8f3; }
.auth-form-icon svg { width: 24px; height: 24px; }
.remember-row { display: inline-flex; width: fit-content; align-items: center; gap: 9px; cursor: pointer; }
.remember-row input { width: 20px; height: 20px; margin: 0; accent-color: var(--green); }
.auth-form-actions { display: flex; align-items: center; gap: 10px; }
.auth-form-actions .btn svg { width: 18px; height: 18px; }
.auth-alternative { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; text-align: center; }
.auth-alternative a { color: var(--brand-teal); font-weight: 800; }
.order-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(0,67,56,.06); }
.order-card-header, .order-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; }
.order-card-header { width: 100%; cursor: pointer; border: 0; border-bottom: 1px solid var(--line); color: inherit; background: #fff; font: inherit; text-align: left; }
.order-card-header > div, .order-card-footer > div { display: grid; gap: 2px; }
.order-card-label, .order-card-footer span { color: var(--muted); font-size: .74rem; font-weight: 700; }
.order-card-header > div > strong { color: var(--ink); font-size: 1.08rem; }
.order-card-toggle-meta { display: flex; align-items: center; gap: 10px; }
.order-card-toggle-meta > svg { width: 20px; height: 20px; color: var(--brand-teal); transition: transform .22s ease; }
.order-card.expanded .order-card-toggle-meta > svg { transform: rotate(180deg); }
.order-card-details[hidden] { display: none; }
.order-products { display: grid; padding: 4px 20px; }
.order-product { display: grid; grid-template-columns: 72px minmax(0,1fr) auto; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid #e7f0ec; }
.order-product:last-child { border-bottom: 0; }
.order-product-image { width: 72px; height: 72px; display: grid; overflow: hidden; place-items: center; border-radius: 15px; color: var(--brand-teal); background: linear-gradient(145deg,#fbfdfc,#e8f4ef); }
.order-product-image img { width: 100%; height: 100%; padding: 4px; object-fit: contain; }
.order-product-image svg { width: 25px; height: 25px; }
.order-product-copy { min-width: 0; display: grid; gap: 4px; }
.order-product-copy strong { overflow: hidden; color: var(--ink); text-overflow: ellipsis; white-space: nowrap; }
.order-product-copy span { color: var(--muted); font-size: .82rem; }
.order-product-total { color: var(--brand-teal); font-size: .9rem; white-space: nowrap; }
.order-note { display: flex; align-items: flex-start; gap: 9px; margin: 0 20px 14px; padding: 11px 13px; border-radius: 12px; color: #315b53; background: #f0f8f4; font-size: .82rem; }
.order-note svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; color: var(--brand-teal); }
.order-card-footer { border-top: 1px solid var(--line); background: #fbfdfc; }
.order-card-footer time { font-size: .88rem; font-weight: 750; }
.order-card-total { justify-items: end; }
.order-card-total strong { color: var(--brand-teal); font-size: 1.25rem; }

@media (max-width: 700px) {
    .container { width: calc(100% - 24px); }
    .site-header { position: sticky; }
    .nav, .catalog-page .nav { min-height: 0; display: grid; grid-template-columns: minmax(112px,1fr) auto; gap: 9px 10px; padding: 10px 0 8px; }
    .brand { grid-column: 1; grid-row: 1; overflow: hidden; }
    .brand-logo, .catalog-page .brand-logo { width: 132px; max-width: 100%; }
    .nav-actions, .catalog-page .nav-actions { display: flex; grid-column: 2; grid-row: 1; flex: 0 0 auto; gap: 5px; margin: 0; }
    .nav-actions .btn, .catalog-page .nav-actions .btn { width: 42px; min-width: 42px; min-height: 42px; flex: 0 0 42px; padding: 0; border: 1px solid var(--line); border-radius: 12px; }
    .header-cart, .nav-actions .header-cart, .catalog-page .header-cart { width: 72px !important; min-width: 72px !important; max-width: 72px !important; min-height: 44px; display: inline-grid !important; grid-template-columns: 23px 22px !important; flex: 0 0 72px !important; gap: 7px; padding: 0 9px !important; font-size: inherit; }
    .nav-actions .header-register, .catalog-page .header-register { display: inline-flex; border-color: var(--green); }
    .nav-actions .nav-action-label { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    .nav-actions svg { width: 21px; height: 21px; }
    .site-header .header-cart-icon { width: 23px !important; min-width: 23px !important; max-width: 23px !important; height: 23px !important; flex: 0 0 23px !important; stroke-width: 2 !important; }
    .header-cart .badge, .catalog-page .header-cart .badge { min-width: 22px; padding: 2px 6px; justify-content: center; font-size: .72rem; }
    .nav-links, .catalog-page .nav-links { min-width: 0; display: grid; grid-column: 1 / -1; grid-row: 2; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 6px; margin: 0; padding-top: 7px; border-top: 1px solid rgba(0,112,96,.09); }
    .nav-links a, .catalog-page .nav-links a { min-height: 36px; justify-content: center; padding: 7px 10px; border-radius: 10px; color: var(--muted); font-size: .78rem; font-weight: 750; }
    .nav-links a.active, .catalog-page .nav-links a.active { color: var(--brand-teal); background: #eaf6f1; }
    .catalog-page .nav-links a:first-child { padding: 7px 10px; color: var(--muted); }
    .catalog-page .nav-links a.active:first-child { color: var(--brand-teal); }
    .catalog-page .nav-links a:first-child::after { display: none; }

    h1 { font-size: clamp(2.35rem,11vw,3.15rem); }
    h2 { font-size: clamp(1.9rem,8vw,2.45rem); }
    .lead { font-size: 1rem; line-height: 1.65; }
    .hero { padding: 38px 0 30px; }
    .hero-grid { display: flex; flex-direction: column; gap: 28px; }
    .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 24px; }
    .hero-actions .btn { min-width: 0; padding-inline: 12px; text-align: center; }
    .hero-card { width: 100%; min-height: 255px; padding: 24px; border-radius: 25px; }
    .hero-card::before { top: 7%; right: 8%; font-size: 7rem; }
    .hero-card strong { max-width: 75%; font-size: 1.25rem; }
    .section { padding: 42px 0; }
    .section-head { margin-bottom: 20px; }
    .section .grid { display: flex; gap: 14px; margin-right: -12px; padding: 3px 12px 18px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .section .grid::-webkit-scrollbar { display: none; }
    .section .grid > .card { flex: 0 0 min(82vw,320px); scroll-snap-align: start; }

    .form-shell { width: calc(100% - 24px); margin: 28px auto 44px; padding: 22px 18px; border-radius: 21px; box-shadow: 0 14px 38px rgba(0,112,96,.09); }
    .form-shell .eyebrow { font-size: .76rem; }
    .form-shell h2 { margin: 5px 0 24px; }
    .form-shell input, .form-shell textarea { min-height: 50px; font-size: 1rem; }
    .form-shell textarea { min-height: 105px; }
    .form-shell > .btn { width: 100%; margin-top: 3px; }
    .form-shell > .btn-link { margin-top: 5px; }
    .auth-main { min-height: auto; align-items: start; padding: 0; }
    .auth-form { margin-top: 24px; }
    .auth-form-head { gap: 12px; margin-bottom: 22px; }
    .auth-form-icon { width: 46px; height: 46px; border-radius: 14px; }
    .auth-form-head h2 { margin-bottom: 0; font-size: 2rem; }
    .auth-form-actions { align-items: stretch; flex-direction: column; gap: 6px; }
    .auth-form-actions .btn { width: 100%; }
    .form-grid { gap: 14px; }
    .page-head { padding: 36px 0 22px; }
    .page-head h1 { margin-top: 5px; }
    .order-row { align-items: start; grid-template-columns: 1fr; gap: 8px; padding: 17px; }
    .order-row > div:last-child { display: flex; align-items: center; justify-content: space-between; }
    .cart-row { grid-template-columns: 76px minmax(0,1fr); gap: 13px; padding: 14px; }
    .cart-thumb { width: 76px; height: 76px; }
    .cart-product h3 { font-size: 1rem; }
    .cart-controls { grid-column: 1 / -1; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
    .cart-controls .remove-cart { grid-column: 1 / -1; justify-self: start; }
    .footer { margin-top: 42px; padding: 27px 0; }
    .footer-content { align-items: flex-start; flex-direction: column; gap: 12px; }
    .footer-logo { width: 130px; }

    .catalog-container, .catalog-page .site-header .container { width: calc(100% - 24px); }
    .catalog-hero-grid { min-height: 0; display: grid; grid-template-columns: 1fr; gap: 0; }
    .catalog-hero-copy { display: block; padding: 34px 0 12px; }
    .catalog-hero-copy h1 { margin: 12px 0 16px; font-size: clamp(2.75rem,13vw,4rem); line-height: .98; }
    .catalog-hero-copy h1 span { display: inline; }
    .catalog-hero-copy .lead { font-size: .94rem; line-height: 1.58; }
    .catalog-highlights { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px; margin-top: 18px; }
    .catalog-highlights > span { min-width: 0; flex-direction: column; gap: 5px; text-align: center; font-size: .68rem; line-height: 1.25; }
    .catalog-highlights svg { width: 34px; height: 34px; padding: 8px; }
    .catalog-hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
    .catalog-hero-actions a { width: 100%; min-width: 0; min-height: 48px; padding: 9px 11px; font-size: .78rem; }
    .catalog-hero-primary svg:last-child { display: none; }
    .catalog-hero-copy { padding-bottom: 32px; }
    .catalog-hero-visual { display: none; }
    .catalog-content { padding-bottom: 42px; }
    .catalog-toolbar { gap: 10px; margin-top: 0; padding: 10px; border-radius: 18px; transform: translateY(-12px); }
    .category-tabs { width: calc(100% + 10px); margin-right: -10px; padding-right: 10px; }
    .category-tab { min-height: 44px; gap: 7px; padding: 8px 13px; border-radius: 11px; font-size: .76rem; }
    .catalog-tools { display: grid; grid-template-columns: minmax(0,1fr) 48px; gap: 8px; }
    .catalog-search { width: 100%; }
    .catalog-search input { height: 48px; }
    .catalog-search svg { top: 14px; }
    .filter-button { width: 48px; min-height: 48px; justify-content: center; padding: 0; }
    .filter-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    .catalog-results-head { align-items: end; padding: 34px 1px 16px; }
    .catalog-results-head .eyebrow { font-size: .7rem; }
    .catalog-results-head h2 { font-size: 2rem; }
    .catalog-results-actions { align-items: flex-end; flex-direction: column; gap: 7px; }
    .catalog-carousel-controls { display: flex; }
    .catalog-carousel-controls button { width: 38px; height: 38px; }
    .result-count { white-space: nowrap; font-size: .78rem; }
    .catalog-grid { display: flex; gap: 14px; margin-right: -12px; padding: 3px 12px 24px 1px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-padding-left: 1px; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .catalog-grid::-webkit-scrollbar { display: none; }
    .catalog-grid .product-card, .catalog-grid .skeleton-card { flex: 0 0 min(calc(100vw - 54px),350px); scroll-snap-align: start; }
    .catalog-grid .catalog-empty { flex: 0 0 100%; }
    .product-media { height: 225px; margin: 9px 9px 0; }
    .product-card-body { padding: 16px 15px 15px; }
    .product-card h3 { min-height: auto; font-size: 1.05rem; }
    .product-description { min-height: 4.6em; font-size: .83rem; -webkit-line-clamp: 3; }
    .product-card .price-row { padding-top: 14px; }
    .product-purchase { grid-template-columns: minmax(112px,1fr) minmax(105px,1fr); }
    .catalog-services { display: flex; gap: 10px; margin-right: 12px; padding: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .catalog-services::-webkit-scrollbar { display: none; }
    .catalog-services article { flex: 0 0 min(78vw,300px); padding: 13px; border: 0; border-radius: 14px; background: rgba(255,255,255,.7); scroll-snap-align: start; }
    .catalog-services article:nth-child(-n+2) { border-bottom: 0; }
    .service-icon { width: 40px; height: 40px; }
    .notice { right: 12px; bottom: 12px; left: 12px; max-width: none; text-align: center; }
    .product-modal { align-items: end; padding: 10dvh 0 0; }
    .product-modal-panel { width: 100%; max-height: 90dvh; border-radius: 28px 28px 0 0; box-shadow: 0 -24px 70px rgba(0,52,43,.22); }
    .product-modal-content { min-height: 0; display: block; overflow-y: auto; overscroll-behavior: contain; }
    .product-modal-media { min-height: 200px; height: 200px; padding: 17px; }
    .product-modal-media > img { max-height: 180px; }
    .product-modal-copy { min-height: auto; padding: 23px 20px calc(22px + env(safe-area-inset-bottom)); }
    .product-modal-copy h2 { margin: 6px 0 11px; padding-right: 25px; font-size: 1.9rem; }
    .product-modal-copy > p { font-size: .92rem; line-height: 1.5; }
    .product-modal-facts { gap: 8px 13px; margin-top: 14px; }
    .product-modal-price { padding: 17px 0 13px; }
    .product-modal-price .product-price-summary > strong { font-size: 1.7rem; }
    .product-modal-close { top: 14px; right: 14px; }
    .order-card { border-radius: 19px; }
    .order-card-header, .order-card-footer { padding: 15px; }
    .order-card-header { align-items: flex-start; }
    .order-card-toggle-meta { max-width: 62%; gap: 7px; }
    .order-card-header .badge { max-width: 100%; text-align: center; }
    .order-card-toggle-meta > svg { flex: 0 0 auto; }
    .order-products { padding: 3px 15px; }
    .order-product { grid-template-columns: 92px minmax(0,1fr); gap: 13px; padding: 14px 0; }
    .order-product-image { width: 92px; height: 92px; grid-row: 1 / span 2; }
    .order-product-copy strong { white-space: normal; }
    .order-product-total { grid-column: 2; }
    .order-note { margin: 0 15px 13px; }
    .order-card-footer { align-items: end; }
    .order-card-footer time { font-size: .8rem; }
    .order-card-total strong { font-size: 1.15rem; }
    .orders-page .page-head { padding: 28px 0 20px; }
    .orders-page .page-head h1 { font-size: 2.55rem; }
    .orders-page .page-head .lead { margin-bottom: 0; font-size: .92rem; line-height: 1.55; }
    .orders-page #orders { gap: 14px; }
}

@media (max-width: 380px) {
    .brand-logo, .catalog-page .brand-logo { width: 118px; }
    .nav-actions .btn, .catalog-page .nav-actions .btn { width: 39px; min-width: 39px; min-height: 39px; flex-basis: 39px; }
    .header-cart, .nav-actions .header-cart, .catalog-page .header-cart { width: 68px !important; min-width: 68px !important; max-width: 68px !important; flex-basis: 68px !important; gap: 5px; padding-inline: 8px !important; }
    .catalog-hero-copy h1 { font-size: clamp(2.75rem,13vw,4rem); }
    .catalog-hero-actions { grid-template-columns: 1fr; }
    .product-purchase { grid-template-columns: 1fr; }
    .product-modal { padding-top: 8dvh; }
    .product-modal-panel { max-height: 92dvh; }
}

/* Brand, authentication and feedback */
.brand-logo { width: 112px; height: 112px; object-fit: contain; object-position: left center; }
.footer { margin-top: 80px; padding: 0; overflow: hidden; border: 0; color: rgba(255,255,255,.78); background: radial-gradient(circle at 80% 0,rgba(35,190,113,.2),transparent 34%),linear-gradient(135deg,#063f37,#052d29 58%,#041f1d); }
.footer-content { display: grid; grid-template-columns: 1.5fr .75fr 1.15fr 1fr; align-items: start; gap: clamp(28px,4vw,66px); padding-block: 62px 44px; }
.footer-logo { width: 168px; height: 168px; object-fit: contain; object-position: left center; }
.footer-brand-column p { max-width: 340px; margin: 22px 0 0; line-height: 1.7; }
.footer-column { display: grid; align-content: start; gap: 10px; font-size: .88rem; }
.footer-column h2 { margin: 2px 0 10px; color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-column nav { display: grid; gap: 10px; }
.footer-column a, .footer-column > span { display: flex; align-items: flex-start; gap: 9px; color: rgba(255,255,255,.76); line-height: 1.55; transition: color .2s ease,transform .2s ease; }
.footer-column a:hover { transform: translateX(3px); color: #fff; }
.footer-column svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; color: #58d59a; }
.footer-company strong { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.58); font-size: .78rem; }

.whatsapp-redirect-page { min-height: 100dvh; display: grid; margin: 0; place-items: center; padding: 24px; background: radial-gradient(circle at 50% 20%,rgba(35,190,113,.17),transparent 32%),linear-gradient(180deg,#f8fcfa,#edf8f3); }
.whatsapp-redirect-card { width: min(440px,100%); display: grid; justify-items: center; padding: 44px 30px; border: 1px solid rgba(0,112,96,.16); border-radius: 28px; text-align: center; background: #fff; box-shadow: 0 28px 70px rgba(4,65,54,.13); }
.whatsapp-redirect-card img { width: 180px; height: 130px; object-fit: contain; }
.whatsapp-redirect-card h1 { margin: 20px 0 8px; font-size: 1.75rem; }
.whatsapp-redirect-card p { max-width: 330px; margin: 0; color: var(--muted); line-height: 1.6; }
.whatsapp-loader { width: 34px; height: 34px; margin-top: 22px; border: 3px solid #d8eee5; border-top-color: var(--brand-teal); border-radius: 50%; animation: spin .8s linear infinite; }

.auth-page { background: radial-gradient(circle at 12% 18%,rgba(35,190,113,.12),transparent 30%),linear-gradient(180deg,#f8fcfa,#eef8f4); }
.auth-page .site-header, .auth-page .footer { display: none; }
.auth-main { min-height: 100dvh; display: grid; place-items: center; padding: 34px 0; }
.auth-form { width: min(650px,calc(100% - 32px)); margin: 30px auto; padding: clamp(28px,4vw,46px); border-color: rgba(0,112,96,.16); box-shadow: 0 28px 70px rgba(4,65,54,.13); }
.auth-form-register { width: min(830px,calc(100% - 32px)); }
.auth-brand { display: flex; justify-content: center; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.auth-brand img { width: 160px; height: 160px; object-fit: contain; }
.auth-form-head { margin-bottom: 30px; }
.auth-form-head h2 { font-size: clamp(2.1rem,5vw,3rem); }
.auth-form input { min-height: 50px; transition: border-color .2s ease,box-shadow .2s ease,background .2s ease; }
.auth-form input.is-invalid { border-color: #d53c3c; background: #fff8f8; box-shadow: 0 0 0 3px rgba(213,60,60,.1); }
.auth-form .account-type-option input.is-invalid + .account-type-card { border-color: #d53c3c; background: #fff8f8; box-shadow: 0 0 0 3px rgba(213,60,60,.1); }
.field-error { display: flex; align-items: center; gap: 6px; margin-top: 7px; color: #b12f35; font-size: .75rem; font-weight: 750; line-height: 1.4; }
.field-error::before { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: currentColor; content: ''; }
.quantity-stepper.is-invalid, .quantity.is-invalid { border-color: #d53c3c; background: #fff8f8; box-shadow: 0 0 0 3px rgba(213,60,60,.1); }
.account-type-field { min-width: 0; margin: 0; padding: 0; border: 0; }
.account-type-field.full { grid-column: 1 / -1; }
.account-type-field legend { margin-bottom: 11px; font-size: .95rem; font-weight: 800; }
.account-type-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.account-type-option { min-width: 0; cursor: pointer; }
.account-type-option > input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.account-type-card { min-height: 112px; display: grid; grid-template-columns: 58px minmax(0,1fr) 24px; align-items: center; gap: 17px; padding: 20px; border: 1px solid #cadcd5; border-radius: 18px; background: #fff; transition: border-color .2s ease,background .2s ease,box-shadow .2s ease,transform .2s ease; }
.account-type-card:hover { transform: translateY(-2px); border-color: rgba(0,112,96,.4); }
.account-type-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; color: var(--brand-teal); background: #edf8f3; }
.account-type-icon svg { width: 27px; height: 27px; }
.account-type-card strong, .account-type-card small { display: block; }
.account-type-card strong { margin-bottom: 5px; color: var(--ink); font-size: 1.02rem; }
.account-type-card small { max-width: 250px; color: var(--muted); font-size: .78rem; font-weight: 600; line-height: 1.45; }
.account-type-check { color: var(--brand-teal); opacity: 0; transform: scale(.6); transition: opacity .2s ease,transform .2s ease; }
.account-type-option > input:checked + .account-type-card { border-color: var(--brand-teal); background: #f0faf6; box-shadow: 0 0 0 3px rgba(0,112,96,.09); }
.account-type-option > input:checked + .account-type-card .account-type-check { opacity: 1; transform: scale(1); }
.account-type-option > input:focus-visible + .account-type-card { outline: 3px solid rgba(0,112,96,.18); outline-offset: 2px; }
.password-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.password-label button { padding: 0; cursor: pointer; border: 0; color: var(--brand-teal); background: transparent; font: inherit; font-size: .72rem; font-weight: 800; }
.password-control { position: relative; }
.password-control input { padding-right: 52px; }
.password-toggle { width: 44px; height: 44px; display: grid; position: absolute; top: 3px; right: 4px; cursor: pointer; place-items: center; border: 0; border-radius: 9px; color: #37665d; background: transparent; }
.password-toggle:hover { background: #edf7f3; }
.password-toggle svg { width: 19px; height: 19px; }
.password-meter { height: 6px; overflow: hidden; margin-top: 3px; border-radius: 99px; background: #e5ece8; }
.password-meter span { width: var(--password-score,0%); height: 100%; display: block; border-radius: inherit; background: #d09827; transition: width .3s ease,background .3s ease; }
.password-meter[data-level="good"] span { background: #49a66f; }
.password-meter[data-level="strong"] span { background: linear-gradient(90deg,#149460,#29bf75); }
.password-hint { min-height: 17px; color: var(--muted); font-size: .7rem; }
.form-message { min-height: 0; display: none; align-items: flex-start; gap: 9px; margin: 16px 0; padding: 13px 15px; border: 1px solid transparent; border-radius: 12px; font-size: .86rem; font-weight: 700; }
.form-message:not(:empty) { display: flex; }
.form-message svg { width: 19px; height: 19px; flex: 0 0 auto; }
.form-message-error { color: #9c2929; border-color: #f0caca; background: #fff4f4; }
.form-message-success { color: #116b47; border-color: #bce6d1; background: #effaf4; }

.notice-stack { width: min(410px,calc(100% - 30px)); display: grid; position: fixed; z-index: 110; right: 18px; bottom: 18px; gap: 10px; pointer-events: none; }
.notice { max-width: none; display: grid; position: relative; inset: auto; grid-template-columns: 23px minmax(0,1fr) 30px; align-items: center; gap: 11px; overflow: hidden; padding: 15px 12px 15px 16px; pointer-events: auto; color: #fff; border: 1px solid rgba(255,255,255,.15); border-radius: 15px; background: #123d37; box-shadow: 0 18px 45px rgba(3,44,37,.25); animation: notice-in .3s cubic-bezier(.22,1,.36,1) both; }
.notice-success { background: linear-gradient(135deg,#087653,#0a9565); }
.notice-error { background: linear-gradient(135deg,#9e2f35,#c14848); }
.notice-warning { background: linear-gradient(135deg,#9b6711,#c58a22); }
.notice > svg { width: 21px; height: 21px; }
.notice-message { font-size: .84rem; font-weight: 750; line-height: 1.45; }
.notice-close { width: 30px; height: 30px; display: grid; cursor: pointer; place-items: center; border: 0; border-radius: 8px; color: #fff; background: rgba(255,255,255,.1); }
.notice-close svg { width: 16px; height: 16px; }
.notice-progress { height: 3px; position: absolute; right: 0; bottom: 0; left: 0; transform-origin: left; background: rgba(255,255,255,.55); animation: notice-progress 5s linear forwards; }
.notice-leaving { animation: notice-out .22s ease forwards; }

.pagination-pages { max-width: min(65vw,560px); padding: 3px; overflow-x: auto; scrollbar-width: none; }
.pagination-pages::-webkit-scrollbar { display: none; }

@keyframes notice-in { from { opacity: 0; transform: translateY(14px) scale(.97); } }
@keyframes notice-out { to { opacity: 0; transform: translateX(18px); } }
@keyframes notice-progress { to { transform: scaleX(0); } }

@media (max-width: 900px) {
    .footer-content { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 600px) {
    .brand-logo { width: 82px; height: 82px; }
    .footer { margin-top: 54px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; padding-block: 45px 34px; }
    .footer-brand-column p { margin-top: 14px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
    .auth-main { padding: 18px 0; }
    .auth-form, .auth-form-register { width: calc(100% - 22px); margin: 16px auto; padding: 24px 18px; border-radius: 20px; }
    .auth-brand { margin-bottom: 24px; padding-bottom: 22px; }
    .auth-brand img { width: 132px; height: 132px; }
    .auth-form-head { margin-bottom: 24px; }
    .auth-form-head h2 { font-size: 2rem; }
    .account-type-options { grid-template-columns: 1fr; }
    .account-type-options { gap: 10px; }
    .account-type-card { min-height: 88px; grid-template-columns: 48px minmax(0,1fr) 22px; gap: 13px; padding: 15px; }
    .account-type-icon { width: 48px; height: 48px; border-radius: 14px; }
    .account-type-icon svg { width: 23px; height: 23px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid > * { grid-column: 1; }
    .notice-stack { right: 12px; bottom: 12px; left: 12px; width: auto; }
    .notice { right: auto; bottom: auto; left: auto; text-align: left; }
    .catalog-pagination { max-width: 100%; }
    .pagination-pages { max-width: calc(100vw - 126px); }
    .pagination-pages .pagination-page { min-width: 38px; width: 38px; }
}

.catalog-page .catalog-container { width: min(1560px,calc(100% - 48px)); }
.catalog-page .catalog-toolbar { display: grid; align-items: stretch; gap: 0; margin-top: -58px; padding: 10px 16px 0; border-radius: 22px; }
.catalog-page .category-tabs { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(116px,1fr); gap: 4px; padding: 0; }
.catalog-page .category-tab { min-height: 88px; flex-direction: column; justify-content: center; gap: 8px; padding: 10px 12px; border: 0; border-radius: 14px 14px 0 0; color: #183f38; background: transparent; box-shadow: none; }
.catalog-page .category-tab > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--brand-teal); background: #eff8f4; transition: .2s ease; }
.catalog-page .category-tab svg { width: 21px; height: 21px; }
.catalog-page .category-tab strong { font-size: .78rem; line-height: 1.25; }
.catalog-page .category-tab:hover { border: 0; background: #f5faf7; }
.catalog-page .category-tab.active { color: #075b45; border: 0; background: linear-gradient(180deg,#eaf7f0,#f2faf6); box-shadow: inset 0 -3px 0 var(--brand-teal); }
.catalog-page .category-tab.active > span { color: #fff; background: linear-gradient(135deg,#087d5e,#16a66e); box-shadow: 0 8px 18px rgba(0,112,96,.18); }
.catalog-query-bar { display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding: 12px 0; border-top: 1px solid rgba(0,112,96,.08); }
.catalog-query-bar .catalog-search { width: min(390px,100%); }
.catalog-search button { width: 44px; height: 44px; display: grid; position: absolute; top: 4px; right: 4px; cursor: pointer; place-items: center; border: 0; border-radius: 10px; color: var(--brand-teal); background: #edf8f3; }
.catalog-search button:hover { color: #fff; background: var(--brand-teal); }
.catalog-search button svg { width: 19px; position: static; }
.catalog-query-bar .filter-button { position: relative; }
.filter-count { min-width: 21px; height: 21px; display: inline-grid; place-items: center; border-radius: 99px; color: #fff; background: var(--brand-teal); font-size: .68rem; }
.filter-button.active { color: var(--brand-teal); border-color: rgba(0,112,96,.35); background: #eef8f4; }
.catalog-shop-layout { display: grid; grid-template-columns: 270px minmax(0,1fr); align-items: start; gap: 28px; padding-top: 34px; }
.catalog-filter-panel { position: sticky; z-index: 5; top: 24px; overflow: hidden; border: 1px solid rgba(0,112,96,.12); border-radius: 20px; background: #fff; box-shadow: 0 14px 38px rgba(0,70,58,.07); }
.catalog-filter-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 20px 16px; border-bottom: 1px solid #e5efeb; }
.catalog-filter-head h2 { margin: 4px 0 0; font-size: 1.4rem; }
.catalog-filter-head .eyebrow { font-size: .64rem; }
.catalog-filter-head > button { width: 38px; height: 38px; display: none; cursor: pointer; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: var(--brand-teal); background: #fff; }
.catalog-filter-head > button svg { width: 18px; }
.catalog-filter-group { margin: 0; padding: 18px 20px; border: 0; border-bottom: 1px solid #e8f0ed; }
.catalog-filter-group legend { width: 100%; margin-bottom: 11px; color: #153f37; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.catalog-filter-select { display: block; position: relative; }
.catalog-filter-select select, .catalog-sort select { width: 100%; min-height: 44px; padding: 8px 38px 8px 12px; cursor: pointer; border: 1px solid #d9e7e2; border-radius: 11px; color: #254e47; background: #fff; font: inherit; font-size: .8rem; font-weight: 700; appearance: none; }
.catalog-filter-select > svg { width: 16px; position: absolute; top: 14px; right: 12px; pointer-events: none; color: var(--muted); }
.catalog-price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.catalog-price-inputs label { display: grid; gap: 6px; color: var(--muted); font-size: .7rem; font-weight: 800; }
.money-input { display: grid; grid-template-columns: 24px minmax(0,1fr); align-items: center; overflow: hidden; border: 1px solid #d9e7e2; border-radius: 10px; background: #fff; }
.money-input b { padding-left: 10px; color: var(--brand-teal); font-size: .78rem; }
.money-input input { width: 100%; height: 41px; padding: 7px 8px 7px 2px; border: 0; box-shadow: none; font-size: .78rem; }
.catalog-filter-hint { display: block; margin-top: 9px; color: var(--muted); font-size: .65rem; line-height: 1.45; }
.unit-filter-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.unit-filter-option { min-width: 0; cursor: pointer; }
.unit-filter-option input { position: absolute; opacity: 0; pointer-events: none; }
.unit-filter-option > span { min-height: 58px; display: grid; align-content: center; padding: 8px 9px; border: 1px solid #dce9e4; border-radius: 11px; text-align: center; background: #fff; transition: .2s ease; }
.unit-filter-option strong, .unit-filter-option small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.unit-filter-option strong { color: #17473e; font-size: .8rem; }
.unit-filter-option small { margin-top: 2px; color: var(--muted); font-size: .6rem; }
.unit-filter-option input:checked + span { border-color: var(--brand-teal); background: #edf8f3; box-shadow: 0 0 0 2px rgba(0,112,96,.08); }
.catalog-filter-loading { color: var(--muted); font-size: .75rem; }
.catalog-switch-row { display: grid; grid-template-columns: 37px minmax(0,1fr) 39px; align-items: center; gap: 10px; cursor: pointer; }
.catalog-switch-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 11px; color: var(--brand-teal); background: #edf8f3; }
.catalog-switch-icon svg { width: 18px; }
.catalog-switch-row strong, .catalog-switch-row small { display: block; }
.catalog-switch-row strong { color: #17443b; font-size: .76rem; }
.catalog-switch-row small { margin-top: 2px; color: var(--muted); font-size: .62rem; line-height: 1.35; }
.catalog-switch-row input { position: absolute; opacity: 0; pointer-events: none; }
.catalog-switch-control { width: 39px; height: 23px; position: relative; border-radius: 99px; background: #dce9e4; transition: .2s ease; }
.catalog-switch-control::after { width: 17px; height: 17px; content: ''; position: absolute; top: 3px; left: 3px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,45,38,.2); transition: .2s ease; }
.catalog-switch-row input:checked + .catalog-switch-control { background: var(--brand-teal); }
.catalog-switch-row input:checked + .catalog-switch-control::after { transform: translateX(16px); }
.catalog-filter-actions { display: grid; gap: 9px; padding: 18px 20px 20px; }
.catalog-filter-actions .btn { width: 100%; }
.catalog-filter-reset { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; border: 0; color: var(--brand-teal); background: transparent; font: inherit; font-size: .72rem; font-weight: 850; }
.catalog-filter-reset svg { width: 15px; }
.catalog-filter-backdrop { display: none; }
.catalog-products-column { min-width: 0; }
.catalog-products-column .catalog-results-head { padding: 0 2px 22px; }
.catalog-products-column .result-count { display: block; margin-top: 7px; }
.catalog-sort { min-width: 210px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .73rem; font-weight: 750; }
.catalog-sort select { min-width: 142px; }
.catalog-products-column .catalog-grid { grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); }

@media (max-width: 1100px) {
    .catalog-page .category-tabs { grid-auto-columns: minmax(108px,1fr); }
    .catalog-shop-layout { grid-template-columns: 240px minmax(0,1fr); gap: 20px; }
    .catalog-products-column .catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) {
    .catalog-page .catalog-container { width: min(100% - 30px,760px); }
    .catalog-page .catalog-toolbar { margin-top: -28px; padding-inline: 10px; }
    .catalog-page .category-tabs { grid-auto-columns: 108px; }
    .catalog-query-bar { padding: 10px 0; }
    .catalog-shop-layout { display: block; padding-top: 24px; }
    .catalog-filter-panel { width: min(360px,calc(100% - 34px)); height: 100dvh; position: fixed; z-index: 121; top: 0; right: 0; overflow-y: auto; border-radius: 22px 0 0 22px; transform: translateX(105%); transition: transform .28s cubic-bezier(.22,1,.36,1); }
    .catalog-filter-panel.open { transform: translateX(0); }
    .catalog-filter-head > button { display: grid; }
    .catalog-filter-backdrop { display: block; position: fixed; z-index: 120; inset: 0; pointer-events: none; opacity: 0; background: rgba(2,36,30,.45); backdrop-filter: blur(3px); transition: opacity .25s ease; }
    .catalog-filter-backdrop.open { pointer-events: auto; opacity: 1; }
    body.catalog-filters-open { overflow: hidden; }
    .catalog-products-column .catalog-results-head { padding-top: 8px; }
}

@media (max-width: 600px) {
    .catalog-page .catalog-container { width: calc(100% - 22px); }
    .catalog-page .catalog-toolbar { margin-top: 0; transform: translateY(-12px); }
    .catalog-page .category-tab { min-height: 76px; gap: 5px; padding: 8px; }
    .catalog-page .category-tab > span { width: 34px; height: 34px; }
    .catalog-query-bar { display: grid; grid-template-columns: minmax(0,1fr) auto; }
    .catalog-query-bar .filter-button { width: auto; min-width: 48px; padding-inline: 13px; }
    .catalog-query-bar .filter-button > span { position: static; width: auto; height: auto; overflow: visible; clip: auto; }
    .catalog-products-column .catalog-results-head { align-items: flex-start; padding-top: 4px; }
    .catalog-results-actions { align-items: flex-end; }
    .catalog-sort { min-width: 0; align-items: flex-end; flex-direction: column; gap: 4px; }
    .catalog-sort select { min-width: 150px; min-height: 40px; }
    .catalog-products-column .catalog-grid { display: flex; }
}

.catalog-site-header .nav { max-width: 1560px; min-height: 88px; }
.catalog-site-header .brand-logo { width: 128px; height: 76px; }
.catalog-site-header .nav-links { gap: 30px; margin-inline: auto 10px; }
.catalog-site-header .nav-links a { min-height: 54px; position: relative; color: #173f38; font-size: .82rem; font-weight: 850; }
.catalog-site-header .nav-links a::after { height: 2px; content: ''; position: absolute; right: 0; bottom: 0; left: 0; border-radius: 99px; background: var(--brand-teal); transform: scaleX(0); transition: transform .2s ease; }
.catalog-site-header .nav-links a:hover::after,
.catalog-site-header .nav-links a.active::after { transform: scaleX(1); }
.catalog-site-header .catalog-header-search { width: 220px; height: 44px; display: flex; align-items: center; position: relative; }
.catalog-site-header .catalog-header-search input { width: 100%; height: 100%; padding: 9px 42px 9px 16px; border: 1px solid #dbe7e2; border-radius: 99px; background: rgba(255,255,255,.92); box-shadow: 0 7px 20px rgba(22,73,62,.06); font: inherit; font-size: .77rem; }
.catalog-site-header .catalog-header-search svg { width: 18px; position: absolute; right: 15px; color: #154b41; }

.catalog-page .catalog-hero { min-height: 680px; border: 0; background: radial-gradient(circle at 50% 72%,rgba(184,226,179,.56),transparent 39%),linear-gradient(180deg,#fbfcf5 0%,#f5faed 58%,#ecf6e8 100%); }
.catalog-page .catalog-hero::before { width: 760px; height: 760px; top: 28px; right: 50%; border: 1px solid rgba(54,126,75,.09); border-radius: 50%; background: rgba(255,255,255,.3); transform: translateX(50%); }
.catalog-page .catalog-hero::after { display: none; }
.catalog-hero-centered { min-height: 680px; display: flex; align-items: center; flex-direction: column; position: relative; }
.catalog-page .catalog-hero-copy { z-index: 3; padding: 52px 0 0; text-align: center; }
.catalog-page .catalog-hero-copy .eyebrow { display: block; color: #08734f; font-size: .72rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.catalog-hero-flag { width: 54px; height: 5px; display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; margin: 13px auto 19px; border-radius: 99px; box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.catalog-hero-flag i:nth-child(1) { background: #159447; }
.catalog-hero-flag i:nth-child(2) { background: #fff; }
.catalog-hero-flag i:nth-child(3) { background: #d9292f; }
.catalog-page .catalog-hero-copy h1 { max-width: 850px; margin: 0 auto 15px; color: #083d32; font-family: Georgia,'Times New Roman',serif; font-size: clamp(3.3rem,5.7vw,5.9rem); font-weight: 700; line-height: .94; letter-spacing: -.045em; }
.catalog-page .catalog-hero-copy .lead { max-width: 600px; margin-inline: auto; color: #60736d; font-size: 1.02rem; line-height: 1.6; }
.catalog-page .catalog-hero-primary { min-width: 230px; min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; margin-top: 24px; padding: 12px 26px; border-radius: 99px; font-weight: 850; }
.catalog-page .catalog-hero-primary svg { width: 19px; }
.catalog-page .catalog-hero-visual { width: 100%; min-height: 300px; display: flex; align-items: flex-end; justify-content: center; z-index: 2; margin-top: -1px; }
.catalog-page .catalog-hero-visual img { width: min(940px,78vw); max-width: 100%; max-height: 330px; object-fit: contain; filter: drop-shadow(0 28px 26px rgba(30,74,48,.18)); transform: none; }
.catalog-floating-leaf { width: 52px; height: 25px; position: absolute; z-index: 1; border-radius: 100% 0 100% 0; opacity: .68; background: linear-gradient(135deg,#78bb32,#2e8f3c); filter: blur(.3px) drop-shadow(0 7px 7px rgba(43,99,42,.16)); transform: rotate(30deg); }
.catalog-floating-leaf::after { width: 80%; height: 1px; content: ''; position: absolute; top: 50%; left: 7%; background: rgba(255,255,255,.55); transform: rotate(-24deg); }
.catalog-floating-leaf.leaf-one { top: 135px; left: 11%; transform: rotate(-28deg) scale(.8); }
.catalog-floating-leaf.leaf-two { top: 165px; right: 12%; transform: rotate(42deg) scale(1.05); }
.catalog-floating-leaf.leaf-three { top: 290px; left: 19%; transform: rotate(76deg) scale(.55); }

.catalog-page .catalog-toolbar { margin-top: -16px; padding: 14px 18px 0; border-radius: 24px; }
.catalog-page .category-tabs { grid-auto-columns: minmax(210px,1fr); gap: 12px; }
.catalog-page .category-tab { min-height: 110px; display: grid; grid-template-columns: minmax(0,1fr) 86px; align-items: center; overflow: hidden; padding: 14px 10px 14px 17px; border: 1px solid color-mix(in srgb,var(--category-color) 68%,#cbded4); border-radius: 16px; text-align: left; background: linear-gradient(135deg,color-mix(in srgb,var(--category-color) 65%,#fff),color-mix(in srgb,var(--category-color) 92%,#fff)); box-shadow: 0 8px 22px rgba(33,81,66,.06); }
.catalog-page .category-tab:hover { border: 1px solid color-mix(in srgb,var(--category-color) 62%,#86ad9c); background: linear-gradient(135deg,color-mix(in srgb,var(--category-color) 48%,#fff),var(--category-color)); transform: translateY(-2px); }
.catalog-page .category-tab.active { color: #073f33; border: 1px solid rgba(0,112,80,.4); background: linear-gradient(135deg,color-mix(in srgb,var(--category-color) 62%,#fff),var(--category-color)); box-shadow: inset 0 -3px 0 var(--brand-teal),0 10px 24px rgba(0,112,80,.11); }
.catalog-page .category-tab > .category-tab-copy { width: auto; height: auto; display: grid; grid-template-columns: 22px minmax(0,1fr); align-items: center; gap: 2px 7px; padding: 0; border-radius: 0; color: #174c3d; background: none; }
.catalog-page .category-tab.active > .category-tab-copy { color: #075b45; background: none; box-shadow: none; }
.catalog-page .category-tab-copy svg { width: 18px; height: 18px; grid-row: 1 / span 2; }
.catalog-page .category-tab-copy strong { font-size: .83rem; }
.catalog-page .category-tab-copy small { color: #697e77; font-size: .63rem; font-weight: 700; }
.catalog-page .category-tab > .category-tab-media { width: 86px; height: 78px; display: grid; place-items: center; align-self: end; overflow: visible; border-radius: 0; color: #28795d; background: none; }
.catalog-page .category-tab-media img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 7px rgba(33,71,54,.14)); }
.catalog-page .category-tab-fallback { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.55); }
.catalog-page .category-tab-fallback svg { width: 27px; height: 27px; }

@media (max-width: 1280px) {
    .catalog-site-header .catalog-category-link { display: none; }
    .catalog-page .category-tabs { grid-auto-columns: minmax(190px,1fr); }
}

@media (max-width: 900px) {
    .catalog-site-header .catalog-header-search { display: none; }
    .catalog-site-header .nav-links a:first-child { display: none; }
    .catalog-site-header .nav-links { margin-left: auto; }
    .catalog-page .catalog-hero { min-height: 620px; }
    .catalog-hero-centered { min-height: 620px; }
    .catalog-page .catalog-hero-copy { padding-top: 40px; }
    .catalog-page .catalog-hero-visual { min-height: 255px; }
    .catalog-page .catalog-hero-visual img { width: min(760px,96vw); max-height: 270px; }
    .catalog-page .category-tabs { grid-auto-columns: 190px; }
}

@media (max-width: 600px) {
    .catalog-site-header .nav { min-height: auto; }
    .catalog-site-header .brand-logo { width: 86px; height: 82px; }
    .catalog-site-header .nav-links { width: 100%; order: 3; justify-content: center; margin: 0; border-top: 1px solid rgba(0,112,96,.09); }
    .catalog-site-header .nav-links a { min-height: 48px; }
    .catalog-page .catalog-hero { min-height: 590px; }
    .catalog-hero-centered { min-height: 590px; }
    .catalog-page .catalog-hero-copy { padding: 34px 4px 0; }
    .catalog-page .catalog-hero-copy h1 { font-size: clamp(2.7rem,13vw,4rem); }
    .catalog-page .catalog-hero-copy .lead { font-size: .91rem; }
    .catalog-page .catalog-hero-primary { min-height: 51px; margin-top: 18px; }
    .catalog-page .catalog-hero-visual { min-height: 225px; display: flex; margin-top: 12px; }
    .catalog-page .catalog-hero-visual img { width: 112%; max-width: none; max-height: 225px; }
    .catalog-floating-leaf { display: none; }
    .catalog-page .catalog-toolbar { margin-top: -8px; padding: 10px 10px 0; transform: none; }
    .catalog-page .category-tabs { grid-auto-columns: 174px; gap: 8px; }
    .catalog-page .category-tab { min-height: 94px; grid-template-columns: minmax(0,1fr) 64px; padding: 11px 7px 11px 13px; }
    .catalog-page .category-tab > .category-tab-media { width: 64px; height: 64px; }
}
