/* =========================================================
   HOMEGROWN SPIRITS — Shop Stylesheet
   Standalone CSS for the shop sub-site at /shop/
   Warm, earthy, artisanal palette — distinct from portfolio
   ========================================================= */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
    /* Dark mode (default) — warm amber/earth palette */
    --hs-bg:         #100d08;
    --hs-surface:    #1c1510;
    --hs-surface-2:  #241c12;
    --hs-surface-3:  #2e2418;
    --hs-text:       #e8d5b0;
    --hs-text-muted: #9a8460;
    --hs-text-faint: #6a5c40;
    --hs-amber:      #c89050;   /* primary accent */
    --hs-amber-dim:  #a07030;
    --hs-green:      #4a7a48;   /* secondary accent */
    --hs-rust:       #9a4830;   /* tertiary */
    --hs-border:     rgba(200, 144, 80, 0.14);
    --hs-border-strong: rgba(200, 144, 80, 0.38);
    --hs-nav-bg:     rgba(28, 21, 16, 0.96);
    --hs-card-bg:    rgba(28, 21, 16, 0.72);
    --hs-overlay:    rgba(16, 13, 8, 0.90);
    --hs-placeholder: #7a6a4a;

    /* Spacing (same scale as portfolio) */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;

    /* Radius */
    --r-sm: 2px;
    --r:    4px;
    --r-md: 6px;
    --r-lg: 10px;

    /* Type */
    --f-xs:  0.75rem;
    --f-sm:  0.875rem;
    --f-md:  1rem;
    --f-lg:  1.125rem;
    --f-xl:  1.3rem;
    --f-2xl: 1.75rem;
    --f-3xl: 2.4rem;

    /* Layout */
    --max-w:    1140px;
    --sidebar-w: 240px;
    --gap:      2rem;
    --gap-sm:   1rem;

    color-scheme: dark;
}

/* Light mode */
[data-theme="light"] {
    --hs-bg:         #f5ede0;
    --hs-surface:    #eee0cc;
    --hs-surface-2:  #e4d4bc;
    --hs-surface-3:  #d8c8aa;
    --hs-text:       #2a1a08;
    --hs-text-muted: #6a5030;
    --hs-text-faint: #9a7a50;
    --hs-amber:      #8a5820;
    --hs-amber-dim:  #6a4210;
    --hs-green:      #3a6030;
    --hs-rust:       #7a3018;
    --hs-border:     rgba(80, 50, 20, 0.15);
    --hs-border-strong: rgba(80, 50, 20, 0.40);
    --hs-nav-bg:     rgba(238, 224, 204, 0.97);
    --hs-card-bg:    rgba(238, 224, 204, 0.75);
    --hs-overlay:    rgba(40, 25, 10, 0.80);
    --hs-placeholder: #9a7a55;

    color-scheme: light;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: "Atkinson Hyperlegible Next", -apple-system, BlinkMacSystemFont,
                 "Segoe UI", "Helvetica Neue", sans-serif;
    background: var(--hs-bg);
    color: var(--hs-text);
    line-height: 1.7;
    font-size: 16px;
    letter-spacing: 0.01em;
    min-height: 100vh;
}

