/* ============================================
   PAGES.CSS - extensions for category/product/brand/about/contact pages
   Builds on style.css. Uses --c / --c-lt for per-category color theming.
   ============================================ */

/* ============================================
   SIMPLIFIED CATEGORY HEADER (new clean design)
   ============================================ */
.cat-header {
    padding: 18px 0 8px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}
.cat-header .breadcrumb { margin-bottom: 12px; font-size: 12px; }
.cat-header__row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cat-header__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--c-lt, var(--brand-xlt));
    color: var(--c, var(--brand));
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.cat-header__icon svg { width: 22px; height: 22px; }
.cat-header h1 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin: 0;
}
.cat-header__count {
    font-size: 12px;
    color: var(--text-mute);
    margin-top: 2px;
}

/* Filter chips row */
.cat-filter-row {
    padding: 10px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}
.cat-filter-row .cat-filter__chips {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}
.cat-filter-row .cat-filter__chips::-webkit-scrollbar { display: none; }
.cat-filter-row .chip {
    flex-shrink: 0;
    font-size: 12px;
    padding: 6px 12px;
    white-space: nowrap;
}
.cat-filter-row .chip.active {
    background: var(--c, var(--brand));
    color: #fff;
    border-color: var(--c, var(--brand));
}

/* Responsive for compact header */
@media (max-width: 768px) {
    .cat-header { padding: 12px 0 10px; }
    .cat-header__icon { width: 38px; height: 38px; }
    .cat-header__icon svg { width: 18px; height: 18px; }
    .cat-header h1 { font-size: 1.1rem; }
    .cat-filter-row { padding: 8px 0; }
    .cat-filter-row .chip { font-size: 11px; padding: 5px 10px; }
}
@media (max-width: 480px) {
    .cat-header { padding: 10px 0 8px; }
    .cat-header__row { gap: 10px; }
    .cat-header__icon { width: 34px; height: 34px; }
    .cat-header__icon svg { width: 16px; height: 16px; }
    .cat-header h1 { font-size: 1rem; }
    .cat-header__count { font-size: 11px; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-mute);
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--text-dim);
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb__sep {
    color: var(--text-mute);
    opacity: 0.6;
}

/* ---------- Page hero (about, contact, brands) ---------- */
.page-hero {
    padding: 4rem 0 3rem;
    position: relative;
}
.page-hero .container { max-width: 920px; }
.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-strong);
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--brand-dk);
    margin-bottom: 1.5rem;
    box-shadow: var(--sh-sm);
}
.page-hero__badge .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 10px var(--brand);
    animation: blink 2s infinite;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    margin-bottom: 1.2rem;
}
.page-hero__lead {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 700px;
    line-height: 1.65;
}

/* ============================================
   CATEGORY HERO - colored by current category
   ============================================ */
.cat-hero {
    padding: 3rem 0 2.5rem;
    position: relative;
    background: linear-gradient(180deg, color-mix(in srgb, var(--c, var(--brand)) 10%, transparent), transparent);
    border-bottom: 1px solid var(--border);
}
.cat-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--c, var(--brand));
}
.cat-hero__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}
.cat-hero__text { max-width: 700px; }
.cat-hero__icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--c, var(--brand)) 12%, #fff);
    color: var(--c, var(--brand));
    display: grid;
    place-items: center;
    margin-bottom: 1.4rem;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--c, var(--brand)) 20%, transparent),
                inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid color-mix(in srgb, var(--c, var(--brand)) 25%, transparent);
}
.cat-hero__icon svg { width: 38px; height: 38px; }
.cat-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin-bottom: 0.6rem;
}
.cat-hero__tagline {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c, var(--brand-dk));
    margin-bottom: 1.1rem;
}
.cat-hero__desc {
    font-size: 1.02rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 1.6rem;
    max-width: 640px;
}
.cat-hero__bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.4rem;
    margin-bottom: 2rem;
}
.cat-hero__bullets li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-2);
    box-shadow: var(--sh-xs);
}
.cat-hero__bullets li svg { color: var(--c, var(--brand)); flex-shrink: 0; }
.cat-hero__cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Category hero stats (right side) */
.cat-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}
.cat-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--c, var(--brand));
    border-radius: var(--r);
    padding: 1.1rem 1.3rem;
    box-shadow: var(--sh-sm);
}
.cat-stat__num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--c, var(--brand));
    line-height: 1;
}
.cat-stat__lbl {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-top: 0.3rem;
    font-weight: 600;
}

/* ---------- Category filter row ---------- */
.cat-filter {
    margin-bottom: 2.5rem;
}
.cat-filter__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}
.cat-filter__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-top: 0.4rem;
}
.cat-filter__title span {
    color: var(--c, var(--brand));
}
.cat-filter__count {
    font-size: 0.88rem;
    color: var(--text-mute);
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--sh-xs);
}
.cat-filter__chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
}

/* ---------- Chip (filter button) ---------- */
.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.1rem;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    box-shadow: var(--sh-xs);
    white-space: nowrap;
}
.chip:hover {
    color: var(--c, var(--brand-dk));
    border-color: var(--c, var(--brand));
    background: var(--c-lt, var(--brand-lt));
    transform: translateY(-1px);
}
.chip.active {
    background: var(--c, var(--brand));
    border-color: var(--c, var(--brand));
    color: #fff;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--c, var(--brand)) 35%, transparent);
}

/* ---------- Empty state ---------- */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
    background: #fff;
    border: 1px dashed var(--border-strong);
    border-radius: var(--r-lg);
    grid-column: 1 / -1;
}
.empty-state__icon {
    width: 80px; height: 80px;
    margin: 0 auto 1rem;
    border-radius: 20px;
    background: var(--bg-2);
    color: var(--text-mute);
    display: grid;
    place-items: center;
}
.empty-state h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.empty-state p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ============================================
   CROSS-SELL - "Keep Exploring" premium editorial grid
   Distinct from the home category grid: larger,
   more refined, with a subtle label block and
   professional gradient art instead of bright fills.
   ============================================ */
