/* ============================================================
   GET READY — EDITORIAL MENSWEAR DESIGN SYSTEM
   Raw, vintage, magazine-inspired aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Courier+Prime:wght@400;700&display=swap');

/* ─── Design Tokens ────────────────────────────────────────── */
:root {
    --primary:       #991b1b;    /* muted deep red — primary CTA & accents */
    --primary-hover: #7f1d1d;
    --accent:        #991b1b;    /* muted red */
    --accent-hover:  #7f1d1d;
    --logo-red:      #991b1b;    /* muted red for logo badge */
    --success:       #16a34a;
    --warning:       #ca8a04;
    --danger:        #b91c1c;

    --white:         #e8e8e8;    /* soft off-white — used for text on dark bg */
    --surface:       #161616;    /* dark elevated card/panel background */
    --cream:         #1a1a1a;    /* dark surface (replaces cream) */
    --cream-dark:    #222222;
    --bg:            #0a0a0a;    /* true black page background */
    --bg-card:       #161616;   /* card background */
    --border:        #2a2a2a;
    --border-light:  #1e1e1e;

    --text:          #e8e8e8;    /* soft off-white — less stark than pure white */
    --text-secondary:#aaaaaa;
    --text-light:    #777777;
    --text-muted:    #555555;

    --font:          'Space Mono', 'Courier Prime', monospace;
    --font-heading:  'Bebas Neue', sans-serif;
    --font-serif:    'Playfair Display', Georgia, serif;

    --radius:        0px;
    --radius-sm:     2px;
    --radius-lg:     0px;
    --transition:    0.2s ease;
    --transition-slow: 0.4s ease;

    --max-width:     1320px;
    --header-height: 56px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }
input, select, textarea { font-family: var(--font); }

/* ─── Utility ───────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── Header / Navigation ───────────────────────────────────── */
.gr-header {
    background: #000000;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 500;
}
.gr-header-inner {
    display: flex;
    align-items: center;
    height: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.gr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: 40px;
    flex-shrink: 0;
}
.gr-logo-badge {
    background: var(--logo-red);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 6px 12px;
    line-height: 1;
    white-space: nowrap;
}
.gr-logo-est {
    font-family: var(--font);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* Main nav links */
.gr-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 0;
}
.gr-nav-link {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    padding: 8px 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
}
.gr-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--text);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.gr-nav-link:hover::after,
.gr-nav-link.active::after {
    transform: scaleX(1);
}
.gr-nav-link:hover { color: var(--primary); }

/* Nav icons */
.gr-nav-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.gr-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 16px;
    color: var(--text);
    transition: all var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}
.gr-nav-icon:hover { color: var(--accent); }
.gr-cart-badge {
    position: absolute;
    top: 2px; right: 0;
    background: var(--accent);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    min-width: 14px; height: 14px;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 3px;
    font-family: var(--font);
}

/* Mobile toggle */
.gr-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text);
    padding: 8px;
    cursor: pointer;
}

