/* Innoledy site styles. Colors and fonts are defined once here in :root. */
:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --ink: #17191d;
  --ink-2: #3a3e45;
  --muted: #676b72;
  --line: #e4ded3;
  --line-strong: #cfc6b7;
  --accent: #86663a;        /* brass */
  --accent-soft: #f1e9dc;
  --btn: #1c2632;           /* deep ink blue */
  --btn-hover: #2c3a4b;
  --focus: #2f6fdf;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(23, 25, 29, .05), 0 8px 24px rgba(23, 25, 29, .06);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
a:hover { color: var(--accent); text-decoration-color: currentColor; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 4px; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 62ch; }
.eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 100; background: var(--surface); padding: 8px 12px; border-radius: var(--radius-sm); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 44px; padding: .6em 1.2em;
  border: 1px solid var(--btn); border-radius: 999px;
  background: var(--btn); color: #fff;
  font: 600 .95rem/1 var(--font-body); text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn:hover { background: var(--btn-hover); border-color: var(--btn-hover); color: #fff; }
.btn-secondary { background: transparent; color: var(--btn); border-color: var(--line-strong); }
.btn-secondary:hover { background: var(--surface); color: var(--btn); border-color: var(--btn); }
.btn-block { width: 100%; }
.btn-small { min-height: 38px; padding: .45em 1em; font-size: .88rem; }

/* Header */
.topbar { background: var(--btn); color: #d9dee5; font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding-top: 7px; padding-bottom: 7px; }
.topbar a { color: #fff; text-decoration: none; white-space: nowrap; }
.topbar a:hover { text-decoration: underline; }
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-main { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.logo { flex: none; }
.logo img { width: 168px; height: auto; }
.main-nav { flex: 1; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-actions form { margin: 0; }
.cart-btn { display: inline-flex; align-items: center; gap: 6px; }
.cart-btn svg { width: 18px; height: 18px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); min-height: 44px; padding: 0 12px; font: 600 .9rem var(--font-body); color: var(--ink); cursor: pointer; align-items: center; gap: 8px; }
.nav-toggle svg { width: 20px; height: 20px; }

/* Desktop menu */
.menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
.menu-item { position: static; }
.menu-link {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: 0; padding: 0 10px; min-height: 72px; white-space: nowrap;
  font: 500 .95rem var(--font-body); color: var(--ink); cursor: pointer;
  border-bottom: 2px solid transparent;
}
.menu-link svg { width: 12px; height: 12px; opacity: .6; transition: transform .15s; }
.menu-item:hover > .menu-link, .menu-item.open > .menu-link { border-bottom-color: var(--accent); }
.menu-item.open > .menu-link svg { transform: rotate(180deg); }
.panel {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(23, 25, 29, .08);
}
@media (hover: hover) and (min-width: 1160px) {
  .menu-item:hover > .panel { display: block; }
}
.menu-item.open > .panel { display: block; }
.panel-inner { max-width: var(--container); margin: 0 auto; padding: 28px var(--gutter) 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 24px 32px; }
.panel-heading { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 0 0 10px; text-decoration: none; }
a.panel-heading:hover { text-decoration: underline; }
.panel ul { list-style: none; margin: 0; padding: 0; }
.panel li a { display: block; padding: 4px 0; text-decoration: none; color: var(--ink-2); font-size: .94rem; }
.panel li a:hover { color: var(--accent); }
.panel-all { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 14px; font-weight: 600; font-size: .92rem; text-decoration: none; }

/* Mobile drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 80; background: rgba(23, 25, 29, .4); }
.mobile-nav[hidden] { display: none; }
.mobile-nav-panel { background: var(--surface); width: min(420px, 100%); height: 100%; overflow-y: auto; padding: 16px 20px 40px; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mobile-nav-head img { width: 140px; }
.mobile-close { background: none; border: 0; min-width: 44px; min-height: 44px; cursor: pointer; font-size: 1.6rem; line-height: 1; color: var(--ink); }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav details > summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; min-height: 48px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav details > summary::-webkit-details-marker { display: none; }
.mobile-nav details > summary::after { content: "+"; font-weight: 400; font-size: 1.3rem; color: var(--muted); }
.mobile-nav details[open] > summary::after { content: "–"; }
.mobile-nav details details > summary { font-weight: 500; padding-left: 12px; }
.mobile-nav li a { display: block; padding: 10px 0 10px 12px; text-decoration: none; color: var(--ink-2); }
.mobile-nav details details li a { padding-left: 24px; }
.mobile-nav .sub-heading { padding: 14px 0 4px 12px; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.mobile-nav details details .sub-heading { padding-left: 24px; }
.mobile-nav .all-link { font-weight: 600; color: var(--ink); }
.mobile-nav-foot { margin-top: 24px; display: grid; gap: 10px; }

/* Breadcrumbs & page heads */
.breadcrumb { font-size: .85rem; color: var(--muted); padding: 20px 0 0; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--line-strong); }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-head { padding: 28px 0 32px; display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; }
.page-head.has-aside { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
.page-head-logo { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: grid; place-items: center; }
.page-head-logo img { max-height: 120px; width: auto; max-width: 100%; object-fit: contain; }
.page-head-media { position: relative; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); height: 260px; }
.page-head-media img { position: absolute; inset: 20px; width: calc(100% - 40px); height: calc(100% - 40px); object-fit: contain; }
.page-head .intro p { color: var(--ink-2); max-width: 64ch; }

.chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: -8px 0 32px; }
.chips-label { font-size: .85rem; color: var(--muted); margin-right: 4px; }
.chip { display: inline-flex; align-items: center; min-height: 36px; padding: 0 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); text-decoration: none; font-size: .88rem; color: var(--ink-2); }
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip[aria-current="page"] { background: var(--btn); border-color: var(--btn); color: #fff; }

/* Products */
.product-group { margin-bottom: 48px; }
.product-group > h2 { padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.product-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.product-card:hover { box-shadow: var(--shadow); border-color: var(--line-strong); }
.product-media { position: relative; display: grid; place-items: center; aspect-ratio: 4 / 5; padding: 20px; background: #fff; cursor: zoom-in; }
.product-media img { position: absolute; inset: 20px; width: calc(100% - 40px); height: calc(100% - 40px); object-fit: contain; }
.product-media .zoom-hint { position: absolute; right: 10px; top: 10px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.9); border: 1px solid var(--line); display: grid; place-items: center; opacity: 0; transition: opacity .15s; }
.product-media .zoom-hint svg { width: 16px; height: 16px; }
.product-card:hover .zoom-hint, .product-media:focus-visible .zoom-hint { opacity: 1; }
.product-media.no-image { cursor: default; background: var(--accent-soft); color: var(--accent); font-family: var(--font-display); font-size: 1.1rem; }
.product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; border-top: 1px solid var(--line); }
.product-name { font-family: var(--font-display); font-size: 1.2rem; margin: 0; }
.product-sub { color: var(--muted); margin: 2px 0 0; font-size: .92rem; }
.specs { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.specs li { font-size: .78rem; padding: 3px 9px; border-radius: 999px; background: var(--accent-soft); color: #5e4726; }
.product-desc { font-size: .88rem; color: var(--ink-2); margin: 10px 0 0; }
.product-links { list-style: none; margin: 10px 0 0; padding: 0; font-size: .88rem; }
.product-links li { margin-top: 4px; }
.product-links a { color: var(--accent); }
.product-links a::before { content: "↓ "; }
.product-links a.ext::before { content: "↗ "; }
.badge-sold { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: #a1291f; color: #fff; padding: 3px 8px; border-radius: 4px; margin-bottom: 8px; }
.product-card.is-sold .product-media img { opacity: .55; }
.group-intro { color: var(--ink-2); max-width: 70ch; margin: -8px 0 20px; }
.page-notes { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 32px; color: var(--ink-2); font-size: .94rem; }
.page-notes p:last-child { margin-bottom: 0; }
.price { font-weight: 600; font-size: 1.15rem; margin: 14px 0 0; }
.price-ask { font-weight: 500; font-size: .92rem; color: var(--muted); }
.product-actions { margin-top: auto; padding-top: 14px; }
.buy { margin: 0; display: grid; gap: 10px; }
.field { display: grid; gap: 4px; }
.field label { font-size: .8rem; font-weight: 600; color: var(--ink-2); }
.field select { appearance: none; -webkit-appearance: none; width: 100%; min-height: 42px; padding: 0 36px 0 12px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23676b72' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 12px center / 12px; font: inherit; font-size: .92rem; color: var(--ink); }
.ask-call { margin: 8px 0 0; text-align: center; font-size: .82rem; color: var(--muted); }

.help-band { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin: 16px 0 56px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.help-band h2 { font-size: 1.4rem; margin-bottom: .25em; }
.help-band p { margin: 0; color: var(--ink-2); }
.help-band .actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Hub pages */
.hub-section { margin-bottom: 44px; scroll-margin-top: 96px; }
.hub-section > h2 { padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.tile-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.tile { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 56px; padding: 12px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; font-weight: 500; }
.tile::after { content: "→"; color: var(--muted); transition: transform .15s; }
.tile:hover { border-color: var(--accent); color: var(--ink); }
.tile:hover::after { transform: translateX(3px); color: var(--accent); }

/* Category cards (home, supplies hub) */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.cat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: box-shadow .2s, border-color .2s; }
.cat-card:hover { box-shadow: var(--shadow); border-color: var(--line-strong); color: inherit; }
.cat-media { position: relative; height: 220px; background: #fff; }
.cat-media img { position: absolute; inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); object-fit: contain; }
.cat-body { padding: 16px 18px 20px; border-top: 1px solid var(--line); flex: 1; }
.cat-body h3 { font-size: 1.3rem; margin-bottom: .3em; }
.cat-body p { color: var(--muted); font-size: .92rem; margin: 0; }
.cat-links { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .88rem; }
.cat-links a { color: var(--ink-2); }

/* Home */
.hero { padding: clamp(32px, 6vw, 72px) 0 clamp(32px, 5vw, 56px); display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 1.4rem + 3.2vw, 3.6rem); }
.hero .lead { margin-bottom: 1.6em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stage { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; height: clamp(300px, 36vw, 440px); display: flex; justify-content: space-evenly; align-items: flex-end; padding: 28px 16px 20px; box-shadow: var(--shadow); }
.hero-stage img { height: 100%; width: auto; max-width: 24%; object-fit: contain; object-position: bottom; }
.highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 64px; }
.highlight { padding: 22px 20px; }
.highlight + .highlight { border-left: 1px solid var(--line); }
.highlight h3 { font-family: var(--font-body); font-weight: 600; font-size: .98rem; margin-bottom: .25em; }
.highlight p { margin: 0; color: var(--muted); font-size: .9rem; }
.section { margin-bottom: 72px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 24px; }
.section-head h2 { margin: 0; }
.brand-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.brand-grid a { display: grid; place-items: center; height: 96px; padding: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .15s; }
.brand-grid a:hover { border-color: var(--accent); }
.brand-grid img { max-height: 64px; width: auto; object-fit: contain; }
.visit { background: var(--btn); color: #e6e9ee; border-radius: 20px; padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; margin-bottom: 72px; }
.visit h2 { color: #fff; }
.visit p { color: #c9d0d9; }
.visit address { font-style: normal; line-height: 1.8; }
.visit a { color: #fff; }
.visit .btn { background: #fff; color: var(--btn); border-color: #fff; }
.visit .btn:hover { background: var(--accent-soft); }

/* Prose / text pages */
.prose { max-width: 760px; padding-bottom: 64px; }
.prose h2 { margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.prose .columns { columns: 2 260px; column-gap: 32px; padding-left: 1.2em; }
.prose .columns li { break-inside: avoid; margin-bottom: 4px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 28px 0; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.info-card h2 { font-size: 1.3rem; margin-top: 0; }

/* Footer */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 48px 0 24px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-grid h2 { font-family: var(--font-body); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.footer-grid a { text-decoration: none; color: var(--ink-2); }
.footer-grid a:hover { color: var(--accent); text-decoration: underline; }
.footer-grid address { font-style: normal; color: var(--ink-2); line-height: 1.7; }
.footer-logo { width: 150px; margin-bottom: 12px; }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 18px; color: var(--muted); font-size: .82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Cart */
.cart-btn { position: relative; }
.cart-count { min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: var(--accent); color: #fff; font-size: .75rem; line-height: 20px; text-align: center; }
.cart-count[hidden] { display: none; }
.cart-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(23, 25, 29, .4); display: flex; justify-content: flex-end; }
.cart-overlay[hidden] { display: none; }
.cart-panel { background: var(--surface); width: min(440px, 100%); height: 100%; display: flex; flex-direction: column; box-shadow: -8px 0 32px rgba(23, 25, 29, .15); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px 14px 24px; border-bottom: 1px solid var(--line); }
.cart-head h2 { margin: 0; font-size: 1.4rem; }
.cart-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty { color: var(--muted); padding: 32px 0; text-align: center; }
.cart-note { background: var(--accent-soft); border-radius: var(--radius-sm); padding: 10px 12px; font-size: .88rem; margin: 12px 0; }
.cart-list { list-style: none; margin: 0; padding: 0; }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: start; }
.cart-line img, .cart-noimg { width: 64px; height: 64px; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px; }
.cart-info a { font-weight: 600; text-decoration: none; display: block; line-height: 1.35; }
.cart-opts { display: block; color: var(--muted); font-size: .85rem; margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 4px; margin-top: 8px; }
.cart-qty button { min-width: 32px; height: 32px; border: 1px solid var(--line-strong); background: #fff; border-radius: 6px; cursor: pointer; font-size: 1rem; color: var(--ink); }
.cart-qty span { min-width: 28px; text-align: center; font-weight: 600; }
.cart-qty .cart-remove { border: 0; background: none; color: var(--muted); font-size: .85rem; text-decoration: underline; margin-left: 8px; min-width: 0; }
.cart-price { font-weight: 600; white-space: nowrap; }
.cart-foot { border-top: 1px solid var(--line); padding: 16px 24px 24px; background: var(--bg); }
.cart-foot:empty { display: none; }
.cart-ship-note { font-size: .88rem; margin: 0 0 10px; color: var(--ink-2); }
.cart-ship-note.ok { color: #2c6e3f; font-weight: 600; }
.cart-totals { margin: 0 0 14px; }
.cart-totals div { display: flex; justify-content: space-between; padding: 3px 0; }
.cart-totals dt { color: var(--ink-2); }
.cart-totals dd { margin: 0; }
.cart-total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 8px !important; font-weight: 700; font-size: 1.1rem; }
.cart-error { color: #a1291f; background: #fbeceb; border-radius: var(--radius-sm); padding: 10px 12px; font-size: .88rem; }
.cart-error[hidden] { display: none; }
.cart-fine { margin: 10px 0 0; text-align: center; }

/* Lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 96vw; max-height: 96vh; }
.lightbox::backdrop { background: rgba(15, 17, 20, .85); }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; background: #fff; border-radius: var(--radius-sm); }
.lightbox-close { position: fixed; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: #fff; font-size: 1.5rem; cursor: pointer; }
.lightbox-caption { color: #fff; text-align: center; margin-top: 10px; font-size: .92rem; }

/* Responsive */
@media (max-width: 1159px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-main { min-height: 64px; gap: 12px; }
  .logo img { width: 140px; }
  .header-actions .btn-visit { display: none; }
  .hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .visit { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .topbar .hide-sm { display: none; }
  .page-head.has-aside { grid-template-columns: 1fr; }
  .page-head-media { height: 200px; }
  .page-head-logo { padding: 14px; justify-self: start; }
  .page-head-logo img { max-height: 64px; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .highlight:nth-child(3) { border-left: 0; }
  .highlight:nth-child(n+3) { border-top: 1px solid var(--line); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-media img { inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); }
  .product-body { padding: 12px; }
  .product-name { font-size: 1.05rem; }
  .help-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-btn .label { display: none; }
}
@media (max-width: 480px) {
  .topbar .container > span:first-child { display: none; }
  .topbar .container { justify-content: center; }
}
@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
