/* UniqueStore — Red and Black inspired theme */
:root {
    --cc-black: #1a1a1a;
    --cc-white: #ffffff;
    --cc-red: #CC0000;
    --cc-dark-red: #990000;
    --cc-gray: #666666;
    --cc-light: #f9f9f9;
    --cc-border: #e5e5e5;
    --cc-sale: #CC0000;
    --cc-accent: #CC0000;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--cc-black);
    background: var(--cc-white);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--cc-black); opacity: 0.75; }

/* Promo bar — Red and Black style */
.promo-bar {
    background: var(--cc-red);
    color: var(--cc-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 16px;
}

/* Header */
.site-header {
    border-bottom: 1px solid var(--cc-border);
    z-index: 1030;
}

.site-logo .logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cc-red);
}

.header-utils .util-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-black);
    text-decoration: none;
}

.header-utils .util-link:hover { opacity: 0.6; }

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--cc-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Main navigation */
.main-nav {
    position: relative;
    border-top: 1px solid var(--cc-border) !important;
}

.nav-main-list { gap: 0; }

.nav-main-item {
    position: static;
}

.nav-main-link {
    display: block;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cc-black);
    text-decoration: none;
    white-space: nowrap;
}

.nav-main-link:hover,
.nav-main-item:hover .nav-main-link {
    background: var(--cc-light);
    color: var(--cc-black);
    opacity: 1;
}

.nav-main-link.nav-sale { color: var(--cc-red); }

/* Mega menu — hidden by default (prevents full menu listing when CSS/Bootstrap fails) */
.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cc-white);
    border-top: 1px solid var(--cc-border);
    border-bottom: 1px solid var(--cc-border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1000;
}

@media (hover: hover) and (min-width: 992px) {
    .nav-main-item.has-mega:hover .mega-menu,
    .nav-main-item.has-mega:focus-within .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Desktop vs mobile nav (does not rely only on Bootstrap utilities) */
@media (max-width: 991.98px) {
    .main-nav { display: none !important; }
}

@media (min-width: 992px) {
    #mobileNav.offcanvas { display: none !important; }
}

/* Mobile drawer hidden until opened */
#mobileNav.offcanvas:not(.show) {
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-100%);
}

.mega-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mega-heading a { color: var(--cc-black); }
.mega-heading a:hover { opacity: 0.6; }

.mega-sub li { margin-bottom: 6px; }
.mega-sub a {
    font-size: 13px;
    color: var(--cc-gray);
    text-decoration: none;
}
.mega-sub a:hover { color: var(--cc-black); opacity: 1; }

.mega-shop-all {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: underline;
    color: var(--cc-black);
}

.mega-link {
    font-size: 13px;
    color: var(--cc-gray);
}

/* Page headings */
.page-heading,
.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-subtitle { color: var(--cc-gray); font-size: 13px; }

/* Hero */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    position: relative;
}
.hero-slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-bottom: 4rem;
    max-width: 520px;
}
.hero-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-content p { font-size: 14px; opacity: 0.95; }
.hero-content .btn-cc-outline {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
    backdrop-filter: blur(4px);
}
.hero-content .btn-cc-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #fff;
    color: var(--cc-black);
    opacity: 1;
}

/* Product card — minimal Edge grid */
.product-card { margin-bottom: 1.5rem; }
.product-card-image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--cc-light);
    border-radius: 16px;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: inherit;
}
.product-card:hover .product-card-image img { transform: scale(1.03); }
.product-card-overlay { display: none; }

.badge-sale, .badge-new, .badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    padding: 4px 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--cc-red);
    color: #fff;
}
.badge-discount {
    position: static;
    display: inline-block;
}
.badge-new { left: auto; right: 10px; background: var(--cc-black); }

.discount-amount,
.discount-row .discount-amount,
.text-discount {
    color: var(--cc-red);
    font-weight: 600;
}

