/* ==========================================================================
   Rose Empire Design System — Luxury Rose, Gold & Midnight
   ========================================================================== */

/* ---- Variables ---- */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;

    --navy:          #0a1628;
    --navy-light:    #1a3356;
    --navy-mid:      #243b5c;
    --rose:          #c45c7a;
    --rose-deep:     #8b3a52;
    --rose-glow:     rgba(196, 92, 122, 0.35);
    --gold:          #e8b923;
    --gold-bright:   #f5d76e;
    --gold-hover:    #d4a017;
    --gold-light:    rgba(232, 185, 35, 0.15);

    --gradient-gold: linear-gradient(135deg, #d4a017 0%, #f5d76e 45%, #e8b923 100%);
    --gradient-hero: linear-gradient(145deg, #0a1628 0%, #1a2540 35%, #2d1a32 70%, #0f2038 100%);
    --gradient-stats: linear-gradient(90deg, #0a1628 0%, #1a3356 50%, #3d2240 100%);
    --gradient-rose-navy: linear-gradient(135deg, var(--navy) 0%, var(--rose-deep) 100%);

    --bg-main:       #f7f4ef;
    --bg-surface:    #ffffff;
    --bg-alt:        #f0ebe3;
    --bg-navy-dark:  #060e1a;

    --text-main:     #0a1628;
    --text-muted:    #5c6b82;
    --text-light:    #8b9bb5;
    --text-white:    #ffffff;

    --border-color:  #e2dcd2;
    --shadow-sm:     0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md:     0 8px 24px rgba(10, 22, 40, 0.1);
    --shadow-lg:     0 16px 40px rgba(10, 22, 40, 0.12);
    --shadow-lux:    0 24px 60px rgba(139, 58, 82, 0.18), 0 12px 30px rgba(10, 22, 40, 0.15);
    --shadow-glow:   0 0 40px rgba(232, 185, 35, 0.25);

    --radius-sm:     8px;
    --radius-md:     14px;
    --radius-lg:     22px;
    --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-mode {
    --navy:          #e8edf5;
    --navy-light:    #cbd5e1;
    --rose:          #f0a0b8;
    --rose-deep:     #c45c7a;
    --gold:          #f5c842;
    --gold-bright:   #ffe08a;
    --gold-hover:    #e8b923;
    --gold-light:    rgba(245, 200, 66, 0.12);

    --bg-main:       #050a12;
    --bg-surface:    #0f1828;
    --bg-alt:        #151f32;
    --bg-navy-dark:  #020508;

    --text-main:     #e8edf5;
    --text-muted:    #94a3b8;
    --text-light:    #64748b;

    --border-color:  #1e2d45;
    --shadow-lux:    0 24px 60px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    background-image:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(196, 92, 122, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(232, 185, 35, 0.07) 0%, transparent 50%);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

input, textarea, select {
    font-family: inherit;
    color: var(--text-main);
    background-color: var(--bg-surface);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 0.97rem;
    width: 100%;
    transition: var(--transition);
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,164,68,0.18);
}
button { font-family: inherit; border: none; background: transparent; cursor: pointer; transition: var(--transition); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Helpers */
.hidden { display: none !important; }
.white-text { color: #fff !important; }
.gold-text { color: var(--gold) !important; }
.required { color: #e03e3e; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: var(--radius-sm);
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(232, 185, 35, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.55s ease;
}
.btn-gold:hover::after { left: 120%; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-gold:hover {
    filter: brightness(1.06);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow), 0 10px 28px rgba(232, 185, 35, 0.45);
}
.btn-gold:active { transform: translateY(0); }
.btn-gold:disabled {
    background-color: var(--text-light);
    color: #fff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
    background-color: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}
.dark-mode .btn-outline-dark {
    color: var(--text-main);
    border-color: var(--text-main);
}
.dark-mode .btn-outline-dark:hover {
    background-color: var(--text-main);
    color: var(--bg-main);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-navy-sm {
    background: var(--gradient-rose-navy);
    color: #fff;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.25);
}
.btn-navy-sm:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--rose-glow);
}

.btn-block { display: flex; width: 100%; }

/* ==========================================================================
   Top Info Bar
   ========================================================================== */
.top-bar {
    background: linear-gradient(90deg, var(--bg-navy-dark) 0%, #1a2540 50%, #2a1830 100%);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(232, 185, 35, 0.15);
}
.top-bar-content i { color: var(--gold-bright); }
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.top-bar-content span { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.top-bar-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.top-bar-content a:hover { color: var(--gold-bright); }

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.header {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid rgba(226, 220, 210, 0.8);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 4px 30px rgba(10, 22, 40, 0.06);
}
.dark-mode .header {
    background: rgba(15, 24, 40, 0.88);
    border-bottom-color: var(--border-color);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}
.logo-mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: block;
    border-radius: 13px;
    box-shadow: 0 3px 14px rgba(139, 58, 82, 0.22);
}
.dark-mode .logo-mark {
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
}
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.logo-title {
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--navy);
}
.logo-accent {
    color: var(--rose-deep);
    font-weight: 700;
}
.dark-mode .logo-title { color: var(--text-main); }
.dark-mode .logo-accent { color: var(--rose); }
.footer .logo-accent { color: #f0a0b8; }
.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.footer .logo-subtitle.gold-text {
    color: rgba(245, 215, 110, 0.88);
}

/* Nav */
.mobile-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-color);
    color: var(--navy);
    background: transparent;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.mobile-nav-toggle:hover { background-color: var(--bg-alt); }

.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-link--linkedin { color: #0a66c2 !important; }
.nav-link--linkedin i { margin-right: 4px; }
.nav-link {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.92rem;
    padding: 5px 0;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.dark-mode .nav-link:hover, .dark-mode .nav-link.active { color: var(--text-main); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.theme-toggle:hover { background-color: var(--bg-alt); color: var(--navy); border-color: var(--navy); }

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gradient-gold);
    color: var(--navy);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    box-shadow: 0 4px 18px rgba(232, 185, 35, 0.35);
}
.quote-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.cart-badge {
    background: var(--rose-deep);
    color: #fff;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    background: var(--gradient-hero);
    padding: 96px 0 80px;
    overflow: hidden;
    border-bottom: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,185,35,0.5), transparent);
}
.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb--1 {
    width: 420px;
    height: 420px;
    background: var(--rose);
    top: -120px;
    right: -80px;
    animation-delay: 0s;
}
.hero-orb--2 {
    width: 320px;
    height: 320px;
    background: var(--gold);
    bottom: -80px;
    left: -60px;
    opacity: 0.35;
    animation-delay: -4s;
}
.hero-orb--3 {
    width: 200px;
    height: 200px;
    background: #4a7cb8;
    top: 40%;
    left: 35%;
    opacity: 0.2;
    animation-delay: -8s;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-bright);
    margin-bottom: 18px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(232, 185, 35, 0.35);
    border-radius: 50px;
    backdrop-filter: blur(8px);
}
.hero-tagline i { font-size: 0.75rem; }

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.35rem);
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.08;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #f5d76e 50%, #f0c4d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title-accent {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #f5d76e 0%, #f0a0b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description strong { color: var(--gold-bright); font-weight: 700; }

.hero-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rose);
    filter: brightness(1.2);
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.75;
}