.cross-sell {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, #fafbfd 40%, #fafbfd 100%);
    border-top: 1px solid var(--border);
    padding: 5rem 0 6rem;
}
.cross-sell::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 25%;
    right: 25%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand) 50%, transparent);
    opacity: 0.4;
}
.cross-sell .section-head {
    text-align: left;
    margin-bottom: 2.5rem;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem;
}
.cross-sell .section-head > div:first-child { max-width: 560px; }
.cross-sell .section-head h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 0.4rem;
}
.cross-sell .section-head h2 span { color: var(--text); }
.cross-sell .section-head p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dim);
}
.cross-sell .section-head .eyebrow {
    color: var(--text-mute);
    background: #fff;
    border-color: var(--border);
}
.cross-sell .section-head .eyebrow::before {
    background: var(--brand);
    box-shadow: none;
}
.cross-sell__viewall {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
    transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
    box-shadow: var(--sh-xs);
    white-space: nowrap;
}
.cross-sell__viewall:hover {
    border-color: var(--brand);
    color: var(--brand-dk);
    transform: translateX(3px);
    box-shadow: var(--sh-sm);
}
.cross-sell__viewall svg { transition: transform 0.3s var(--ease); }
.cross-sell__viewall:hover svg { transform: translateX(2px); }

/* The grid - 4 columns, larger cards */
.cross-sell .cat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* Premium cat-card variant inside cross-sell */
.cross-sell .cat-card {
    min-height: 240px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.55s var(--ease),
                box-shadow 0.55s var(--ease),
                border-color 0.4s;
    box-shadow:
        0 1px 2px rgba(15, 18, 38, 0.04),
        0 8px 24px rgba(15, 18, 38, 0.05);
}
.cross-sell .cat-card::before {
    /* Remove the left accent bar inside cross-sell - we use a different accent */
    display: none;
}
.cross-sell .cat-card::after {
    /* Diagonal wash becomes a proper artwork panel on top */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 52%;
    background:
        radial-gradient(ellipse at 70% 20%,
            color-mix(in srgb, var(--c) 18%, transparent) 0%,
            transparent 55%),
        linear-gradient(135deg,
            color-mix(in srgb, var(--c) 9%, #fff) 0%,
            #fff 100%);
    opacity: 1;
    transition: all 0.6s var(--ease);
    pointer-events: none;
    border-bottom: 1px solid var(--border);
    z-index: 0;
}
.cross-sell .cat-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--c) 35%, var(--border));
    box-shadow:
        0 2px 4px rgba(15, 18, 38, 0.05),
        0 16px 40px rgba(15, 18, 38, 0.12),
        0 32px 72px rgba(15, 18, 38, 0.08);
}
.cross-sell .cat-card:hover::after {
    background:
        radial-gradient(ellipse at 70% 20%,
            color-mix(in srgb, var(--c) 28%, transparent) 0%,
            transparent 55%),
        linear-gradient(135deg,
            color-mix(in srgb, var(--c) 14%, #fff) 0%,
            #fff 100%);
}

/* Big centered icon in the artwork panel */
.cross-sell .cat-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 17px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--c) 22%, var(--border));
    color: var(--c);
    margin: 1.8rem 0 0 1.6rem;
    box-shadow:
        0 6px 16px color-mix(in srgb, var(--c) 18%, transparent),
        0 1px 2px rgba(15, 18, 38, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.5s var(--ease), box-shadow 0.5s;
    position: relative;
    z-index: 1;
}
.cross-sell .cat-card__icon svg { width: 34px; height: 34px; }
.cross-sell .cat-card:hover .cat-card__icon {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 10px 24px color-mix(in srgb, var(--c) 28%, transparent),
        0 1px 2px rgba(15, 18, 38, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Body area - clean white, editorial layout */
.cross-sell .cat-card__body {
    padding: 1.3rem 1.6rem 1.6rem;
    background: #fff;
    margin-top: auto;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}
.cross-sell .cat-card__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
    letter-spacing: -0.015em;
}
.cross-sell .cat-card:hover .cat-card__name {
    color: var(--text);
}
.cross-sell .cat-card__name::after {
    /* Thin color underline below the name on hover */
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c);
    border-radius: 1px;
    margin-top: 0.5rem;
    transition: width 0.5s var(--ease);
}
.cross-sell .cat-card:hover .cat-card__name::after {
    width: 44px;
}
.cross-sell .cat-card__count {
    font-size: 0.76rem;
    color: var(--text-mute);
    letter-spacing: 0.04em;
    font-weight: 500;
    text-transform: uppercase;
}

/* Arrow - repositioned to bottom-right of the artwork panel */
.cross-sell .cat-card__arrow {
    position: absolute;
    top: 1.8rem;
    right: 1.6rem;
    bottom: auto;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--c) 22%, var(--border));
    color: var(--c);
    box-shadow: 0 2px 6px rgba(15, 18, 38, 0.06);
    transition: transform 0.45s var(--ease),
                background 0.35s,
                color 0.35s;
}
.cross-sell .cat-card:hover .cat-card__arrow {
    background: var(--c);
    border-color: var(--c);
    color: #fff;
    transform: translate(3px, -3px);
}

/* Responsive */
@media (max-width: 992px) {
    .cross-sell .section-head { grid-template-columns: 1fr; }
    .cross-sell .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .cross-sell .cat-card { min-height: 220px; }
}
@media (max-width: 768px) {
    .cross-sell { padding: 3.5rem 0 4rem; }
    .cross-sell .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
    .cross-sell .cat-card { min-height: 200px; }
    .cross-sell .cat-card__icon { width: 54px; height: 54px; margin: 1.2rem 0 0 1.2rem; }
    .cross-sell .cat-card__icon svg { width: 26px; height: 26px; }
    .cross-sell .cat-card__body { padding: 1rem 1.2rem 1.2rem; }
    .cross-sell .cat-card__name { font-size: 1.1rem; }
    .cross-sell .cat-card__arrow { top: 1.2rem; right: 1.2rem; width: 32px; height: 32px; }
}
@media (max-width: 480px) {
    .cross-sell .cat-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail { padding-top: 3rem; padding-bottom: 3rem; }
.pd-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.pd-media {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
}
/* Borderless fixed-area frame: always 100% visible, no crop, professional.
   The frame has no visible background/border - only the image is shown. */
.pd-media__frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    cursor: zoom-in;
}
.pd-media__frame img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(15, 18, 38, 0.15));
    transition: filter 0.25s ease;
}

/* Magnifier lens: follows cursor, shows zoomed image region.
   We hide the real cursor (cursor:none) while inside the frame via .lens-active. */
.pd-media__frame.lens-active { cursor: none; }
.pd-lens {
    position: absolute;
    pointer-events: none;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 1px rgba(15, 18, 38, 0.15), 0 10px 30px rgba(15, 18, 38, 0.35);
    background-repeat: no-repeat;
    background-color: #fff;
    display: none;
    z-index: 3;
    /* magnifier-glass icon overlay in the corner */
}
.pd-lens::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 22px; height: 22px;
    transform: translate(-50%, -50%);
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.3-4.3'/></svg>") center/contain no-repeat;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6));
    opacity: 0.55;
}
.pd-media__frame.lens-active .pd-lens { display: block; }