.product-card-body { padding-top: 12px; }
.product-brand {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cc-gray);
    margin-bottom: 4px;
}
.product-title {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.4;
}
.product-title a:hover { opacity: 0.6; }
.price-current { font-size: 13px; font-weight: 600; }
.price-compare {
    text-decoration: line-through;
    color: var(--cc-gray);
    font-size: 12px;
    margin-left: 6px;
}
.product-rating { display: none; }

.review-star-picker {
    display: flex;
    gap: 3px;
}
.review-star {
    padding: 0 2px;
    border: 0;
    background: transparent;
    color: #c8c8c8;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}
.review-star.active {
    color: #e2a400;
}
.review-star:focus-visible {
    color: #c8c8c8;
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
@media (max-width: 767.98px) {
    .review-star-picker {
        margin-bottom: 0.5rem;
    }
}

.checkout-saved-address {
    border: 1px solid var(--cc-border);
    border-radius: 0;
    background: var(--cc-light);
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.checkout-saved-address summary {
    padding: 16px;
    cursor: pointer;
    list-style: none;
}
.checkout-saved-address summary::-webkit-details-marker {
    display: none;
}
.checkout-saved-address summary::after {
    content: '+';
    font-size: 1.25rem;
    line-height: 1;
}
.checkout-saved-address[open] summary::after {
    content: '-';
}
.checkout-saved-address[open] #checkout-address-fields {
    padding: 0 16px;
}
.checkout-saved-address:hover,
.checkout-saved-address:focus-visible {
    border-color: var(--cc-black);
    background: #fff;
}
.checkout-saved-address:focus-visible {
    outline: 2px solid var(--cc-black);
    outline-offset: 2px;
}
.checkout-edit-address {
    color: inherit;
}
.checkout-address-actions .btn {
    padding: 9px 16px;
}
.checkout-address-actions {
    display: none !important;
}
.checkout-saved-address[open] + .checkout-address-actions {
    display: flex !important;
}

/* Buttons */
.btn-cc, .btn-edge {
    background: var(--cc-red);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
    transition: opacity 0.2s;
}
.btn-cc:hover, .btn-edge:hover {
    background: var(--cc-dark-red);
    color: white;
    opacity: 1;
}
.btn-cc-outline, .btn-edge-outline {
    background: transparent;
    border: 1px solid var(--cc-red);
    color: var(--cc-red);
    padding: 13px 27px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
}
.btn-cc-outline:hover, .btn-edge-outline:hover {
    background: var(--cc-red);
    color: white;
    opacity: 1;
}

/* Category grid on home */
.category-tile span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Brands page */
.brand-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border: 1px solid var(--cc-border);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-black);
    transition: background 0.2s;
}
.brand-tile:hover {
    background: var(--cc-red);
    color: white;
    opacity: 1;
}

/* Breadcrumb */
.cc-breadcrumb { background: var(--cc-light); border-bottom: 1px solid var(--cc-border); }
.cc-breadcrumb .breadcrumb-item a { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.cc-breadcrumb .breadcrumb-item.active { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Product detail */
.product-gallery-main { aspect-ratio: 2/3; overflow: hidden; background: var(--cc-light); }
.product-gallery-main img,
#main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-gallery-main-img {
    cursor: zoom-in;
}
.product-gallery-thumb {
    width: 72px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.15s ease;
}
.product-gallery-thumb.active {
    border-color: var(--cc-red);
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 4rem;
}
.product-lightbox[hidden] {
    display: none !important;
}
.product-lightbox-stage {
    max-width: min(92vw, 900px);
    max-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-lightbox-stage img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
}
.product-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
}
.product-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.product-lightbox-prev { left: 1rem; }
.product-lightbox-next { right: 1rem; }
.product-lightbox-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.color-swatch {
    border-radius: 0;
    width: 28px;
    height: 28px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.color-swatch.active {
    border-color: var(--cc-black);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--cc-black);
}