:focus-visible {
    outline: 2px solid var(--hs-amber);
    outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

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

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
h1 { font-size: var(--f-3xl); margin-top: 0; }
h2 { font-size: var(--f-2xl); border-bottom: 1px solid var(--hs-border); padding-bottom: 0.3em; }
h3 { font-size: var(--f-xl); }
h4 { font-size: var(--f-lg); }
p  { margin-bottom: 1em; }

a { color: var(--hs-amber); text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 2px; transition: text-decoration-color 0.15s; }
a:hover { text-decoration-color: var(--hs-amber); }
a:visited { color: var(--hs-green); }

.small { font-size: var(--f-sm); }
.muted { color: var(--hs-text-muted); }
.faint { color: var(--hs-text-faint); }
.mono  { font-family: "Courier New", monospace; }

/* ── SKIP LINK ─────────────────────────────────────────────── */
.skip-link {
    position: fixed; top: 0.75rem; left: 0.75rem;
    transform: translateY(-150%); z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--hs-amber); color: var(--hs-bg);
    font-weight: 700; text-decoration: none;
    border-radius: var(--r); transition: transform 0.2s;
}
.skip-link:focus, .skip-link:focus-visible { transform: translateY(0); }

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.hs-nav {
    background: var(--hs-nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hs-border);
    position: sticky; top: 0; z-index: 1000;
}
.hs-nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--sp-3) var(--sp-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
}
.hs-logo {
    font-weight: 700;
    font-size: var(--f-lg);
    color: var(--hs-amber) !important;
    text-decoration: none !important;
    letter-spacing: 0.04em;
    line-height: 1.2;
}
.hs-logo span {
    display: block;
    font-size: var(--f-xs);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--hs-text-muted);
    text-transform: uppercase;
}
.hs-nav-links {
    display: flex;
    list-style: none;
    gap: var(--sp-5);
    align-items: center;
}
.hs-nav-links a {
    font-size: var(--f-sm);
    color: var(--hs-text-muted) !important;
    text-decoration: none !important;
    padding: var(--sp-1) 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.hs-nav-links a:hover,
.hs-nav-links a[aria-current="page"],
.hs-nav-links a.active {
    color: var(--hs-text) !important;
    border-bottom-color: var(--hs-amber);
}
.hs-back-link {
    font-size: var(--f-xs);
    color: var(--hs-text-faint) !important;
    text-decoration: none !important;
    letter-spacing: 0.05em;
    opacity: 0.7;
    transition: opacity 0.15s;
}
.hs-back-link:hover { opacity: 1; }

/* nav buttons (theme toggle, cart) */
.theme-toggle, .cart-toggle, .site-search-toggle {
    background: none;
    border: 1px solid var(--hs-border);
    color: var(--hs-text-muted);
    cursor: pointer;
    padding: 0.35rem var(--sp-2);
    border-radius: var(--r);
    font-size: 1rem;
    line-height: 1;
    transition: color 0.15s, border-color 0.15s;
    display: flex;
    align-items: center;
    gap: 0;
}
.theme-toggle:hover, .cart-toggle:hover, .site-search-toggle:hover {
    color: var(--hs-amber);
    border-color: var(--hs-amber);
}

/* Cart badge */
.cart-badge {
    position: absolute; top: -4px; right: -8px;
    background: var(--hs-amber);
    color: var(--hs-bg);
    font-size: 0.6rem; font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
}

/* Menu toggle (mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer; gap: 5px;
    background: none; border: none;
    padding: var(--sp-2);
}
.menu-toggle span { width: 24px; height: 2px; background: var(--hs-text); display: block; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.hs-main {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--sp-8) var(--sp-6) var(--sp-12);
}

/* Layout with filter sidebar */
.catalog-layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--sp-6) var(--sp-6) var(--sp-12);
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
    gap: var(--gap);
    align-items: start;
}
.catalog-sidebar {
    position: sticky;
    top: 4.5rem;
}
.catalog-content { min-width: 0; }

/* ── HERO SECTION ────────────────────────────────────────────── */
.hs-hero {
    text-align: center;
    padding: var(--sp-12) var(--sp-6);
    background: linear-gradient(160deg, var(--hs-surface) 0%, var(--hs-bg) 100%);
    border-bottom: 1px solid var(--hs-border);
}
.hs-hero-eyebrow {
    font-size: var(--f-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hs-amber);
    margin-bottom: var(--sp-2);
    display: block;
}
.hs-hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: var(--hs-text);
    margin-bottom: var(--sp-4);
}
.hs-hero p {
    font-size: var(--f-lg);
    color: var(--hs-text-muted);
    max-width: 600px;
    margin: 0 auto var(--sp-8);
}
.hs-hero-actions {
    display: flex;
    gap: var(--sp-3);
    justify-content: center;
    flex-wrap: wrap;
}

