/* swiss-starter.shop – Mobile-First Stylesheet */

:root {
    --color-primary:     #1C1C1C;
    --color-accent:      #E20613;
    --color-accent-dark: #B8040F;
    --color-white:       #FFFFFF;
    --color-gray-100:    #F5F5F5;
    --color-gray-200:    #E8E8E8;
    --color-gray-400:    #9E9E9E;
    --color-gray-700:    #424242;
    --color-success:     #2E7D32;
    --color-warning:     #E65100;
    --header-h: 56px;
    --bottom-bar-h: 64px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-primary);
    background: var(--color-gray-100);
    line-height: 1.5;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Utility ───────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; min-width: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-muted { color: var(--color-gray-700); font-size: 0.875rem; }
.text-right { text-align: right; }
.mono { font-family: monospace; font-size: 0.8125rem; }

/* ── Buttons ───────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.875rem 1.5rem; font-weight: 600; font-size: 0.9375rem;
    text-align: center; cursor: pointer; border: none; border-radius: 8px;
    transition: all 0.2s ease; min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary { background: var(--color-accent); color: var(--color-white); }
.btn-primary:hover { background: var(--color-accent-dark); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { background: var(--color-gray-400); cursor: not-allowed; transform: none; }
.btn-secondary { background: var(--color-primary); color: var(--color-white); }
.btn-secondary:hover { background: #333; }
.btn-outline { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-gray-200); }
.btn-outline:hover { border-color: var(--color-primary); }
.btn-full { display: flex; width: 100%; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; min-height: 40px; }
.btn-xs { padding: 0.375rem 0.625rem; font-size: 0.75rem; min-height: 32px; border-radius: 6px; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; min-height: 52px; }

/* ── Forms ──────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.8125rem; margin-bottom: 0.375rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--color-gray-700); }
.form-control {
    width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--color-gray-200);
    font-size: 1rem; border-radius: 8px; transition: border-color 0.2s ease;
    background: var(--color-white); min-height: 48px;
    -webkit-appearance: none; appearance: none;
}
.form-control:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(28,28,28,0.08); }
.form-row { display: flex; gap: 0.75rem; }
.form-row .form-group { flex: 1; }
.form-error { color: var(--color-accent); font-size: 0.75rem; margin-top: 0.25rem; }

/* ── Alerts ─────────────────────────────────── */
.alert { padding: 0.875rem 1rem; margin-bottom: 1rem; font-size: 0.875rem; border-radius: 8px; }
.alert-error { background: #FDECEA; color: var(--color-accent); border-left: 3px solid var(--color-accent); }
.alert-success { background: #E8F5E9; color: var(--color-success); border-left: 3px solid var(--color-success); }
.alert-info { background: #E3F2FD; color: #1565C0; border-left: 3px solid #1565C0; }

/* ═══════════════════════════════════════════════
   HEADER (mobile-first)
   ═══════════════════════════════════════════════ */
.site-header {
    background: var(--color-white);
    border-bottom: 2px solid var(--color-accent);
    position: sticky; top: 0; z-index: 100; width: 100%;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h); gap: 0.5rem;
}
.logo img { height: 32px; }
.header-title {
    font-weight: 800; font-size: 0.75rem; letter-spacing: 0.08em;
    color: var(--color-primary); text-align: center; text-decoration: none;
    flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-switch { font-size: 0.75rem; font-weight: 600; }
.lang-switch a { padding: 0.25rem; }
.lang-switch a.active { color: var(--color-accent); }
.lang-switch span { color: var(--color-gray-400); }

/* Cart Icon */
.cart-link { position: relative; display: flex; align-items: center; padding: 0.5rem; -webkit-tap-highlight-color: transparent; }
.cart-badge {
    position: absolute; top: 0; right: -2px;
    background: var(--color-accent); color: var(--color-white);
    font-size: 0.625rem; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Header Search */
.header-search-btn {
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; padding: 0.5rem; cursor: pointer;
    color: var(--color-primary); -webkit-tap-highlight-color: transparent;
}
.header-search-btn:hover { color: var(--color-accent); }
.header-search-bar {
    display: none; background: var(--color-white);
    border-top: 1px solid var(--color-gray-200);
    padding: 0.5rem 0;
}
.header-search-bar.open { display: block; }
.header-search-form {
    display: flex; align-items: center; gap: 0.5rem;
}
.header-search-input {
    flex: 1; padding: 0.5rem 0.75rem; border: 1.5px solid var(--color-gray-200);
    border-radius: 8px; font-size: 0.9375rem; min-height: 40px;
    background: var(--color-gray-100);
}
.header-search-input:focus { outline: none; border-color: var(--color-primary); background: var(--color-white); }
.header-search-submit {
    display: flex; align-items: center; justify-content: center;
    background: var(--color-primary); color: var(--color-white);
    border: none; width: 40px; height: 40px; border-radius: 8px; cursor: pointer;
    flex-shrink: 0;
}
.header-search-submit:hover { background: #333; }
.header-search-close {
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; font-size: 1.5rem; cursor: pointer;
    color: var(--color-gray-700); padding: 0.5rem; line-height: 1;
    -webkit-tap-highlight-color: transparent; flex-shrink: 0;
}

/* Account Dropdown */
.account-dropdown { position: relative; }
.account-btn {
    background: none; border: none; font-weight: 600; font-size: 0.8125rem;
    cursor: pointer; padding: 0.5rem; -webkit-tap-highlight-color: transparent;
    max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.dropdown-menu {
    display: none; position: absolute; right: 0; top: calc(100% + 4px);
    background: var(--color-white); box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 200px; z-index: 200; border-radius: 12px; overflow: hidden;
    border: 1px solid var(--color-gray-200);
}
.account-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 0.75rem 1rem; font-size: 0.9375rem; }
.dropdown-menu a:hover { background: var(--color-gray-100); }

/* Hamburger */
.mobile-menu-btn {
    display: flex; flex-direction: column; justify-content: center;
    background: none; border: none; cursor: pointer; padding: 0.625rem;
    -webkit-tap-highlight-color: transparent; flex-shrink: 0;
}
.mobile-menu-btn span { display: block; width: 20px; height: 2px; background: var(--color-primary); margin: 3px 0; transition: transform 0.3s, opacity 0.3s; }
body.menu-open .mobile-menu-btn span:nth-child(1) { transform: rotate(45deg) translate(3px, 4px); }
body.menu-open .mobile-menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .mobile-menu-btn span:nth-child(3) { transform: rotate(-45deg) translate(3px, -4px); }

/* Main Nav – hidden mobile, toggle via menu */
.main-nav { display: none; background: var(--color-white); border-bottom: 1px solid var(--color-gray-200); }
body.menu-open .main-nav { display: block; }
.nav-list { display: flex; flex-direction: column; list-style: none; }
.nav-item { position: relative; }
.nav-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.875rem 1rem; font-size: 0.9375rem; font-weight: 500;
    color: var(--color-gray-700); border-bottom: 1px solid var(--color-gray-200);
    min-height: 48px; -webkit-tap-highlight-color: transparent;
}
.nav-link:hover { color: var(--color-primary); }
.nav-item.active > .nav-link { color: var(--color-accent); }
.dropdown { display: none; list-style: none; background: var(--color-gray-100); }
.has-dropdown.open .dropdown { display: block; }
.dropdown a {
    display: flex; align-items: center;
    padding: 0.75rem 1rem 0.75rem 2rem; font-size: 0.875rem;
    color: var(--color-gray-700); min-height: 44px;
}
.dropdown a:hover { background: var(--color-gray-200); color: var(--color-primary); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
    background: var(--color-primary); color: rgba(255,255,255,0.5);
    padding: 1.25rem 0; font-size: 0.75rem; margin-top: 2rem;
}
.site-footer a { color: rgba(255,255,255,0.7); }
.footer-mwst { font-size: 0.6875rem; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; text-align: center; }
.footer-row { display: flex; flex-direction: column; text-align: center; gap: 0.375rem; }
.footer-meta { display: inline-flex; align-items: center; gap: 0.35rem; color: rgba(255,255,255,0.3); font-size: 0.65rem; justify-content: center; }
.footer-sep { opacity: 0.4; }
.footer-credit-link { display: inline-flex; align-items: center; }
.footer-credit-logo { display: inline; height: 12px !important; width: auto !important; max-width: 70px !important; max-height: 12px !important; opacity: 0.4; transition: opacity 0.2s; vertical-align: middle; object-fit: contain; }
.footer-credit-link:hover .footer-credit-logo { opacity: 0.7; }

/* ═══════════════════════════════════════════════
   AUTH PAGES
   ═══════════════════════════════════════════════ */
.auth-container { display: flex; justify-content: center; padding: 2rem 1rem; }
.auth-card { background: var(--color-white); padding: 1.5rem; width: 100%; max-width: 400px; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.auth-card-wide { max-width: 560px; }
.auth-card h1 { font-size: 1.375rem; margin-bottom: 1.5rem; }
.auth-link { margin-top: 1rem; font-size: 0.875rem; text-align: center; }
.auth-link a { color: var(--color-accent); font-weight: 600; }

/* ═══════════════════════════════════════════════
   PRICE DISPLAY
   ═══════════════════════════════════════════════ */
.price-uvp { text-decoration: line-through; color: var(--color-gray-400); font-size: 0.8125rem; }
.price-current { color: var(--color-accent); font-weight: 700; font-size: 1.125rem; }
.price-current.large { font-size: 1.75rem; }
.discount-badge {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--color-accent); color: var(--color-white);
    font-size: 0.6875rem; font-weight: 700; padding: 0.125rem 0.5rem;
    border-radius: 4px;
}
.savings { color: var(--color-success); font-size: 0.875rem; font-weight: 500; }

/* ═══════════════════════════════════════════════
   SEASON TABS (horizontal scroll on mobile)
   ═══════════════════════════════════════════════ */
.season-tabs {
    display: flex; gap: 0.5rem; margin-bottom: 1.25rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; padding-bottom: 2px;
    scrollbar-width: none;
}
.season-tabs::-webkit-scrollbar { display: none; }
.season-tab {
    display: flex; flex-direction: column; flex-shrink: 0;
    padding: 0.75rem 1rem; font-weight: 600; font-size: 0.8125rem;
    color: var(--color-gray-700); border: 1.5px solid var(--color-gray-200);
    border-left: 4px solid transparent; background: var(--color-white);
    border-radius: 8px; transition: all 0.15s; scroll-snap-align: start;
    min-width: 160px;
}
.season-tab:hover { border-color: var(--color-gray-200); }
.season-tab.season-vo { border-left-color: var(--color-accent); }
.season-tab.season-vo.active { background: #FFF5F5; border-color: var(--color-accent); border-left-color: var(--color-accent); color: var(--color-primary); }
.season-tab.season-no { border-left-color: #1565C0; }
.season-tab.season-no.active { background: #F0F7FF; border-color: #1565C0; border-left-color: #1565C0; color: var(--color-primary); }
.season-tab.expired { color: var(--color-gray-400); border-left-color: var(--color-gray-400) !important; background: var(--color-gray-100); }
.season-deadline { font-size: 0.6875rem; font-weight: 400; margin-top: 0.125rem; }
.season-tab.season-vo .season-deadline { color: var(--color-accent); }
.season-tab.season-no .season-deadline { color: #1565C0; }
.season-tab.expired .season-deadline { color: var(--color-gray-400); }
.season-banner { background: var(--color-white); padding: 0.75rem 1rem; margin-bottom: 1.25rem; font-size: 0.875rem; border-radius: 8px; }

/* ═══════════════════════════════════════════════
   SHOP LAYOUT (mobile: single column)
   ═══════════════════════════════════════════════ */
.shop-page { padding-top: 1rem; }
.shop-layout { display: flex; flex-direction: column; gap: 1rem; }

/* ── Filter Bottom Sheet (mobile) ──────────── */
.filter-sidebar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--color-white); z-index: 400;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
    max-height: 85vh; max-height: 85dvh;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 0 1.25rem 2rem;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.filter-sidebar.open { display: block; transform: translateY(0); }
.filter-handle {
    display: flex; justify-content: center; padding: 0.75rem 0 0.5rem;
    position: sticky; top: 0; background: var(--color-white); z-index: 1;
}
.filter-handle::before {
    content: ''; width: 36px; height: 4px;
    background: var(--color-gray-200); border-radius: 2px;
}
.filter-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary);
}
.filter-header h3 { font-size: 1.125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.filter-reset { font-size: 0.8125rem; color: var(--color-accent); font-weight: 500; }
.filter-close-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-gray-700); padding: 0.5rem; line-height: 1; -webkit-tap-highlight-color: transparent; }
.filter-group { margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-gray-200); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group h4 { font-size: 0.75rem; font-weight: 700; margin-bottom: 0.625rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--color-gray-700); }
.filter-check {
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem;
    cursor: pointer; margin-bottom: 0.25rem; padding: 0.5rem 0;
    min-height: 44px; -webkit-tap-highlight-color: transparent;
}
.filter-check:hover { color: var(--color-accent); }
.filter-check.sub { padding-left: 1.25rem; }
.filter-backdrop { display: none; }
.filter-backdrop.open {
    display: block; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4); z-index: 399;
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}

.size-grid { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.size-btn {
    display: flex; align-items: center; justify-content: center;
    min-width: 44px; height: 40px; padding: 0 0.5rem;
    border: 1.5px solid var(--color-gray-200); background: var(--color-white);
    font-size: 0.8125rem; cursor: pointer; border-radius: 6px;
    transition: all 0.15s; -webkit-tap-highlight-color: transparent;
}
.size-btn:hover, .size-btn.active { border-color: var(--color-accent); color: var(--color-accent); background: #FFF5F5; }

/* ── Shop Toolbar ──────────────────────────── */
.shop-toolbar {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 0.5rem; margin-bottom: 0.75rem;
}
.product-count { font-size: 0.875rem; color: var(--color-gray-700); flex: 1; }
.mobile-filter-btn {
    display: inline-flex; align-items: center; gap: 0.375rem;
    background: var(--color-white); border: 1.5px solid var(--color-gray-200);
    padding: 0.5rem 0.875rem; font-size: 0.8125rem; font-weight: 600;
    cursor: pointer; border-radius: 8px; min-height: 40px;
    -webkit-tap-highlight-color: transparent;
}
.sort-tabs {
    display: flex; gap: 0.25rem; width: 100%; overflow-x: auto;
    -webkit-overflow-scrolling: touch; padding-bottom: 2px; flex-wrap: nowrap;
    scrollbar-width: none;
}
.sort-tabs::-webkit-scrollbar { display: none; }
.sort-tab {
    display: inline-flex; align-items: center; padding: 0.375rem 0.75rem;
    font-size: 0.75rem; font-weight: 500; border: 1.5px solid var(--color-gray-200);
    background: var(--color-white); color: var(--color-gray-700);
    white-space: nowrap; border-radius: 20px; transition: all 0.15s;
    min-height: 32px; flex-shrink: 0;
}
.sort-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.sort-tab.active { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

/* ═══════════════════════════════════════════════
   PRODUCT GRID (2 columns mobile)
   ═══════════════════════════════════════════════ */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
.product-grid.small { grid-template-columns: repeat(2, 1fr); }
.product-card {
    display: flex; flex-direction: column;
    background: var(--color-white); border-radius: 10px;
    overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.product-card:active { transform: scale(0.98); }
.product-card:hover .product-img img { transform: scale(1.03); }
.product-img {
    background: var(--color-white); padding: 0.5rem;
    aspect-ratio: 1; display: flex; align-items: center;
    justify-content: center; overflow: hidden;
}
.product-img img { transition: transform 0.3s ease; width: 100%; height: 100%; object-fit: contain; }
.img-placeholder { background: var(--color-gray-100); width: 100%; height: 100%; min-height: 100px; border-radius: 4px; }
.img-placeholder.large { min-height: 200px; }
.color-thumbs { display: flex; gap: 4px; padding: 0.25rem 0.625rem; }
.color-thumb {
    width: 32px; height: 32px; border: 1.5px solid var(--color-gray-200);
    background: var(--color-gray-100); overflow: hidden; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
}
.color-thumb img { width: 100%; height: 100%; object-fit: contain; }
.color-thumb.active { border-color: var(--color-primary); box-shadow: 0 0 0 1px var(--color-primary); }
.product-info { padding: 0.5rem 0.625rem 0.625rem; display: flex; flex-direction: column; gap: 0.125rem; flex: 1; }
.product-name {
    font-size: 0.8125rem; font-weight: 600;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; line-height: 1.3;
}
.product-color { font-size: 0.6875rem; color: var(--color-gray-700); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-pricing { display: flex; align-items: baseline; gap: 0.25rem 0.375rem; flex-wrap: wrap; font-size: 0.8125rem; margin-top: auto; }
.product-instore { padding: 0.125rem 0.625rem; font-size: 0.6875rem; color: var(--color-gray-700); }
.product-cta {
    padding: 0.5rem 0.625rem; font-size: 0.8125rem; font-weight: 600;
    color: var(--color-accent); border-top: 1px solid var(--color-gray-100);
    margin-top: auto;
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 0.375rem; margin-top: 1.5rem; padding-bottom: 1rem; }
.page-link {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; font-size: 0.875rem;
    border: 1.5px solid var(--color-gray-200); border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
}
.page-link.active { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.no-products { text-align: center; padding: 3rem 1rem; color: var(--color-gray-700); }

/* ═══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════ */
.product-page { padding-top: 0.75rem; padding-bottom: calc(var(--bottom-bar-h) + var(--safe-bottom) + 1rem); }
.back-link { font-size: 0.875rem; color: var(--color-gray-700); margin-bottom: 0.5rem; display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0; }
.breadcrumb { font-size: 0.6875rem; color: var(--color-gray-400); margin-bottom: 1rem; display: flex; gap: 0.375rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--color-gray-700); }
.breadcrumb a:hover { color: var(--color-primary); }

.product-detail { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }

/* Image Gallery */
.product-images { position: relative; }
.main-image {
    background: var(--color-white);
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 1; padding: 1rem; border-radius: 12px;
    overflow: hidden; position: relative;
}
.main-image img { width: 100%; height: 100%; object-fit: contain; }
.gallery-dots {
    display: flex; justify-content: center; gap: 6px;
    padding: 0.75rem 0 0.25rem; position: absolute; bottom: 0.75rem;
    left: 50%; transform: translateX(-50%);
}
.gallery-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-gray-200); border: none; padding: 0;
    cursor: pointer; transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.gallery-dot.active { background: var(--color-primary); width: 20px; border-radius: 4px; }
.thumbnail-strip { display: flex; gap: 0.5rem; margin-top: 0.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.thumbnail-strip::-webkit-scrollbar { display: none; }
.thumb {
    width: 56px; height: 56px; border: 1.5px solid var(--color-gray-200);
    background: var(--color-white); padding: 0.25rem; cursor: pointer;
    border-radius: 8px; flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.thumb:hover, .thumb.active { border-color: var(--color-primary); }

/* Product Info */
.product-info-detail h1 { font-size: 1.25rem; margin-bottom: 0.25rem; line-height: 1.3; }
.article-nr { font-size: 0.8125rem; color: var(--color-gray-400); margin-bottom: 1rem; }
.color-section { margin-bottom: 1.25rem; }
.color-section h4 { font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.5rem; }
.color-swatches { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.swatch {
    width: 48px; height: 48px; border: 2px solid var(--color-gray-200);
    cursor: pointer; overflow: hidden; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-white); -webkit-tap-highlight-color: transparent;
}
.swatch img { width: 100%; height: 100%; object-fit: contain; }
.swatch:hover { border-color: var(--color-gray-700); }
.swatch.active { border-color: var(--color-primary); box-shadow: 0 0 0 1px var(--color-primary); }
.size-section { margin-bottom: 1.25rem; }
.size-section h4 { font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.5rem; }
.size-buttons { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.price-block {
    padding: 1.25rem 0; border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200); margin-bottom: 1rem;
}
.shipping-note { font-size: 0.8125rem; color: var(--color-gray-700); margin-top: 0.375rem; }
.mwst-note { font-size: 0.6875rem; color: var(--color-gray-400); margin-top: 0.375rem; }

/* Qty Control */
.qty-section { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.qty-section label { font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; color: var(--color-gray-700); }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--color-gray-200); border-radius: 8px; overflow: hidden; }
.qty-btn {
    width: 44px; height: 44px; background: var(--color-gray-100);
    border: none; font-size: 1.125rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    -webkit-tap-highlight-color: transparent;
}
.qty-btn:active { background: var(--color-gray-200); }
.qty-input { width: 48px; height: 44px; text-align: center; border: none; border-left: 1px solid var(--color-gray-200); border-right: 1px solid var(--color-gray-200); font-weight: 600; font-size: 1rem; }
.qty-input-sm { width: 52px; text-align: center; padding: 0.375rem; border: 1.5px solid var(--color-gray-200); border-radius: 6px; font-size: 0.9375rem; min-height: 36px; }

/* Sticky Add to Cart (mobile) */
.sticky-add-bar {
    display: flex; align-items: center; gap: 0.75rem;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--color-white); z-index: 200;
    padding: 0.75rem 1rem; padding-bottom: calc(0.75rem + var(--safe-bottom));
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    border-top: 1px solid var(--color-gray-200);
}
.sticky-add-bar .sticky-price { font-weight: 700; color: var(--color-accent); font-size: 1.125rem; white-space: nowrap; }
.sticky-add-bar .btn { flex: 1; }

.delivery-info { font-size: 0.875rem; color: var(--color-gray-700); margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--color-gray-200); }
.availability-notice {
    background: #FFF3E0; border-left: 3px solid var(--color-warning);
    padding: 0.75rem 1rem; margin-bottom: 0.75rem; border-radius: 0 8px 8px 0;
}
.availability-notice strong { display: block; font-size: 0.8125rem; color: var(--color-warning); margin-bottom: 0.125rem; }
.availability-notice p { font-size: 0.8125rem; color: var(--color-gray-700); margin: 0; }

/* Tabs */
.product-tabs { display: flex; border-bottom: 2px solid var(--color-gray-200); margin-bottom: 1rem; margin-top: 1.5rem; gap: 0; }
.tab-btn {
    background: none; border: none; padding: 0.75rem 1rem;
    font-weight: 600; font-size: 0.875rem; color: var(--color-gray-700);
    cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px;
    white-space: nowrap; -webkit-tap-highlight-color: transparent;
    min-height: 44px;
}
.tab-btn.active { color: var(--color-primary); border-bottom-color: var(--color-accent); }
.tab-content { padding: 1rem 0; font-size: 0.9375rem; line-height: 1.75; }
.desc-text { margin-bottom: 1rem; }
.desc-text p { margin-bottom: 0.75rem; }
.bullet-list { margin-top: 0.75rem; padding-left: 1.5rem; }
.bullet-list li { margin-bottom: 0.5rem; padding-left: 0.25rem; }
.cross-sell { margin-top: 2rem; }
.cross-sell h2 { font-size: 1.125rem; margin-bottom: 0.75rem; }

/* ═══════════════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════════════ */
.cart-page { padding-top: 1rem; padding-bottom: calc(var(--bottom-bar-h) + var(--safe-bottom) + 1rem); }
.cart-page h1 { margin-bottom: 0.25rem; font-size: 1.25rem; }
.cart-season { font-size: 0.8125rem; color: var(--color-gray-700); margin-bottom: 1rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; }

/* Cart as cards on mobile */
.cart-table { width: 100%; border-collapse: collapse; background: transparent; margin-bottom: 1rem; }
.cart-table thead { display: none; }
.cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; }
.cart-table tr {
    position: relative; background: var(--color-white);
    padding: 1rem; padding-right: 2.5rem; margin-bottom: 0.5rem;
    border-radius: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    display: grid; grid-template-columns: 56px 1fr; gap: 0.25rem 0.75rem;
}
.cart-table td { padding: 0; border: none; font-size: 0.875rem; }
.cart-table td.cart-img { grid-row: 1 / 4; display: flex; align-items: flex-start; }
.cart-table td.cart-img img { width: 56px; border-radius: 6px; }
.cart-table td.cart-img a { display: block; }
.cart-product-link { color: var(--color-primary); }
.cart-product-link:hover { color: var(--color-accent); }
/* Labels for mobile card layout */
.cart-table td:nth-child(2) { grid-column: 2; font-size: 0.875rem; }
.cart-table td:nth-child(3) { grid-column: 2; }
.cart-table td:nth-child(3)::before { content: attr(data-label) ": "; font-weight: 600; font-size: 0.6875rem; color: var(--color-gray-400); text-transform: uppercase; }
.cart-table td:nth-child(4) { grid-column: 2; }
.cart-table td:nth-child(5) { grid-column: 2; }
.cart-table td:nth-child(6) { grid-column: 2; }
.cart-table td:nth-child(6)::before { content: attr(data-label) ": "; font-weight: 600; font-size: 0.6875rem; color: var(--color-gray-400); text-transform: uppercase; }
.cart-table td:nth-child(7) { grid-column: 2; font-weight: 700; color: var(--color-accent); }
.cart-table td:nth-child(7)::before { content: attr(data-label) ": "; font-weight: 600; font-size: 0.6875rem; color: var(--color-gray-400); text-transform: uppercase; }
.cart-table td:nth-child(8) { position: absolute; top: 0.75rem; right: 0.75rem; }
.discount-badge-sm { display: inline-flex; align-items: center; background: var(--color-accent); color: var(--color-white); font-size: 0.625rem; font-weight: 700; padding: 0.125rem 0.375rem; border-radius: 3px; vertical-align: middle; margin-left: 0.25rem; }
.remove-btn {
    background: none; border: none; font-size: 1.25rem; color: var(--color-gray-400);
    cursor: pointer; padding: 0.5rem; -webkit-tap-highlight-color: transparent;
}
.remove-btn:hover { color: var(--color-accent); }

.cart-summary { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.cart-totals { background: var(--color-white); padding: 1.25rem; border-radius: 10px; }
.total-line { display: flex; justify-content: space-between; padding: 0.375rem 0; font-size: 0.875rem; }
.total-line.muted { font-size: 0.8125rem; color: var(--color-gray-700); padding: 0.125rem 0; }
.total-final { border-top: 2px solid var(--color-primary); margin-top: 0.5rem; padding-top: 0.75rem; }
.partial-delivery { background: var(--color-white); padding: 1.25rem; border-radius: 10px; }
.partial-delivery h4 { font-size: 0.875rem; margin-bottom: 0.5rem; }
.partial-note { font-size: 0.75rem; color: var(--color-gray-700); margin-top: 0.5rem; }

/* Sticky checkout bar (mobile) */
.cart-actions { display: flex; flex-direction: column-reverse; gap: 0.75rem; }
.cart-actions .btn { text-align: center; }
.sticky-checkout-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--color-white); z-index: 200;
    padding: 0.75rem 1rem; padding-bottom: calc(0.75rem + var(--safe-bottom));
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    border-top: 1px solid var(--color-gray-200);
    display: flex; align-items: center; gap: 0.75rem;
}
.sticky-checkout-bar .sticky-total { font-weight: 700; font-size: 1rem; }
.sticky-checkout-bar .sticky-total small { font-weight: 400; font-size: 0.6875rem; color: var(--color-gray-700); display: block; }
.sticky-checkout-bar .btn { flex: 1; }

/* ═══════════════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════════════ */
.checkout-page { max-width: 720px; margin: 0 auto; padding-top: 1rem; }
.checkout-progress {
    display: flex; align-items: center; background: var(--color-white);
    padding: 1rem; margin-bottom: 1.25rem; border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.cp-step { display: flex; flex-direction: column; align-items: center; gap: 0.375rem; min-width: 56px; }
.cp-dot {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700;
    background: var(--color-gray-200); color: var(--color-gray-400); flex-shrink: 0;
}
.cp-step.active .cp-dot { background: var(--color-accent); color: var(--color-white); }
.cp-step.done .cp-dot { background: var(--color-success); color: var(--color-white); }
.cp-label { font-size: 0.625rem; color: var(--color-gray-400); white-space: nowrap; text-align: center; text-transform: uppercase; font-weight: 600; letter-spacing: 0.02em; }
.cp-step.active .cp-label { color: var(--color-accent); }
.cp-step.done .cp-label { color: var(--color-success); }
.cp-line { flex: 1; height: 2px; background: var(--color-gray-200); margin: 0 0.375rem; margin-bottom: 1.25rem; min-width: 16px; }
.cp-line.done { background: var(--color-success); }
.checkout-form { background: var(--color-white); padding: 1.25rem; border-radius: 10px; }
.checkout-actions { display: flex; flex-direction: column-reverse; gap: 0.75rem; margin-top: 1.25rem; }
.checkout-actions .btn { text-align: center; }
.agb-box {
    background: var(--color-white); padding: 1.25rem; max-height: 300px;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem; font-size: 0.8125rem;
    border: 1.5px solid var(--color-gray-200); border-radius: 8px; line-height: 1.6;
}
.agb-box h3 { font-size: 0.8125rem; font-weight: 700; margin: 1rem 0 0.375rem; color: var(--color-primary); }
.agb-box p { margin-bottom: 0.5rem; }
.agb-box ul { padding-left: 1.25rem; margin: 0.25rem 0 0.5rem; }
.agb-box ul li { margin-bottom: 0.25rem; }
.agb-box small { color: var(--color-gray-700); }
.agb-check {
    display: flex; align-items: center; gap: 0.625rem;
    font-weight: 600; font-size: 0.9375rem; margin-bottom: 1rem;
    cursor: pointer; min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

/* ═══════════════════════════════════════════════
   ACCOUNT PAGES
   ═══════════════════════════════════════════════ */
.account-page { padding-top: 1rem; }
.account-page h1 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.account-grid { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.account-card { background: var(--color-white); padding: 1.25rem; border-radius: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.account-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.order-list-mini { list-style: none; }
.order-list-mini li { border-bottom: 1px solid var(--color-gray-200); }
.order-list-mini a { display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 0; font-size: 0.875rem; flex-wrap: wrap; }
.order-id { font-weight: 600; }

/* Order Detail */
.order-detail-grid { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.order-info-card { background: var(--color-white); padding: 1.25rem; border-radius: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.order-info-card h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; text-transform: uppercase; color: var(--color-gray-700); }

/* Review Grid */
.review-grid { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.review-card { background: var(--color-white); padding: 1.25rem; border: 1.5px solid var(--color-gray-200); border-radius: 10px; }
.review-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.review-card p { font-size: 0.875rem; margin-bottom: 0.25rem; }

/* ── Data Table ─────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; background: var(--color-white); margin-bottom: 1rem; border-radius: 10px; overflow: hidden; }
.data-table th { text-align: left; padding: 0.625rem 0.75rem; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--color-gray-700); border-bottom: 2px solid var(--color-gray-200); }
.data-table td { padding: 0.625rem 0.75rem; border-bottom: 1px solid var(--color-gray-200); font-size: 0.875rem; }
.data-table.compact td, .data-table.compact th { padding: 0.375rem 0.75rem; }
.data-table tfoot td { font-weight: 500; }
.total-row { border-top: 2px solid var(--color-primary); }
.clickable-row { cursor: pointer; -webkit-tap-highlight-color: transparent; }
.clickable-row:hover { background: var(--color-gray-100); }

/* Responsive data table */
.data-table-responsive thead { display: none; }
.data-table-responsive, .data-table-responsive tbody, .data-table-responsive tr, .data-table-responsive td { display: block; }
.data-table-responsive tr { padding: 0.75rem; border-bottom: 1px solid var(--color-gray-200); }
.data-table-responsive td { padding: 0.125rem 0; border: none; }
.data-table-responsive td::before { content: attr(data-label); display: inline-block; font-weight: 600; font-size: 0.6875rem; color: var(--color-gray-400); text-transform: uppercase; min-width: 80px; margin-right: 0.5rem; }
.data-table-responsive tfoot td { padding: 0.375rem 0; }
.data-table-responsive tfoot td::before { content: none; }
.data-table-responsive tfoot td[colspan] { text-align: left; }
.data-table-responsive tfoot tr { display: flex; justify-content: space-between; padding: 0.375rem 0.75rem; }
.data-table-responsive tfoot tr td { display: inline; padding: 0; }

/* Status Badges */
.status-badge { display: inline-flex; align-items: center; padding: 0.25rem 0.625rem; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; border-radius: 20px; }
.status-badge.large { font-size: 0.875rem; padding: 0.375rem 0.875rem; }
.status-pending { background: #FFF3E0; color: var(--color-warning); }
.status-ordered { background: #E3F2FD; color: #1565C0; }
.status-shipped { background: #E8F5E9; color: var(--color-success); }
.status-completed { background: #E8F5E9; color: var(--color-success); }
.status-storniert { background: #FDECEA; color: var(--color-accent); }
.status-active { background: #E8F5E9; color: var(--color-success); }
.status-processing { background: #E3F2FD; color: #1565C0; }
.status-ordered_puma { background: #E3F2FD; color: #1565C0; }
.status-goods_received { background: #E8F5E9; color: var(--color-success); }
.status-cancelled { background: #FDECEA; color: var(--color-accent); }
.role-swiss_starter { background: #E3F2FD; color: #1565C0; }
.role-ex_starter { background: #FFF3E0; color: var(--color-warning); }
.role-admin { background: #F3E5F5; color: #7B1FA2; }
.role-elite { background: #E3F2FD; color: #1565C0; }
.role-future { background: #FFF3E0; color: var(--color-warning); }

/* Status Log */
.status-log { list-style: none; }
.status-log li { display: flex; align-items: center; gap: 0.5rem; padding: 0.625rem 0; border-bottom: 1px solid var(--color-gray-200); font-size: 0.875rem; flex-wrap: wrap; }
.log-date { font-size: 0.75rem; color: var(--color-gray-400); min-width: 100px; }
.log-note { color: var(--color-gray-700); font-style: italic; }

/* Profile */
.profile-form { background: var(--color-white); padding: 1.25rem; max-width: 600px; border-radius: 10px; }
.social-post-card { margin: 1.5rem 0; padding: 1.25rem; border: 1.5px solid var(--color-gray-200); background: var(--color-white); border-radius: 10px; }

/* ═══════════════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════════════ */
.toast {
    position: fixed; bottom: calc(var(--bottom-bar-h) + var(--safe-bottom) + 0.75rem);
    left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--color-primary); color: var(--color-white);
    padding: 0.75rem 1.5rem; border-radius: 10px; font-size: 0.875rem;
    font-weight: 600; z-index: 500; white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    opacity: 0; transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════
   TABLET (min-width: 768px)
   ═══════════════════════════════════════════════ */
@media (min-width: 768px) {
    :root { --header-h: 64px; }

    .header-inner { gap: 1rem; }
    .header-title { font-size: 1rem; }
    .logo img { height: 36px; }
    .account-btn { max-width: none; font-size: 0.875rem; }
    .lang-switch { font-size: 0.8125rem; }

    /* Desktop nav */
    .mobile-menu-btn { display: none; }
    .main-nav { display: block; }
    .nav-list { flex-direction: row; flex-wrap: wrap; }
    .nav-link { border-bottom: none; padding: 0.75rem 1rem; font-size: 0.875rem; min-height: auto; }
    .nav-item.active > .nav-link { border-bottom: 3px solid var(--color-accent); }
    .dropdown { position: absolute; left: 0; top: 100%; box-shadow: 0 4px 12px rgba(0,0,0,0.1); min-width: 200px; z-index: 200; background: var(--color-white); border-radius: 0 0 8px 8px; }
    .has-dropdown:hover .dropdown { display: block; }
    .has-dropdown.open .dropdown { display: block; }
    .dropdown a { padding: 0.5rem 1rem; min-height: auto; }

    /* Shop layout: sidebar + grid */
    .shop-layout { flex-direction: row; gap: 1.5rem; align-items: start; }
    .filter-sidebar {
        display: block !important; position: sticky; top: calc(var(--header-h) + 60px);
        width: 240px; min-width: 240px; flex-shrink: 0;
        border-radius: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        transform: none; max-height: calc(100vh - var(--header-h) - 80px);
        border: 1px solid var(--color-gray-200); padding: 1.25rem;
        z-index: 1;
    }
    .filter-handle { display: none; }
    .filter-close-btn { display: none; }
    .filter-backdrop { display: none !important; }
    .filter-check { font-size: 0.8125rem; padding: 0.25rem 0; min-height: auto; }
    .shop-content { flex: 1; min-width: 0; }
    .mobile-filter-btn { display: none; }
    .sort-tabs { width: auto; flex-wrap: wrap; }

    /* Product grid 3-col */
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .product-grid.small { grid-template-columns: repeat(3, 1fr); }

    /* Product detail side-by-side */
    .product-detail { flex-direction: row; gap: 2rem; }
    .product-images { flex: 1; }
    .product-info-detail { flex: 1; }
    .product-info-detail h1 { font-size: 1.5rem; }
    .gallery-dots { display: none; }

    /* Hide sticky bars on tablet+ */
    .sticky-add-bar { display: none; }
    .sticky-checkout-bar { display: none; }
    .product-page, .cart-page { padding-bottom: 1.5rem; }

    /* Cart: table layout */
    .cart-table thead { display: table-header-group; }
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: revert; }
    .cart-table th { text-align: left; padding: 0.75rem; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--color-gray-700); border-bottom: 2px solid var(--color-gray-200); }
    .cart-table td { padding: 0.75rem; border-bottom: 1px solid var(--color-gray-200); font-size: 0.875rem; vertical-align: middle; }
    .cart-table tr { margin-bottom: 0; border-radius: 0; box-shadow: none; background: var(--color-white); }
    .cart-table { background: var(--color-white); border-radius: 10px; overflow: hidden; }
    .cart-table td.cart-img img { width: 60px; }
    .cart-table td:nth-child(3)::before,
    .cart-table td:nth-child(6)::before,
    .cart-table td:nth-child(7)::before { content: none; }
    .cart-table td:nth-child(7) { color: inherit; }
    .cart-table td:nth-child(8) { position: static; }
    .cart-summary { flex-direction: row; }
    .cart-actions { flex-direction: row; justify-content: space-between; }
    .cart-actions .btn { width: auto; }

    /* Checkout */
    .checkout-actions { flex-direction: row; justify-content: space-between; }
    .checkout-actions .btn { width: auto; }
    .checkout-form { padding: 1.5rem; }
    .agb-box { max-height: 380px; }

    /* Account */
    .account-grid { flex-direction: row; flex-wrap: wrap; }
    .account-grid > * { flex: 1; min-width: 280px; }
    .order-detail-grid { flex-direction: row; }
    .order-detail-grid > * { flex: 1; }
    .review-grid { flex-direction: row; }
    .review-grid > * { flex: 1; }

    /* Data table responsive → normal */
    .data-table-responsive thead { display: table-header-group; }
    .data-table-responsive, .data-table-responsive tbody, .data-table-responsive tr, .data-table-responsive td { display: revert; }
    .data-table-responsive tr { padding: 0; }
    .data-table-responsive td { padding: 0.625rem 0.75rem; border-bottom: 1px solid var(--color-gray-200); }
    .data-table-responsive td::before { content: none; }
    .data-table-responsive tfoot tr { display: revert; padding: 0; }
    .data-table-responsive tfoot tr td { display: revert; padding: 0.625rem 0.75rem; }

    /* Footer */
    .footer-row { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ═══════════════════════════════════════════════
   DESKTOP (min-width: 1024px)
   ═══════════════════════════════════════════════ */
@media (min-width: 1024px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
    .product-grid.small { grid-template-columns: repeat(4, 1fr); }
    .filter-sidebar { width: 260px; min-width: 260px; }
}

/* ═══════════════════════════════════════════════
   SMALL PHONES (max-width: 374px)
   ═══════════════════════════════════════════════ */
@media (max-width: 374px) {
    .container { padding: 0 0.75rem; }
    .header-title { font-size: 0.625rem; }
    .product-name { font-size: 0.75rem; }
    .product-pricing { font-size: 0.75rem; }
    .season-tab { min-width: 140px; padding: 0.625rem 0.75rem; font-size: 0.75rem; }
}