.size-btn {
    border-radius: 0;
    min-width: 44px;
    padding: 8px 14px;
    border: 1px solid var(--cc-border);
    background: #fff;
    color: var(--cc-black);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.size-btn:hover:not(.disabled) {
    border-color: var(--cc-black);
}
.size-btn.active {
    background: var(--cc-black);
    color: #fff;
    border-color: var(--cc-black);
}
.size-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Footer */
.cc-footer {
    background: var(--cc-black);
    color: rgba(255,255,255,0.75);
    margin-top: 4rem;
}
.cc-footer h5, .cc-footer h6 { color: white; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.cc-footer a { color: rgba(255,255,255,0.65); font-size: 13px; }
.cc-footer a:hover { color: white; opacity: 1; }
.cc-footer .cc-brand { color: white; }
.cc-footer .d-flex.gap-3 a {
    font-size: 1.35rem !important;
    line-height: 1;
}
.cc-footer .d-flex.gap-3 i {
    font-size: inherit;
}

/* Filter sidebar */
.filter-sidebar { background: var(--cc-light); border: 1px solid var(--cc-border); padding: 1rem; }
.filter-sidebar h6 { font-size: 11px; letter-spacing: 0.1em; }

.shop-filters-toggle .shop-filters-chevron {
    transition: transform 0.2s ease;
}
.shop-filters-toggle[aria-expanded="true"] .shop-filters-chevron {
    transform: rotate(180deg);
}

.shop-filters-wrap {
    position: relative;
    z-index: 20;
    max-width: 320px;
}

.shop-filters-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: min(92vw, 360px);
    z-index: 30;
}

.shop-filters-dropdown .filter-sidebar {
    background: #fff;
}

/* Category pills — legacy */
.category-pill {
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Mobile nav */
.mobile-nav-list .btn-link:focus { box-shadow: none; }

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.5s ease forwards; }

/* Carousel on hero */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next { width: 48px; opacity: 0.8; }

.form-control, .form-select { border-radius: 0; }
.form-control:focus, .form-select:focus {
    border-color: var(--cc-black);
    box-shadow: none;
}

/* Bootstrap danger overrides — use brand red */
.text-danger { color: var(--cc-red) !important; }
.bg-danger { background-color: var(--cc-red) !important; }
.border-danger { border-color: var(--cc-red) !important; }

.btn-danger {
    background-color: var(--cc-red);
    border-color: var(--cc-red);
    color: #fff;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
    background-color: var(--cc-dark-red) !important;
    border-color: var(--cc-dark-red) !important;
    color: #fff !important;
}
.btn-outline-danger {
    color: var(--cc-red);
    border-color: var(--cc-red);
    background-color: transparent;
}
.btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active {
    background-color: var(--cc-red) !important;
    border-color: var(--cc-red) !important;
    color: #fff !important;
}

.alert-danger {
    background-color: #fde8e8;
    border-color: #f5c2c2;
    color: var(--cc-dark-red);
}
.alert-danger .alert-link { color: var(--cc-dark-red); }

.list-group-item-danger {
    background-color: #fde8e8;
    color: var(--cc-dark-red);
}
a.list-group-item-danger:hover, a.list-group-item-danger:focus {
    background-color: #f8d5d5;
    color: var(--cc-dark-red);
}

.table-danger, .table-danger > th, .table-danger > td {
    background-color: #fde8e8;
}
.table-striped .table-danger:nth-of-type(odd) > td,
.table-striped .table-danger:nth-of-type(odd) > th { background-color: #fbdcdc; }

/* ── Gold Dust Trail ── */

/* Individual dust particle — star shaped */
.gold-dust {
    position: fixed;
    pointer-events: none;
    z-index: 999998;
    will-change: transform, opacity;
    /* 5-point star via clip-path */
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2%  35%,
        39% 35%
    );
    animation: gold-dust-fade var(--dust-dur, 600ms) ease-out forwards;
}

@keyframes gold-dust-fade {
    0%   { opacity: 1; transform: translate(var(--dx, 0px), var(--dy, 0px)) rotate(0deg) scale(1); }
    100% { opacity: 0; transform: translate(var(--dx2, 0px), var(--dy2, 0px)) rotate(180deg) scale(0.1); }
}

/* ── Home Feature Video ── */
.home-video-section { background-color: rgba(255,255,255,0.92); }

.home-video-wrapper {
    max-width: 860px;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    background: #000;
    /* No fixed aspect-ratio — let the video's natural dimensions dictate height */
}

.home-video {
    width: 100%;
    height: auto;      /* natural height, no cropping */
    display: block;
    max-height: 80vh;  /* never taller than 80% of viewport */
}

@media (max-width: 576px) {
    .home-video-wrapper { border-radius: 8px; }
}


/* ═══════════════════════════════════════════════════════════
   UNIQUESTORE — EDITORIAL HOME  (serotoninn-inspired)
   Dark, typographic, numbered sections, tickers
═══════════════════════════════════════════════════════════ */

/* ── Shared tokens ── */
:root {
    --us-black:   #0a0a0a;
    --us-dark:    #111111;
    --us-mid:     #1c1c1c;
    --us-border:  rgba(255,255,255,0.10);
    --us-text:    #e8e8e8;
    --us-muted:   rgba(255,255,255,0.45);
    --us-accent:  #CC0000;
    --us-white:   #ffffff;
    --font-mono:  'Courier New', Courier, monospace;
}

/* ── Universal section bg ── */
.us-section-dark  { background: var(--us-dark);  color: var(--us-text); }
.us-section-light { background: #f5f3f0;          color: #111; }
.us-section       { padding: 36px 0; }

/* ── Section header row ── */
.us-section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 0 clamp(20px, 4vw, 80px);
    margin-bottom: 48px;
    border-bottom: 1px solid var(--us-border);
    padding-bottom: 20px;
}
.us-section-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--us-muted);
    flex-shrink: 0;
}
.us-section-num--light { color: rgba(255,255,255,0.3); }
.us-section-title {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0;
    flex: 1;
}
.us-section-all {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--us-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.us-section-all:hover { color: var(--us-white); opacity: 1; }
.us-section-light .us-section-all { color: #888; }
.us-section-light .us-section-all:hover { color: #111; }

/* ── Buttons ── */
.us-btn {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
    border: none;
    background: transparent;
}
.us-btn-ghost {
    border: 1px solid rgba(255,255,255,0.55);
    color: #fff;
}
.us-btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; opacity: 1; }
.us-btn-outline {
    border: 1px solid var(--us-accent);
    color: var(--us-accent);
}
.us-btn-outline:hover { background: var(--us-accent); color: #fff; opacity: 1; }
.us-section-light .us-btn-outline { border-color: #111; color: #111; }
.us-section-light .us-btn-outline:hover { background: #111; color: #fff; }

/* ══════════════════════════════════════════
   01. HERO
══════════════════════════════════════════ */
.us-hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    background: var(--us-black);
    overflow: hidden;
}
.us-hero .carousel,
.us-hero .carousel-inner,
.us-hero .carousel-item { height: 100%; }

.us-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.us-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.55) 100%
    );
}
.us-hero-content {
    position: absolute;
    bottom: 140px;
    left: clamp(24px, 6vw, 100px);
    color: #fff;
    max-width: 560px;
    z-index: 2;
}
.us-hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}
.us-hero-title {
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0;
}
.us-hero-prev, .us-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.us-hero-prev:hover, .us-hero-next:hover { background: rgba(255,255,255,0.18); }
.us-hero-prev { left: 20px; }
.us-hero-next { right: 20px; }