/* Smaller in-page hero (for catalog, artists, etc.) */
.hs-page-hero {
    padding: var(--sp-8) 0 var(--sp-6);
}
.hs-page-hero h1 {
    font-size: var(--f-3xl);
    margin-bottom: var(--sp-2);
}
.hs-page-hero p {
    font-size: var(--f-lg);
    color: var(--hs-text-muted);
    max-width: 640px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-2) var(--sp-5);
    border: 1px solid var(--hs-amber);
    color: var(--hs-amber);
    background: transparent;
    border-radius: var(--r);
    font-size: var(--f-sm);
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.btn:hover { background: var(--hs-amber); color: var(--hs-bg); text-decoration: none; }
.btn:visited { color: var(--hs-amber); }
.btn-primary { background: var(--hs-amber); color: var(--hs-bg); }
.btn-primary:hover { background: transparent; color: var(--hs-amber); }
.btn-sm { padding: var(--sp-1) var(--sp-3); font-size: var(--f-xs); }
.btn-green { border-color: var(--hs-green); color: var(--hs-green); }
.btn-green:hover { background: var(--hs-green); color: var(--hs-bg); }

/* ── SECTION RULES ──────────────────────────────────────────── */
.hs-section { margin-bottom: var(--sp-12); }
.hs-section-rule {
    border-top: 1px solid var(--hs-border);
    padding-top: var(--sp-8);
    margin-bottom: var(--sp-12);
}

/* ── PRODUCT CARDS ───────────────────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--gap-sm);
}
.product-card {
    border: 1px solid var(--hs-border);
    border-radius: var(--r-md);
    background: var(--hs-card-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.15s, transform 0.12s;
}
.product-card:hover {
    border-color: var(--hs-amber);
    transform: translateY(-2px);
}
.product-card img {
    width: 100%; height: 210px;
    object-fit: cover;
    border-radius: 0; margin: 0;
    filter: brightness(0.88);
    transition: filter 0.15s;
}
.product-card:hover img { filter: brightness(1); }
[data-theme="light"] .product-card img { filter: none; }

.product-card-placeholder {
    width: 100%; height: 210px;
    background: var(--hs-surface-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--hs-text-faint); font-size: 2.5rem;
}

.product-info {
    padding: var(--sp-4) var(--sp-5);
    display: flex; flex-direction: column; flex-grow: 1;
    gap: var(--sp-2);
}
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--sp-3);
}
.product-title {
    font-size: var(--f-md);
    font-weight: 600; margin: 0;
}
.product-price {
    font-size: var(--f-md);
    font-weight: 700;
    color: var(--hs-amber);
    white-space: nowrap;
}

.product-byline {
    font-size: var(--f-xs);
    color: var(--hs-text-muted);
}
.product-byline a { color: var(--hs-text-muted); }
.product-byline a:hover { color: var(--hs-amber); }

.product-desc {
    font-size: var(--f-sm);
    color: var(--hs-text-muted);
    flex-grow: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-meta {
    display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap;
}
.product-actions {
    display: flex; gap: var(--sp-2); flex-wrap: wrap;
    margin-top: auto;
    padding-top: var(--sp-2);
}

/* Badges */
.badge {
    display: inline-block;
    font-size: 0.65rem;
    font-family: "Courier New", monospace;
    padding: 0.1rem 0.45rem;
    border: 1px solid var(--hs-border);
    border-radius: var(--r-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hs-text-muted);
}
.badge-amber { border-color: var(--hs-amber); color: var(--hs-amber); }
.badge-green { border-color: var(--hs-green); color: var(--hs-green); }
.badge-rust  { border-color: var(--hs-rust);  color: var(--hs-rust); }

/* Fulfillment note */
.product-fulfill {
    font-size: var(--f-xs);
    color: var(--hs-text-muted);
    margin: 0;
}
.product-fulfill .bi { margin-right: 0.3em; }

