@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-surface-soft: #f7f7f8;
    --color-border: #e6e6e8;
    --color-text: #111111;
    --color-text-muted: #6e6e73;
    --color-accent: #000000;
    --color-accent-inverse: #ffffff;
    --color-danger: #e63946;
    --color-success: #2ecc71;
    --color-gold: #e5a93b;
    
    --font-display: 'Bebas Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --container-max: 1440px;
    --space-section: 64px;
    --space-card-gap: 16px;
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-pill: 999px;
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.skip-link {
    position: absolute;
    top: -50px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    font-weight: 700;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 15px; }

/* Top Announcement Strip */
.announcement-bar {
    background: #000000;
    text-align: center;
    padding: 9px 16px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

/* Sticky Minimal Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.brand-logo {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: #000000;
}

.site-nav {
    display: flex;
    gap: 2.25rem;
}
.site-nav a {
    font-size: 0.825rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
}
.site-nav a:hover, .site-nav a.active { color: #000000; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hdr-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: transform 0.2s ease;
}
.hdr-icon-btn:hover { transform: scale(1.08); }

.cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
}
.cart-btn:hover { border-color: #000000; }
.cart-counter {
    background: #000000;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Search Expandable Drawer */
.header-search-bar {
    background: #f4f4f5;
    border-top: 1px solid #e4e4e7;
    padding: 10px 2rem;
}
.search-form-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #d4d4d8;
    border-radius: 999px;
    padding: 6px 16px;
}
.search-form-inner input {
    border: none;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
    background: transparent;
}
.search-close-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    color: #71717a;
}

/* Main Workspace */
.main-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    min-height: 75vh;
}

/* Multi-Image Hero Slider */
.hero-slider-wrap {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: var(--space-section);
    background: #0a0a0a;
}
.hero-slides-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 4rem 3.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: #ffffff;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-50%) scale(1.08);
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Category Cards (Exact 357px x 318px Grid) */
.category-grid-section {
    margin-bottom: var(--space-section);
    display: flex;
    justify-content: center;
    width: 100%;
}
.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 357px);
    gap: 16px;
    justify-content: center;
    width: 100%;
    max-width: 1110px;
}
.category-feature-card {
    position: relative;
    width: 100%;
    max-width: 357px;
    height: 318px;
    aspect-ratio: 357 / 318;
    background: #f2f2f4;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    display: block;
}
.category-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.category-feature-card:hover img {
    transform: scale(1.04);
}
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.82) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.25rem 0.75rem;
    text-align: center;
    color: #ffffff;
}
.category-card-title {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 0.65rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.category-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 7px 16px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.category-feature-card:hover .category-card-btn {
    background: #ffffff;
    color: #000000;
}

/* =========================================================
   SHOP BY TEAM 6-PER-SCREEN & SWIPE PHYSICS
   ========================================================= */
.team-strip-section {
    margin: 2.5rem auto var(--space-section);
    max-width: 1200px;
}
.team-strip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}
.slant-badge {
    width: 16px;
    height: 22px;
    background: #111111;
    transform: skewX(-20deg);
    display: inline-block;
}
.team-strip-title {
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #111111;
    margin: 0;
}
.teams-carousel-viewport {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    touch-action: pan-y pinch-zoom;
}
.teams-slides-track {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}
.teams-slide {
    min-width: 100%;
    flex: 0 0 100%;
}
.teams-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem 1rem;
    justify-items: center;
    align-items: start;
    padding: 0.5rem 0;
}
.team-grid-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 110px;
    cursor: pointer;
}
.team-crest-circle {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 1px solid #e4e4e7;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 0.65rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-crest-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.team-grid-card:hover .team-crest-circle,
.team-grid-card:active .team-crest-circle {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.team-grid-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.teams-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.5rem;
}
.team-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4d4d8;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}
.team-dot.is-active {
    width: 22px;
    border-radius: 999px;
    background: #111111;
}

/* Photographic Giveaway Banner */
.giveaway-banner-section {
    margin-bottom: var(--space-section);
    display: flex;
    justify-content: center;
    width: 100%;
}
.giveaway-card-wrap {
    position: relative;
    width: 100%;
    max-width: 1422px;
    height: 317px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.giveaway-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}
.giveaway-card-wrap:hover .giveaway-bg-layer { transform: scale(1.06); }
.giveaway-overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 15, 12, 0.96) 0%, rgba(17, 15, 12, 0.90) 38%, rgba(17, 15, 12, 0.60) 65%, rgba(17, 15, 12, 0.25) 100%);
    z-index: 2;
}
.giveaway-content {
    position: relative;
    z-index: 3;
    max-width: 620px;
    color: #ffffff;
}
.giveaway-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5a93b;
    margin-bottom: 0.5rem;
}
.live-pulse-dot {
    width: 7px;
    height: 7px;
    background: #e5a93b;
    border-radius: 50%;
    animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 169, 59, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(229, 169, 59, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 169, 59, 0); }
}
.giveaway-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    letter-spacing: 0.02em;
    line-height: 1;
    color: #e5a93b;
    margin-bottom: 0.6rem;
}
.giveaway-subtext {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e6e3da;
    margin-bottom: 0.4rem;
}
.giveaway-rules-tag {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #9f9a8e;
    margin-bottom: 1.35rem;
}
.giveaway-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e5a93b;
    color: #17130a;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
}