/* Ticker at hero bottom — REMOVED, now below hero as .us-below-hero-ticker */
.us-ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: us-ticker 25s linear infinite;
    width: max-content;
}
.us-ticker-track:hover { animation-play-state: paused; }
.us-ticker-item {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 0 20px;
    transition: color 0.15s;
}
.us-ticker-item:hover { color: #fff; opacity: 1; }
.us-ticker-sep { color: rgba(255,255,255,0.3); padding: 0 4px; }
@keyframes us-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Scroll hint */
.us-hero-scroll-hint { display: none; }

/* ══════════════════════════════════════════
   02 & 05. PRODUCT GRID
══════════════════════════════════════════ */
.us-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    padding: 0 clamp(20px, 4vw, 80px);
}
.us-product-grid--sm {
    grid-template-columns: repeat(4, 1fr);
}
/* First item in new arrivals spans 2 cols */
.us-product-item--featured {
    grid-column: span 2;
    grid-row: span 2;
}
.us-product-item {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    background: #111;
}
.us-product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.us-product-item--featured .us-product-img-wrap { aspect-ratio: 3/4; height: 100%; }
.us-product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.92);
}
.us-product-item:hover .us-product-img-wrap img {
    transform: scale(1.04);
    filter: brightness(1);
}
.us-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    background: rgba(255,255,255,0.9);
    color: #111;
    padding: 4px 8px;
    font-weight: 700;
}
.us-badge-sale { left: auto; right: 12px; background: var(--us-accent); color: #fff; }

.us-product-info {
    padding: 14px 16px 18px;
    background: var(--us-dark);
}
.us-section-light .us-product-info { background: #f5f3f0; }
.us-product-collection {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    color: var(--us-muted);
    margin: 0 0 4px;
}
.us-section-light .us-product-collection { color: #888; }
.us-product-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 6px;
    color: var(--us-text);
}
.us-section-light .us-product-name { color: #111; }
.us-product-price {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--us-text);
    margin: 0;
}
.us-section-light .us-product-price { color: #333; }
.us-product-compare {
    color: var(--us-muted);
    font-size: 11px;
    margin-left: 6px;
}

@media (max-width: 991.98px) {
    .us-product-grid { grid-template-columns: repeat(2, 1fr); }
    .us-product-item--featured { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 575.98px) {
    .us-product-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
    .us-product-item--featured { grid-column: span 2; }
    .us-product-grid--sm { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   03. EDITORIAL SPLIT
══════════════════════════════════════════ */
.us-editorial { background: var(--us-black); color: var(--us-text); }
.us-editorial-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 90vh;
}
.us-editorial-media {
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
}
.us-editorial-img,
.us-editorial-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.us-editorial-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 100px) clamp(32px, 5vw, 80px);
    background: var(--us-mid);
}
.us-editorial-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 12px 0 24px;
}
.us-editorial-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--us-muted);
    max-width: 380px;
}
.us-editorial-meta {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-top: 32px;
}
@media (max-width: 767.98px) {
    .us-editorial-grid { grid-template-columns: 1fr; }
    .us-editorial-media { min-height: 60vw; }
}