/* Tags */
.tags { display: flex; gap: 0.3rem; flex-wrap: wrap; }
.tag {
    display: inline-block;
    font-size: 0.7rem;
    font-family: "Courier New", monospace;
    padding: 0.1rem 0.45rem;
    border: 1px solid var(--hs-border);
    border-radius: var(--r-sm);
    color: var(--hs-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Variants */
.product-variant { display: flex; flex-direction: column; gap: 0.2rem; }
.variant-select {
    border: 1px solid var(--hs-border);
    border-radius: var(--r);
    background: var(--hs-surface-2);
    color: var(--hs-text);
    padding: 0.35rem 0.6rem;
    font: inherit; font-size: var(--f-sm);
    cursor: pointer;
}
.variant-select:focus-visible { outline: 2px solid var(--hs-amber); }

/* Stock */
.product-stock-low { color: var(--hs-amber); font-size: var(--f-xs); font-weight: 600; }
.product-stock-out { color: var(--hs-rust); font-size: var(--f-xs); font-weight: 600; }

/* ── FILTER SIDEBAR ──────────────────────────────────────────── */
.filter-sidebar {
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--r-md);
    padding: var(--sp-5);
}
.filter-group { margin-bottom: var(--sp-5); }
.filter-group:last-child { margin-bottom: 0; }
.filter-group-title {
    font-size: var(--f-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hs-text-muted);
    margin-bottom: var(--sp-3);
    padding-bottom: var(--sp-2);
    border-bottom: 1px solid var(--hs-border);
}
.filter-option {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-1) 0;
    cursor: pointer;
    font-size: var(--f-sm);
    color: var(--hs-text-muted);
    transition: color 0.12s;
    border: none; background: none;
    width: 100%; text-align: left;
    border-radius: var(--r-sm);
}
.filter-option:hover { color: var(--hs-text); }
.filter-option.active { color: var(--hs-amber); font-weight: 600; }
.filter-option input[type="checkbox"] { accent-color: var(--hs-amber); }
.filter-count {
    margin-left: auto;
    font-size: var(--f-xs);
    color: var(--hs-text-faint);
}
.filter-reset {
    background: none; border: 1px solid var(--hs-border);
    color: var(--hs-text-muted); cursor: pointer;
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--r); font: inherit; font-size: var(--f-xs);
    width: 100%; margin-top: var(--sp-4);
    transition: color 0.15s, border-color 0.15s;
}
.filter-reset:hover { color: var(--hs-rust); border-color: var(--hs-rust); }

/* Price radio buttons */
.price-options { display: flex; flex-direction: column; gap: var(--sp-1); }

/* ── SORT + RESULT BAR ───────────────────────────────────────── */
.catalog-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    flex-wrap: wrap;
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--hs-border);
}
.catalog-bar-left { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.catalog-count { font-size: var(--f-sm); color: var(--hs-text-muted); }

.search-bar {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    background: var(--hs-surface-2);
    border: 1px solid var(--hs-border);
    border-radius: var(--r);
    padding: var(--sp-2) var(--sp-3);
    width: 100%;
    max-width: 340px;
    transition: border-color 0.15s;
}
.search-bar:focus-within { border-color: var(--hs-border-strong); }
.search-bar input {
    background: none; border: none;
    color: var(--hs-text); font: inherit; font-size: var(--f-sm);
    outline: none; width: 100%;
}
.search-bar input::placeholder { color: var(--hs-placeholder); }
.search-bar .bi { color: var(--hs-text-muted); font-size: var(--f-sm); }

.sort-select {
    border: 1px solid var(--hs-border);
    border-radius: var(--r);
    background: var(--hs-surface-2);
    color: var(--hs-text);
    padding: var(--sp-2) var(--sp-3);
    font: inherit; font-size: var(--f-sm);
    cursor: pointer;
}
.sort-select:focus-visible { outline: 2px solid var(--hs-amber); }

/* Active filter chips */
.active-filters {
    display: flex; flex-wrap: wrap; gap: var(--sp-2);
    margin-bottom: var(--sp-4);
}
.filter-chip {
    display: inline-flex; align-items: center; gap: var(--sp-2);
    font-size: var(--f-xs);
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--hs-amber);
    border-radius: var(--r-sm);
    color: var(--hs-amber);
    background: rgba(200,144,80,0.08);
    cursor: pointer; transition: background 0.12s;
}
.filter-chip:hover { background: rgba(200,144,80,0.2); }
.filter-chip .bi { font-size: 0.65rem; }

/* Mobile filter toggle */
.mobile-filter-toggle {
    display: none;
    padding: var(--sp-2) var(--sp-4);
    border: 1px solid var(--hs-border);
    border-radius: var(--r);
    background: none;
    color: var(--hs-text-muted);
    font: inherit; font-size: var(--f-sm);
    cursor: pointer;
    align-items: center; gap: var(--sp-2);
}
.mobile-filter-toggle:hover { color: var(--hs-amber); border-color: var(--hs-amber); }

