:root {
  --color-primary: #b64a34;
  --color-secondary: #f7ebd8;
  --color-accent: #657153;
  --ink: #291d16;
  --muted: #746860;
  --paper: var(--color-secondary);
  --surface: #ffffff;
  --line: color-mix(in srgb, var(--color-primary) 13%, var(--color-secondary));
  --primary-soft: color-mix(in srgb, var(--color-primary) 9%, white);
  --success: #17612d;
  --shadow: 0 14px 36px rgba(83, 51, 25, .09);
  --site-header-height: 78px;
  --category-bar-height: 61px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--site-header-height) + var(--category-bar-height) + 12px); }
body { margin: 0; background: radial-gradient(circle at 12% 12%, #fff 0, transparent 24%), var(--paper); }
body.panel-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }

.site-header { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--color-secondary) 94%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { width: min(1240px, calc(100% - 36px)); height: 78px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.catalog-brand { display: flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; min-width: 235px; }
.catalog-brand img, .logo-fallback { width: 44px; height: 44px; border-radius: 13px; object-fit: cover; flex: none; }
.logo-fallback { display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, color-mix(in srgb, var(--color-primary) 78%, var(--color-accent)), var(--color-primary)); font: italic 700 24px Georgia, serif; box-shadow: 0 7px 17px color-mix(in srgb, var(--color-primary) 22%, transparent); }
.brand-copy { align-self: stretch; display: flex; min-width: 0; align-items: center; }
.brand-copy strong { font: 700 24px/1 Georgia, serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.6vw, 38px); }
.site-nav a { position: relative; color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 650; white-space: nowrap; }
.site-nav a:hover, .site-nav a.active { color: var(--color-primary); }
.site-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -12px; height: 2px; border-radius: 2px; background: var(--color-primary); }
.header-cart { display: inline-flex; align-items: center; gap: 10px; min-width: 132px; padding: 8px 13px 8px 10px; border: 1px solid var(--success); border-radius: 11px; color: var(--success); background: rgba(255, 255, 255, .68); cursor: pointer; white-space: nowrap; }
.header-cart:hover { color: #fff; background: var(--success); box-shadow: 0 7px 18px rgba(23, 97, 45, .18); }
.header-cart:focus-visible { outline: 3px solid rgba(23, 97, 45, .24); outline-offset: 2px; }
.header-cart-icon { position: relative; display: grid; width: 27px; height: 27px; flex: none; place-items: center; }
.header-cart-icon svg { width: 24px; height: 24px; }
.header-cart-icon b { position: absolute; top: -8px; right: -8px; display: grid; min-width: 19px; height: 19px; padding: 0 5px; place-items: center; border: 2px solid var(--paper); border-radius: 99px; color: #fff; background: var(--color-primary); font-size: 10px; line-height: 1; }
.header-cart:hover .header-cart-icon b { border-color: var(--success); }
.header-cart-copy { display: flex; flex-direction: column; align-items: flex-start; }
.header-cart-copy strong { font-size: 13px; line-height: 1.15; }
.header-cart-copy small { margin-top: 2px; color: var(--ink); font-size: 10px; line-height: 1.15; }
.header-cart:hover .header-cart-copy small { color: #fff; }
.site-menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: #fff; padding: 10px; }
.site-menu-toggle span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: var(--ink); }

.hero-shell { width: min(1240px, calc(100% - 36px)); min-height: 430px; margin: 18px auto 0; display: grid; grid-template-columns: 40% 60%; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--color-secondary); box-shadow: var(--shadow); }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 4.6vw, 62px); background-color: var(--color-secondary); background-image: radial-gradient(color-mix(in srgb, var(--color-accent) 24%, transparent) .75px, transparent .75px); background-size: 8px 8px; }
.hero-copy::after { content: ""; position: absolute; right: -64px; top: -4%; width: 130px; height: 108%; z-index: -1; border-radius: 48% 58% 55% 45%; background: inherit; }
.hero-copy h1 { display: flex; flex-direction: column; margin: 0 0 12px; font: 800 clamp(38px, 4.2vw, 61px)/.92 Inter, sans-serif; letter-spacing: -.055em; }
.hero-copy h1 span, .hero-copy h1 em { display: block; }
.hero-copy h1 em { margin: 7px 0 9px; color: var(--color-primary); font: italic 500 clamp(42px, 4.5vw, 65px)/.8 Georgia, serif; letter-spacing: -.045em; }
.hero-copy > p { max-width: 390px; margin: 0; color: #504238; font-size: 16px; line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.hero-actions a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 20px; border-radius: 11px; font-size: 13px; font-weight: 800; text-decoration: none; }
.button-primary { border: 1px solid var(--color-primary); color: #fff; background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 78%, var(--color-accent)), var(--color-primary)); box-shadow: 0 9px 20px color-mix(in srgb, var(--color-primary) 20%, transparent); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px color-mix(in srgb, var(--color-primary) 28%, transparent); }
.hero-visual { position: relative; min-width: 0; overflow: hidden; border-radius: 96px 0 0 96px / 54% 0 0 54%; background: #382419; }
.hero-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(58, 30, 16, .12), transparent 35%, rgba(36, 20, 12, .08)); }
.hero-visual > picture { width: 100%; height: 100%; min-height: 430px; display: block; }
.hero-visual > picture > img { width: 100%; height: 100%; min-height: 430px; display: block; object-fit: cover; object-position: var(--hero-object-position); }
.availability { display: flex; align-items: center; gap: 7px; }
.availability > i { width: 8px; height: 8px; border-radius: 50%; background: #d94b42; box-shadow: 0 0 0 4px rgba(217, 75, 66, .18); }
.availability.open > i { background: #5ca94d; box-shadow: 0 0 0 4px rgba(92, 169, 77, .2); }
.hero-availability { position: absolute; z-index: 2; top: 17px; right: 17px; padding: 8px 12px; border-radius: 99px; color: #fff; background: rgba(34, 26, 20, .75); backdrop-filter: blur(8px); font-size: 11px; }
.house-favorite { position: absolute; z-index: 2; right: 28px; top: 54%; transform: translateY(-50%) rotate(2deg); display: flex; align-items: center; gap: 10px; padding: 18px 22px; border-radius: 52% 48% 48% 52% / 50% 45% 55% 50%; color: var(--color-primary); background: color-mix(in srgb, var(--color-secondary) 88%, white); box-shadow: 0 12px 25px rgba(23, 12, 5, .18); }
.house-favorite b { font-size: 21px; }
.house-favorite span { display: flex; flex-direction: column; font-size: 13px; font-weight: 800; }
.house-favorite em { margin-top: 3px; color: var(--ink); font: italic 18px Georgia, serif; }

.catalog-controls { width: min(940px, calc(100% - 36px)); margin: 13px auto 0; }
.search-box { display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 0 17px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 8px 23px rgba(77, 45, 22, .06); }
.search-box > span { color: var(--ink); font-size: 22px; }
.search-box input { width: 100%; padding: 13px 0; border: 0; outline: 0; color: var(--ink); background: transparent; }
.search-box input::placeholder { color: #958b84; }
.category-bar { position: sticky; top: var(--site-header-height); z-index: 35; margin-top: 13px; padding: 8px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--color-secondary) 96%, transparent); backdrop-filter: blur(14px); box-shadow: 0 7px 16px rgba(77, 45, 22, .05); }
.category-chips { width: min(940px, calc(100% - 36px)); display: flex; justify-content: flex-start; justify-content: safe center; gap: 12px; margin: 0 auto; overflow-x: auto; padding: 0 0 4px; scrollbar-width: none; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; }
.category-chips::-webkit-scrollbar { display: none; }
.category-chips button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; flex: 0 0 auto; min-width: 128px; padding: 10px 17px; border: 1px solid var(--line); border-radius: 99px; color: var(--ink); background: #fff; font-size: 12px; font-weight: 750; cursor: pointer; box-shadow: 0 5px 14px rgba(70, 42, 24, .04); }
.category-chips button span { font-size: 16px; }
.category-chips button .category-icon-default { display: inline-flex; color: var(--color-accent); }
.category-chips button .category-icon-default svg { width: 18px; height: 18px; }
.category-chips button:hover { border-color: var(--color-primary); color: var(--color-primary); }
.category-chips button.active { border-color: var(--color-primary); color: #fff; background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 78%, var(--color-accent)), var(--color-primary)); }
.category-chips button.active .category-icon-default { color: #fff; }

.catalog-section { width: min(1240px, calc(100% - 36px)); margin: 18px auto 64px; }
.featured-section { margin-top: 14px; }
.section-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.section-title > div > span { color: var(--color-primary); font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.section-title h2 { margin: 4px 0 0; font: 500 clamp(30px, 4vw, 44px)/1 Georgia, serif; }
.section-title > p { max-width: 380px; margin: 0; color: var(--muted); font-size: 13px; }
.compact-title { align-items: center; margin-bottom: 12px; }
.compact-title h2 { font: 800 18px Inter, sans-serif; letter-spacing: -.02em; }
.compact-title i { display: block; width: 34px; height: 2px; margin-top: 6px; background: var(--color-primary); }
.compact-title button { border: 0; color: var(--color-primary); background: none; font-size: 12px; font-weight: 800; cursor: pointer; }
.compact-title button span { margin-left: 7px; font-size: 24px; line-height: 0; vertical-align: -2px; }
.product-grid, .featured-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; outline: none; background: #fff; cursor: pointer; box-shadow: 0 8px 24px rgba(69, 40, 20, .06); }
.product-card:hover, .product-card:focus-visible { transform: translateY(-4px); border-color: color-mix(in srgb, var(--color-primary) 35%, transparent); box-shadow: var(--shadow); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 1.45; background: #eee5dc; }
.product-image > img, .image-placeholder { width: 100%; height: 100%; display: block; object-fit: cover; }
.image-placeholder { display: grid; place-items: center; background: linear-gradient(145deg, #efe4d8, #fff5ea); }
.image-placeholder span { color: var(--color-primary); opacity: .5; font: 60px Georgia, serif; }
.featured-badge { position: absolute; left: 9px; top: 9px; padding: 5px 8px; border-radius: 6px; color: #fff; background: var(--color-primary); font-size: 9px; font-weight: 850; }
.product-info { padding: 12px 13px 13px; }
.product-info > span, .modal-category { color: var(--color-primary); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.product-info h3 { min-height: 34px; margin: 5px 0 6px; font: 750 14px/1.2 Inter, sans-serif; }
.product-info p { min-height: 34px; margin: 0 0 12px; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: var(--muted); font-size: 11px; line-height: 1.45; }
.product-info > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-info > div strong { color: var(--color-primary); font-size: 14px; }
.product-add-icon { width: 31px; height: 31px; flex: none; display: grid; place-items: center; border-radius: 7px; color: #fff; background: var(--color-primary); font-size: 19px; }
.product-card:hover .product-add-icon, .product-card:focus-visible .product-add-icon { transform: scale(1.06); background: color-mix(in srgb, var(--color-primary) 86%, black); }
.all-products-section { padding-top: 24px; border-top: 1px solid var(--line); }
.category-groups { display: flex; flex-direction: column; gap: 48px; }
[data-scroll-section] { scroll-margin-top: calc(var(--site-header-height) + var(--category-bar-height) + 12px); }
.category-section-title { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; padding-bottom: 9px; border-bottom: 1px solid var(--line); }
.category-section-title h3 { margin: 0; outline: none; font: 700 22px/1.2 Georgia, serif; }
.category-section-title h3:focus-visible, [data-section-heading]:focus-visible { border-radius: 4px; box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 22%, transparent); }
.category-section-title span { color: var(--muted); font-size: 11px; }
.no-results, .empty-catalog { grid-column: 1 / -1; padding: 45px 20px; text-align: center; color: var(--muted); }

.benefits { width: min(1320px, calc(100% - 28px)); margin: 0 auto 0; padding: 20px clamp(20px, 4vw, 48px); display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 22px 22px 0 0; background: linear-gradient(100deg, color-mix(in srgb, var(--color-accent) 10%, white), var(--color-secondary) 48%, color-mix(in srgb, var(--color-primary) 6%, white)); }
.benefits article { min-width: 0; display: flex; align-items: center; gap: 14px; padding: 0 20px; border-right: 1px dashed #d9c8b8; }
.benefits article:first-child { padding-left: 0; }
.benefits article:last-child { padding-right: 0; border: 0; }
.benefit-icon { width: 44px; flex: 0 0 44px; color: #ef861d; text-align: center; font-size: 35px; line-height: 1; }
.benefit-icon.care { color: #dd4c13; }
.benefit-icon.whatsapp { color: var(--success); }
.benefits strong { font-size: 12px; }
.benefits p { margin: 5px 0 0; color: var(--muted); font-size: 10px; line-height: 1.45; }

.site-footer { color: #fff; background: #2d190d; }
.footer-main { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 52px 0 46px; display: grid; grid-template-columns: minmax(230px, 1.35fr) .7fr 1.15fr 1fr; gap: clamp(28px, 4vw, 62px); }
.footer-brand-link { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.footer-brand-link img, .footer-logo-fallback { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; object-fit: cover; }
.footer-logo-fallback { display: grid; place-items: center; color: #2d190d; background: #f1b368; font: 700 24px Georgia, serif; }
.footer-brand-link strong { font: 24px Georgia, serif; }
.footer-brand > p { max-width: 320px; margin: 16px 0 0; color: #d7c5b8; font-size: 12px; line-height: 1.65; }
.footer-status { width: fit-content; display: inline-flex; align-items: center; gap: 7px; margin-top: 17px; padding: 7px 10px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; color: #eaded5; background: rgba(255, 255, 255, .06); font-size: 10px; font-weight: 750; }
.footer-status i { width: 7px; height: 7px; border-radius: 50%; background: #e9a45e; box-shadow: 0 0 0 3px rgba(233, 164, 94, .14); }
.footer-status.open i { background: #69d078; box-shadow: 0 0 0 3px rgba(105, 208, 120, .14); }
.footer-block h2 { margin: 4px 0 17px; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-navigation { display: flex; flex-direction: column; align-items: flex-start; }
.footer-navigation a { min-height: 32px; display: inline-flex; align-items: center; color: #d7c5b8; font-size: 12px; text-decoration: none; transition: color .18s ease, transform .18s ease; }
.footer-navigation a:hover { color: #fff; transform: translateX(3px); }
.footer-contact { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
.footer-whatsapp, .footer-detail-link { min-height: 42px; display: flex; align-items: flex-start; gap: 10px; border-radius: 9px; color: #d7c5b8; font-size: 11px; line-height: 1.4; text-decoration: none; transition: color .18s ease, border-color .18s ease, background-color .18s ease; }
.footer-whatsapp { align-items: center; margin-bottom: 3px; padding: 9px 11px; border: 1px solid rgba(105, 208, 120, .3); color: #fff; background: rgba(39, 174, 96, .12); }
.footer-whatsapp:hover { border-color: rgba(105, 208, 120, .7); background: rgba(39, 174, 96, .2); }
.footer-whatsapp > span:first-child, .footer-detail-link > span:first-child { width: 22px; flex: 0 0 22px; color: #f1b368; text-align: center; font-size: 17px; line-height: 1.35; }
.footer-whatsapp > span:first-child { color: #69d078; }
.footer-whatsapp span, .footer-detail-link span { min-width: 0; overflow-wrap: anywhere; }
.footer-whatsapp small, .footer-detail-link small, .footer-payments small { display: block; margin-bottom: 2px; color: #a99384; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.footer-detail-link:hover { color: #fff; }
.footer-hours { display: grid; gap: 8px; }
.footer-hours > div { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255, 255, 255, .1); color: #d7c5b8; font-size: 11px; }
.footer-hours strong { color: #fff; font-size: 11px; font-weight: 700; white-space: nowrap; }
.footer-payments { margin-top: 18px; }
.footer-payments p { margin: 5px 0 0; color: #d7c5b8; font-size: 11px; line-height: 1.55; }
.isbyte-signature { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 max(24px, calc((100vw - 1180px) / 2)); color: #9f8979; background: #211208; font-size: 10px; }
.isbyte-signature a { display: inline-block; padding: 5px 8px; border-radius: 5px; color: #d7c5b8; font-size: 11px; line-height: 1.4; letter-spacing: .01em; text-decoration: none; transition: color .18s ease, background-color .18s ease; }
.isbyte-signature a:hover { color: #fff; background: rgba(255, 255, 255, .07); }
.footer-brand-link:focus-visible, .footer-navigation a:focus-visible, .footer-whatsapp:focus-visible, .footer-detail-link:focus-visible, .isbyte-signature a:focus-visible { outline: 2px solid #fff; outline-offset: 3px; color: #fff; }
.isbyte-signature strong { font-weight: 800; }

.overlay { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 18px; background: rgba(36, 24, 16, .64); backdrop-filter: blur(4px); }
.overlay[hidden] { display: none; }
.product-modal { position: relative; width: min(1050px, calc(100vw - 48px)); max-height: calc(100dvh - 48px); overflow: hidden; display: flex; flex-direction: column; border-radius: 22px; background: #fff; box-shadow: 0 30px 80px rgba(27, 15, 8, .32); }
.product-modal [hidden] { display: none !important; }
.product-modal-scroll { min-height: 0; display: flex; flex: 1; flex-direction: column; overflow: hidden; }
.product-modal-body { min-height: 0; overflow-y: auto; display: grid; grid-template-columns: minmax(0, 470px) minmax(360px, 1fr); gap: 26px; padding: 18px 24px 14px; }
.modal-close { width: 38px; height: 38px; border: 0; border-radius: 50%; color: var(--ink); background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,.12); font-size: 25px; cursor: pointer; }
.product-modal > .modal-close { position: absolute; right: 17px; top: 17px; z-index: 3; box-shadow: none; }
.product-modal > .modal-close:hover { background: #f8f2ed; }
.modal-gallery { min-width: 0; align-self: start; }
.modal-main-image, .modal-image-placeholder { overflow: hidden; aspect-ratio: 1; border-radius: 15px; background: #f1ebe5; }
.modal-main-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-image-placeholder { display: grid; place-content: center; color: var(--muted); text-align: center; }
.modal-image-placeholder span { display: block; margin-bottom: 5px; font-size: 52px; }
.product-modal.is-image-empty .modal-image-placeholder { height: clamp(330px, 48vh, 430px); aspect-ratio: auto; }
.gallery-strip { display: grid; grid-template-columns: 38px minmax(0, 1fr) 38px; align-items: center; gap: 8px; margin-top: 8px; }
.gallery-strip.single-image { grid-template-columns: minmax(0, 1fr); }
.gallery-arrow { width: 38px; height: 44px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fff; font-size: 23px; cursor: pointer; }
.gallery-arrow:hover { border-color: var(--color-primary); color: var(--color-primary); }
.gallery-thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: 80px; gap: 8px; min-width: 0; overflow-x: auto; padding: 2px; scrollbar-width: thin; }
.gallery-thumbs button { width: 80px; height: 66px; overflow: hidden; padding: 0; border: 3px solid transparent; border-radius: 10px; background: #f1ebe5; cursor: pointer; }
.gallery-thumbs button.active { border-color: var(--color-primary); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { display: flex; min-width: 0; flex-direction: column; padding: 10px 0 0; }
.modal-content h2 { margin: 0 48px 10px 0; font: 800 30px/1.15 Inter, Arial, sans-serif; }
.modal-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 11px; }
.modal-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px; border-radius: 9px; background: #f8f1eb; font-size: 13px; font-weight: 750; }
.modal-badge-featured { color: var(--color-primary); background: #fff0e7; }
.modal-description { min-height: 48px; margin: 0; color: var(--ink); font-size: 15px; line-height: 1.45; }
.modal-price { display: block; margin: 7px 0 15px; color: var(--color-primary); font-size: 27px; }
.modal-field-group { margin-bottom: 13px; }
.modal-field-group > label, .modal-notes > span:first-child { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 800; }
.quantity-control { display: inline-grid; grid-template-columns: 48px 62px 48px; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; }
.quantity-control button, .quantity-control output { display: grid; width: 100%; height: 45px; place-items: center; border: 0; border-right: 1px solid var(--line); background: #fff; font-size: 19px; }
.quantity-control button:last-child { border-right: 0; }
.quantity-control button { cursor: pointer; }
.quantity-control button:hover { color: var(--color-primary); background: #fff8f3; }
.quantity-control output { font-size: 14px; font-weight: 800; }
.quantity-limit { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }
.modal-notes { display: block; margin: 0 0 10px; }
.notes-box { position: relative; }
.modal-notes textarea, .checkout input, .checkout textarea { width: 100%; padding: 11px; border: 1px solid var(--line); border-radius: 9px; resize: vertical; }
.modal-notes textarea { min-height: 68px; padding-bottom: 25px; }
.notes-counter { position: absolute; right: 10px; bottom: 9px; color: var(--muted); font-size: 10px; pointer-events: none; }
.modal-actions { display: grid; gap: 10px; margin-top: auto; }
.add-button, .buy-button, .checkout-button { min-height: 49px; padding: 13px; border: 0; border-radius: 10px; font-weight: 800; cursor: pointer; }
.add-button, .checkout-button { color: #fff; background: var(--color-primary); }
.buy-button { color: var(--color-primary); background: #fff2ea; }
.add-button:hover, .checkout-button:hover { filter: brightness(.94); }
.buy-button:hover { background: #ffe8da; }
.product-recommendations { flex: none; min-width: 0; }
.modal-recommendations { padding: 13px 24px 15px; border-top: 1px solid #f0e6dd; background: #fff; }
.recommendations-heading { min-height: 32px; display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-bottom: 9px; }
.recommendations-heading span { display: block; margin-bottom: 2px; color: var(--color-primary); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.recommendations-heading h3 { margin: 0; font: 800 16px/1.15 Inter, Arial, sans-serif; }
.recommendations-heading p { min-width: 92px; margin: 0; color: var(--success); font-size: 10px; font-weight: 750; text-align: right; }
.recommendations-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; min-width: 0; }
.recommendation-card { min-width: 0; display: grid; grid-template-columns: 52px minmax(0, 1fr) 27px; gap: 8px; align-items: center; padding: 7px; border: 1px solid #ebdfd5; border-radius: 11px; color: var(--ink); background: #fffaf6; text-align: left; cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.recommendation-card:hover { border-color: var(--color-primary); background: #fff5ee; transform: translateY(-1px); }
.recommendation-card:focus-visible { outline: 3px solid color-mix(in srgb, var(--color-primary) 25%, transparent); outline-offset: 1px; }
.recommendation-media { overflow: hidden; width: 52px; height: 48px; display: grid; place-items: center; border-radius: 8px; color: var(--color-primary); background: #f1e8e0; font-size: 18px; font-weight: 850; }
.recommendation-media img { width: 100%; height: 100%; object-fit: cover; }
.recommendation-copy { min-width: 0; }
.recommendation-copy strong { overflow: hidden; display: block; color: var(--ink); font-size: 11px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.recommendation-copy small { display: block; margin-top: 4px; color: var(--color-primary); font-size: 11px; font-weight: 800; }
.recommendation-add { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--color-primary); font-size: 17px; font-weight: 700; }
.recommendation-card.is-added { border-color: #93c39d; background: #f2fbf4; }
.recommendation-card.is-added .recommendation-add { background: var(--success); font-size: 11px; }
.recommendation-card.is-limit { border-color: #e5b0a8; background: #fff4f1; }
.recommendation-toast { position: fixed; z-index: 130; left: 50%; bottom: 22px; max-width: calc(100vw - 32px); margin: 0; padding: 10px 15px; border-radius: 10px; color: #fff; background: var(--success); box-shadow: 0 9px 28px rgba(28, 45, 31, .24); font-size: 12px; font-weight: 750; text-align: center; transform: translateX(-50%); }
.recommendation-toast[hidden] { display: none; }
.modal-benefits { flex: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; min-height: 94px; padding: 18px 43px; background: #fff7f0; }
.modal-benefit { display: grid; grid-template-columns: 42px 1fr; gap: 11px; align-items: center; padding: 0 24px; border-right: 1px solid #eaded3; }
.modal-benefit:first-child { padding-left: 0; }
.modal-benefit:last-child { padding-right: 0; border-right: 0; }
.modal-benefit > span { color: var(--color-primary); font-size: 31px; text-align: center; }
.modal-benefit strong { display: block; margin-bottom: 4px; font-size: 12px; line-height: 1.25; }
.modal-benefit small { color: var(--ink); font-size: 10px; line-height: 1.35; }
.benefit-title-short, .mobile-product-actions { display: none; }
.cart-overlay { justify-items: end; padding: 0; background: rgba(36, 24, 16, .52); backdrop-filter: blur(3px); }
.cart-drawer { width: min(460px, 100%); height: 100dvh; overflow: hidden; display: flex; flex-direction: column; background: #fff; box-shadow: -18px 0 55px rgba(31, 20, 13, .18); }
.cart-drawer [hidden] { display: none !important; }
.cart-header { flex: none; display: flex; align-items: center; justify-content: space-between; min-height: 82px; padding: 20px 26px 15px; background: #fff; }
.cart-heading { display: flex; align-items: center; gap: 10px; min-width: 0; }
.cart-heading > div > span { display: none; }
.cart-drawer h2 { margin: 0; font: 800 25px/1.15 Inter, Arial, sans-serif; }
.cart-back { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: #fff; font-size: 20px; cursor: pointer; }
.cart-scroll { min-height: 0; overflow-y: auto; flex: 1; padding: 0 26px 26px; scrollbar-width: thin; }
.cart-step { min-height: 100%; }
.cart-items { padding: 0; }
.cart-item { display: grid; grid-template-columns: 62px minmax(0, 1fr); gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item-media { overflow: hidden; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 10px; color: var(--color-primary); background: #f3ece5; font-size: 22px; font-weight: 800; }
.cart-item-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { min-width: 0; }
.cart-item-heading { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 8px; }
.cart-item-heading > strong { overflow: hidden; font-size: 13px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-badge { display: inline-grid; min-width: 29px; height: 26px; place-items: center; padding: 0 6px; border-radius: 8px; color: var(--color-primary); background: #ffe4d3; font-size: 11px; font-weight: 800; }
.cart-item-price { font-size: 12px !important; white-space: nowrap !important; }
.cart-item-note { display: block; overflow: hidden; margin: 5px 0 0 37px; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 9px 0 0 37px; }
.cart-item-actions { overflow: hidden; display: grid; grid-template-columns: 37px 45px 37px; border: 1px solid var(--line); border-radius: 9px; }
.cart-item-actions button, .cart-item-actions output { width: 100%; height: 34px; display: grid; place-items: center; border: 0; border-right: 1px solid var(--line); background: #fff; font-size: 15px; }
.cart-item-actions button:last-child { border-right: 0; }
.cart-item-actions button { cursor: pointer; }
.cart-item-actions button:hover { color: var(--color-primary); background: #fff8f3; }
.cart-item-actions output { font-size: 12px; font-weight: 800; }
.remove-item { width: 34px; height: 34px; border: 0; border-radius: 8px; color: var(--muted); background: transparent; font-size: 19px; cursor: pointer; }
.remove-item svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.remove-item:hover, .remove-item:focus-visible { color: #9c332b; background: #fff0ec; }
.remove-item:focus-visible { outline: 2px solid rgba(156, 51, 43, .28); outline-offset: 1px; }
.cart-empty { min-height: calc(100dvh - 150px); display: grid; place-content: center; color: var(--muted); text-align: center; }
.cart-empty > span { color: var(--color-primary); font-size: 46px; }
.cart-empty h3 { margin-bottom: 3px; color: var(--ink); }
.cart-empty p { margin-top: 4px; font-size: 12px; }
.cart-review { padding-top: 0; }
.cart-recommendations { margin: 14px 0 19px; padding: 12px; border: 1px solid #eee1d7; border-radius: 13px; background: #fff9f4; }
.cart-recommendations .recommendations-heading { margin-bottom: 10px; }
.cart-recommendations .recommendations-list { grid-auto-flow: column; grid-auto-columns: minmax(174px, 48%); grid-template-columns: none; gap: 8px; overflow-x: auto; padding: 1px 1px 5px; scroll-snap-type: x proximity; scrollbar-width: thin; }
.cart-recommendations .recommendation-card { grid-template-columns: 44px minmax(0, 1fr) 25px; scroll-snap-align: start; background: #fff; }
.cart-recommendations .recommendation-media { width: 44px; height: 44px; }
.cart-recommendations .recommendation-add { width: 25px; height: 25px; }
.order-notes { display: block; }
.order-notes > strong { display: block; margin-bottom: 8px; font-size: 12px; }
.order-notes .notes-box { display: block; }
.order-notes textarea { width: 100%; min-height: 92px; padding: 12px 12px 27px; border: 1px solid var(--line); border-radius: 10px; resize: vertical; }
.order-notes small { position: absolute; right: 11px; bottom: 9px; color: var(--muted); font-size: 10px; }
.cart-summary { display: flex; flex-direction: column; gap: 13px; margin-top: 24px; padding: 18px 0 15px; border-top: 1px solid var(--line); font-size: 12px; }
.cart-summary > div { display: flex; justify-content: space-between; gap: 16px; }
.cart-summary-total { margin-top: 3px; padding-top: 17px; border-top: 1px solid var(--line); font-size: 18px; font-weight: 800; }
.cart-summary-total strong { color: var(--color-primary); font-size: 21px; }
.cart-continue, .checkout-button { width: 100%; min-height: 54px; padding: 14px; border: 0; border-radius: 10px; color: #fff; background: #13752a; font-weight: 800; cursor: pointer; }
.cart-continue:hover, .checkout-button:hover { background: #0e6121; }
.cart-continue:disabled, .checkout-button:disabled { background: #aaa; cursor: not-allowed; }
.whatsapp-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 13px 0 0; color: var(--muted); font-size: 10px; line-height: 1.4; text-align: center; }
.checkout { display: flex; flex-direction: column; gap: 14px; padding: 8px 0 4px; border: 0; }
.checkout[hidden] { display: none; }
.checkout-intro { margin-bottom: 5px; padding: 15px; border-radius: 10px; background: #fff7f0; }
.checkout-intro strong { font-size: 14px; }
.checkout-intro p { margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.checkout > label { display: flex; flex-direction: column; gap: 5px; font-size: 12px; font-weight: 750; }
.checkout > label.whatsapp-opt-in { flex-direction: row; align-items: flex-start; gap: 9px; padding: 12px; border-radius: 9px; background: #f5f8f3; font-weight: 600; line-height: 1.4; }
.whatsapp-opt-in input { flex: 0 0 auto; width: 18px!important; height: 18px; margin: 1px 0 0; accent-color: #13752a; }
.checkout fieldset { margin: 0; padding: 0; border: 0; }
.checkout legend { margin-bottom: 7px; font-size: 12px; font-weight: 750; }
.fulfillment-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.choice { display: grid; min-height: 55px; grid-template-columns: 14px minmax(0, 1fr) 14px; column-gap: 8px; align-items: center; margin: 0; padding: 12px; border: 1px solid var(--line); border-radius: 9px; font-size: 11px; font-weight: 700; text-align: center; cursor: pointer; }
.choice::after { width: 14px; content: ""; }
.choice input { width: 14px; height: 14px; margin: 0; accent-color: var(--color-primary); }
.fulfillment-choices .choice > span { white-space: nowrap; }
.choice:has(input:checked) { border-color: var(--color-primary); background: #fff8f4; box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-primary) 28%, transparent); }
.pickup-address { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px 14px; align-items: center; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fffaf6; }
.pickup-address[hidden] { display: none; }
.pickup-address-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.pickup-address-copy small { color: var(--muted); font-size: 10px; font-weight: 650; }
.pickup-address-copy strong { overflow-wrap: anywhere; font-size: 11px; line-height: 1.45; }
.pickup-address-actions { display: flex; gap: 7px; }
.pickup-address-actions button, .pickup-address-actions a { width: 40px; height: 40px; display: grid; flex: 0 0 40px; place-items: center; padding: 0; border: 1px solid #dfd5ce; border-radius: 9px; color: var(--color-primary); background: #fff; cursor: pointer; }
.pickup-address-actions button:hover, .pickup-address-actions a:hover { border-color: var(--color-primary); background: #fff4ed; }
.pickup-address-actions button:focus-visible, .pickup-address-actions a:focus-visible { outline: 3px solid color-mix(in srgb, var(--color-primary) 25%, transparent); outline-offset: 2px; }
.pickup-address-actions svg { width: 20px; height: 20px; }
.pickup-address-status { grid-column: 1 / -1; min-height: 0; margin: -4px 0 0; color: #13752a; font-size: 10px; font-weight: 700; }
.pickup-address-status:empty { display: none; }
.payment-timing-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.payment-timing-choices .choice:only-child { grid-column: 1 / -1; }
.payment-choice > span { display: flex; flex-direction: column; gap: 3px; }
.payment-choice small { color: var(--muted); font-size: 9px; font-weight: 500; }
.pay-later-methods { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.pay-later-methods .choice { min-height: 47px; padding: 9px 7px; }
.payment-note { display: flex; flex-direction: column; gap: 4px; margin: 0; padding: 12px; border-radius: 9px; color: var(--muted); background: #f8f5f2; font-size: 11px; }
.payment-note strong { color: var(--ink); }
.checkout-total { display: flex; align-items: center; justify-content: space-between; margin-top: 5px; padding-top: 18px; border-top: 1px solid var(--line); }
.checkout-total strong { color: var(--color-primary); font-size: 21px; }
.checkout-error { margin: 0; color: #9c332b; font-size: 12px; }
.payment-step { padding: 4px 0 20px; }
.pix-payment { display: flex; align-items: center; flex-direction: column; gap: 12px; text-align: center; }
.pix-payment[hidden] { display: none; }
.pix-payment img { width: min(230px, 75%); aspect-ratio: 1; }
.pix-payment textarea { width: 100%; min-height: 72px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; resize: none; font-size: 10px; }
.pix-payment button { padding: 11px 18px; border: 0; border-radius: 9px; color: #fff; background: var(--color-primary); font-weight: 750; cursor: pointer; }
.pix-payment p { color: var(--muted); font-size: 11px; }
.confirmation-step { display: flex; min-height: calc(100dvh - 140px); align-items: center; justify-content: center; flex-direction: column; gap: 12px; text-align: center; }
.confirmation-step[hidden] { display: none; }
.confirmation-icon { display: grid; width: 64px; height: 64px; place-items: center; border-radius: 50%; color: #fff; background: #13752a; font-size: 32px; }
.confirmation-step h3, .confirmation-step p { margin: 0; }
.confirmation-step p { color: var(--muted); }
.confirmation-whatsapp { display: grid; place-items: center; margin-top: 12px; text-decoration: none; }
.confirmation-step .buy-button { width: 100%; }
.setup { min-height: 100vh; display: grid; place-content: center; padding: 30px; text-align: center; }
.setup .logo-fallback { margin: auto; }
.setup h1 { margin-bottom: 4px; font: 42px Georgia, serif; }

@media (max-width: 1080px) {
  .header-inner { gap: 15px; }
  .catalog-brand { min-width: 200px; }
  .brand-copy strong { font-size: 21px; }
  .site-nav { gap: 17px; }
  .hero-shell { grid-template-columns: 44% 56%; }
  .hero-copy { padding: 40px; }
  .product-grid, .featured-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .benefits { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .benefits article:nth-child(2) { border-right: 0; }
}

@media (max-width: 820px) {
  :root { --site-header-height: 68px; }
  .header-inner { height: 68px; }
  .site-menu-toggle { display: block; margin-left: auto; }
  .site-nav { position: absolute; left: 18px; right: 18px; top: 64px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 9px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; border-radius: 8px; }
  .site-nav a:hover { background: #fff1e7; }
  .site-nav a.active::after { display: none; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-copy { min-height: 410px; padding: 46px; }
  .hero-copy::after { display: none; }
  .hero-visual { min-height: 390px; border-radius: 70px 70px 0 0 / 40px 40px 0 0; }
  .hero-visual > picture, .hero-visual > picture > img { min-height: 390px; }
  .product-grid, .featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .benefits { border-radius: 18px 18px 0 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .product-modal { max-width: 690px; }
  .product-modal-body { grid-template-columns: 1fr; padding: 18px; }
  .modal-main-image { aspect-ratio: 4 / 3; }
  .modal-image-placeholder { aspect-ratio: 4 / 3; }
  .modal-content { padding: 0; }
  .modal-description { min-height: 0; }
  .modal-benefits { padding: 18px 24px; }
  .modal-benefit { padding: 0 15px; }
  .modal-recommendations .recommendations-list { grid-auto-flow: column; grid-auto-columns: minmax(190px, 46%); grid-template-columns: none; overflow-x: auto; padding-bottom: 5px; scroll-snap-type: x proximity; scrollbar-width: thin; }
  .modal-recommendations .recommendation-card { scroll-snap-align: start; }
  .cart-overlay { align-items: end; }
  .cart-drawer { width: 100%; height: min(92dvh, 850px); border-radius: 22px 22px 0 0; }
}

@media (max-width: 560px) {
  .header-inner { width: calc(100% - 24px); }
  .catalog-brand { min-width: 0; flex: 1; }
  .catalog-brand img, .logo-fallback { width: 39px; height: 39px; }
  .brand-copy strong { max-width: 155px; font-size: 19px; }
  .header-cart { min-width: 44px; height: 44px; padding: 8px; justify-content: center; }
  .header-cart-copy { display: none; }
  .hero-shell { width: calc(100% - 20px); margin-top: 10px; border-radius: 16px; }
  .hero-copy { min-height: 380px; padding: 34px 24px; }
  .hero-copy h1 { font-size: 43px; }
  .hero-copy h1 em { font-size: 45px; }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions a { width: 100%; }
  .hero-visual, .hero-visual > picture, .hero-visual > picture > img { min-height: 300px; }
  .hero-visual > picture > img { object-position: var(--hero-object-position-mobile); }
  .house-favorite { right: 13px; padding: 13px 16px; }
  .hero-availability { left: 13px; right: auto; max-width: calc(100% - 26px); }
  .catalog-controls, .category-chips { width: calc(100% - 24px); }
  .category-chips { justify-content: flex-start; }
  .category-chips button { min-width: 118px; }
  .catalog-section { width: calc(100% - 24px); margin-bottom: 46px; }
  .category-groups { gap: 38px; }
  .category-section-title h3 { font-size: 20px; }
  .section-title > p { display: none; }
  .product-grid, .featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-card { border-radius: 10px; }
  .product-image { aspect-ratio: 1.15; }
  .product-info { padding: 10px; }
  .product-info > span { display: none; }
  .product-info h3 { min-height: 34px; font-size: 13px; }
  .product-info p { display: none; }
  .product-info > div strong { font-size: 13px; }
  .benefits { width: calc(100% - 16px); grid-template-columns: 1fr; gap: 0; padding: 8px 20px; }
  .benefits article, .benefits article:first-child, .benefits article:last-child { padding: 15px 0; border-right: 0; border-bottom: 1px dashed #d9c8b8; }
  .benefits article:last-child { border-bottom: 0; }
  .footer-main { width: calc(100% - 44px); grid-template-columns: 1fr; gap: 34px; padding: 40px 0 34px; }
  .footer-brand > p { max-width: none; }
  .footer-navigation { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-navigation h2 { grid-column: 1 / -1; width: 100%; }
  .footer-navigation a { min-height: 44px; }
  .footer-whatsapp, .footer-detail-link { min-height: 46px; }
  .isbyte-signature { align-items: center; flex-direction: column; gap: 3px; padding: 14px 22px 15px; text-align: center; }
  .cart-drawer { height: 94dvh; }
  .pickup-address { align-items: start; }
  .pickup-address-actions button, .pickup-address-actions a { width: 44px; height: 44px; flex-basis: 44px; }
  .cart-header { min-height: 70px; padding: 15px 18px 11px; }
  .cart-drawer h2 { font-size: 22px; }
  .cart-scroll { padding: 0 18px 22px; }
  .pay-later-methods { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 54px minmax(0, 1fr); gap: 10px; padding: 13px 0; }
  .cart-item-media { width: 54px; height: 54px; }
  .cart-item-heading { gap: 6px; }
  .cart-item-heading > strong { font-size: 12px; }
  .cart-item-note, .cart-item-controls { margin-left: 0; }
  .cart-item-actions { grid-template-columns: 34px 41px 34px; }
  .order-notes textarea { min-height: 82px; }
  .product-modal { align-self: end; width: 100%; max-height: 94dvh; border-radius: 22px 22px 0 0; }
  .overlay { align-items: end; padding: 0; }
  .product-modal-scroll { overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; }
  .product-modal-body { flex: none; gap: 12px; overflow: visible; padding: 12px 14px 14px; }
  .product-modal > .modal-close { right: 10px; top: 10px; z-index: 5; background: rgba(255,255,255,.94); box-shadow: 0 3px 14px rgba(0,0,0,.16); }
  .modal-gallery { position: relative; width: 100%; }
  .modal-main-image, .product-modal.is-image-empty .modal-image-placeholder { width: 100%; height: clamp(145px, 43vw, 180px); aspect-ratio: auto; border-radius: 13px; }
  .modal-main-image img { object-position: center; }
  .gallery-strip { position: absolute; inset: 50% 8px auto; display: flex; justify-content: space-between; gap: 0; margin: 0; pointer-events: none; transform: translateY(-50%); }
  .gallery-strip.single-image { display: none; }
  .gallery-arrow { width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.94); box-shadow: 0 3px 12px rgba(0,0,0,.2); pointer-events: auto; }
  .gallery-thumbs { display: none; }
  .modal-content { gap: 0; }
  .modal-content h2 { order: 2; margin: 0 46px 6px 0; font-size: 23px; }
  .modal-badges { order: 1; gap: 6px; margin: 0 46px 7px 0; }
  .modal-badge { padding: 5px 8px; border-radius: 7px; font-size: 10px; }
  .modal-description { order: 3; margin-bottom: 14px; color: var(--muted); font-size: 13px; }
  .modal-description:empty { display: none; }
  .modal-content > .modal-price { display: none; }
  .quantity-group { order: 4; }
  .modal-notes { order: 5; }
  .modal-field-group { margin-bottom: 14px; }
  .modal-field-group > label, .modal-notes > span:first-child { margin-bottom: 6px; }
  .quantity-control { grid-template-columns: 44px 52px 44px; }
  .quantity-control button, .quantity-control output { height: 44px; }
  .quantity-limit { margin-top: 5px; font-size: 10px; }
  .modal-notes textarea { min-height: 74px; resize: none; }
  .modal-content > .modal-actions { display: none; }
  .modal-recommendations { flex: none; padding: 11px 14px 13px; }
  .modal-recommendations .recommendations-list { grid-auto-columns: minmax(136px, calc((100% - 9px) / 2)); padding-bottom: 3px; }
  .modal-recommendations .recommendation-card { grid-template-columns: 40px minmax(0, 1fr) 26px; gap: 6px; padding: 6px; }
  .modal-recommendations .recommendation-media { width: 40px; height: 42px; }
  .modal-recommendations .recommendation-add { width: 26px; height: 26px; }
  .recommendations-heading { min-height: 28px; margin-bottom: 7px; }
  .recommendations-heading p { min-width: 72px; }
  .modal-benefits { display: none; }
  .mobile-product-actions { z-index: 4; display: grid; grid-template-columns: auto minmax(112px, 1fr) auto; gap: 8px; align-items: center; flex: none; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 -7px 22px rgba(52,31,18,.1); }
  .mobile-product-price { color: var(--color-primary); font-size: 17px; white-space: nowrap; }
  .mobile-product-actions .add-button { min-height: 44px; padding: 9px 11px; font-size: 12px; }
  .mobile-buy-button { min-height: 44px; padding: 8px 2px; border: 0; color: var(--color-primary); background: transparent; font-size: 11px; font-weight: 800; cursor: pointer; }
  .mobile-buy-button:hover { color: var(--ink); }
}

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