/* ══════════════════════════════════════════
   04. CATEGORIES TICKER
══════════════════════════════════════════ */
.us-cats-ticker-outer {
    overflow: hidden;
    padding: 0 0 40px;
}
.us-cats-ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: us-ticker 30s linear infinite;
    width: max-content;
}
.us-cats-ticker-track:hover { animation-play-state: paused; }
.us-cat-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-size: clamp(1.4rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    text-decoration: none;
    padding: 0 40px;
    border-right: 1px solid var(--us-border);
    transition: color 0.2s;
}
.us-cat-pill:hover { color: rgba(255,255,255,0.85); opacity: 1; }
.us-cat-count {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════
   06. SPLIT EDITORIAL BLOCKS
══════════════════════════════════════════ */
.us-split { background: var(--us-black); color: var(--us-text); }
.us-split-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 85vh;
}
.us-split-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
}
.us-split-block {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #111;
}
.us-split-block img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.8);
}
.us-split-block:hover img { transform: scale(1.04); filter: brightness(0.95); }
.us-split-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
}
.us-split-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.55);
    display: block;
    margin-bottom: 4px;
}
.us-split-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 0 4px;
}
.us-split-price {
    font-family: var(--font-mono);
    font-size: 12px;
    margin: 0;
    color: rgba(255,255,255,0.75);
}
.us-split-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 72px);
    background: var(--us-mid);
}
.us-split-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 12px 0 20px;
}
.us-split-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--us-muted);
    max-width: 320px;
}
@media (max-width: 767.98px) {
    .us-split-grid { grid-template-columns: 1fr; }
    .us-split-right { grid-template-rows: auto auto; }
    .us-split-block { min-height: 55vw; }
}