/* ── ARTIST CARDS ────────────────────────────────────────────── */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--gap-sm);
    margin-top: var(--sp-6);
}
.artist-card {
    border: 1px solid var(--hs-border);
    border-radius: var(--r-md);
    background: var(--hs-card-bg);
    backdrop-filter: blur(6px);
    overflow: hidden;
    text-decoration: none !important;
    color: var(--hs-text) !important;
    transition: border-color 0.15s, transform 0.12s;
    display: flex; flex-direction: column;
}
.artist-card:hover { border-color: var(--hs-amber); transform: translateY(-2px); }
.artist-card-photo {
    width: 100%; height: 200px;
    object-fit: cover; border-radius: 0; margin: 0;
    filter: brightness(0.85) sepia(15%);
    transition: filter 0.2s;
}
.artist-card:hover .artist-card-photo { filter: brightness(0.95) sepia(8%); }
[data-theme="light"] .artist-card-photo { filter: sepia(10%) saturate(0.9); }
[data-theme="light"] .artist-card:hover .artist-card-photo { filter: sepia(5%) saturate(0.95); }

.artist-card-placeholder {
    width: 100%; height: 200px;
    background: var(--hs-surface-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--hs-text-faint); font-size: 3rem;
}
.artist-card-body {
    padding: var(--sp-4) var(--sp-5);
    flex-grow: 1;
    display: flex; flex-direction: column; gap: var(--sp-2);
}
.artist-card-name { font-size: var(--f-xl); font-weight: 700; margin: 0; }
.artist-card-tagline { font-size: var(--f-sm); color: var(--hs-text-muted); margin: 0; }
.artist-card-mediums { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-top: var(--sp-1); }
.artist-card-footer {
    padding: var(--sp-3) var(--sp-5);
    border-top: 1px solid var(--hs-border);
    font-size: var(--f-xs);
    color: var(--hs-amber);
    display: flex; align-items: center; gap: var(--sp-2);
}

/* ── ARTIST PAGE HERO ────────────────────────────────────────── */
.artist-hero {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--sp-8);
    align-items: start;
    padding: var(--sp-8) 0 var(--sp-6);
}
.artist-hero-photo {
    width: 100%; border-radius: var(--r-md);
    border: 2px solid var(--hs-border);
    filter: brightness(0.88) sepia(12%);
}
[data-theme="light"] .artist-hero-photo { filter: sepia(8%) saturate(0.9); }
.artist-hero-name { font-size: var(--f-3xl); margin-bottom: var(--sp-2); }
.artist-hero-tagline { font-size: var(--f-xl); color: var(--hs-amber); margin-bottom: var(--sp-4); }
.artist-hero-bio { max-width: 600px; color: var(--hs-text-muted); }
.artist-hero-meta {
    display: flex; gap: var(--sp-4); flex-wrap: wrap;
    margin-top: var(--sp-3);
    font-size: var(--f-sm); color: var(--hs-text-muted);
}
.artist-hero-meta span { display: flex; align-items: center; gap: var(--sp-1); }
.artist-social {
    display: flex; gap: var(--sp-3); flex-wrap: wrap;
    margin-top: var(--sp-4);
}
.artist-social a {
    display: inline-flex; align-items: center; gap: var(--sp-2);
    font-size: var(--f-sm); color: var(--hs-text-muted);
    text-decoration: none;
    border: 1px solid var(--hs-border);
    border-radius: var(--r); padding: var(--sp-2) var(--sp-3);
    transition: color 0.15s, border-color 0.15s;
}
.artist-social a:hover { color: var(--hs-amber); border-color: var(--hs-amber); }
.artist-medium-tags { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-top: var(--sp-3); }