/* ─── Landing Hero ──────────────────────────────────────────── */
.gr-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 24px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}
.gr-hero-text {
    padding-top: 20px;
    position: relative;
    z-index: 2;
}
.gr-hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.gr-hero-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--text-muted);
}
.gr-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 400;
    color: var(--text);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 28px;
}
.gr-hero-heading em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.02em;
    font-size: 0.85em;
}
.gr-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 32px;
}
.gr-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.gr-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--logo-red);
    color: #fff;
    border: none;
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.gr-hero-btn-primary:hover { background: #6d1d00; }
.gr-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.gr-hero-btn-outline:hover { background: var(--primary); color: #fff; }

/* Hero images (right side, overlapping) */
.gr-hero-images {
    position: relative;
    height: 100%;
    min-height: 480px;
}
.gr-hero-tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 6px 16px;
    border: 1px solid var(--accent);
    font-family: var(--font);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: #0a0a0a;
}
.gr-hero-img-1 {
    position: absolute;
    top: 20px;
    right: 0;
    width: 55%;
    height: 60%;
    overflow: hidden;
    z-index: 1;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}
.gr-hero-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gr-hero-img-2 {
    position: absolute;
    bottom: 30px;
    left: 10%;
    width: 55%;
    height: 58%;
    overflow: hidden;
    z-index: 2;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0,0,0,0.6);
}
.gr-hero-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.gr-hero-circle-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 32px rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 4;
    animation: gr-spin-slow 12s linear infinite;
}
.gr-hero-circle-badge span {
    font-family: var(--font);
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}
@keyframes gr-spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ─── Marquee Ticker ────────────────────────────────────────── */
.gr-marquee {
    background: #111111;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
}
.gr-marquee-track {
    display: flex;
    width: max-content;
    animation: gr-marquee-scroll 30s linear infinite;
}
.gr-marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
.gr-marquee-item {
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 0 20px;
}
.gr-marquee-dot {
    color: var(--accent);
    font-style: normal;
    font-size: 12px;
    padding: 0 8px;
    flex-shrink: 0;
}
@keyframes gr-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── The Wardrobe (Category Grid) ──────────────────────────── */
.gr-wardrobe {
    padding: 0 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.gr-wardrobe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gr-wardrobe-card {
    position: relative;
    overflow: hidden;
    display: block;
    background: #1a1a1a;
    aspect-ratio: 4/5;
}
.gr-wardrobe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}
.gr-wardrobe-card:hover img { transform: scale(1.03); }
.gr-wardrobe-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.gr-wardrobe-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 40px);
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: 1px;
}
.gr-wardrobe-link {
    font-family: var(--font);
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ─── Category Banner Strip ───────────────────────────────────── */
.gr-cat-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.gr-cat-banner-card {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 4/3;
    background: #1a1a1a;
}
.gr-cat-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}
.gr-cat-banner-card:hover img { transform: scale(1.03); }
.gr-cat-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.gr-cat-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.gr-cat-banner-link {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.gr-cat-banner-link:hover { color: #fff; }

/* ─── Section Header (Index style) ──────────────────────────── */
.gr-section-header {
    padding: 60px 0 32px;
}
.gr-section-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.gr-section-label {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.gr-section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    color: var(--text);
    line-height: 1;
    letter-spacing: 1px;
}
.gr-section-link {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--text);
    transition: all var(--transition);
}
.gr-section-link:hover { color: var(--accent); border-color: var(--accent); }

/* ─── Product Grid (Fresh Off The Press) ────────────────────── */
.gr-product-grid {
    display: grid;
    gap: 8px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.gr-product-grid-3 { grid-template-columns: repeat(3, 1fr); }

.gr-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.gr-product-card:hover { border-color: var(--border); }

.gr-product-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a1a;
}
.gr-product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}
.gr-product-card:hover .gr-product-card-img img { transform: scale(1.03); }

/* Product badges */
.gr-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 10px;
    font-family: var(--font);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
}
.gr-badge-new {
    background: var(--primary);
    color: #fff;
}
.gr-badge-bestseller {
    background: var(--primary);
    color: #fff;
}
.gr-badge-sale {
    background: var(--accent);
    color: #fff;
}