/* Full-screen lightbox */
.pd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 12, 24, 0.92);
    backdrop-filter: blur(6px);
    padding: 2rem;
    animation: pdLbFade 0.18s ease;
}
.pd-lightbox.open { display: flex; }
.pd-lightbox__img {
    max-width: min(92vw, 1200px);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    cursor: zoom-out;
}
.pd-lightbox__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.15s ease, transform 0.15s ease;
}
.pd-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: scale(1.08);
}
@keyframes pdLbFade { from { opacity: 0; } to { opacity: 1; } }

/* Disable lens on touch devices (no hover) - tap opens lightbox directly */
@media (hover: none), (pointer: coarse) {
    .pd-media__frame { cursor: pointer; }
    .pd-media__frame.lens-active { cursor: pointer; }
    .pd-lens { display: none !important; }
}

/* Responsive sizing for the fixed frame */
@media (max-width: 960px) {
    .pd-media__frame { max-width: 440px; }
    .pd-lens { width: 130px; height: 130px; }
}
@media (max-width: 640px) {
    .pd-media__frame { max-width: 360px; }
    .pd-lens { width: 110px; height: 110px; }
}
@media (max-width: 420px) {
    .pd-media__frame { max-width: 300px; }
}
.pd-chip {
    position: absolute;
    top: 1.2rem; left: 1.2rem;
    z-index: 2;
    padding: 0.45rem 0.95rem;
    background: var(--c, var(--brand));
    color: #fff;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.pd-media__hint {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-mute);
    font-style: italic;
}

.pd-info { padding-top: 0.5rem; }
.pd-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c, var(--brand-dk));
    margin-bottom: 0.7rem;
}
.pd-brand.has-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 1rem;
}
.pd-brand__logo {
    height: 28px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    flex-shrink: 0;
}
.pd-brand.has-logo span {
    color: var(--c, var(--brand));
}
.pd-name {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    word-break: break-word;
}
.pd-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1.2rem 1.4rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 1.8rem;
    box-shadow: var(--sh-xs);
}
.pd-meta__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.pd-meta__row:last-child { border-bottom: none; }
.pd-meta__lbl { color: var(--text-mute); font-weight: 500; }
.pd-meta__val { color: var(--text); font-weight: 600; }
.pd-meta__val--ok {
    color: #047857;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pd-description {
    font-size: 0.98rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.pd-features {
    background: var(--c-lt, var(--brand-lt));
    border: 1px solid color-mix(in srgb, var(--c, var(--brand)) 20%, transparent);
    border-radius: var(--r);
    padding: 1.2rem 1.4rem;
    margin-bottom: 2rem;
}
.pd-features h4 {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c, var(--brand-dk));
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.pd-features ul { display: flex; flex-direction: column; gap: 0.5rem; }
.pd-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.5;
}
.pd-features li svg {
    color: var(--c, var(--brand));
    flex-shrink: 0;
    margin-top: 3px;
}

.pd-cta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
}
.pd-cta__main { flex: 1; min-width: 220px; padding: 1.1rem 1.8rem; font-size: 1rem; }

/* Flavor variants section */
.pd-flavors {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.pd-flavors__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 0.8rem;
}
.pd-flavors__chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.pd-flavor-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    height: 100px;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    box-shadow: var(--sh-xs);
    white-space: nowrap;
}
.pd-flavor-chip:hover {
    border-color: var(--flavor-chip, var(--c, var(--brand)));
    background: var(--flavor-bg, var(--c-lt, var(--brand-lt)));
    transform: translateY(-2px);
    box-shadow: var(--sh-sm);
}
.pd-flavor-chip--active {
    background: var(--flavor-chip, var(--c, var(--brand)));
    border-color: var(--flavor-chip, var(--c, var(--brand)));
    color: #fff;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--flavor-chip, var(--c, var(--brand))) 35%, transparent);
}
.pd-flavor-chip__img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-2);
    display: grid;
    place-items: center;
    margin-bottom: 0.4rem;
}
.pd-flavor-chip__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pd-flavor-chip__name {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pd-trust {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border);
}
.pd-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-dim);
}
.pd-trust__item svg { color: var(--c, var(--brand)); }

/* ============================================
   BRANDS PAGE
   ============================================ */
.brands-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding-bottom: 0.5rem;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}
.brand-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
    box-shadow: var(--sh-sm);
    min-height: 320px;
}
.brand-card:hover {
    transform: translateY(-6px);
    border-color: var(--c, var(--brand));
    box-shadow: var(--sh-xl), 0 0 30px color-mix(in srgb, var(--c, var(--brand)) 30%, transparent);
}
.brand-card__media {
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, var(--bg-2), #fff);
    display: grid;
    place-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.brand-card__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, color-mix(in srgb, var(--c, var(--brand)) 14%, transparent), transparent 70%);
}
.brand-card__media img {
    max-width: 70%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    transition: transform 0.5s var(--ease);
}
/* Brand logo: properly sized to fit without cutoff, clean drop-shadow */
.brand-card__logo {
    max-width: 75% !important;
    max-height: 75% !important;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}
/* Shroom Puff logo: move up for better visibility */
#shroom-puff .brand-card__logo {
    transform: translateY(-10%);
}
.brand-card.has-logo .brand-card__media {
    background: linear-gradient(145deg, #fff, var(--bg-2));
}
.brand-card:hover .brand-card__media img { transform: scale(1.06); }
.brand-card__placeholder {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--c, var(--brand));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--sh-lg);
    position: relative;
}
.brand-card__body {
    padding: 1.3rem 1.4rem 1.4rem;
    flex: 1;
}
.brand-card__cat {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c, var(--brand));
    margin-bottom: 0.4rem;
}
.brand-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.brand-card__count {
    font-size: 0.82rem;
    color: var(--text-mute);
}
.brand-card__arrow {
    position: absolute;
    bottom: 1.3rem;
    right: 1.3rem;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--c-lt, var(--brand-lt));
    color: var(--c, var(--brand));
    display: grid;
    place-items: center;
    transition: all 0.35s var(--ease);
}
.brand-card:hover .brand-card__arrow {
    background: var(--c, var(--brand));
    color: #fff;
    transform: translateX(4px);
}