/* ── ABOUT SECTION (shop homepage) ──────────────────────────── */
.about-strip {
    background: var(--hs-surface);
    border: 1px solid var(--hs-border);
    border-radius: var(--r-md);
    padding: var(--sp-8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    align-items: center;
}
.about-strip h2 { border: none; }
.about-strip-img {
    width: 100%; border-radius: var(--r-md);
    filter: brightness(0.85) sepia(15%);
}
[data-theme="light"] .about-strip-img { filter: sepia(10%) saturate(0.9); }

/* ── POLICY GRID ─────────────────────────────────────────────── */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--gap-sm);
    margin-top: var(--sp-6);
}
.policy-card {
    border: 1px solid var(--hs-border);
    border-radius: var(--r-md);
    background: var(--hs-surface);
    padding: var(--sp-5);
}
.policy-card .bi { font-size: 1.5rem; color: var(--hs-amber); display: block; margin-bottom: var(--sp-3); }
.policy-card h3 { font-size: var(--f-lg); margin-top: 0; margin-bottom: var(--sp-2); }
.policy-card p { font-size: var(--f-sm); color: var(--hs-text-muted); margin: 0; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
    font-size: var(--f-xs);
    color: var(--hs-text-muted);
    padding: var(--sp-3) 0;
    display: flex; gap: var(--sp-2); align-items: center;
}
.breadcrumb a { color: var(--hs-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--hs-amber); }
.breadcrumb-sep { opacity: 0.5; }

/* ── SKELETON LOADING ────────────────────────────────────────── */
.skeleton {
    background: var(--hs-surface-2);
    border-radius: var(--r-md);
    position: relative; overflow: hidden;
}
.skeleton::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.05) 60%, transparent 100%);
    animation: sk-shimmer 1.4s ease-in-out infinite;
}
[data-theme="light"] .skeleton::after {
    background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.04) 40%, rgba(0,0,0,0.04) 60%, transparent 100%);
}
@keyframes sk-shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.skeleton-card { height: 320px; }

/* ── EMPTY STATE ─────────────────────────────────────────────── */
.empty-state {
    text-align: center; padding: var(--sp-12) var(--sp-8);
    color: var(--hs-text-muted); font-style: italic;
    border: 1px dashed var(--hs-border); border-radius: var(--r-md);
}
.empty-state .bi { font-size: 2.5rem; display: block; margin-bottom: var(--sp-3); opacity: 0.4; }

/* ── TOAST NOTIFICATIONS ─────────────────────────────────────── */
.toast-container {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    z-index: 10000; display: flex; flex-direction: column; gap: var(--sp-2);
    pointer-events: none;
}
.toast {
    background: var(--hs-surface-2);
    border: 1px solid var(--hs-border);
    border-radius: var(--r-md);
    padding: var(--sp-3) var(--sp-5);
    font-size: var(--f-sm);
    color: var(--hs-text);
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: auto;
    max-width: 320px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.toast.visible { opacity: 1; transform: translateY(0); }
.toast-success { border-left: 3px solid var(--hs-green); }
.toast-warning { border-left: 3px solid var(--hs-amber); }
.toast-error   { border-left: 3px solid var(--hs-rust); }

/* ── CART DRAWER (inherited styles adapted for shop palette) ─── */
.cart-drawer { position: fixed; inset: 0; z-index: 9999; }
.cart-drawer[hidden] { display: none; }
.cart-drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.5);
    transition: opacity 0.25s;
}
.cart-drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(400px, 92vw);
    background: var(--hs-surface);
    border-left: 1px solid var(--hs-border);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0,0,0,0.2);
}
.cart-drawer:not([hidden]) .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--sp-4) var(--sp-5);
    border-bottom: 1px solid var(--hs-border);
    font-weight: 700; font-size: var(--f-lg);
}
.cart-drawer-header button {
    background: none; border: none; font-size: 1.5rem;
    color: var(--hs-text-muted); cursor: pointer; line-height: 1;
    transition: color 0.15s;
}
.cart-drawer-header button:hover { color: var(--hs-text); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: var(--sp-4) var(--sp-5); }
.cart-drawer-footer { padding: var(--sp-4) var(--sp-5); border-top: 1px solid var(--hs-border); }
.cart-empty { text-align: center; padding: var(--sp-12) 0; color: var(--hs-text-muted); }
.cart-item {
    display: flex; gap: var(--sp-3); align-items: flex-start;
    padding: var(--sp-3) 0; border-bottom: 1px solid var(--hs-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--r); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-size: var(--f-sm); font-weight: 600; margin: 0 0 0.2rem; line-height: 1.3; }