/* View button (on hover) */
.gr-product-view-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    font-family: var(--font);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(0,0,0,0.85);
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 2;
}
.gr-product-card:hover .gr-product-view-btn {
    opacity: 1;
    transform: translateY(0);
}
.gr-product-view-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Product card body */
.gr-product-card-body {
    padding: 14px 14px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gr-product-name {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 6px;
}
.gr-product-name a {
    color: var(--accent);
    text-decoration: none;
}
.gr-product-name a:hover { text-decoration: underline; }
.gr-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.gr-product-cat {
    font-family: var(--font);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.gr-product-price {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.03em;
}
.gr-product-price .original {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 6px;
    font-size: 12px;
}

/* ─── Category Row Divider ──────────────────────────────────── */
.gr-cat-row-divider {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border-light);
    margin: 16px 0 8px;
}

/* ─── Editorial Section (Cut From Honest Cloth) ─────────────── */
.gr-editorial {
    padding: 80px 0;
    overflow: hidden;
}
.gr-editorial-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.gr-editorial-text { max-width: 480px; }
.gr-editorial-label {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.gr-editorial-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.gr-editorial-heading em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.gr-editorial-body {
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.gr-editorial-body-regular {
    font-family: var(--font);
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}
.gr-editorial-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--text);
    background: transparent;
    color: var(--text);
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.gr-editorial-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Editorial images (overlapping) */
.gr-editorial-images {
    position: relative;
    height: 500px;
}
.gr-editorial-img-1 {
    position: absolute;
    top: 0;
    left: 20%;
    width: 55%;
    height: 65%;
    overflow: hidden;
}
.gr-editorial-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gr-editorial-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 55%;
    overflow: hidden;
    box-shadow: -8px -8px 0px #0a0a0a;
}
.gr-editorial-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Outfit Wheel CTA Section ──────────────────────────────── */
.gr-cta {
    background: var(--primary);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}
.gr-cta-icon {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 20px;
}
.gr-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.gr-cta-heading .highlight {
    color: var(--accent);
    font-style: normal;
}
.gr-cta-subtitle {
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.gr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.gr-cta-btn:hover { background: var(--accent-hover); }

/* ─── Footer ────────────────────────────────────────────────── */
.gr-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.gr-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}
.gr-footer-brand-text {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    color: #fff;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.gr-footer-tagline {
    font-family: var(--font);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    max-width: 260px;
}
.gr-footer-col h4 {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.gr-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gr-footer-col a {
    font-family: var(--font);
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.gr-footer-col a:hover { color: #fff; }
.gr-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.gr-footer-bottom p {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
}

/* ─── Breadcrumb ────────────────────────────────────────────── */
.o-breadcrumb {
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.o-breadcrumb-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}
.o-breadcrumb-inner a:hover { color: var(--primary); }
.o-breadcrumb-inner .sep { color: var(--border); }
.o-breadcrumb-inner .current { color: var(--text); font-weight: 700; }

/* ─── Buttons (shared) ──────────────────────────────────────── */
.o-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.o-btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.o-btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.o-btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}
.o-btn-secondary:hover { background: var(--primary); color: var(--white); }
.o-btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.o-btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.o-btn-ghost {
    background: var(--cream);
    color: var(--text);
    border-color: var(--border);
}
.o-btn-ghost:hover { background: var(--border); }
.o-btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.o-btn-danger:hover { background: #dc2626; }
.o-btn-sm { padding: 8px 16px; font-size: 10px; }
.o-btn-lg { padding: 14px 32px; font-size: 12px; }
.o-btn-full { width: 100%; justify-content: center; }

/* ─── Forms & Inputs ────────────────────────────────────────── */
.o-form-group { margin-bottom: 18px; }
.o-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.o-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--text);
    background: #1a1a1a;
    transition: border-color var(--transition);
    outline: none;
    font-family: var(--font);
}
.o-input:focus { border-color: var(--primary); }
.o-select-wrap { position: relative; }
.o-select-wrap select.o-input { appearance: none; -webkit-appearance: none; cursor: pointer; }
.o-select-wrap::after { content: '▾'; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--text-secondary); font-size: 12px; }

/* ─── Shop Layout (All Products) ────────────────────────────── */
.o-shop {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 24px 60px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}
.o-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    position: sticky;
    top: 72px;
}
.o-sidebar-title {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.o-shop-main-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.o-shop-main-top h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 1px;
}
.o-item-count {
    font-size: 10px;
    color: var(--text-secondary);
    background: #1a1a1a;
    border: 1px solid var(--border);
    padding: 4px 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ─── Old product grid classes (for all-products page) ──────── */
.o-product-grid { display: grid; gap: 8px; }
.o-product-grid-4 { grid-template-columns: repeat(4, 1fr); }
.o-product-grid-3 { grid-template-columns: repeat(3, 1fr); }

.o-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}
.o-product-card:hover { border-color: var(--border); }

.o-product-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a1a;
}
.o-product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}
.o-product-card:hover .o-product-card-img img { transform: scale(1.03); }