.hero-trust-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}
.trust-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.trust-icon:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(232, 185, 35, 0.4);
    transform: translateY(-2px);
}
.trust-icon--highlight {
    background: rgba(232, 185, 35, 0.15);
    border-color: rgba(232, 185, 35, 0.55);
    box-shadow: 0 0 24px rgba(232, 185, 35, 0.2);
}
.trust-icon--highlight i { color: var(--gold-bright); }
.trust-icon i {
    color: var(--gold-bright);
    font-size: 1rem;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-side {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lux), 0 0 60px rgba(232, 185, 35, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(232, 185, 35, 0.35);
}
.hero-image-frame {
    position: absolute;
    inset: -12px;
    border-radius: calc(var(--radius-lg) + 8px);
    border: 1px solid rgba(232, 185, 35, 0.25);
    pointer-events: none;
    animation: framePulse 4s ease-in-out infinite;
}
@keyframes framePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.01); }
}
.hero-image-side .hero-product-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hero-image-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-product-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}
.hero:hover .hero-product-img { transform: scale(1.03); }
.hero-img-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    z-index: 2;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid rgba(232, 185, 35, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.hero-img-badge--top {
    bottom: auto;
    top: 22px;
    left: 22px;
    background: linear-gradient(135deg, rgba(232,185,35,0.95), rgba(245,215,110,0.95));
    color: var(--navy);
    border-color: rgba(255,255,255,0.4);
    font-weight: 800;
}
.hero-img-badge--top i { color: var(--rose-deep); }
.hero-img-badge i { color: var(--gold-bright); }

/* MOQ Promo Strip */
.moq-promo-strip {
    background: linear-gradient(90deg, #fff9f0 0%, #fff 50%, #fdf8f0 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: relative;
    z-index: 5;
}
.dark-mode .moq-promo-strip {
    background: linear-gradient(90deg, #0f1828 0%, #151f32 50%, #0f1828 100%);
}
.moq-promo-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}
.moq-promo-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.moq-promo-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-rose-navy);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px var(--rose-glow);
}
.moq-promo-text {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.moq-promo-text strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--navy);
    letter-spacing: 0.2px;
}
.dark-mode .moq-promo-text strong { color: var(--text-main); }
.moq-promo-text span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */
.stats-bar {
    background: var(--gradient-stats);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}
