/* Zaroń — nowa.zaron.com.pl */

:root {
    --c-text: #0f172a;
    --c-text-2: #475569;
    --c-text-3: #64748b;
    --c-line: #e2e8f0;
    --c-bg: #ffffff;
    --c-bg-2: #f8fafc;
    --c-bg-3: #f1f5f9;
    --c-accent: #1e40af;
    --c-accent-hover: #1e3a8a;
    --c-accent-soft: #eff6ff;
    --c-warn-bg: #fef3c7;
    --c-warn-text: #78350f;
    --c-warn-border: #f59e0b;

    --fs-xs: 13px;
    --fs-sm: 14px;
    --fs-base: 16px;
    --fs-md: 18px;
    --fs-lg: 22px;
    --fs-xl: 28px;
    --fs-2xl: 40px;

    --container: 1280px;
    --pad-x: 24px;
    --header-h: 64px;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, .06);
    --shadow-lg: 0 8px 24px rgba(15, 23, 42, .08);

    --t-fast: 120ms cubic-bezier(.4, 0, .2, 1);
    --t-base: 200ms cubic-bezier(.4, 0, .2, 1);

    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: var(--fs-base);
    line-height: 1.55;
    color: var(--c-text);
    background:
        radial-gradient(ellipse 1100px 700px at 15% -10%, rgba(30, 64, 175, .10), transparent 60%),
        radial-gradient(ellipse 900px 600px at 100% 30%, rgba(30, 64, 175, .07), transparent 65%),
        linear-gradient(180deg, #eef2f7 0%, #f5f7fb 40%, #ffffff 100%);
    background-attachment: fixed;
    min-height: 100vh;
    animation: bodyFadeIn 240ms ease-out both;
}