/* Catalog & Product Grids */
.catalog-section { margin-bottom: var(--space-section); }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1;
}
.view-all-link {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}
.product-grid, .jc-product-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.product-card, .jc-product-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.card-media-wrap, .jc-card-media-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f7f8;
}
.card-img, .jc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.badge-stock, .jc-badge-sale {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 7px;
    background: #000;
    color: #fff;
    border-radius: var(--radius-sm);
}
.badge-stock.sold-out, .jc-sold-out { background: var(--color-danger); }
.card-details, .jc-card-details {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-title, .jc-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}
.card-pricing, .jc-card-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.current-price, .jc-current-price {
    font-size: 1rem;
    font-weight: 800;
}
.compare-price, .jc-compare-price {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 2rem;
    background: #000000;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
}

/* Product Detail Page (PDP) Layout */
.pdp-breadcrumb {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 8px;
}
.pdp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}
.pdp-main-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.pdp-main-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pdp-thumbnails-strip {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}
.pdp-thumb-item {
    width: 70px;
    height: 70px;
    border: 1.5px solid var(--color-border);
    background: #ffffff;
    border-radius: var(--radius-sm);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}
.pdp-thumb-item.is-active { border-color: #000000; }
.pdp-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pdp-details-col { display: flex; flex-direction: column; }
.pdp-product-title {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}
.pdp-pricing-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 1.25rem;
}
.pdp-current-price {
    font-size: 1.6rem;
    font-weight: 800;
}
.pdp-short-desc {
    font-size: 0.92rem;
    color: #55555c;
    line-height: 1.65;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
}
.pdp-size-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
}
.pdp-sizes-grid {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
}
.pdp-size-pill input { display: none; }
.pdp-size-pill .size-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 42px;
    border: 1px solid #dcdce0;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}
.pdp-size-pill input:checked + .size-text {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}
.pdp-cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 2.5rem;
}
.pdp-qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #000000;
    border-radius: 4px;
    height: 50px;
}
.pdp-qty-stepper .qty-btn {
    background: none;
    border: none;
    width: 38px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}
#pdpQtyInput {
    width: 44px;
    border: none;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
}
.pdp-add-btn {
    flex: 1;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
}

/* Size Specifications Table */
.pdp-specs-section {
    margin: 4rem 0;
    border-top: 1px solid var(--color-border);
    padding-top: 3rem;
}
.pdp-specs-nav {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
}
.spec-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-muted);
    cursor: pointer;
}
.spec-tab-btn.is-active {
    color: #000000;
    border-bottom-color: #000000;
}
.pdp-size-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}
.pdp-size-table th, .pdp-size-table td {
    border: 1px solid #e2e2e6;
    padding: 10px 16px;
    text-align: left;
    font-size: 0.85rem;
}
.pdp-size-table th {
    background: #000000;
    color: #ffffff;
    font-weight: 700;
}

/* Cart, Checkout & Payment Proof */
.jc-cart-layout, .jc-ref-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}
.jc-cart-table {
    width: 100%;
    border-collapse: collapse;
}
.jc-cart-table th, .jc-cart-table td {
    padding: 14px;
    border-bottom: 1px solid #e4e4e7;
    font-size: 0.9rem;
}
.jc-cart-totals-card {
    background: #fdfdfd;
    border: 1px solid #e4e4e7;
    border-radius: 4px;
    padding: 2rem;
}
.jc-checkout-btn, .jc-ref-place-order-btn {
    display: block;
    width: 100%;
    background: #18181b;
    color: #ffffff;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    margin-top: 1.5rem;
}
.knc-proof-wrapper { max-width: 920px; margin: 3rem auto; }
.knc-proof-split-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2.5rem;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    padding: 2.5rem;
}

/* Footer */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 4.5rem 2rem 2.5rem;
    margin-top: 5rem;
}
.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}
.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #222222;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #888890;
}

/* Global Responsive Transitions */
@media (max-width: 1200px) {
    .product-grid, .jc-product-grid-6 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .pdp-container, .jc-cart-layout, .jc-ref-checkout-layout, .knc-proof-split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-grid, .jc-product-grid-6 { grid-template-columns: repeat(3, 1fr); }
    .category-cards-grid { grid-template-columns: repeat(2, minmax(260px, 357px)); }
}
@media (max-width: 768px) {
    .site-nav { display: none; }
    .header-inner { padding: 0.75rem 1rem; }
    .product-grid, .jc-product-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .category-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 100%; }
    .category-feature-card { height: auto; aspect-ratio: 177.77 / 278.51; }
    .hero-slider-wrap { height: 420px; }
    .footer-inner { grid-template-columns: 1fr; }
}