.o-product-badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.o-product-badge-new { background: var(--primary); color: #fff; }
.o-product-badge-sale { background: var(--accent); color: #fff; }

.o-product-wishlist {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    opacity: 0;
    transition: all var(--transition);
}
.o-product-card:hover .o-product-wishlist { opacity: 1; }
.o-product-wishlist:hover { color: var(--accent); }

.o-product-card-body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.o-product-cat {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.o-product-name {
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.o-product-price { font-size: 13px; font-weight: 400; color: var(--text); margin-top: auto; letter-spacing: 0.03em; }
.o-product-price .from { font-size: 11px; font-weight: 400; color: var(--text-secondary); margin-right: 2px; }
.o-product-price .original { font-size: 12px; font-weight: 400; color: var(--text-light); text-decoration: line-through; margin-right: 6px; }
.o-product-price .sale-price { color: var(--accent); }

/* ─── Product Detail Page ───────────────────────────────────── */
.o-pdp {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 48px;
    align-items: start;
}
.o-pdp-gallery { position: sticky; top: 72px; }
.o-pdp-main {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid var(--border);
    margin-bottom: 10px;
}
.o-pdp-main img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s; }
.o-pdp-main:hover img { transform: scale(1.03); }
.o-pdp-thumbs { display: flex; gap: 8px; }
.o-pdp-thumb {
    width: 68px;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a1a;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition);
}
.o-pdp-thumb.active { border-color: var(--primary); }
.o-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.o-pdp-info {}
.o-pdp-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.o-pdp-title { font-family: var(--font-heading); font-size: 32px; font-weight: 400; color: var(--text); letter-spacing: 1px; margin-bottom: 12px; line-height: 1.1; }
.o-pdp-price { font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); letter-spacing: 0.03em; }
.o-pdp-price.unset { font-size: 13px; font-weight: 400; color: var(--text-secondary); }
.o-pdp-price.sale-price-active { color: var(--accent); }

/* Size selector */
.o-size-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.o-size-header span { font-size: 10px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; }
.o-size-header a { font-size: 11px; color: var(--accent); text-decoration: underline; }
.o-sizes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.o-size {
    min-width: 48px;
    padding: 9px 10px;
    border: 1px solid var(--border);
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    letter-spacing: 0.04em;
}
.o-size:hover { border-color: var(--primary); }
.o-size.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.o-size.oos { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

/* Stock pill */
.o-stock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.o-stock-ok { background: #0d2016; color: #16a34a; border: 1px solid #166534; }
.o-stock-low { background: #1a1400; color: #ca8a04; border: 1px solid #854d0e; }
.o-stock-out { background: #1a0808; color: #991b1b; border: 1px solid #7f1d1d; }

/* Qty */
.o-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.o-qty-label { font-size: 10px; font-weight: 700; color: var(--text); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.06em; }
.o-qty { display: flex; align-items: center; border: 1px solid var(--border); overflow: hidden; }
.o-qty-btn { width: 38px; height: 38px; background: #1a1a1a; border: none; font-size: 18px; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.o-qty-btn:hover { background: #222222; }
.o-qty-input { width: 48px; height: 38px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 13px; font-weight: 700; outline: none; background: #111111; color: var(--text); font-family: var(--font); }

/* Product trust badges */
.o-trust-badges { display: flex; flex-direction: column; gap: 8px; margin: 20px 0; padding: 16px; background: #1a1a1a; border: 1px solid var(--border); }
.o-trust-badge { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--text-secondary); }
.o-trust-badge i { color: var(--success); font-size: 14px; width: 16px; flex-shrink: 0; }

/* Accordion */
.o-accordion { border: 1px solid var(--border-light); overflow: hidden; }
.o-acc-item { border-bottom: 1px solid var(--border-light); }
.o-acc-item:last-child { border-bottom: none; }
.o-acc-trigger {
    width: 100%;
    background: #111111;
    border: none;
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background var(--transition);
}
.o-acc-trigger:hover { background: #1a1a1a; }
.o-acc-icon { color: var(--text-secondary); font-size: 16px; transition: transform 0.25s; flex-shrink: 0; }
.o-acc-item.open .o-acc-icon { transform: rotate(45deg); }
.o-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.o-acc-body-inner { padding: 0 18px 16px; font-size: 12px; color: var(--text-secondary); line-height: 1.7; }

/* ─── Cart Page ─────────────────────────────────────────────── */
.o-cart-layout { max-width: var(--max-width); margin: 0 auto; padding: 24px 24px 60px; display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.o-cart-table { background: #111111; border: 1px solid var(--border); overflow: hidden; }
.o-cart-table table { width: 100%; border-collapse: collapse; }
.o-cart-table th { background: #1a1a1a; padding: 13px 20px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); text-align: left; border-bottom: 1px solid var(--border); }
.o-cart-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text); vertical-align: middle; }
.o-cart-table tr:last-child td { border-bottom: none; }
.o-cart-table img { width: 64px; height: 80px; object-fit: cover; border: 1px solid var(--border-light); }
.o-cart-product-info { display: flex; align-items: center; gap: 14px; }
.o-cart-product-name { font-weight: 700; font-size: 13px; color: var(--text); }
.o-cart-product-meta { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }
.o-cart-remove { background: none; border: none; color: var(--danger); font-size: 11px; cursor: pointer; font-family: var(--font); font-weight: 700; text-decoration: underline; text-transform: uppercase; letter-spacing: 0.04em; }
.o-cart-remove:hover { color: #dc2626; }

.o-order-summary { background: #111111; border: 1px solid var(--border); padding: 24px; position: sticky; top: 72px; }
.o-order-summary h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 400; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); letter-spacing: 1px; }
.o-summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 12px; }
.o-summary-row.total { font-size: 15px; font-weight: 700; border-top: 1px solid var(--border-light); padding-top: 14px; margin-top: 8px; }
.o-summary-divider { height: 1px; background: var(--border-light); margin: 12px 0; }

/* ─── Empty State ───────────────────────────────────────────── */
.o-empty {
    text-align: center;
    padding: 80px 20px;
}
.o-empty-icon { font-size: 52px; color: var(--border); margin-bottom: 16px; }
.o-empty h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 400; color: var(--text); margin-bottom: 8px; letter-spacing: 1px; }
.o-empty p { font-size: 13px; color: var(--text-secondary); margin-bottom: 24px; }

/* ─── Flash Messages ────────────────────────────────────────── */
.o-flash {
    max-width: var(--max-width);
    margin: 12px auto 0;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.o-flash-ok  { background: #0d2016; border: 1px solid #166534; color: #16a34a; }
.o-flash-err { background: #1a0808; border: 1px solid #7f1d1d; color: #991b1b; }
.o-flash-warn{ background: #1a1400; border: 1px solid #854d0e; color: #ca8a04; }

/* ─── Newsletter (optional) ─────────────────────────────────── */
.o-newsletter {
    background: var(--primary);
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
}
.o-newsletter h2 { font-family: var(--font-heading); font-size: 30px; font-weight: 400; margin-bottom: 8px; letter-spacing: 1px; }
.o-newsletter p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.o-newsletter-form { display: flex; max-width: 420px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.2); overflow: hidden; }
.o-newsletter-form input { flex: 1; border: none; background: rgba(255,255,255,0.08); padding: 13px 16px; color: #fff; font-size: 12px; outline: none; font-family: var(--font); }
.o-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.o-newsletter-form button { background: var(--accent); color: #fff; border: none; padding: 13px 20px; font-size: 10px; font-weight: 700; cursor: pointer; white-space: nowrap; font-family: var(--font); transition: background var(--transition); text-transform: uppercase; letter-spacing: 0.06em; }
.o-newsletter-form button:hover { background: var(--accent-hover); }

/* ─── Auth Buttons (navbar) ─────────────────────────────────── */
.o-btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-size: 10px;
    font-weight: 700;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    text-decoration: none;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.o-btn-nav:hover { background: var(--primary); color: var(--white); }
.o-btn-nav-filled { background: var(--primary); color: var(--white); }
.o-btn-nav-filled:hover { background: var(--primary-hover); color: var(--white); }

/* ─── Section Header (old style for product pages) ──────────── */
.o-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}
.o-section-head h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 1px;
}
.o-section-head p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}
.o-view-all {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}
.o-view-all:hover { border-bottom-color: var(--accent); }

/* ─── Category Cards (old style) ────────────────────────────── */
.o-cat-grid { display: grid; gap: 8px; grid-template-columns: repeat(3, 1fr); }
.o-cat-card {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    display: block;
    aspect-ratio: 4/3;
}
.o-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}
.o-cat-card:hover img { transform: scale(1.03); }
.o-cat-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.o-cat-card-label h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2px;
    letter-spacing: 1px;
}
.o-cat-card-label span {
    font-size: 10px;
    color: rgba(255,255,255,0.75);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ─── Features Strip (kept for compatibility) ───────────────── */
.o-features { background: #0f0f0f; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 20px; }
.o-features-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.o-feature { display: flex; align-items: center; gap: 14px; }
.o-feature-icon { width: 44px; height: 44px; background: #1a1a1a; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px; flex-shrink: 0; }
.o-feature-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; }
.o-feature-text span { font-size: 11px; color: var(--text-secondary); }

/* ─── Checkout & Contact Page Compatibility ─────────────────── */
.o-hero {
    background: var(--primary);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}
.o-hero-content { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.o-hero-tag {
    display: inline-block;
    background: rgba(192,94,60,0.2);
    border: 1px solid rgba(192,94,60,0.4);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    margin-bottom: 20px;
}
.o-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.o-hero h1 span { color: var(--accent); }
.o-hero p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    line-height: 1.7;
}
.o-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .o-product-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .gr-footer-inner { grid-template-columns: 1fr 1fr 1fr; }
    .o-features-inner { grid-template-columns: repeat(2, 1fr); }
    .gr-editorial-inner { gap: 40px; }
}

@media (max-width: 1024px) {
    .o-pdp { grid-template-columns: 1fr; }
    .o-pdp-gallery { position: static; }
    .o-shop { grid-template-columns: 1fr; }
    .o-sidebar { position: static; }
    .o-cart-layout { grid-template-columns: 1fr; }
    .o-order-summary { position: static; }
    .gr-editorial-inner { grid-template-columns: 1fr; }
    .gr-editorial-images { height: 400px; }
    .gr-hero { grid-template-columns: 1fr; min-height: auto; gap: 24px; padding-bottom: 24px; }
    .gr-hero-images { min-height: 380px; }
    .gr-wardrobe-grid { grid-template-columns: 1fr 1fr; }
    .gr-wardrobe-card-tall { grid-row: auto; min-height: 300px; aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
    .gr-nav { display: none; }
    .gr-mobile-toggle { display: block; }
    .o-product-grid-4, .o-product-grid-3, .gr-product-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .gr-cat-banner { grid-template-columns: 1fr; }
    .gr-cat-banner-card { aspect-ratio: 16/9; }
    .o-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .o-features-inner { grid-template-columns: repeat(2, 1fr); }
    .o-hero { padding: 48px 20px; }
    .section { padding: 40px 0; }
    .gr-section-header { padding: 40px 0 24px; }
    .gr-editorial { padding: 48px 0; }
    .gr-editorial-images { height: 300px; }
    .gr-cta { padding: 60px 20px; }
    .gr-footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .gr-hero { padding: 24px 20px 20px; }
    .gr-hero-heading { font-size: clamp(40px, 10vw, 64px); margin-bottom: 20px; text-align: center; }
    .gr-hero-text { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .gr-hero-label { justify-content: center; }
    .gr-hero-barcode { display: none !important; }
    .gr-hero-images { min-height: 420px; height: 420px; }
    .gr-hero-circle-badge { width: 64px; height: 64px; }
    .gr-hero-circle-badge span { font-size: 6px; }
    .gr-wardrobe-grid { grid-template-columns: 1fr; }
    .gr-wardrobe-card-tall { min-height: 280px; aspect-ratio: 16/9; }
    .gr-wardrobe-card-normal { aspect-ratio: 16/9; }
}

@media (max-width: 480px) {
    .o-product-grid-4, .o-product-grid-3, .gr-product-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .o-cat-grid { grid-template-columns: 1fr; }
    .o-features-inner { grid-template-columns: 1fr; }
    .o-hero-btns { flex-direction: column; align-items: center; }
    .o-newsletter-form { flex-direction: column; }
    .o-newsletter-form input, .o-newsletter-form button { width: 100%; }
    .gr-footer-inner { grid-template-columns: 1fr 1fr; }
    .gr-hero-btns { flex-direction: column; align-items: stretch; width: 100%; }
    .gr-hero-btn-primary, .gr-hero-btn-outline { justify-content: center; width: 100%; }
    .gr-hero-images { min-height: 400px; height: 400px; margin-top: 10px; }
    .gr-hero-img-1 { width: 75%; height: 60%; top: 0; right: 0; }
    .gr-hero-img-2 { width: 75%; height: 55%; left: 0; bottom: 10px; }
    .gr-editorial-images { height: 250px; }
    .gr-editorial-img-1 { width: 65%; left: 10%; }
    .gr-editorial-img-2 { width: 55%; }
}

/* ─── Product Reviews Section ───────────────────────────────────── */
.o-reviews-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 80px;
}
.o-reviews-header {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 12px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.o-reviews-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.o-reviews-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}
.o-reviews-stats {
    background: #111111;
    border: 1px solid var(--border);
    padding: 32px;
    position: sticky;
    top: 100px;
}
.o-reviews-score {
    font-family: var(--font-serif);
    font-size: 64px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 8px;
}
.o-reviews-score-stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 12px;
}
.o-reviews-count {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.o-reviews-distribution {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.o-reviews-dist-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: var(--text-secondary);
}
.o-reviews-dist-label {
    width: 48px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.o-reviews-dist-bar-bg {
    flex: 1;
    height: 6px;
    background: #1a1a1a;
    border: 1px solid var(--border);
}
.o-reviews-dist-bar {
    height: 100%;
    background: var(--primary);
}
.o-reviews-dist-val {
    width: 24px;
    text-align: right;
}
.o-reviews-list-sec {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.o-review-item {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
}
.o-review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.o-review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.o-review-user {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.o-review-date {
    font-size: 11px;
    color: var(--text-light);
}
.o-review-rating {
    color: var(--accent);
    font-size: 11px;
    margin-bottom: 8px;
}
.o-review-comment {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}
.o-review-form-box {
    background: #111111;
    border: 1px solid var(--border);
    padding: 32px;
    margin-bottom: 32px;
}
.o-review-form-title {
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.o-review-form-group {
    margin-bottom: 16px;
}
.o-review-form-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.o-review-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    background: #1a1a1a;
    font-family: var(--font);
    font-size: 12px;
    color: var(--text);
    resize: vertical;
}
.o-review-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #111111;
}

@media (max-width: 768px) {
    .o-reviews-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .o-reviews-stats {
        position: static;
    }
}

/* ─── Retro Newsprint Form Styling (o-form) ─────────────────── */
.o-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.o-form-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.o-form-label {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 8px;
}
.o-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 0px;
    background: #1a1a1a;
    color: var(--text);
    font-family: var(--font);
    font-size: 13px;
    outline: none;
    transition: all var(--transition);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.3);
}
.o-form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.2); /* Muted red accent tint outline */
    background: #111111;
}
.o-form-input.is-invalid {
    border-color: var(--danger) !important;
    background: #1a0808;
}
.o-form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Form Buttons and Flash messages */
.o-btn-full {
    width: 100%;
}
.o-flash {
    font-family: var(--font);
    font-size: 12px;
    padding: 12px 16px;
    border-radius: 0px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.o-flash-ok {
    background: #0d2016;
    border: 1px solid var(--success);
    color: var(--success);
}
.o-flash-err {
    background: #1a0808;
    border: 1px solid var(--danger);
    color: var(--danger);
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL DARK THEME OVERRIDES — All Pages
   Fixes inline style backgrounds that used var(--white) as panels
   ═══════════════════════════════════════════════════════════════ */

/* ─── Auth & Form Card Panels ─────────────────────────────────── */
/* login.blade.php, register.blade.php card containers */
[style*="background: var(--white)"][style*="border"][style*="box-shadow"],
[style*="background:var(--white)"][style*="border"][style*="box-shadow"] {
    background: #161616 !important;
    border-color: var(--border) !important;
    box-shadow: 5px 5px 0px rgba(153,27,27,0.35) !important;
}

/* ─── Checkout / Generic form section panels ─────────────────── */
[style*="background:var(--white)"][style*="border:1px solid var(--border)"],
[style*="background: var(--white)"][style*="border: 1px solid var(--border)"] {
    background: #161616 !important;
}

/* ─── Saved address dropdown select ─────────────────────────── */
select[style*="background: var(--white)"],
select[style*="background:var(--white)"] {
    background: #1a1a1a !important;
    color: var(--text) !important;
    border-color: var(--border) !important;
}

/* ─── Native select & option dark styling ────────────────────── */
select.o-input, select { background: #1a1a1a !important; color: var(--text) !important; }
option { background: #1a1a1a; color: var(--text); }

/* ─── Number input in cart ───────────────────────────────────── */
input[type="number"][style*="border:1px solid var(--border)"] {
    background: #1a1a1a !important;
    color: var(--text) !important;
}

/* ─── Empty state panels with var(--white) bg ───────────────── */
.o-empty[style*="background:var(--white)"],
.o-empty[style*="background: var(--white)"] {
    background: #161616 !important;
    border-color: var(--border) !important;
}

/* ─── Register error box (hardcoded light red) ───────────────── */
[style*="background: #fef2f2"],
[style*="background:#fef2f2"],
[style*="background: #fee2e2"],
[style*="background:#fee2e2"] {
    background: #1a0808 !important;
    border-color: #7f1d1d !important;
    color: #fca5a5 !important;
}

/* ─── Low stock urgency banner (hardcoded yellow) ─────────────── */
[style*="background: #fffbeb"],
[style*="background:#fffbeb"] {
    background: #1a1400 !important;
    border-color: #854d0e !important;
    color: #fcd34d !important;
    box-shadow: 2px 2px 0px #000 !important;
}

/* ─── Checkout success/error inline flash banners ─────────────── */
[style*="background: #ecfdf5"],
[style*="background:#ecfdf5"] {
    background: #0d2016 !important;
    border-color: #166534 !important;
    color: #86efac !important;
}

/* ─── No-reviews placeholder box ────────────────────────────── */
[style*="border: 1px dashed var(--border)"][style*="background: var(--white)"],
[style*="border:1px dashed var(--border)"][style*="background:var(--white)"] {
    background: #161616 !important;
}

/* ─── Payment label radio containers ────────────────────────── */
label[style*="background:rgba(0,0,0,0.02)"] {
    background: rgba(153,27,27,0.08) !important;
}

/* ─── Pagination dark override ───────────────────────────────── */
nav[role="navigation"] span,
nav[role="navigation"] a,
.pagination span,
.pagination a {
    background: #161616 !important;
    color: var(--text) !important;
    border-color: var(--border) !important;
}
nav[role="navigation"] a:hover,
.pagination a:hover {
    background: var(--primary) !important;
    color: #fff !important;
}
nav[role="navigation"] span[aria-current="page"],
.pagination .active span {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

/* ─── Checkout coupon applied box ────────────────────────────── */
[style*="background: rgba(83,100,81,0.05)"] {
    background: rgba(153,27,27,0.08) !important;
    border-color: var(--primary) !important;
}

/* ─── OTP / Auth verification pages ─────────────────────────── */
.o-form input[type="text"],
.o-form input[type="email"],
.o-form input[type="password"],
.o-form input[type="tel"],
.o-form textarea {
    background: #1a1a1a !important;
    color: var(--text) !important;
    border-color: var(--border) !important;
}
.o-form input::placeholder,
.o-form textarea::placeholder {
    color: var(--text-muted) !important;
}

/* ─── Select wrapper arrow ───────────────────────────────────── */
.o-select-wrap::after { color: var(--text-secondary) !important; }

/* ─── Cart qty input ─────────────────────────────────────────── */
.o-cart-table input[type="number"] {
    background: #1a1a1a !important;
    color: var(--text) !important;
    border-color: var(--border) !important;
}

/* ─── Wishlist page ──────────────────────────────────────────── */
.o-cart-table { background: #111111 !important; }

/* ─── Profile / misc pages ───────────────────────────────────── */
.o-hero { background: #0f0f0f !important; }

/* ─── Scrollbar dark ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ═══════════════════════════════════════════════════════════════
   NUCLEAR DARK THEME ENFORCEMENT — ABSOLUTE FINAL OVERRIDE
   Applied last — wins over all inline styles & legacy patterns
   ═══════════════════════════════════════════════════════════════ */

/* ─── HTML / Body ───────────────────────────────────────────────*/
html, body { background: #0a0a0a !important; color: #e8e8e8 !important; }

/* ─── ALL inputs, selects, textareas ────────────────────────── */
input:not([type="submit"]):not([type="button"]):not([type="radio"]):not([type="checkbox"]):not([type="range"]),
textarea, select {
    background: #1a1a1a !important;
    color: #e8e8e8 !important;
    border-color: #2a2a2a !important;
}
input::placeholder, textarea::placeholder { color: #555555 !important; }
select option { background: #1a1a1a !important; color: #e8e8e8 !important; }
input[type="date"], input[type="datetime-local"], input[type="time"] { color-scheme: dark !important; }
input[type="number"] { background: #1a1a1a !important; color: #e8e8e8 !important; border-color: #2a2a2a !important; }

/* ─── Inline #fff / white bg patterns ──────────────────────── */
[style*="background: #fff"],   [style*="background:#fff"],
[style*="background: white"],  [style*="background:white"],
[style*="background: #f9f9f9"],[style*="background:#f9f9f9"],
[style*="background: #fafafa"],[style*="background:#fafafa"],
[style*="background: #f5f5f5"],[style*="background:#f5f5f5"],
[style*="background-color: #fff"],[style*="background-color:#fff"],
[style*="background-color: white"],[style*="background-color:white"],
[style*="background-color: #ffffff"],[style*="background-color:#ffffff"] {
    background: #161616 !important; color: #e8e8e8 !important;
}

/* ─── Light red flash (errors) ──────────────────────────────── */
[style*="background: #fef2f2"],[style*="background:#fef2f2"],
[style*="background: #fee2e2"],[style*="background:#fee2e2"] {
    background: #1a0808 !important; color: #fca5a5 !important; border-color: #7f1d1d !important;
}
/* ─── Light green flash (success) ───────────────────────────── */
[style*="background: #ecfdf5"],[style*="background:#ecfdf5"],
[style*="background: #d1fae5"],[style*="background:#d1fae5"] {
    background: #0d2016 !important; color: #86efac !important; border-color: #166534 !important;
}
/* ─── Light yellow flash (warning) ──────────────────────────── */
[style*="background: #fffbeb"],[style*="background:#fffbeb"],
[style*="background: #fef3c7"],[style*="background:#fef3c7"] {
    background: #1a1400 !important; color: #fcd34d !important; border-color: #854d0e !important;
}

/* ─── Tables ────────────────────────────────────────────────── */
table  { background: #111111 !important; color: #e8e8e8 !important; }
thead  { background: #161616 !important; }
th, td { border-color: #2a2a2a !important; color: #e8e8e8 !important; }
tbody tr { background: #111111 !important; }
tbody tr:hover { background: #1a1a1a !important; }

/* ─── Product cards ─────────────────────────────────────────── */
.gr-product-card, .o-product-card {
    background: #161616 !important; color: #e8e8e8 !important; border-color: #2a2a2a !important;
}

/* ─── Outfit builder specifics ──────────────────────────────── */
.outfit-size-select, #category-filter {
    background: #1a1a1a !important; color: #e8e8e8 !important; border-color: #2a2a2a !important;
}

/* ─── Order summary, cart, address panels ───────────────────── */
.o-order-summary, .o-sidebar { background: #161616 !important; color: #e8e8e8 !important; }

/* ─── Divider on dark bg (rgba black → rgba white) ─────────── */
[style*="border-bottom: 1px solid rgba(0,0,0,0.05)"] { border-bottom-color: rgba(255,255,255,0.06) !important; }

/* ─── h tags default colour ─────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { color: #e8e8e8; }

/* ─── Dialog / modal ────────────────────────────────────────── */
dialog, [role="dialog"] { background: #161616 !important; color: #e8e8e8 !important; }

/* ─── Breadcrumb ────────────────────────────────────────────── */
.o-breadcrumb { background: #0a0a0a !important; }

/* ─── Accordion body ────────────────────────────────────────── */
.o-acc-body, .o-acc-body-inner { background: #111111 !important; color: #e8e8e8 !important; }

/* MOBILE CART REMOVE BUTTON - CLEAN FIX */

.o-cart-mobile-remove-form {
    display: none !important;
}

@media (max-width: 768px) {

    .o-cart-table th:last-child,
    .o-cart-table td:last-child {
        display: none !important;
    }

    .o-cart-mobile-remove-form {
        display: block !important;
        margin-top: 12px !important;
        width: 100% !important;
    }

    .o-cart-mobile-remove {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 90px !important;
        height: 36px !important;
        padding: 7px 12px !important;
        margin: 0 !important;
        color: #ef4444 !important;
        background: transparent !important;
        border: 1px solid #ef4444 !important;
        border-radius: 0 !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