/* Responsive brands grid */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem;
    }
    .brand-card {
        min-height: 280px;
    }
    .brand-card__media {
        padding: 1.2rem;
    }
    .brand-card__logo {
        max-width: 70% !important;
        max-height: 70% !important;
    }
    .brand-card__body {
        padding: 1rem 1.1rem 1.1rem;
    }
    .brand-card__name {
        font-size: 1.1rem;
    }
    .brand-card__arrow {
        width: 34px;
        height: 34px;
        bottom: 1.1rem;
        right: 1.1rem;
    }
}

@media (max-width: 640px) {
    .brands-grid {
        grid-template-columns: 1fr !important;
        gap: 0.9rem;
    }
    .brand-card {
        min-height: 240px;
    }
    .brand-card__media {
        padding: 1rem;
    }
    .brand-card__logo {
        max-width: 65% !important;
        max-height: 65% !important;
    }
    .brand-card__body {
        padding: 0.9rem 1rem 1rem;
    }
    .brand-card__cat {
        font-size: 0.6rem;
    }
    .brand-card__name {
        font-size: 0.95rem;
    }
    .brand-card__arrow {
        width: 30px;
        height: 30px;
        bottom: 1rem;
        right: 1rem;
    }
    .brand-card__arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}
.about-story__media {
    background: linear-gradient(145deg, var(--bg-2), #fff);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 3rem;
    display: grid;
    place-items: center;
    box-shadow: var(--sh-lg);
    aspect-ratio: 1 / 1;
}
.about-story__media img {
    max-width: 80%;
    filter: drop-shadow(0 12px 40px rgba(47, 138, 148, 0.25));
}
.about-story__text h2 {
    margin-bottom: 1.2rem;
}
.about-story__text p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}
.about-story__text p:last-child { margin-bottom: 0; }

.about-values { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.4), transparent); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.contact-card {
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: var(--r-lg);
    padding: 2rem 1.8rem;
    display: block;
    transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
    box-shadow: var(--sh-sm);
    position: relative;
    overflow: hidden;
}
.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: var(--sh-xl), var(--glow-teal);
}
.contact-card--wa:hover {
    border-color: var(--green-dk);
    box-shadow: var(--sh-xl), 0 0 30px rgba(37,211,102,0.3);
}
.contact-card__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--brand-lt);
    color: var(--brand);
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
}
.contact-card--wa .contact-card__icon {
    background: #e8f9ed;
    color: var(--green-dk);
}
.contact-card__label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.contact-card__value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
    word-break: break-word;
}
.contact-card__sub {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}
.contact-card__cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.contact-card--wa .contact-card__cta { color: var(--green-dk); }

/* Inquiry form */
.inquiry-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5)); }
.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}
.inquiry-info h2 { margin-bottom: 1rem; }
.inquiry-info p { color: var(--text-dim); font-size: 1rem; line-height: 1.65; margin-bottom: 1.5rem; }
.inquiry-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.inquiry-bullets li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-2);
}
.inquiry-bullets li svg { color: var(--brand); flex-shrink: 0; }

.inquiry-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--sh-lg);
}
.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
}
.field label {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
    padding: 0.85rem 1rem;
    background: var(--bg-0);
    border: 1px solid var(--border-strong);
    border-radius: var(--r);
    font-size: 0.92rem;
    color: var(--text);
    font-family: var(--font-body);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(47, 138, 148, 0.12);
}
.field textarea { resize: vertical; min-height: 90px; font-family: var(--font-body); }
.inquiry-form__submit { width: 100%; margin-top: 0.5rem; }
.inquiry-form__note {
    font-size: 0.76rem;
    color: var(--text-mute);
    text-align: center;
    margin-top: 0.9rem;
    line-height: 1.5;
}

/* Hours / location */
.hours-section { padding-top: 2rem; }
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}
.hours-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--sh-sm);
}
.hours-card__icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--brand-lt);
    color: var(--brand);
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
}
.hours-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hours-card ul { display: flex; flex-direction: column; gap: 0.6rem; }
.hours-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.hours-card li:last-child { border-bottom: none; }
.hours-card li strong { color: var(--text); font-weight: 600; }
.hours-card li span { color: var(--text-dim); }

/* ---------- Wholesale CTA block (reusable) ---------- */
.wholesale-cta-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5)); }
.wholesale-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    position: relative;
    overflow: hidden;
}
.wholesale-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--g-primary);
}
.wholesale-cta h2 { margin-bottom: 0.6rem; }
.wholesale-cta p { color: var(--text-dim); font-size: 1rem; max-width: 600px; }

/* ============================================
   RESPONSIVE - pages.css
   Mirrors the 7-breakpoint system from style.css.
   ============================================ */

/* ---------- Small laptops / large tablets landscape (≤ 1280px) ---------- */
@media (max-width: 1200px) {
    .page-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
    .cat-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); }
    .brands-grid { gap: 1.3rem; }
    .cross-sell .cat-grid { gap: 1.1rem; }
}