.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(232, 185, 35, 0.35);
    transform: translateY(-3px);
}
.stat-item:last-child { padding-right: 22px; }
.stat-item i {
    font-size: 2rem;
    color: var(--gold-bright);
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(232, 185, 35, 0.5));
}
.stat-item div { display: flex; flex-direction: column; }
.stat-item strong { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; }
.stat-item span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ==========================================================================
   Wholesale Categories Section
   ========================================================================== */
.categories-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 600;
    color: var(--rose-deep);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.dark-mode .section-eyebrow { color: var(--rose); }
.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.15rem);
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--rose-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dark-mode .section-header h2 {
    background: linear-gradient(135deg, #fff 0%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}
.section-header p strong { color: var(--rose-deep); font-weight: 700; }
.dark-mode .section-header p strong { color: var(--gold); }
.accent-line {
    width: 72px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto 16px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(232, 185, 35, 0.45);
    position: relative;
}
.accent-line::before,
.accent-line::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.45rem;
    color: var(--gold);
}
.accent-line::before { left: -18px; }
.accent-line::after { right: -18px; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.category-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.category-card:hover::before { opacity: 1; }
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lux);
    border-color: rgba(196, 92, 122, 0.45);
}

.category-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.category-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-card:hover .category-card-img-wrap img { transform: scale(1.06); }
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.05), rgba(139, 58, 82, 0.55));
}
.category-card-icon {
    position: absolute;
    bottom: 16px;
    left: 20px;
    width: 46px;
    height: 46px;
    background-color: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}
.category-card-body {
    padding: 24px 26px 26px;
}
.category-card-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}
.dark-mode .category-card-body h3 { color: var(--text-main); }
.category-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.category-card-body button { align-self: flex-start; }

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-us {
    padding: 88px 0;
    background:
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(196, 92, 122, 0.06) 0%, transparent 50%),
        var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lux);
    border-color: var(--rose);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-rose-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 20px;
    border: 3px solid var(--gold-bright);
    transition: var(--transition);
    box-shadow: 0 8px 24px var(--rose-glow);
}
.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    color: var(--navy);
    border-color: var(--rose-deep);
    transform: scale(1.08) rotate(-3deg);
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.dark-mode .feature-card h3 { color: var(--text-main); }
.feature-card p { font-size: 0.87rem; color: var(--text-muted); }

/* ==========================================================================
   Manchester Banner
   ========================================================================== */
.manchester-banner {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #2d1a32 40%, #1a3356 100%);
    padding: 88px 0;
    overflow: hidden;
}
.manchester-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1588495411515-f7a52a8b48cd?w=1200&q=60') center/cover no-repeat;
    opacity: 0.12;
}
.manchester-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,31,60,0.92) 0%, rgba(13,31,60,0.75) 100%);
}
.manchester-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 680px;
}
.manchester-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}
.manchester-content h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.manchester-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 30px;
    max-width: 560px;
}