.cart-item-price { font-size: var(--f-sm); color: var(--hs-amber); margin: 0; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: var(--sp-2); }
.cart-qty { display: flex; align-items: center; gap: var(--sp-2); }
.cart-qty-btn {
    background: var(--hs-surface-2); border: 1px solid var(--hs-border);
    color: var(--hs-text); border-radius: var(--r-sm); width: 24px; height: 24px;
    cursor: pointer; font-size: 1rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.12s;
}
.cart-qty-btn:hover { background: var(--hs-surface-3); }
.cart-qty-val { font-size: var(--f-sm); min-width: 1.5em; text-align: center; }
.cart-remove { background: none; border: none; color: var(--hs-text-faint); cursor: pointer; font-size: var(--f-sm); }
.cart-remove:hover { color: var(--hs-rust); }
.cart-total {
    display: flex; justify-content: space-between;
    font-size: var(--f-md); margin-bottom: var(--sp-3);
}
.cart-shipping-note { margin-bottom: var(--sp-3); }
.cart-clear-btn {
    background: none; border: none; color: var(--hs-text-faint);
    cursor: pointer; font: inherit; font-size: var(--f-xs);
    display: block; margin-top: var(--sp-3); width: 100%; text-align: center;
    transition: color 0.15s;
}
.cart-clear-btn:hover { color: var(--hs-rust); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.hs-footer {
    background: var(--hs-nav-bg);
    border-top: 1px solid var(--hs-border);
    padding: var(--sp-10) 0 var(--sp-8);
    margin-top: var(--sp-12);
}
.hs-footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}
.hs-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--gap);
    margin-bottom: var(--sp-8);
}
.hs-footer-brand h3 {
    font-size: var(--f-lg); color: var(--hs-amber);
    margin-top: 0; margin-bottom: var(--sp-2); border: none;
}
.hs-footer-brand p { font-size: var(--f-sm); color: var(--hs-text-muted); max-width: 340px; }
.hs-footer-col h4 {
    font-size: var(--f-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hs-text-muted);
    margin-top: 0; margin-bottom: var(--sp-3);
    border-bottom: 1px solid var(--hs-border);
    padding-bottom: var(--sp-2);
}
.hs-footer-col ul { list-style: none; margin: 0; }
.hs-footer-col li { margin-bottom: 0.4rem; }
.hs-footer-col a { color: var(--hs-text-muted); font-size: var(--f-sm); text-decoration: none; }
.hs-footer-col a:hover { color: var(--hs-amber); }
.hs-footer-bottom {
    border-top: 1px solid var(--hs-border);
    padding-top: var(--sp-4);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: var(--sp-3);
    font-size: var(--f-xs); color: var(--hs-text-muted);
}
.hs-footer-bottom a { color: var(--hs-text-muted); text-decoration: none; }
.hs-footer-bottom a:hover { color: var(--hs-amber); }

/* ── UTILITY ─────────────────────────────────────────────────── */
.no-bullets { list-style: none; margin-left: 0; }
ul, ol { margin-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }
.bi { margin-right: 0.3em; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }

/* section heading in-page sections */
.hs-section h2 { margin-top: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .catalog-layout {
        grid-template-columns: 1fr;
        padding: var(--sp-4) var(--sp-4) var(--sp-8);
    }
    .catalog-sidebar {
        position: static;
        display: none;
    }
    .catalog-sidebar.mobile-open { display: block; }
    .mobile-filter-toggle { display: flex; }
    .about-strip {
        grid-template-columns: 1fr;
    }
    .hs-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hs-nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--hs-nav-bg);
        backdrop-filter: blur(10px);
        padding: var(--sp-4) var(--sp-6);
        border-bottom: 1px solid var(--hs-border);
    }
    .hs-nav-links.active { display: flex; }
    .hs-nav-links[hidden] { display: none !important; }
    .menu-toggle { display: flex; }
    .hs-hero h1 { font-size: 2.2rem; }
    .artist-hero {
        grid-template-columns: 1fr;
    }
    .artist-hero-photo { max-width: 180px; }
    .hs-footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; }
    .hs-main { padding: var(--sp-6) var(--sp-4) var(--sp-10); }
    .hs-hero { padding: var(--sp-8) var(--sp-4); }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
    .hs-nav, .hs-footer, .cart-drawer, .toast-container,
    .filter-sidebar, .mobile-filter-toggle, .catalog-bar { display: none !important; }
    body { background: #fff; color: #000; }
}