/* ---------- Tablets (≤ 1024px) ---------- */
@media (max-width: 992px) {
    /* Page hero */
    .page-hero { padding: 3rem 0 2.5rem; }
    .page-hero__lead { font-size: 1.02rem; }

    /* Category hero */
    .cat-hero { padding: 2.5rem 0 2rem; }
    .cat-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
    .cat-hero__text { max-width: 100%; }
    .cat-hero__stats {
        flex-direction: row;
        min-width: 0;
        width: 100%;
    }
    .cat-stat { flex: 1; padding: 1rem 1.1rem; }
    .cat-stat__num { font-size: 1.7rem; }
    .cat-hero__icon { width: 64px; height: 64px; }
    .cat-hero__icon svg { width: 32px; height: 32px; }
    .cat-hero__bullets { gap: 0.5rem 1rem; }
    .cat-filter__head { align-items: flex-start; }

    /* Product detail */
    .pd-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .pd-media { position: static; }
    .pd-media__frame { max-width: 480px; margin: 0 auto; }

    /* Brands */
    .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .brand-card__body { padding: 1.2rem 1.3rem 1.3rem; }

    /* About */
    .about-story { grid-template-columns: 1fr; gap: 2rem; }
    .about-story__media {
        max-width: 340px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
        padding: 2rem;
    }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .inquiry-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hours-grid { grid-template-columns: 1fr 1fr; }

    /* Wholesale CTA */
    .wholesale-cta {
        grid-template-columns: 1fr;
        padding: 2.2rem;
        text-align: center;
    }
    .wholesale-cta .btn { justify-self: center; }
    .wholesale-cta p { margin: 0 auto; }

    /* Cross-sell */
    .cross-sell { padding: 4rem 0 4.5rem; }
    .cross-sell .section-head { grid-template-columns: 1fr; gap: 1rem; }
    .cross-sell .cat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Large phones / small tablets portrait (≤ 720px) ---------- */
@media (max-width: 768px) {
    /* Breadcrumb */
    .breadcrumb { font-size: 0.8rem; margin-bottom: 1.2rem; }

    /* Page hero */
    .page-hero { padding: 2.2rem 0 1.5rem; }
    .page-hero__badge { font-size: 0.72rem; padding: 0.4rem 0.85rem; }
    .page-hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); margin-bottom: 0.8rem; }
    .page-hero__lead { font-size: 0.95rem; }

    /* Category hero */
    .cat-hero { padding: 1.8rem 0 1.4rem; }
    .cat-hero h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
    .cat-hero__icon { width: 56px; height: 56px; border-radius: 14px; margin-bottom: 1rem; }
    .cat-hero__icon svg { width: 28px; height: 28px; }
    .cat-hero__tagline { font-size: 1.05rem; }
    .cat-hero__desc { font-size: 0.92rem; }
    .cat-hero__bullets { gap: 0.4rem 0.6rem; margin-bottom: 1.4rem; }
    .cat-hero__bullets li { font-size: 0.78rem; padding: 0.4rem 0.75rem; }
    .cat-hero__cta { flex-direction: column; width: 100%; }
    .cat-hero__cta .btn { width: 100%; }
    .cat-hero__stats { flex-direction: row; gap: 0.7rem; }
    .cat-stat { padding: 0.85rem 0.9rem; border-left-width: 3px; }
    .cat-stat__num { font-size: 1.4rem; }
    .cat-stat__lbl { font-size: 0.62rem; letter-spacing: 0.1em; }

    /* Category filter */
    .cat-filter { margin-bottom: 1.6rem; }
    .cat-filter__head { flex-direction: column; align-items: flex-start; gap: 0.5rem; margin-bottom: 1rem; }
    .cat-filter__title { font-size: 1.3rem; }
    .cat-filter__count { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
    .cat-filter__chips {
        gap: 0.4rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.8rem;
        scrollbar-width: none;
    }
    .cat-filter__chips::-webkit-scrollbar { display: none; }
    .chip { padding: 0.5rem 0.9rem; font-size: 0.76rem; flex-shrink: 0; }

    /* Product detail */
    .product-detail { padding-top: 2rem; padding-bottom: 2.5rem; }
    .pd-chip { font-size: 0.6rem; padding: 0.35rem 0.75rem; }
    .pd-brand { font-size: 0.68rem; letter-spacing: 0.15em; }
    .pd-name { font-size: 1.55rem; margin-bottom: 1.2rem; }
    .pd-meta { padding: 1rem 1.1rem; margin-bottom: 1.4rem; }
    .pd-meta__row { font-size: 0.84rem; }
    .pd-description { font-size: 0.92rem; margin-bottom: 1.5rem; }
    .pd-features { padding: 1rem 1.2rem; margin-bottom: 1.6rem; }
    .pd-features h4 { font-size: 0.68rem; }
    .pd-features li { font-size: 0.83rem; }
    .pd-cta { flex-direction: column; gap: 0.7rem; }
    .pd-cta__main { width: 100%; padding: 1rem 1.4rem; font-size: 0.92rem; }
    .pd-trust { gap: 0.8rem 1rem; padding-top: 1.1rem; }
    .pd-trust__item { font-size: 0.76rem; }

    /* Brands grid */
    .brands-grid { grid-template-columns: 1fr; gap: 1rem; }
    .brand-card { min-height: 240px; border-radius: 16px; }
    .brand-card__media { padding: 1.2rem; }
    .brand-card__name { font-size: 1.15rem; }
    .brand-card__arrow { width: 34px; height: 34px; bottom: 1.1rem; right: 1.1rem; }
    .brands-filter { margin-bottom: 1.6rem; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.8rem; scrollbar-width: none; }
    .brands-filter::-webkit-scrollbar { display: none; }
    .brands-filter .chip { flex-shrink: 0; }

    /* About */
    .about-story { gap: 1.8rem; }
    .about-story__media { max-width: 260px; padding: 1.6rem; }
    .about-story__text p { font-size: 0.95rem; }
    .about-values { padding: 3rem 0; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
    .contact-card { padding: 1.6rem 1.4rem; }
    .contact-card__icon { width: 48px; height: 48px; margin-bottom: 1rem; }
    .contact-card__value { font-size: 1.05rem; }
    .contact-card__sub { font-size: 0.8rem; }
    .inquiry-info h2 { font-size: 1.6rem; }
    .inquiry-info p { font-size: 0.92rem; }
    .inquiry-form { padding: 1.4rem; border-radius: 16px; }
    .field { margin-bottom: 0.9rem; }
    .field input, .field select, .field textarea { padding: 0.75rem 0.9rem; font-size: 0.9rem; }
    .hours-section { padding-top: 1rem; }
    .hours-grid { grid-template-columns: 1fr; gap: 1rem; }
    .hours-card { padding: 1.5rem; }
    .hours-card h3 { font-size: 1.1rem; }
    .hours-card li { font-size: 0.85rem; }

    /* Wholesale CTA */
    .wholesale-cta {
        padding: 1.8rem 1.4rem;
        border-radius: 16px;
    }
    .wholesale-cta h2 { font-size: 1.4rem; }
    .wholesale-cta p { font-size: 0.9rem; }

    /* Cross-sell */
    .cross-sell { padding: 3rem 0 3.5rem; }
    .cross-sell .section-head h2 { font-size: 1.5rem; }
    .cross-sell .section-head p { font-size: 0.88rem; }
    .cross-sell__viewall { padding: 0.6rem 1rem; font-size: 0.8rem; }
    .cross-sell .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .cross-sell .cat-card { min-height: 200px; }
    .cross-sell .cat-card__icon { width: 50px; height: 50px; margin: 1.1rem 0 0 1.1rem; border-radius: 13px; }
    .cross-sell .cat-card__icon svg { width: 24px; height: 24px; }
    .cross-sell .cat-card__body { padding: 0.9rem 1.1rem 1.1rem; }
    .cross-sell .cat-card__name { font-size: 1rem; }
    .cross-sell .cat-card__name::after { width: 18px; margin-top: 0.4rem; }
    .cross-sell .cat-card:hover .cat-card__name::after { width: 32px; }
    .cross-sell .cat-card__count { font-size: 0.68rem; }
    .cross-sell .cat-card__arrow { width: 32px; height: 32px; top: 1.1rem; right: 1.1rem; }

    /* Empty state */
    .empty-state { padding: 3rem 1rem; }
    .empty-state__icon { width: 64px; height: 64px; }
    .empty-state h3 { font-size: 1.1rem; }
}

/* ---------- Standard phones (≤ 480px) ---------- */
@media (max-width: 480px) {
    .breadcrumb { font-size: 0.75rem; gap: 0.45rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .page-hero__lead { font-size: 0.88rem; }

    .cat-hero__stats { flex-wrap: wrap; }
    .cat-stat { min-width: calc(50% - 0.35rem); flex: 1 1 calc(50% - 0.35rem); }

    .cross-sell .cat-grid { grid-template-columns: 1fr; gap: 0.8rem; }
    .cross-sell .cat-card { min-height: 180px; }

    .brands-grid { gap: 0.85rem; }
    .brand-card { min-height: 220px; }
    .brand-card__media { aspect-ratio: 2 / 1; padding: 1rem; }

    .contact-card__value { font-size: 0.98rem; }
    .inquiry-form { padding: 1.1rem; }
    .pd-name { font-size: 1.35rem; }
}

/* ---------- Small phones (≤ 380px) ---------- */
@media (max-width: 380px) {
    .page-hero h1 { font-size: 1.45rem; }
    .cat-hero h1 { font-size: 1.7rem; }
    .cat-hero__tagline { font-size: 0.95rem; }
    .cat-hero__desc { font-size: 0.86rem; }
    .cat-stat__num { font-size: 1.2rem; }
    .pd-name { font-size: 1.25rem; }
    .pd-features li { font-size: 0.78rem; }
    .inquiry-form { padding: 1rem; }
    .wholesale-cta { padding: 1.5rem 1.1rem; }
    .cross-sell .cat-card__name { font-size: 0.95rem; }
}

/* ============================================
   ABOUT PAGE - v2 (structured, animated)
   ============================================ */

/* Reveal variants for the about page */
.about-hero .reveal,
.about-stats .reveal,
.values-grid .reveal,
.about-mv .reveal,
.about-why__list .reveal,
.testimonials-grid .reveal,
.about-visit .reveal,
.about-cta.reveal {
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* ---- HERO ---- */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 7vw, 96px) 0 clamp(36px, 5vw, 72px);
    background:
        radial-gradient(ellipse at top left, rgba(58, 122, 184, 0.10), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(26, 58, 92, 0.08), transparent 55%),
        var(--bg-white);
}
.about-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
    animation: aboutFloat 14s ease-in-out infinite;
}
.about-hero__blob--1 {
    top: -100px; left: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(58, 122, 184, 0.35), transparent 70%);
}
.about-hero__blob--2 {
    bottom: -120px; right: -90px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(47, 138, 148, 0.28), transparent 70%);
    animation-delay: -7s;
}
@keyframes aboutFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(24px, -18px) scale(1.06); }
}
.about-hero__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-hero__eyebrow { margin-bottom: 1rem; }
.about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 1.2rem;
    color: var(--text);
}
.about-hero__accent {
    background: linear-gradient(135deg, var(--brand-accent), var(--brand));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.about-hero__lead {
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 1.8rem;
}
.about-hero__ctas {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- STATS STRIP ---- */
.about-stats-section {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.about-stat {
    text-align: center;
    padding: 1.6rem 1rem;
    border-radius: var(--r-lg);
    background: linear-gradient(180deg, var(--bg-white), var(--bg-light));
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.about-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-xlt), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.about-stat:hover {
    transform: translateY(-6px);
    border-color: var(--brand-accent);
    box-shadow: var(--sh-lg);
}
.about-stat:hover::before { opacity: 0.6; }
.about-stat__num {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), var(--brand-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.about-stat__label {
    position: relative;
    font-size: 0.82rem;
    color: var(--text-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---- OUR STORY enhancements ---- */
.about-story__media {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.about-story__media-ring {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(58, 122, 184, 0.28) 90deg, transparent 180deg, rgba(47, 138, 148, 0.18) 270deg, transparent 360deg);
    animation: aboutSpin 12s linear infinite;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
    opacity: 0.9;
}
.about-story__media img {
    position: relative;
    z-index: 2;
    transition: transform 0.6s var(--ease);
}
.about-story__media:hover img { transform: scale(1.04); }
.about-story__text .eyebrow { display: inline-block; margin-bottom: 0.8rem; }
@keyframes aboutSpin {
    to { transform: rotate(360deg); }
}

/* ---- MISSION & VISION ---- */
.about-mv-section { background: var(--bg-light); }
.about-mv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}
.about-mv__card {
    position: relative;
    padding: 2.4rem 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
    overflow: hidden;
}
.about-mv__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.about-mv__card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-accent);
    box-shadow: var(--sh-xl);
}
.about-mv__card:hover::before { transform: scaleX(1); }
.about-mv__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--brand-xlt);
    color: var(--brand);
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    transition: transform 0.4s var(--ease-bounce), background 0.3s, color 0.3s;
}
.about-mv__icon svg { width: 28px; height: 28px; }
.about-mv__card:hover .about-mv__icon {
    background: var(--brand);
    color: #fff;
    transform: rotate(-6deg) scale(1.08);
}
.about-mv__card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--text);
}
.about-mv__card p {
    color: var(--text-dim);
    line-height: 1.75;
    font-size: 0.98rem;
}