/* ==========================================================================
   Catalog Section
   ========================================================================== */
.catalog-section {
    padding: 88px 0;
    background-color: var(--bg-main);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(196, 92, 122, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(232, 185, 35, 0.06) 0%, transparent 40%);
}
.catalog-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.search-box { position: relative; }
.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
}
.search-box input {
    padding: 15px 15px 15px 48px;
    font-size: 1rem;
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tab {
    padding: 9px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-surface);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: var(--font-heading);
}
.filter-tab:hover { color: var(--navy); border-color: var(--navy); }
.filter-tab.active {
    background: var(--gradient-gold);
    color: var(--navy);
    border-color: transparent;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(232, 185, 35, 0.35);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
}

.product-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lux), 0 0 0 1px rgba(196, 92, 122, 0.15);
    border-color: rgba(196, 92, 122, 0.35);
}
.product-image-container {
    position: relative;
    height: 230px;
    overflow: hidden;
    background-color: var(--bg-alt);
}
.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image-container img { transform: scale(1.06); }

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--navy);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-tag.tag-gold {
    background: var(--gradient-gold);
    color: var(--navy);
    font-weight: 800;
}

.product-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.dark-mode .product-title { color: var(--text-main); }
.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.spec-badge {
    background-color: var(--bg-alt);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}
.product-pricing-moq {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}
.moq-box-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--rose-deep);
    background: rgba(196, 92, 122, 0.1);
    border: 1px solid rgba(196, 92, 122, 0.25);
    padding: 5px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.dark-mode .moq-box-badge {
    color: var(--rose);
    background: rgba(240, 160, 184, 0.12);
}
.moq-box-badge i { font-size: 0.7rem; }
.product-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
}
.pricing-info { display: flex; flex-direction: column; }
.moq-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}
.price-value {
    font-size: 1.15rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.product-actions { margin-top: 14px; }
.product-actions .btn { width: 100%; font-size: 0.88rem; padding: 11px 20px; }

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    color: var(--text-muted);
}
.no-results i { font-size: 3rem; margin-bottom: 16px; color: var(--text-light); }

/* ==========================================================================
   Product Feature Strip
   ========================================================================== */
.feature-strip-section {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-alt) 100%);
    padding: 56px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-strip-item {
    text-align: center;
    transition: var(--transition);
}
.feature-strip-item:hover { transform: translateY(-3px); }
.feature-strip-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
}
.feature-strip-item:hover img {
    border-color: var(--gold);
    box-shadow: var(--shadow-lux);
}
.feature-strip-item h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
}
.dark-mode .feature-strip-item h4 { color: var(--text-main); }

/* ==========================================================================
   Animate-in Cards
   ========================================================================== */
.animate-in {
    animation: fadeUpIn 0.4s ease forwards;
}
@keyframes fadeUpIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Slide-out Quote Cart Drawer
   ========================================================================== */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -440px;
    width: 440px;
    height: 100%;
    background-color: var(--bg-surface);
    box-shadow: -12px 0 40px rgba(13,31,60,0.15);
    z-index: 500;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { right: 0; }
.drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(13,31,60,0.45);
    z-index: 499;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer-header {
    padding: 22px 24px;
    border-bottom: 1px solid rgba(232, 185, 35, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-stats);
    color: #fff;
}
.cart-drawer-header h3 { font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.cart-drawer-header h3 i { color: var(--gold-bright); }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.empty-cart-message { text-align: center; padding: 50px 20px; color: var(--text-muted); }
.empty-cart-message i { font-size: 3rem; margin-bottom: 16px; display: block; color: var(--text-light); }
.empty-cart-message p { font-size: 0.9rem; margin-bottom: 8px; }

.cart-item {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    position: relative;
}
.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(224,62,62,0.1);
    color: #e03e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.cart-item-remove:hover { background-color: #e03e3e; color: #fff; }
.cart-item-image { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-title { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.dark-mode .cart-item-title { color: var(--text-main); }
.cart-item-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-meta div { margin-bottom: 2px; }
.cart-item-controls { display: flex; align-items: center; gap: 12px; }
.qty-selector { display: flex; align-items: center; gap: 4px; }
.qty-btn {
    width: 32px;
    height: 32px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover { background-color: var(--navy); color: #fff; }
.qty-input {
    width: 60px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 5px 4px;
    border-radius: var(--radius-sm);
    height: 32px;
}
.cart-item-total { font-size: 1rem; font-weight: 800; color: var(--gold); margin-left: auto; }
.moq-warning {
    background-color: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.25);
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    grid-column: 1 / -1;
}
.cart-drawer-footer {
    padding: 18px 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-surface);
}
.cart-summary { margin-bottom: 14px; }
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 5px 0;
}
.summary-row.total-row {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 5px;
    flex-wrap: wrap;
    gap: 8px;
}
.dark-mode .summary-row.total-row { color: var(--text-main); }
.summary-row small { font-size: 0.72rem; font-weight: 500; color: var(--text-light); }
.summary-discount-row .discount-value { color: #16a34a; font-weight: 700; }
.summary-total-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    max-width: 65%;
}
.volume-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #15803d;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid #86efac;
    line-height: 1.3;
    text-align: right;
    animation: badgePop 0.35s ease;
}
.volume-discount-badge::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
}
@keyframes badgePop {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
.volume-tier-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--gold-light);
    border: 1px solid rgba(201,164,68,0.25);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    margin-bottom: 12px;
    line-height: 1.45;
}
.volume-tier-hint.tier-hint--premium {
    color: #15803d;
    background: #f0fdf4;
    border-color: #86efac;
    font-weight: 600;
}
.vat-note { font-size: 0.72rem; color: var(--text-light); margin-top: 8px; }

.close-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.close-btn:hover { background-color: rgba(255,255,255,0.3); }

/* ==========================================================================
   Modals
   ========================================================================== */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(13,31,60,0.55);
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-content {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    position: relative;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(13,31,60,0.25);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: scale(0.95) translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-large { max-width: 860px; }
.modal-medium { max-width: 600px; }
.modal-body { padding: 36px; }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background-color: var(--bg-alt);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.modal-close:hover { background-color: var(--navy); color: #fff; }

/* Product Detail Layout */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.detail-gallery img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.detail-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.detail-title { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.dark-mode .detail-title { color: var(--text-main); }
.detail-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }

.layers-container {
    background-color: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold);
}
.layers-container h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.dark-mode .layers-container h4 { color: var(--text-main); }
.layer-list { display: flex; flex-direction: column; gap: 7px; }
.layer-item { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 9px; }
.layer-num {
    width: 22px;
    height: 22px;
    background-color: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}
.gold-text { color: var(--gold) !important; }

.detail-specs-list { margin-bottom: 20px; }
.detail-specs-list h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 10px; }
.dark-mode .detail-specs-list h4 { color: var(--text-main); }
.detail-specs-list ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.detail-specs-list li { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; }
.detail-specs-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.detail-pricing-box {
    background-color: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 20px;
}
.detail-pricing-box > strong { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); display: block; margin-bottom: 10px; }
.dark-mode .detail-pricing-box > strong { color: var(--text-main); }
.pricing-tiers-list { display: flex; flex-direction: column; gap: 6px; }
.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--bg-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 0.86rem;
}
.tier-item strong { color: var(--gold); font-weight: 800; }
.tier-item.active { border-color: var(--gold); }

.detail-purchase-controls { display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap; }
.detail-purchase-controls .form-group { flex: 1; min-width: 130px; }
.detail-purchase-controls label { font-size: 0.72rem; font-weight: 700; display: block; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.3px; }
.detail-purchase-controls select { width: 100%; padding: 10px 12px; border-radius: var(--radius-sm); }

/* ==========================================================================
   RFQ Form
   ========================================================================== */