/* ══════════════════════════════════════════
   07. FILM / BRAND
══════════════════════════════════════════ */
.us-film {
    background: var(--us-black);
    color: #fff;
    padding: 48px clamp(24px, 6vw, 100px);
    text-align: center;
}
.us-film-inner { max-width: 860px; margin: 0 auto; }
.us-film-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 8px 0 4px;
    white-space: nowrap;
}
.us-film-subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin: 0;
}
.us-film-video-wrap {
    border-radius: 4px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.us-film-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 75vh;
}
.us-film-quote {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.5;
    color: rgba(255,255,255,0.6);
}
.us-film-tip {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.2);
}

/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.us-newsletter {
    background: var(--us-mid);
    color: #fff;
    padding: 100px clamp(24px, 6vw, 100px);
    text-align: center;
    border-top: 1px solid var(--us-border);
}
.us-newsletter-inner { max-width: 500px; margin: 0 auto; }
.us-newsletter-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin: 0;
}
.us-newsletter-heading {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    margin: 8px 0 4px;
}
.us-newsletter-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 32px;
}
.us-newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    gap: 0;
}
.us-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    padding: 12px 8px 12px 0;
}
.us-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.us-newsletter-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px 4px;
    transition: color 0.2s;
}
.us-newsletter-btn:hover { color: #fff; }

/* ── Responsive tweaks ── */
@media (max-width: 575.98px) {
    .us-hero-content { bottom: 110px; }
    .us-section { padding: 24px 0; }
    .us-section-header { padding: 0 20px; margin-bottom: 28px; }
    .us-product-grid { padding: 0 12px; }
    .us-film { padding: 80px 24px; }
    .us-newsletter { padding: 72px 24px; }
    .us-cats-ticker-track,
    .us-ticker-track { animation-duration: 18s; }
}


/* ═══════════════════════════════════════════════════════════
   SHOWCASE LAYOUT — 1 big hero image + 2×2 side grid
   Used for: New Arrivals, Featured, Trending Now, Sale
═══════════════════════════════════════════════════════════ */

.us-showcase {
    display: grid;
    grid-template-columns: 28% 72%;
    gap: 2px;
    padding: 0 clamp(20px, 4vw, 80px);
}

/* Reverse: side grid left, hero right (Trending Now) */
.us-showcase--reverse {
    direction: rtl;
    grid-template-columns: 72% 28%;
}
.us-showcase--reverse > * {
    direction: ltr;
}

/* ── Hero (big) product ── */
.us-showcase-hero {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #111;
    overflow: hidden;
}
.us-showcase--light .us-showcase-hero { background: #ece9e4; }

.us-showcase-hero-img {
    position: relative;
    overflow: hidden;
    /* Fit within viewport — header ~70px + section header ~60px + info ~60px */
    height: calc(100vh - 160px);
    max-height: 680px;
    min-height: 320px;
}
.us-showcase-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.65s ease;
    filter: brightness(0.9);
}
.us-showcase-hero:hover .us-showcase-hero-img img {
    transform: scale(1.04);
    filter: brightness(1);
}

.us-showcase-hero-info {
    padding: 10px 16px 14px;
    background: var(--us-dark);
}
.us-showcase--light .us-showcase-hero-info { background: #ece9e4; }

/* ── Side 4×2 grid ── */
.us-showcase-side {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 2px;
}

.us-showcase-side-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #111;
    overflow: hidden;
    min-height: 0;
}
.us-showcase--light .us-showcase-side-item { background: #ece9e4; }

.us-showcase-side-img {
    position: relative;
    overflow: hidden;
    /* Exactly half of hero height minus the 2px gap */
    height: calc((100vh - 160px) / 2 - 1px);
    max-height: 339px;
    min-height: 159px;
}
.us-showcase-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.55s ease;
    filter: brightness(0.88);
}
.us-showcase-side-item:hover .us-showcase-side-img img {
    transform: scale(1.05);
    filter: brightness(1);
}

.us-showcase-side-info {
    padding: 10px 12px 14px;
    background: var(--us-dark);
}
.us-showcase--light .us-showcase-side-info { background: #ece9e4; }
.us-showcase-side-info .us-product-name { font-size: 11px; }
.us-showcase-side-info .us-product-price { font-size: 11px; }

/* Light variant text colours */
.us-showcase--light .us-product-collection { color: #888; }
.us-showcase--light .us-product-name       { color: #111; }
.us-showcase--light .us-product-price      { color: #333; }
.us-showcase--light .us-product-compare    { color: #aaa; }

/* ── Sale section ── */
.us-section-sale {
    background: #0e0a0a;
    color: var(--us-text);
}
.us-section-sale .us-section-title { color: var(--cc-red); }
.us-section-sale .us-section-num   { color: rgba(204,0,0,0.4); }
.us-section-sale .us-section-header { border-bottom-color: rgba(204,0,0,0.2); }
.us-sale-price { color: var(--cc-red); font-weight: 700; }

.us-btn-sale {
    border: 1px solid var(--cc-red);
    color: var(--cc-red);
    background: transparent;
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    transition: background 0.2s, color 0.2s;
}
.us-btn-sale:hover { background: var(--cc-red); color: #fff; opacity: 1; }

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .us-showcase {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .us-showcase--reverse { direction: ltr; }
    .us-showcase-hero-img  { aspect-ratio: 3/4; }
    .us-showcase-side { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .us-showcase-side-img { aspect-ratio: 4/5; }
}

@media (max-width: 399.98px) {
    .us-showcase { padding: 0 8px; }
    .us-showcase-side { gap: 1px; }
}

/* ═══════════════════════════════════════════════════════════
   BELOW-HERO CATEGORY TICKER
═══════════════════════════════════════════════════════════ */
.us-below-hero-ticker {
    overflow: hidden;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
}
.us-below-hero-ticker .us-ticker-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: us-ticker 25s linear infinite;
}
.us-below-hero-ticker .us-ticker-track:hover {
    animation-play-state: paused;
}
.us-below-hero-ticker .us-ticker-item {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    padding: 0 24px;
    transition: color 0.15s;
}
.us-below-hero-ticker .us-ticker-item:hover {
    color: #fff;
    opacity: 1;
}
.us-below-hero-ticker .us-ticker-sep {
    color: rgba(255,255,255,0.2);
    padding: 0 4px;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL-OVERLAP / STACKING SECTIONS
   Each section sticks and the next one slides over it
═══════════════════════════════════════════════════════════ */
.us-stack-wrap {
    position: relative;
}

.us-stack-section {
    position: sticky;
    top: 0;
    /* Each section needs enough z-index to cover the one before */
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

/* Tighter padding on stacking sections so images dominate */
.us-stack-section.us-section {
    padding: 0 0 16px;
}
.us-stack-section .us-section-header {
    padding-top: 16px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.us-stack-section:nth-child(1) { z-index: 1; }
.us-stack-section:nth-child(2) { z-index: 2; }
.us-stack-section:nth-child(3) { z-index: 3; }
.us-stack-section:nth-child(4) { z-index: 4; }

/* Shadow on top edge gives the "card coming over" depth */
.us-stack-section + .us-stack-section {
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.55);
}

/* ── Rounded image frames ── */
.us-showcase-hero-img      { border-radius: 16px; }
.us-showcase-side-img      { border-radius: 12px; }
.us-showcase-hero          { border-radius: 16px; }
.us-showcase-side-item     { border-radius: 12px; }

/* Hero banner image */
.us-hero-img               { border-radius: 0; } /* hero stays full-bleed */

/* Product card images (shop/detail pages) */
.product-card-image        { border-radius: 16px; }