/* ---- CORE VALUES GRID ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.value-card {
    position: relative;
    padding: 1.8rem 1.6rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
    overflow: hidden;
}
.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, var(--brand-xlt), transparent 60%);
    opacity: 0;
    transition: opacity 0.45s var(--ease);
    pointer-events: none;
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-accent);
    box-shadow: var(--sh-lg);
}
.value-card:hover::after { opacity: 1; }
.value-card__icon {
    position: relative;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--brand-xlt);
    color: var(--brand);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    transition: transform 0.4s var(--ease-bounce), background 0.3s, color 0.3s;
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card:hover .value-card__icon {
    transform: scale(1.1) rotate(-4deg);
    background: var(--brand);
    color: #fff;
}
.value-card h3 {
    position: relative;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.value-card p {
    position: relative;
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ---- WHY CHOOSE EMPIRE ---- */
.about-why {
    background:
        linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.about-why::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    pointer-events: none;
}
.about-why::after {
    content: '';
    position: absolute;
    bottom: -180px; left: -120px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 122, 184, 0.25), transparent 70%);
    pointer-events: none;
}
.about-why__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
.about-why__intro .eyebrow {
    color: #9dc2e6;
    margin-bottom: 0.8rem;
    display: inline-block;
}
.about-why__intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.about-why__intro p {
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 1.4rem;
    font-size: 1rem;
}
.about-why__intro .btn-primary {
    background: #fff;
    color: var(--brand);
}
.about-why__intro .btn-primary:hover {
    background: var(--brand-xlt);
    color: var(--brand-dk);
    transform: translateY(-2px);
}
.about-why__list {
    display: grid;
    gap: 1rem;
}
.about-why__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    padding: 1.3rem 1.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-lg);
    transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.about-why__item:hover {
    transform: translateX(6px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
}
.about-why__num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #9dc2e6;
    line-height: 1;
    letter-spacing: -0.02em;
    align-self: start;
}
.about-why__item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}
.about-why__item p {
    color: rgba(255,255,255,0.78);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */
.about-testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.testimonial {
    padding: 1.8rem 1.6rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    position: relative;
    transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
    box-shadow: var(--sh-sm);
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: -14px;
    left: 18px;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--brand-accent);
    opacity: 0.25;
}
.testimonial:hover {
    transform: translateY(-5px);
    border-color: var(--brand-accent);
    box-shadow: var(--sh-lg);
}
.testimonial__stars {
    color: #f5a623;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}
.testimonial blockquote {
    color: var(--text-2);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
}
.testimonial figcaption {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}
.testimonial figcaption strong {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}
.testimonial figcaption span {
    font-size: 0.82rem;
    color: var(--text-mute);
}

/* ---- VISIT / LOCATION ---- */
.about-visit-section { background: var(--bg-light); }
.about-visit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: stretch;
}
.about-visit__text .eyebrow { display: inline-block; margin-bottom: 0.8rem; }
.about-visit__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.about-visit__text > p {
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 1.6rem;
}
.about-visit__meta {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}
.about-visit__meta li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: 0.92rem;
    color: var(--text-2);
    transition: border-color 0.3s, transform 0.3s var(--ease);
}
.about-visit__meta li:hover {
    border-color: var(--brand-accent);
    transform: translateX(4px);
}
.about-visit__meta-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 700;
}
.about-visit__meta a { color: var(--brand); font-weight: 600; }
.about-visit__meta a:hover { text-decoration: underline; }
.about-visit__ctas {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.about-visit__map {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    min-height: 420px;
    position: relative;
}
.about-visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    filter: saturate(0.95);
    transition: filter 0.4s var(--ease);
}
.about-visit__map:hover iframe { filter: saturate(1.1); }