.modal-header-section { text-align: center; margin-bottom: 28px; }
.modal-header-icon { font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: 12px; }
.modal-header-section h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.dark-mode .modal-header-section h2 { color: var(--text-main); }
.modal-header-section p { font-size: 0.9rem; color: var(--text-muted); }

.rfq-form { display: flex; flex-direction: column; gap: 16px; }
.field-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.45;
}
.checkout-totals-panel {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-surface) 100%);
    border: 1.5px solid var(--border-color);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 16px 18px;
}
.checkout-totals-panel--empty { opacity: 0.85; }
.checkout-totals-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkout-totals-title i { color: var(--gold); }
.dark-mode .checkout-totals-title { color: var(--text-main); }
.checkout-totals-grid { display: flex; flex-direction: column; gap: 6px; }
.checkout-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    gap: 12px;
}
.checkout-totals-row strong { color: var(--navy); font-weight: 700; }
.dark-mode .checkout-totals-row strong { color: var(--text-main); }
.checkout-totals-row--logistics strong { color: #1d4ed8; }
.checkout-totals-row--grand {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
}
.checkout-totals-row--grand strong {
    font-size: 1.05rem;
    color: var(--gold);
}
.summary-shipping-row strong,
#summary-shipping-amount { color: #1d4ed8; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--text-main); text-transform: uppercase; letter-spacing: 0.3px; }

.rfq-submission-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { }
.footer-top {
    background: linear-gradient(160deg, #060e1a 0%, #1a2540 40%, #2d1835 100%);
    padding: 72px 0 52px;
    position: relative;
}
.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}
.footer-brand-column .logo { margin-bottom: 20px; }
.brand-desc { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; line-height: 1.7; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.linkedin-cta-btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    padding: 10px 18px;
}
.footer-contact-column a,
.footer-brand-column a:not(.logo) {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-contact-column a:hover,
.footer-brand-column a:not(.logo):hover { color: var(--gold-bright); }

.footer-links-column h3,
.footer-contact-column h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links-column ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-column ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.86rem;
    transition: var(--transition);
}
.footer-links-column ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-column p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.6);
}
.footer-contact-column p i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-quote-box {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(232, 185, 35, 0.25);
    border-radius: var(--radius-md);
    padding: 20px;
    backdrop-filter: blur(8px);
}
.footer-quote-box h4 { color: #fff; font-size: 0.9rem; margin-bottom: 6px; }
.footer-quote-box p { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 14px; display: block; }
.footer-quote-box button { font-size: 0.82rem; padding: 9px 18px; }

.footer-bottom {
    background-color: #070f1f;
    padding: 16px 0;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 8px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.4rem; }
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item:nth-child(2) { border-right: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .moq-promo-inner { justify-content: center; text-align: center; }
    .moq-promo-inner .btn { width: 100%; }
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .mobile-nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 12px 32px rgba(10, 22, 40, 0.12);
        padding: 8px 0 12px;
        z-index: 199;
    }
    .dark-mode .nav-menu {
        background: rgba(15, 24, 40, 0.98);
    }
    .nav-menu.nav-menu--open { display: flex; }
    .nav-link {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .nav-link::after { display: none; }
    .header { position: sticky; }
    .header-container { position: relative; flex-wrap: wrap; }
    .quote-btn span:not(.cart-badge) { display: none; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 2rem; }
    .hero-image-side { order: -1; }
    .hero-product-img { height: 280px; }
    .categories-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .product-detail-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-menu { display: none; }
    .nav-menu.nav-menu--open { display: flex; }
    .manchester-content h2 { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.6rem; }
    .cart-drawer { width: 100%; right: -100%; }
}
@media (max-width: 480px) {
    .logo-mark { width: 38px; height: 38px; }
    .logo-title { font-size: 1.18rem; }
    .logo-subtitle { font-size: 0.5rem; letter-spacing: 0.14em; }
    .stats-bar-grid { grid-template-columns: 1fr 1fr; }
    .hero-trust-icons { gap: 12px; }
    .trust-icon span { display: none; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

::selection {
    background: var(--rose-deep);
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .hero-orb,
    .hero-product-img,
    .category-card-img-wrap img,
    .product-image-container img {
        animation: none !important;
        transition: none !important;
    }
}