@keyframes bodyFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-accent-hover); text-decoration: underline; }
h1, h2, h3, h4 { color: var(--c-text); font-weight: 600; line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: var(--fs-2xl); letter-spacing: -.015em; }
h2 { font-size: var(--fs-xl); letter-spacing: -.01em; }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }
p  { margin: 0 0 1em; }
ul { padding-left: 1.25em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.skip {
    position: absolute; left: -9999px;
}
.skip:focus { left: 1rem; top: 1rem; padding: .5rem 1rem; background: var(--c-accent); color: #fff; z-index: 200; border-radius: 4px; }

/* ========== Top bar ========== */
.top-bar {
    background: var(--c-text);
    color: #cbd5e1;
    font-size: var(--fs-xs);
}
.top-bar__inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 36px;
    flex-wrap: wrap; gap: .5rem 1.5rem;
}
.top-bar__contact {
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.top-bar__link {
    color: #fff;
    display: inline-flex; align-items: center; gap: .375rem;
    transition: color var(--t-fast);
}
.top-bar__link:hover { color: #93c5fd; text-decoration: none; }
.top-bar__icon { color: #94a3b8; font-size: 13px; }
.top-bar__hours { color: #94a3b8; }

/* ========== Header ========== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: var(--header-h);
}
.site-header__logo img { max-height: 40px; width: auto; transition: opacity var(--t-fast); }
.site-header__logo:hover img { opacity: .85; }
.site-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.5rem; }
.site-nav a {
    color: var(--c-text); font-weight: 500;
    padding: .25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--t-fast), border-color var(--t-fast);
}
.site-nav a:hover { color: var(--c-accent); text-decoration: none; border-bottom-color: var(--c-accent); }

/* ========== Brand band (na każdej stronie) ========== */
.brand-band {
    background: linear-gradient(180deg, rgba(255,255,255,.65) 0%, rgba(248,250,252,.4) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-bottom: 1px solid var(--c-line);
}
.brand-band__inner { padding: 1.75rem 0 1.25rem; }
.brand-band__title { text-align: center; margin-bottom: 1.25rem; }
.brand-band__head {
    margin: 0 0 .25rem;
    font-size: var(--fs-2xl);
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--c-text);
    text-transform: uppercase;
}
.brand-band__sub {
    margin: 0;
    font-size: var(--fs-md);
    color: var(--c-text-2);
}
.brand-band__slogans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}
.brand-band__slogan {
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-top: 3px solid var(--c-accent);
    border-radius: 6px;
    padding: .75rem 1rem;
    font-size: var(--fs-sm);
    color: var(--c-text-2);
    line-height: 1.4;
    text-align: center;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.brand-band__slogan:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.brand-band__slogan strong {
    display: block;
    color: var(--c-text);
    font-weight: 600;
    margin-bottom: .125rem;
    text-transform: uppercase;
    font-size: var(--fs-xs);
    letter-spacing: .03em;
}
.brand-band__alert {
    background: var(--c-warn-bg);
    border-top: 1px solid var(--c-warn-border);
    border-bottom: 1px solid var(--c-warn-border);
    color: var(--c-warn-text);
    font-size: var(--fs-sm);
    padding: .625rem 0;
    text-align: center;
}
.brand-band__alert strong { font-weight: 700; }

/* ========== Footer ========== */
.site-footer {
    margin-top: 4rem;
    padding: 3rem 0 1rem;
    background: var(--c-bg-2);
    border-top: 1px solid var(--c-line);
    color: var(--c-text-2);
    font-size: var(--fs-sm);
}
.site-footer__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
}
.site-footer strong { color: var(--c-text); display: block; margin-bottom: .5rem; }
.site-footer address { font-style: normal; margin-bottom: .75rem; }
.site-footer__hours { color: var(--c-text-3); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .25rem; }
.site-footer__bottom {
    border-top: 1px solid var(--c-line);
    padding-top: 1rem;
    color: var(--c-text-3);
    font-size: var(--fs-xs);
}

/* ========== Breadcrumbs ========== */
.breadcrumbs { padding: 1rem 0 .25rem; font-size: var(--fs-xs); color: var(--c-text-3); }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .25rem; }
.breadcrumbs li + li::before { content: "›"; padding: 0 .25rem; color: var(--c-text-3); }

/* ========== Buttons ========== */
.btn {
    display: inline-flex; align-items: center; gap: .375rem;
    padding: .625rem 1.25rem;
    background: var(--c-accent); color: #fff;
    border: 1px solid var(--c-accent);
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none; cursor: pointer;
    font-family: inherit; font-size: var(--fs-sm);
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn:hover { background: var(--c-accent-hover); border-color: var(--c-accent-hover); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--c-accent); }
.btn--ghost:hover { background: var(--c-accent-soft); color: var(--c-accent-hover); }
.btn--sm { padding: .375rem .75rem; font-size: var(--fs-xs); }

/* ========== Hero / lead text ========== */
.hero { padding: 2rem 0 1rem; }
.hero__lead { font-size: var(--fs-md); color: var(--c-text-2); max-width: 60ch; }
.hero__cta { margin-top: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.lead { font-size: var(--fs-md); color: var(--c-text-2); max-width: 70ch; }

/* ========== View switcher ========== */
.view-switcher {
    display: flex; align-items: center; gap: .5rem;
    margin: 1rem 0;
    padding: .5rem;
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: 6px;
    flex-wrap: wrap;
}
.view-switcher__label { font-size: var(--fs-xs); color: var(--c-text-3); margin-right: .25rem; }
.view-switcher__btn {
    padding: .375rem .75rem;
    background: transparent; border: 1px solid transparent; border-radius: 4px;
    cursor: pointer;
    font-family: inherit; font-size: var(--fs-xs);
    color: var(--c-text-2);
    display: inline-flex; align-items: center; gap: .375rem;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.view-switcher__btn:hover { background: var(--c-bg-2); color: var(--c-text); }
.view-switcher__btn[aria-pressed="true"] {
    background: var(--c-accent-soft); color: var(--c-accent); border-color: var(--c-accent);
    font-weight: 500;
}
.view-switcher__icon {
    width: 14px; height: 14px;
    display: inline-block;
    background-color: currentColor;
    -webkit-mask-size: contain; mask-size: contain;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.view-switcher__icon--list   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='2' y='3' width='12' height='2'/><rect x='2' y='7' width='12' height='2'/><rect x='2' y='11' width='12' height='2'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='2' y='3' width='12' height='2'/><rect x='2' y='7' width='12' height='2'/><rect x='2' y='11' width='12' height='2'/></svg>"); }
.view-switcher__icon--g4 { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='1' width='3' height='3'/><rect x='5' y='1' width='3' height='3'/><rect x='9' y='1' width='3' height='3'/><rect x='13' y='1' width='2' height='3'/><rect x='1' y='5' width='3' height='3'/><rect x='5' y='5' width='3' height='3'/><rect x='9' y='5' width='3' height='3'/><rect x='13' y='5' width='2' height='3'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='1' width='3' height='3'/><rect x='5' y='1' width='3' height='3'/><rect x='9' y='1' width='3' height='3'/><rect x='13' y='1' width='2' height='3'/><rect x='1' y='5' width='3' height='3'/><rect x='5' y='5' width='3' height='3'/><rect x='9' y='5' width='3' height='3'/><rect x='13' y='5' width='2' height='3'/></svg>"); }
.view-switcher__icon--g3 { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='1' width='4' height='4'/><rect x='6' y='1' width='4' height='4'/><rect x='11' y='1' width='4' height='4'/><rect x='1' y='6' width='4' height='4'/><rect x='6' y='6' width='4' height='4'/><rect x='11' y='6' width='4' height='4'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='1' width='4' height='4'/><rect x='6' y='1' width='4' height='4'/><rect x='11' y='1' width='4' height='4'/><rect x='1' y='6' width='4' height='4'/><rect x='6' y='6' width='4' height='4'/><rect x='11' y='6' width='4' height='4'/></svg>"); }
.view-switcher__icon--g2 { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='1' width='6' height='6'/><rect x='9' y='1' width='6' height='6'/><rect x='1' y='9' width='6' height='6'/><rect x='9' y='9' width='6' height='6'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='1' width='6' height='6'/><rect x='9' y='1' width='6' height='6'/><rect x='1' y='9' width='6' height='6'/><rect x='9' y='9' width='6' height='6'/></svg>"); }

/* ========== Products grid (multi-view) ========== */
.products-grid {
    display: grid;
    gap: 1rem;
    margin: 1rem 0 2rem;
    transition: gap var(--t-base);
}
.products-grid--g4 { grid-template-columns: repeat(4, 1fr); }
.products-grid--g3 { grid-template-columns: repeat(3, 1fr); }
.products-grid--g2 { grid-template-columns: repeat(2, 1fr); }
.products-grid--list { grid-template-columns: 1fr; gap: .75rem; }

.product-card {
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: 8px;
    padding: 1rem;
    color: var(--c-text);
    display: flex; flex-direction: column;
    gap: .75rem;
    text-align: center;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-fast);
    overflow: hidden;
    position: relative;
}
.product-card:hover {
    border-color: var(--c-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    text-decoration: none;
}
.product-card__media {
    aspect-ratio: 1 / 1;
    background: var(--c-bg-2);
    border-radius: 6px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.product-card__media img {
    width: 100%; height: 100%; object-fit: contain;
    transition: transform var(--t-base);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--c-bg-2), var(--c-bg-3));
}
.product-card__body { display: flex; flex-direction: column; gap: .25rem; flex: 1; }
.product-card__name {
    font-size: var(--fs-md); font-weight: 600; color: var(--c-text); margin: 0;
}
.product-card__desc {
    font-size: var(--fs-xs); color: var(--c-text-2); margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__cta {
    margin-top: auto;
    color: var(--c-accent); font-size: var(--fs-xs); font-weight: 500;
    display: inline-flex; align-items: center; gap: .25rem;
}
.product-card:hover .product-card__cta { color: var(--c-accent-hover); }
.product-card__cta::after { content: "→"; transition: transform var(--t-fast); }
.product-card:hover .product-card__cta::after { transform: translateX(2px); }

.product-card--featured { border-style: dashed; background: var(--c-accent-soft); }
.product-card--featured .product-card__media { background: #ffffff; }

/* List view variant: poziomy układ */
.products-grid--list .product-card {
    flex-direction: row; text-align: left; align-items: center; gap: 1.5rem;
    padding: 1.25rem;
}
.products-grid--list .product-card__media {
    width: 280px; min-width: 280px; aspect-ratio: 1 / 1;
}
.products-grid--list .product-card__body { gap: .5rem; }
.products-grid--list .product-card__name { font-size: var(--fs-lg); }
.products-grid--list .product-card__desc { -webkit-line-clamp: 4; font-size: var(--fs-sm); }

/* ========== Categories list (Oferta) ========== */
.cat-section { margin: 2rem 0 3rem; }
.cat-section__head {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 1rem; margin-bottom: 1rem;
    border-bottom: 1px solid var(--c-line); padding-bottom: .5rem;
}
.cat-section__head h2 { margin: 0; }
.cat-section__count { color: var(--c-text-3); font-size: var(--fs-xs); }
.cat-section__desc { color: var(--c-text-2); font-size: var(--fs-sm); margin-bottom: 1rem; max-width: 70ch; }

.cat-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1rem; }

/* ========== Product page ========== */
.product-page__intro { margin-bottom: 1.5rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.product-page__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}
.product-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.product-media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 600px;
}
.product-photo { margin: 0; }
.product-drawing__btn {
    padding: 0; border: 1px solid var(--c-line); border-radius: 6px; background: var(--c-bg);
    cursor: pointer; transition: border-color var(--t-fast), box-shadow var(--t-fast);
    display: block; width: 100%;
}
.product-drawing__btn:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); }
.product-drawing__btn img { padding: .5rem; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; }
.product-photo figcaption { font-size: var(--fs-xs); color: var(--c-text-3); margin-top: .25rem; text-align: center; }

/* ========== Filters ========== */
.filters { position: sticky; top: calc(var(--header-h) + 1rem); align-self: start; }
.filters__toggle {
    display: none; width: 100%;
    padding: .75rem 1rem;
    background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: 6px;
    cursor: pointer; text-align: left;
    font-family: inherit; font-size: var(--fs-sm); color: var(--c-text);
}
.filters__body {
    display: flex; flex-direction: column; gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--c-line); border-radius: 6px;
    background: var(--c-bg);
    box-shadow: var(--shadow-sm);
    max-height: calc(100vh - var(--header-h) - 2rem);
    overflow-y: auto;
}
.filter { border: 0; padding: 0; margin: 0; }
.filter legend {
    font-weight: 600; font-size: var(--fs-xs); color: var(--c-text);
    margin-bottom: .5rem; padding: 0;
    text-transform: uppercase; letter-spacing: .03em;
}
.filter__opt {
    display: flex; align-items: center; gap: .5rem;
    padding: .25rem 0; font-size: var(--fs-xs);
    cursor: pointer; transition: color var(--t-fast);
}
.filter__opt:hover { color: var(--c-accent); }
.filter__opt input { accent-color: var(--c-accent); }
.filter__opt em { color: var(--c-text-3); font-style: normal; }
.filter__range { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; font-size: var(--fs-xs); color: var(--c-text-3); }
.filter input[type="number"], .filter input[type="search"], .filter__range input {
    width: 100%; padding: .375rem .5rem;
    border: 1px solid var(--c-line); border-radius: 4px;
    font-family: inherit; font-size: var(--fs-xs);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.filter input:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 2px var(--c-accent-soft); }
.filters__reset { width: 100%; }

/* ========== Results table ========== */
.results__counter { color: var(--c-text-2); margin-bottom: .75rem; font-size: var(--fs-xs); }
.results__table-wrap {
    overflow-x: auto;
    border: 1px solid var(--c-line); border-radius: 6px;
    background: var(--c-bg);
    box-shadow: var(--shadow-sm);
}
.data-table { width: 100%; border-collapse: collapse; font-size: var(--fs-xs); }
.data-table th, .data-table td {
    padding: .625rem .75rem; text-align: left;
    border-bottom: 1px solid var(--c-line);
}
.data-table th {
    background: var(--c-bg-2); font-weight: 600; color: var(--c-text);
    position: sticky; top: 0; z-index: 1;
}
.data-table tr { transition: background var(--t-fast); }
.data-table tbody tr:hover td { background: var(--c-accent-soft); }
.data-table tr.is-hidden { display: none; }

/* ========== Lightbox ========== */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, .85);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem; z-index: 200;
    animation: lbFade var(--t-base);
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
    max-width: 90vw; max-height: 90vh;
    background: #fff; padding: 1rem; border-radius: 8px;
    box-shadow: var(--shadow-lg);
    animation: lbZoom var(--t-base);
}
@keyframes lbZoom { from { transform: scale(.96); } to { transform: scale(1); } }
.lightbox__close {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(255, 255, 255, .9);
    color: var(--c-text);
    border: 0; border-radius: 50%;
    width: 36px; height: 36px;
    cursor: pointer;
    font-size: 18px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--t-fast);
}
.lightbox__close:hover { background: #fff; }

/* ========== Static pages ========== */
.static-page { padding: 1rem 0 3rem; }
.prose p { max-width: 70ch; }
.prose ul { max-width: 70ch; }
.error-page { padding: 3rem 0; }

/* Gallery (np. /inne/) */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1rem 0 2rem;
    max-width: 100%;
}
.gallery__item {
    padding: 0;
    border: 1px solid var(--c-line);
    border-radius: 6px;
    background: var(--c-bg);
    cursor: pointer;
    overflow: hidden;
    display: block;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.gallery__item:hover {
    border-color: var(--c-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.gallery__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

/* ========== Mobile ========== */
@media (max-width: 1024px) {
    .products-grid--g4 { grid-template-columns: repeat(3, 1fr); }
    .product-page__intro { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    h1 { font-size: var(--fs-xl); }
    h2 { font-size: var(--fs-lg); }
    .brand-band__head { font-size: var(--fs-xl); }
    .brand-band__sub { font-size: var(--fs-sm); }
    .brand-band__slogans { grid-template-columns: 1fr; }
    .product-page__layout { grid-template-columns: 1fr; }
    .filters { position: static; }
    .filters__toggle { display: block; }
    .filters__body { display: none; }
    .filters[data-open="true"] .filters__body { display: flex; }
    .site-footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .site-nav ul { gap: 1rem; }
    .products-grid--g4, .products-grid--g3 { grid-template-columns: repeat(2, 1fr); }
    .products-grid--list .product-card { flex-direction: column; text-align: center; }
    .products-grid--list .product-card__media { width: 100%; }
    .top-bar__inner { justify-content: center; }
    .top-bar__hours { display: none; }
}
@media (max-width: 480px) {
    .site-header__inner { flex-direction: column; padding: .5rem 0; gap: .5rem; }
    .site-header__logo img { max-height: 32px; }
    .products-grid--g4, .products-grid--g3, .products-grid--g2 { grid-template-columns: 1fr; }
}

/* ========== Reduced motion ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ========== Print ========== */
@media print {
    .top-bar, .site-header, .brand-band__alert, .brand-band__slogans,
    .site-footer, .filters, .filters__toggle, .breadcrumbs,
    .btn, .product-actions, .view-switcher, .lightbox { display: none !important; }
    body { background: #fff; }
    .product-page__layout { grid-template-columns: 1fr; }
    .results__table-wrap { box-shadow: none; border: 0; }
    .data-table th, .data-table td { border: 1px solid #aaa; }
}