/* ---- FINAL CTA ---- */
.about-cta-section {
    padding: clamp(40px, 6vw, 72px) 0;
}
.about-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.4rem, 4vw, 3rem);
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
    color: #fff;
    box-shadow: var(--sh-xl);
}
.about-cta__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    animation: aboutFloat 12s ease-in-out infinite;
}
.about-cta__shape--1 {
    top: -120px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, #3a7ab8, transparent 70%);
}
.about-cta__shape--2 {
    bottom: -140px; right: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, #2f8a94, transparent 70%);
    animation-delay: -6s;
}
.about-cta__eyebrow {
    color: #9dc2e6;
    position: relative;
    margin-bottom: 0.9rem;
    display: inline-block;
}
.about-cta h2 {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 0.9rem;
    letter-spacing: -0.02em;
}
.about-cta > p {
    position: relative;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 1.8rem;
}
.about-cta__ctas {
    position: relative;
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta__ctas .btn-primary {
    background: #fff;
    color: var(--brand);
}
.about-cta__ctas .btn-primary:hover {
    background: var(--brand-xlt);
    color: var(--brand-dk);
    transform: translateY(-2px);
    box-shadow: var(--sh-lg);
}
.about-cta__ctas .btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
}
.about-cta__ctas .btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}
.btn-lg { padding: 14px 32px; font-size: 0.98rem; }

/* ============================================
   ABOUT PAGE - Responsive
   ============================================ */
@media (max-width: 1024px) {
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-testimonials .testimonials-grid { grid-template-columns: 1fr; }
    .about-why__grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-visit { grid-template-columns: 1fr; }
    .about-visit__map { min-height: 320px; }
    .about-visit__map iframe { min-height: 320px; }
}
@media (max-width: 768px) {
    .about-hero { padding: clamp(36px, 8vw, 64px) 0 clamp(28px, 6vw, 48px); }
    .about-hero__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .about-hero__lead { font-size: 0.98rem; }
    .about-mv { grid-template-columns: 1fr; gap: 1.2rem; }
    .about-mv__card { padding: 1.8rem 1.5rem; }
    .about-stat { padding: 1.2rem 0.8rem; }
    .about-stat__num { font-size: 1.7rem; }
    .about-stat__label { font-size: 0.72rem; }
    .about-why__item { padding: 1.1rem 1.2rem; gap: 0.9rem; }
    .about-why__num { font-size: 1.3rem; }
    .about-visit__meta li { grid-template-columns: 90px 1fr; padding: 0.7rem 0.9rem; font-size: 0.88rem; }
    .about-cta { padding: 2.4rem 1.4rem; }
}
@media (max-width: 480px) {
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
    .values-grid { grid-template-columns: 1fr; }
    .about-hero__ctas .btn,
    .about-cta__ctas .btn,
    .about-visit__ctas .btn { width: 100%; }
    .about-visit__meta li { grid-template-columns: 1fr; gap: 0.3rem; }
    .testimonial { padding: 1.4rem 1.2rem; }
    .about-mv__icon { width: 48px; height: 48px; }
    .about-mv__icon svg { width: 24px; height: 24px; }
    .about-mv__card h3 { font-size: 1.2rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .about-hero__blob,
    .about-cta__shape,
    .about-story__media-ring {
        animation: none;
    }
    .about-stat,
    .value-card,
    .about-mv__card,
    .testimonial,
    .about-why__item,
    .about-visit__meta li {
        transition: none;
    }
}

/* ============================================
   CONTACT PAGE — enhancements
   ============================================ */

/* Hero intro */
.contact-hero { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.contact-hero__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.contact-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0.6rem 0 1rem;
}
.contact-hero__lead {
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 auto 1.2rem;
    max-width: 620px;
}
.contact-hero__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}
.contact-hero__sep { color: var(--text-mute); }
.contact-hero__est { font-weight: 500; }

/* Status pill — used in hero + hours card */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--bg-elevated);
    color: var(--text-2);
    border: 1px solid var(--border);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.status-pill--sm { padding: 0.3rem 0.7rem; font-size: 0.74rem; }
.status-pill__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--text-mute);
    flex-shrink: 0;
}
.status-pill[data-state="open"] {
    background: #e8f9ed;
    color: var(--green-dk);
    border-color: rgba(37, 211, 102, 0.3);
}
.status-pill[data-state="open"] .status-pill__dot {
    background: var(--wa);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    animation: pulse-dot 2s var(--ease) infinite;
}
.status-pill[data-state="soon"] {
    background: #fef3c7;
    color: #92400e;
    border-color: rgba(245, 158, 11, 0.3);
}
.status-pill[data-state="soon"] .status-pill__dot { background: #f59e0b; }
.status-pill[data-state="closed"] {
    background: #fee2e2;
    color: #991b1b;
    border-color: rgba(220, 38, 38, 0.25);
}
.status-pill[data-state="closed"] .status-pill__dot { background: #dc2626; }
@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Trust stats row */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.4rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
}
.trust-stat { text-align: center; padding: 0.4rem 0.6rem; border-right: 1px solid var(--border); }
.trust-stat:last-child { border-right: none; }
.trust-stat__num {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 800;
    color: var(--brand);
    line-height: 1.1;
    background: var(--g-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.trust-stat__label {
    margin-top: 0.35rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* Contact cards — compact horizontal layout */
.contact-cards-section { padding-top: 0.5rem; padding-bottom: 1rem; }
.contact-grid--compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
}
.contact-card--row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    align-items: center;
    padding: 1.1rem 1.2rem;
    position: relative;
}
.contact-card--row .contact-card__icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    margin-bottom: 0;
}
.contact-card--row .contact-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.contact-card--row .contact-card__label {
    margin-bottom: 0;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
}
.contact-card--row .contact-card__value {
    font-size: 1rem;
    margin-bottom: 0.05rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.contact-card--row .contact-card__value--email {
    font-size: 0.86rem;
    font-weight: 600;
}
.contact-card--row .contact-card__cta {
    font-size: 0.78rem;
    margin-top: 0.15rem;
}
.contact-card--row.contact-card--wa {
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 75%);
    border-color: rgba(37, 211, 102, 0.4);
}
.contact-card--row.contact-card--wa .contact-card__icon {
    background: var(--wa);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}
.contact-card__badge {
    position: absolute;
    top: 0.55rem;
    right: 0.6rem;
    background: var(--wa);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
    pointer-events: none;
}

/* Phone list inside Phone card — compact, inline */
.contact-card--phones { padding-top: 0.85rem; padding-bottom: 0.85rem; }
.contact-card--phones .contact-card__body { gap: 0.35rem; }
.phone-list {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}
.phone-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.22rem 0;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.86rem;
    transition: color 0.2s;
}
.phone-list a:hover { color: var(--brand); }
.phone-list a:hover .phone-list__tag { background: var(--brand); color: #fff; }
.phone-list__tag {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.13rem 0.45rem;
    border-radius: 999px;
    background: var(--brand-xlt);
    color: var(--brand);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

/* Form: 2-column row, validation, counter, success */
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.field-row .field { margin-bottom: 1.1rem; }
.field label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}
.field__req { color: #dc2626; font-weight: 700; }
.field__counter {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
    color: var(--text-mute);
    transition: color 0.2s;
}
.field__counter.is-near { color: #b45309; }
.field input.is-invalid,
.field textarea.is-invalid {
    border-color: #dc2626;
    background: #fef2f2;
}
.field input.is-invalid:focus,
.field textarea.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}
.field__error {
    font-size: 0.78rem;
    color: #dc2626;
    margin-top: 0.4rem;
    min-height: 0;
    line-height: 1.4;
}
.field__error:empty { display: none; }

/* Success state */
.inquiry-success {
    background: #fff;
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--sh-lg);
    text-align: center;
    animation: fadeUp 0.4s var(--ease);
}
.inquiry-success__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 1.1rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    animation: popIn 0.5s var(--ease-bounce);
}
.inquiry-success h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.inquiry-success p {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1.4rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.inquiry-success .btn { margin-bottom: 1rem; }
.inquiry-success__reset {
    background: none;
    border: none;
    color: var(--brand);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: var(--r-sm);
    transition: background 0.2s;
}
.inquiry-success__reset:hover { background: var(--brand-xlt); }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

/* Hours card head + today highlight */
.hours-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.hours-card__head .hours-card__icon { margin-bottom: 0; }
.hours-card li.is-today {
    background: var(--brand-xlt);
    margin: 0 -0.6rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    border-radius: var(--r-sm);
    border-bottom-color: transparent;
}
.hours-card li.is-today strong { color: var(--brand); }

/* Responsive: Contact page */
@media (max-width: 960px) {
    .contact-grid--compact { grid-template-columns: 1fr; gap: 0.7rem; }
    .trust-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
    .contact-hero { padding-top: 1rem; padding-bottom: 1rem; }
    .contact-hero__title { font-size: clamp(1.5rem, 6vw, 2rem); }
    .contact-hero__lead { font-size: 0.95rem; }
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 1rem;
    }
    .trust-stat { padding: 0.6rem 0.4rem; border-right: none; border-bottom: 1px solid var(--border); }
    .trust-stat:nth-last-child(-n+2) { border-bottom: none; }
    .trust-stat:nth-child(odd) { border-right: 1px solid var(--border); }
    .contact-card--row { padding: 0.95rem 1rem; gap: 0.8rem; }
    .contact-card--row .contact-card__icon { width: 40px; height: 40px; }
    .contact-card--row .contact-card__value { font-size: 0.95rem; }
    .contact-card--row .contact-card__value--email { font-size: 0.8rem; }
    .contact-card__badge { font-size: 0.55rem; padding: 0.18rem 0.45rem; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .phone-list a { font-size: 0.84rem; }
    .inquiry-success { padding: 2rem 1.4rem; }
    .inquiry-success__icon { width: 54px; height: 54px; }
    .inquiry-success h3 { font-size: 1.2rem; }
    .hours-card__head { margin-bottom: 1rem; }
}
@media (max-width: 480px) {
    .contact-hero__meta { font-size: 0.78rem; gap: 0.45rem; }
    .status-pill { padding: 0.35rem 0.7rem; font-size: 0.74rem; }
    .trust-stat__num { font-size: 1.4rem; }
    .trust-stat__label { font-size: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
    .status-pill[data-state="open"] .status-pill__dot { animation: none; }
    .inquiry-success,
    .inquiry-success__icon { animation: none; }
}
