/* ==========================================================================
   Royal Leather Industries - Gloves Dedicated Catalogue Page Styles (2026)
   DISTINCT SECTION COLOR COMBINATIONS & LUXURY GSAP ARCHITECTURE
   ========================================================================== */

/* The mobile nav drawer parks itself off-screen to the right. clip clips
   WITHOUT creating a scroll container, so unlike hidden it cannot break position:sticky. */
html {
    overflow-x: clip;
}

/* Page Base */
.gloves-page {
    overflow-x: clip;
    background-color: #120F0D;
    color: #1c1815;
    font-family: var(--font-body, 'Inter', sans-serif);
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-dark {
    color: #1a1714 !important;
}

.bg-cream {
    background-color: #F7F3EB !important;
}

.bg-premium-light {
    background-color: #ECE5D8 !important;
}

.bg-darker {
    background-color: #14110F !important;
}

.text-cream {
    color: #F7F4ED !important;
}

/* SplitType typography reveal wrappers */
.split-line {
    overflow: hidden;
    display: block;
}
.char, .word {
    display: inline-block;
    vertical-align: top;
    will-change: transform, opacity;
}

/* ==========================================================================
   0. CUSTOM MAGNETIC CURSOR & FOLLOWER
   ========================================================================== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #C25E2E;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.15s ease-out;
    opacity: 0;
}
.custom-cursor.visible {
    opacity: 1;
}
.custom-cursor.active {
    transform: translate(-50%, -50%) scale(0);
}

.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(194, 94, 46, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.3s ease, 
                border-color 0.3s ease, 
                opacity 0.3s ease;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #FFF8F2;
    text-transform: uppercase;
}
.custom-cursor-follower.visible {
    opacity: 1;
}
.custom-cursor-follower.hover-active {
    width: 56px;
    height: 56px;
    background-color: rgba(194, 94, 46, 0.12);
    border-color: #C25E2E;
}
.custom-cursor-follower.card-active {
    width: 68px;
    height: 68px;
    background-color: rgba(194, 94, 46, 0.18);
    border-color: #E08A55;
    backdrop-filter: blur(2px);
}
.custom-cursor-follower.zoom-active {
    width: 76px;
    height: 76px;
    background-color: rgba(194, 94, 46, 0.25);
    border: 1.5px solid #C25E2E;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 24px rgba(194, 94, 46, 0.35);
    color: #FFFFFF;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
}
.custom-cursor-follower.quote-active {
    width: 76px;
    height: 76px;
    background-color: rgba(28, 24, 21, 0.85);
    border-color: #C25E2E;
    color: #F7F3EB;
}

@media (hover: none), (pointer: coarse) {
    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }
}

/* Breadcrumbs */
.breadcrumbs-tag {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #786f66;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.breadcrumbs-tag a {
    color: #786f66;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumbs-tag a:hover {
    color: #a85c32;
}
.breadcrumbs-tag .active {
    color: #a85c32;
    font-weight: 600;
}

/* Navigation Header */
#gloves-nav {
    background: rgba(14, 11, 9, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}
#gloves-nav .nav-links a {
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 500;
    transition: color 0.25s ease;
}
#gloves-nav .nav-links a:hover {
    color: #C28A58 !important;
}
#gloves-nav .nav-btn-download {
    background: #C28A58;
    border: 1px solid #C28A58;
    color: #0E0B09 !important;
    border-radius: 24px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(194, 138, 88, 0.25);
}
#gloves-nav .nav-btn-download:hover {
    background: #D9A06C;
    border-color: #D9A06C;
    color: #0E0B09 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(194, 138, 88, 0.35);
}

/* ==========================================================================
   SECTION 1: FULL-BLEED EDITORIAL HERO (Matching Reference Luxury Showcase)
   ========================================================================== */
.gloves-hero.full-bleed-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 140px 0 50px 0;
    background: #0E0B09;
    color: #FFFFFF;
    overflow: hidden;
}

/* Full-Screen Crossfading Background Slider */
.hero-full-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.full-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 7s cubic-bezier(0.1, 0, 0.1, 1);
    will-change: opacity, transform;
}

.full-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.full-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: saturate(1.06) contrast(1.04);
}

/* Cinematic Film Overlay Scrim */
.hero-cinematic-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: 
        linear-gradient(90deg, rgba(14, 11, 9, 0.94) 0%, rgba(14, 11, 9, 0.72) 46%, rgba(14, 11, 9, 0.28) 88%),
        linear-gradient(180deg, rgba(14, 11, 9, 0.45) 0%, transparent 40%, rgba(14, 11, 9, 0.85) 100%);
    pointer-events: none;
}

/* Content Layout */
.full-bleed-hero .gloves-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 220px);
    gap: 40px;
}

.hero-editorial-wrap {
    max-width: 620px;
    margin: auto 0;
}

.hero-reference-kicker {
    display: block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #C28A58;
    margin-bottom: 22px;
}

.hero-reference-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(3.2rem, 7.2vw, 6.0rem);
    line-height: 1.0;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: -0.015em;
    margin: 0 0 24px 0;
}

.hero-reference-title em {
    display: block;
    font-style: italic;
    color: #C28A58;
    font-weight: 400;
}

.hero-reference-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(0.96rem, 1.15vw, 1.08rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin: 0 0 34px 0;
    font-weight: 300;
}

/* Reference Action Buttons */
.hero-reference-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.btn-ref-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #C28A58;
    color: #0E0B09 !important;
    border: 1px solid #C28A58;
    border-radius: 2px;
    padding: 15px 32px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(194, 138, 88, 0.25);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ref-solid:hover {
    background: #D9A06C;
    border-color: #D9A06C;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(194, 138, 88, 0.4);
}

.btn-ref-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    padding: 15px 32px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ref-outline:hover {
    border-color: #C28A58;
    color: #C28A58 !important;
    background: rgba(194, 138, 88, 0.08);
    transform: translateY(-2px);
}

/* Bottom Series Navigation Bar */
.hero-slide-nav-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-wrap: wrap;
}

.slide-nav-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #C28A58;
}

.slide-nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.slide-nav-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.slide-nav-btn.active {
    background: #C28A58;
    color: #0E0B09;
    border-color: #C28A58;
    font-weight: 700;
}

/* ==========================================================================
   SECTION 2: TRUST CREDENTIALS RIBBON
   Palette: Brushed Dark Bronze (#181411) & Warm Gold (#E5B869)
   ========================================================================== */
.trust-ribbon {
    background: #181411;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}
.trust-ribbon::before,
.trust-ribbon::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 3;
    pointer-events: none;
}
.trust-ribbon::before {
    left: 0;
    background: linear-gradient(to right, #181411, transparent);
}
.trust-ribbon::after {
    right: 0;
    background: linear-gradient(to left, #181411, transparent);
}

.trust-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}
.trust-marquee-group {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E2D7CC;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
}
.trust-badge:hover {
    color: #FFF8F2;
    transform: translateY(-1px);
}
.trust-icon {
    color: #E5B869;
    font-size: 0.98rem;
    text-shadow: 0 0 10px rgba(229, 184, 105, 0.4);
}

/* ==========================================================================
   SECTION 3: INTERACTIVE PRODUCT CATALOGUE
   Palette: Editorial Warm Cream (#F7F3EB) & Pure White Porcelain Cards (#FFFFFF)
   ========================================================================== */
.section-catalogue {
    padding: 100px 0 120px 0;
    background-color: #F7F3EB;
    color: #1A1613;
    position: relative;
}

.catalogue-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 25px;
    flex-wrap: wrap;
}

.editorial-eyebrow.dark {
    color: #BA5222;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 400;
    color: #1A1613;
    margin: 0 0 12px 0;
    line-height: 1.1;
}
.section-intro.intro-editorial {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: #5D544A;
    max-width: 600px;
    margin: 0;
}

.btn-quick-inquiry {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #1A1613;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.btn-quick-inquiry:hover {
    background: #C25E2E;
    border-color: #C25E2E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 94, 46, 0.28);
}

/* Floating Sticky Series Navigation Bar (Apple Segmented Style) */
.series-sticky-nav-wrap {
    position: sticky;
    top: 76px;
    z-index: 30;
    margin: 0 0 45px 0;
    padding: 12px 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(247, 243, 235, 0.90);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.series-sticky-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px;
}
.series-sticky-nav::-webkit-scrollbar {
    display: none;
}
.series-nav-btn {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #4A4238;
    padding: 9px 18px;
    border-radius: 24px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.series-nav-btn:hover {
    color: #BA5222;
    border-color: rgba(186, 82, 34, 0.35);
    transform: translateY(-1px);
}
.series-nav-btn.active {
    background: #1C1714;
    border-color: #1C1714;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(28, 23, 20, 0.22);
}
.series-nav-btn .nav-count {
    display: inline-block;
    font-size: 0.68rem;
    padding: 1px 6px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.06);
    color: inherit;
    font-family: monospace;
}
.series-nav-btn.active .nav-count {
    background: rgba(229, 184, 105, 0.25);
    color: #E5B869;
}

/* Individual Series Block */
.series-block {
    margin-bottom: 80px;
    scroll-margin-top: 155px;
}
.series-block:last-child {
    margin-bottom: 0;
}

/* Series Header Card (Cinematic Ultra-Realistic Banner) */
.series-header-card.cinematic-bg {
    position: relative;
    border-radius: 20px;
    padding: 38px 42px;
    margin-bottom: 34px;
    overflow: hidden;
    border: 1px solid rgba(229, 184, 105, 0.28);
    border-left: 5px solid #BA5222;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    background: #0E0C0B;
    transform: translateZ(0);
    will-change: clip-path, transform, opacity;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.series-header-card.cinematic-bg:hover {
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
}

.series-header-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.series-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    filter: brightness(0.9) contrast(1.05);
}
.series-header-card.cinematic-bg:hover .series-bg-img {
    transform: scale(1.04);
}

.series-bg-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(10, 8, 7, 0.95) 0%, 
        rgba(14, 11, 9, 0.88) 42%, 
        rgba(14, 11, 9, 0.55) 75%, 
        rgba(10, 8, 7, 0.4) 100%);
    backdrop-filter: blur(1px);
}

.series-header-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.series-header-card.cinematic-bg .series-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.65rem, 2.4vw, 2.2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.series-header-card.cinematic-bg .series-desc {
    font-size: 0.94rem;
    line-height: 1.65;
    color: #E2D9CE;
    margin: 0 0 22px 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.series-header-card.cinematic-bg .series-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.series-header-card.cinematic-bg .series-index {
    color: #FFFFFF;
    background: #BA5222;
    padding: 4px 9px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(186, 82, 34, 0.4);
}
.series-header-card.cinematic-bg .series-code-tag {
    color: #E5B869;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(229, 184, 105, 0.3);
    padding: 3px 8px;
    border-radius: 4px;
}
.series-header-card.cinematic-bg .series-count-tag {
    color: #CFC5B8;
}

.series-header-card.cinematic-bg .btn-series-quote {
    background: rgba(22, 17, 14, 0.85);
    border: 1px solid rgba(229, 184, 105, 0.4);
    color: #FFFFFF;
    padding: 9px 20px;
    border-radius: 24px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.series-header-card.cinematic-bg .btn-series-quote:hover {
    background: #BA5222;
    border-color: #BA5222;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(186, 82, 34, 0.4);
}

.series-header-card.cinematic-bg .series-tags-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.series-header-card.cinematic-bg .series-spec-pill {
    background: rgba(14, 11, 10, 0.72);
    border: 1px solid rgba(229, 184, 105, 0.25);
    color: #E8E0D5;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.series-header-card.cinematic-bg .series-spec-pill:hover {
    border-color: #E5B869;
    color: #FFFFFF;
    background: rgba(229, 184, 105, 0.15);
}

/* Products Grid */
.gloves-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.glove-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateZ(0);
    will-change: transform, opacity;
    transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 28px rgba(40, 30, 20, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
}
.glove-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(194, 94, 46, 0.1), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}
.glove-card:hover::before {
    opacity: 1;
}
.glove-card:hover {
    box-shadow: 0 22px 48px rgba(40, 30, 20, 0.13);
    border-color: rgba(194, 94, 46, 0.35);
}

.glove-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #1C1714;
    color: #FFFFFF;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.glove-card-image {
    position: relative;
    width: 100%;
    height: 276px;
    background: radial-gradient(circle at 50% 45%, #FFFFFF 0%, #FAF8F5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow: hidden;
    cursor: crosshair;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.glove-card-image img {
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(40, 30, 20, 0.13));
    transition: filter 0.4s ease;
    transform-origin: center center;
    will-change: transform;
    pointer-events: none;
}
.glove-card-image:hover img {
    filter: drop-shadow(0 22px 34px rgba(40, 30, 20, 0.22));
}

.glove-card-body {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.glove-series-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #BA5222;
    margin-bottom: 8px;
}

.glove-model-name {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A1613;
    margin: 0 0 16px 0;
    line-height: 1.25;
}

.glove-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: #554D43;
    flex: 1;
}
.glove-specs-list li {
    line-height: 1.45;
}
.glove-specs-list strong {
    color: #1A1613;
    font-weight: 600;
}

.glove-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.btn-card-quote {
    flex: 1;
    background: #1C1714;
    color: #FFFFFF;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.btn-card-quote:hover {
    background: #BA5222;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(186, 82, 34, 0.25);
}

.btn-card-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(186, 82, 34, 0.08);
    border: 1px solid rgba(186, 82, 34, 0.25);
    color: #BA5222;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.btn-card-email:hover {
    background: #BA5222;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 82, 34, 0.35);
}

/* ==========================================================================
   SECTION 4: LEATHER ANATOMY ("We Tan What We Stitch")
   Palette: Deep Tannery Mahogany (#14110F) & Burnished Amber Gold (#D49B4B)
   ========================================================================== */
.section-anatomy {
    padding: 110px 0;
    background-color: #14110F;
    color: #F7F4ED;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.editorial-eyebrow.gold {
    color: #E5B869;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-anatomy .section-title {
    background: #14110F;
    color: #F7F4ED;
    position: relative;
    overflow: hidden;
}
.section-anatomy::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 184, 105, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.anatomy-header-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: flex-end;
    margin-bottom: 48px;
}
.anatomy-header-left .section-title {
    color: #FFFFFF;
    margin-bottom: 0;
}
.anatomy-header-right .section-intro {
    color: #CFC5B8;
    line-height: 1.7;
    font-size: 0.96rem;
    margin: 0;
}

.material-lab-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 40px;
    align-items: start;
}

/* Left Substrate Selector Deck */
.substrate-deck {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.substrate-deck-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(229, 184, 105, 0.15);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #A69B8D;
}
.pulse-live {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ADE80;
    margin-right: 6px;
    animation: livePulse 2s infinite ease-in-out;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.substrate-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 184, 105, 0.14);
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.substrate-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #E5B869;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.substrate-item:hover,
.substrate-item.active {
    background: linear-gradient(135deg, rgba(229, 184, 105, 0.09) 0%, rgba(194, 94, 46, 0.04) 100%);
    border-color: rgba(229, 184, 105, 0.55);
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.substrate-item.active::before {
    opacity: 1;
}

.sub-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
}
.sub-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #E5B869;
    background: rgba(229, 184, 105, 0.12);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    border: 1px solid rgba(229, 184, 105, 0.25);
}
.sub-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    font-family: var(--font-display, 'Playfair Display', serif);
}
.sub-gauge-box {
    text-align: right;
    background: rgba(0, 0, 0, 0.35);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.gauge-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: #A69B8D;
}
.gauge-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #E5B869;
    font-family: monospace;
}
.gauge-val small {
    font-size: 0.7rem;
    color: #CFC5B8;
}

.sub-desc {
    font-size: 0.82rem;
    color: #CFC5B8;
    line-height: 1.45;
    margin: 0 0 16px 0;
}

.sub-metric-bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.metric-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #A69B8D;
    margin-bottom: 4px;
}
.metric-label-row strong {
    color: #FFFFFF;
}
.metric-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}
.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #BA5222, #E5B869);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Right Digital Material Lab Stage */
.material-lab-stage {
    position: sticky;
    top: 96px;
}
.lab-glass-card {
    background: rgba(22, 18, 16, 0.92);
    border: 1px solid rgba(229, 184, 105, 0.28);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.lab-stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: rgba(14, 11, 10, 0.85);
    border-bottom: 1px solid rgba(229, 184, 105, 0.15);
}
.specimen-id-tag {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #E5B869;
    font-family: monospace;
}
.tannery-loc {
    display: block;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    color: #8C8074;
    text-transform: uppercase;
}
.lab-cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 184, 105, 0.12);
    border: 1px solid rgba(229, 184, 105, 0.35);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #FFFFFF;
}
.cert-gold-dot {
    width: 6px;
    height: 6px;
    background: #E5B869;
    border-radius: 50%;
    box-shadow: 0 0 6px #E5B869;
}

.lab-canvas-wrap {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #000000;
    cursor: crosshair;
}
.lab-macro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.lab-canvas-wrap:hover .lab-macro-img {
    transform: scale(1.06);
}

.lab-laser-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(229, 184, 105, 0.8), #FFFFFF, rgba(229, 184, 105, 0.8), transparent);
    box-shadow: 0 0 14px rgba(229, 184, 105, 0.9);
    pointer-events: none;
    z-index: 4;
    animation: laserScanDown 4s infinite ease-in-out;
}
@keyframes laserScanDown {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.lab-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
    transition: transform 0.15s ease-out, opacity 0.3s ease;
    opacity: 0;
}
.lab-canvas-wrap:hover .lab-crosshair {
    opacity: 1;
}
.crosshair-ring {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(229, 184, 105, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(229, 184, 105, 0.4);
}
.crosshair-axis-h {
    position: absolute;
    top: 50%;
    left: -12px;
    right: -12px;
    height: 1px;
    background: rgba(229, 184, 105, 0.6);
}
.crosshair-axis-v {
    position: absolute;
    left: 50%;
    top: -12px;
    bottom: -12px;
    width: 1px;
    background: rgba(229, 184, 105, 0.6);
}
.crosshair-tag {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-family: monospace;
    letter-spacing: 0.1em;
    background: rgba(0, 0, 0, 0.7);
    color: #E5B869;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

/* Digital Caliper HUD */
.digital-caliper-hud {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(14, 11, 10, 0.82);
    border: 1px solid rgba(229, 184, 105, 0.35);
    border-radius: 10px;
    padding: 10px 14px;
    backdrop-filter: blur(12px);
    z-index: 6;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.caliper-title {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    color: #A69B8D;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.caliper-digital-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    font-family: monospace;
    line-height: 1;
}
.caliper-digital-val small {
    font-size: 0.75rem;
    color: #E5B869;
}
.caliper-layer-badge {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.layer-lbl {
    display: block;
    font-size: 0.54rem;
    color: #8C8074;
    letter-spacing: 0.08em;
}
.layer-name {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #E5B869;
}

/* Lifestyle Action Floating Thumbnail */
.action-preview-floating {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(14, 11, 10, 0.88);
    border: 1px solid rgba(229, 184, 105, 0.35);
    border-radius: 10px;
    padding: 8px 12px 8px 8px;
    backdrop-filter: blur(12px);
    z-index: 6;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.action-preview-floating:hover {
    transform: translateY(-3px);
}
.action-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(229, 184, 105, 0.3);
}
.action-info {
    display: flex;
    flex-direction: column;
}
.action-tag {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #BA5222;
    text-transform: uppercase;
}
.action-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* 3-Layer Anatomy Dissection Strip */
.anatomy-dissection-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(14, 11, 10, 0.95);
    border-top: 1px solid rgba(229, 184, 105, 0.15);
}
.anatomy-slice {
    padding: 16px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.anatomy-slice:last-child {
    border-right: none;
}
.anatomy-slice:hover,
.anatomy-slice.active {
    background: rgba(229, 184, 105, 0.1);
}
.slice-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: #E5B869;
    font-family: monospace;
}
.slice-body strong {
    display: block;
    font-size: 0.76rem;
    color: #FFFFFF;
    margin-bottom: 2px;
}
.slice-body span {
    display: block;
    font-size: 0.65rem;
    color: #A69B8D;
    line-height: 1.35;
}

@media (max-width: 991px) {
    .anatomy-header-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .material-lab-grid {
        grid-template-columns: 1fr;
    }
    .material-lab-stage {
        position: relative;
        top: 0;
    }
}

.anatomy-caption {
    padding: 16px 22px;
    background: #0E0C0B;
    font-size: 0.82rem;
    color: rgba(247, 244, 237, 0.75);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.06em;
}

/* ==========================================================================
   SECTION 5: MANUFACTURING PROCESS FLOW (01 to 06)
   Palette: Architectural Warm Ecru (#ECE5D8) & Terracotta Step Accents (#BA5222)
   ========================================================================== */
.section-process {
    padding: 110px 0;
    background-color: #ECE5D8;
    color: #1A1714;
    position: relative;
}

.section-process .section-title {
    color: #1A1714;
}

/* Process Progress Connecting Line */
.process-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    margin: 40px 0 -10px 0;
    overflow: hidden;
    position: relative;
}
.process-progress-line {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #BA5222, #E08A55, #D49B4B);
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(194, 94, 46, 0.5);
    transition: width 0.15s ease-out;
}

.process-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 45px;
}
.process-step-card {
    background: #FAF8F4;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 34px 26px;
    position: relative;
    box-shadow: 0 8px 22px rgba(40, 30, 20, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s ease;
    transform-style: preserve-3d;
}
.process-step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 26px;
    right: 26px;
    height: 3px;
    background: #C25E2E;
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.process-step-card:hover,
.process-step-card.is-active {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(40, 30, 20, 0.1);
    border-color: rgba(194, 94, 46, 0.4);
}
.process-step-card:hover::after,
.process-step-card.is-active::after {
    opacity: 1;
}
.process-step-card.is-active .step-num {
    color: #C25E2E;
    text-shadow: 0 0 14px rgba(194, 94, 46, 0.25);
}

.step-num {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: #BA5222;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    transition: color 0.3s ease, transform 0.3s ease;
}
.step-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.28rem;
    font-weight: 700;
    color: #1A1613;
    margin: 0 0 12px 0;
}
.step-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #554D42;
    margin: 0;
}

/* ==========================================================================
   10. SECTION 6: CUSTOM OEM & PRIVATE LABEL B2B (CLEAN LIGHT LUXURY DESIGN)
   Palette: Warm Cream (#FAF8F5), Crisp Porcelain (#FFFFFF), Terracotta (#BA5222)
   ========================================================================== */
.section-oem-light {
    padding: 110px 0;
    position: relative;
    background-color: #FAF8F5;
    color: #1C1815;
    border-top: 1px solid rgba(186, 82, 34, 0.12);
    border-bottom: 1px solid rgba(186, 82, 34, 0.12);
    overflow: hidden;
}

/* Header Area */
.oem-clean-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 52px;
}
.oem-header-main {
    max-width: 720px;
}
.oem-header-stats-strip {
    display: flex;
    gap: 16px;
}
.oem-quick-stat {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(40, 30, 20, 0.04);
}
.oem-quick-stat .stat-number {
    display: block;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #BA5222;
    line-height: 1;
    margin-bottom: 4px;
}
.oem-quick-stat .stat-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: #7A6F64;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* 4-Card Bento Grid */
.oem-clean-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}
.oem-clean-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(40, 30, 20, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.oem-clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(186, 82, 34, 0.12);
    border-color: rgba(186, 82, 34, 0.35);
}
.clean-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.clean-card-num {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: #BA5222;
}
.clean-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(186, 82, 34, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.clean-card-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.22rem;
    font-weight: 700;
    color: #1C1815;
    margin: 0 0 12px 0;
    line-height: 1.25;
}
.clean-card-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #554D42;
    margin: 0 0 20px 0;
    flex-grow: 1;
}
.clean-card-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.clean-card-tags li {
    font-size: 0.68rem;
    font-weight: 600;
    color: #BA5222;
    background: rgba(186, 82, 34, 0.06);
    border: 1px solid rgba(186, 82, 34, 0.18);
    border-radius: 6px;
    padding: 3px 8px;
}

/* Clean OEM Action Buttons */
.oem-clean-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}
.btn-oem-primary {
    background: #BA5222;
    border: 1px solid #BA5222;
    color: #FFFFFF !important;
    padding: 13px 28px;
    border-radius: 28px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(186, 82, 34, 0.25);
}
.btn-oem-primary:hover {
    background: #A04419;
    border-color: #A04419;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(186, 82, 34, 0.35);
}
.btn-oem-outline {
    background: #FFFFFF;
    border: 1px solid rgba(28, 24, 21, 0.18);
    color: #1C1815 !important;
    padding: 13px 26px;
    border-radius: 28px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(40, 30, 20, 0.03);
}
.btn-oem-outline:hover {
    background: rgba(186, 82, 34, 0.06);
    border-color: #BA5222;
    color: #BA5222 !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .oem-clean-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .oem-clean-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .oem-clean-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-oem-primary, .btn-oem-outline {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 599px) {
    .oem-clean-grid {
        grid-template-columns: 1fr;
    }
    .oem-header-stats-strip {
        flex-wrap: wrap;
        width: 100%;
    }
    .oem-quick-stat {
        flex: 1;
        min-width: 90px;
        padding: 12px 10px;
    }
}

/* ==========================================================================
   SECTION 7: GLOBAL EXPORT & SUPPLY CHAIN TERMINAL (LIGHT ARCHITECTURAL LUXURY)
   Palette: Alabaster Mineral Stone (#F8F6F2), Crisp Ceramic White & Terracotta
   ========================================================================== */
.section-global-light {
    padding: 110px 0;
    background-color: #F8F6F2;
    color: #1A1613;
    position: relative;
    border-top: 1px solid rgba(186, 82, 34, 0.12);
    border-bottom: 1px solid rgba(186, 82, 34, 0.12);
}

.global-header-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px auto;
}
.global-header-center .section-title {
    color: #1A1613;
    font-size: 2.8rem;
    margin: 12px 0;
    letter-spacing: -0.01em;
}
.global-header-intro {
    font-size: 1.02rem;
    color: #554D42;
    line-height: 1.7;
    margin: 0;
}

/* 4-KPI Bento Ribbon Cards */
.global-kpi-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}
.global-kpi-card {
    background: #FFFFFF;
    border: 1px solid rgba(186, 82, 34, 0.14);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(40, 30, 20, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}
.global-kpi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(186, 82, 34, 0.12);
    border-color: rgba(186, 82, 34, 0.4);
}
.kpi-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.kpi-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #BA5222;
    background: rgba(186, 82, 34, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
}
.kpi-flag {
    font-size: 1.1rem;
}
.global-kpi-card .kpi-num {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: #BA5222;
    line-height: 1;
    margin: 8px 0 4px 0;
}
.kpi-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1613;
    margin: 0 0 4px 0;
    font-family: var(--font-display, 'Playfair Display', serif);
}
.kpi-desc {
    font-size: 0.78rem;
    color: #6E6457;
    margin: 0;
    line-height: 1.4;
}

/* Full-Width Interactive Light Vector Trade Terminal */
.trade-terminal-canvas-card {
    background: #FFFFFF;
    border: 1px solid rgba(186, 82, 34, 0.18);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(40, 30, 20, 0.06);
    margin-bottom: 36px;
    transform-style: preserve-3d;
}

.terminal-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #FAF8F5;
    border-bottom: 1px solid rgba(186, 82, 34, 0.12);
}
.terminal-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.terminal-live-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 8px #22C55E;
    animation: livePulse 2s infinite ease-in-out;
}
.terminal-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #BA5222;
}

.terminal-corridor-filters {
    display: flex;
    gap: 8px;
}
.corridor-btn {
    background: transparent;
    border: 1px solid rgba(186, 82, 34, 0.2);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #554D42;
    cursor: pointer;
    transition: all 0.25s ease;
}
.corridor-btn.active,
.corridor-btn:hover {
    background: #BA5222;
    color: #FFFFFF;
    border-color: #BA5222;
}

.terminal-map-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 1672 / 941;
    min-height: 420px;
    background: #FAF9F6;
    overflow: hidden;
    cursor: crosshair;
}

.map-camera-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: 50% 50%;
    will-change: transform;
}

.trade-map-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    z-index: 1;
}

.map-light-scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 68% 48%, rgba(255, 255, 255, 0.04) 0%, rgba(248, 246, 242, 0.2) 80%);
    pointer-events: none;
    z-index: 2;
}

.world-light-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.vector-trade-path {
    filter: drop-shadow(0 0 6px rgba(186, 82, 34, 0.6));
    animation: lightDashTravel 18s linear infinite;
}
@keyframes lightDashTravel {
    to { stroke-dashoffset: -100; }
}

/* Light Radar Node Pins */
.light-radar-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 6;
}
.light-pin-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.origin-core { background: #BA5222; box-shadow: 0 0 10px #BA5222; }
.eu-core { background: #C25E2E; box-shadow: 0 0 10px #C25E2E; }
.us-core { background: #E08A55; box-shadow: 0 0 10px #E08A55; }

.light-pin-ring {
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(186, 82, 34, 0.6);
    animation: radarRipple 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.light-pin-card {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #FFFFFF;
    border: 1px solid rgba(186, 82, 34, 0.3);
    border-radius: 10px;
    padding: 10px 14px;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(40, 30, 20, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}
.light-radar-pin:hover .light-pin-card {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.pin-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.pin-badge {
    font-size: 0.6rem;
    font-weight: 700;
    color: #BA5222;
    background: rgba(186, 82, 34, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}
.pin-dot-live {
    width: 6px;
    height: 6px;
    background: #BA5222;
    border-radius: 50%;
}
.pin-card-header strong {
    font-size: 0.74rem;
    color: #1A1613;
    font-weight: 700;
}
.light-pin-card p {
    font-size: 0.66rem;
    color: #554D42;
    margin: 0;
}

/* Bottom 3 Ceramic Supply Chain Pillar Cards */
.supply-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.supply-pillar-card {
    background: #FFFFFF;
    border: 1px solid rgba(186, 82, 34, 0.14);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(40, 30, 20, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.supply-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(40, 30, 20, 0.08);
    border-color: rgba(186, 82, 34, 0.35);
}
.pillar-icon-box {
    font-size: 2rem;
    margin-bottom: 14px;
}
.supply-pillar-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A1613;
    margin: 0 0 8px 0;
    font-family: var(--font-display, 'Playfair Display', serif);
}
.supply-pillar-card p {
    font-size: 0.84rem;
    color: #554D42;
    line-height: 1.55;
    margin: 0 0 16px 0;
}
.pillar-transit-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #BA5222;
    background: rgba(186, 82, 34, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(186, 82, 34, 0.2);
    width: fit-content;
}

@media (max-width: 991px) {
    .global-kpi-ribbon {
        grid-template-columns: 1fr 1fr;
    }
    .supply-pillars-grid {
        grid-template-columns: 1fr;
    }
    .terminal-bar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}
@media (max-width: 575px) {
    .global-kpi-ribbon {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SECTION 8: MEGA FOOTER
   Palette: Deep Royal Onyx (#0A0807) & Muted Gold / Terracotta Links
   ========================================================================== */
.site-footer {
    background-color: #0A0807;
    color: #E4DCD2;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(247, 243, 235, 0.08);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(247, 243, 235, 0.08);
}

.footer-tagline {
    font-size: 0.86rem;
    line-height: 1.6;
    color: #A59B90;
    margin-bottom: 20px;
}

.footer-cert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-cert-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(229, 184, 105, 0.2);
    color: #E5B869;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 3px;
}

.footer-heading {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.15rem;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links li a {
    color: #A59B90;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s ease;
}
.footer-links li a:hover {
    color: #E08A55;
}

.footer-address-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.address-item strong {
    display: block;
    color: #FFFFFF;
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.address-item span {
    font-size: 0.82rem;
    color: #A59B90;
    line-height: 1.5;
    display: block;
}

.footer-pdf-link {
    color: #E08A55 !important;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 30px;
    font-size: 0.78rem;
    color: #7D736A;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: #7D736A;
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-bottom-links a:hover {
    color: #E08A55;
}

/* ==========================================================================
   B2B INQUIRY & QUOTATION MODAL
   ========================================================================== */
.inquiry-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.inquiry-modal-backdrop.active {
    display: flex;
    opacity: 1;
}
.inquiry-modal-card {
    background: #FFFFFF;
    color: #1A1613;
    border-radius: 18px;
    width: 100%;
    max-width: 580px;
    padding: 38px 34px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.inquiry-modal-backdrop.active .inquiry-modal-card {
    transform: translateY(0);
}
.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: #786F66;
    cursor: pointer;
    transition: color 0.2s;
}
.modal-close-btn:hover {
    color: #1A1613;
}
.modal-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.55rem;
    margin: 4px 0 8px 0;
    color: #1A1613;
}
.modal-subtitle {
    font-size: 0.86rem;
    color: #665D52;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #3B342E;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #FBF9F5;
    font-family: inherit;
    font-size: 0.88rem;
    color: #1A1613;
    transition: border-color 0.25s, background-color 0.25s;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #C25E2E;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(194, 94, 46, 0.15);
}
.modal-actions-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.btn-submit-wa {
    flex: 1;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    padding: 13px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.25s, transform 0.25s;
}
.btn-submit-wa:hover {
    background: #1DA851;
    transform: translateY(-1px);
}
.btn-submit-email {
    background: #1C1815;
    color: #FFFFFF;
    border: none;
    padding: 13px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.25s, transform 0.25s;
}
.btn-submit-email:hover {
    background: #C25E2E;
    transform: translateY(-1px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991.98px) {
    .gloves-hero.full-bleed-hero {
        min-height: auto;
        padding: 120px 0 40px 0;
    }
    .full-bleed-hero .gloves-hero-content {
        min-height: auto;
        gap: 32px;
    }
    .hero-reference-title {
        font-size: clamp(2.8rem, 8vw, 4.4rem);
    }
    .hero-slide-nav-bar {
        padding-top: 18px;
    }
    
    .anatomy-grid, .oem-split, .global-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 599.98px) {
    .gloves-hero.full-bleed-hero {
        padding: 104px 0 32px 0;
    }
    .hero-reference-title {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
    }
    .hero-reference-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .btn-ref-solid, .btn-ref-outline {
        width: 100%;
        text-align: center;
    }
    .slide-nav-pills {
        gap: 6px;
    }
    .slide-nav-btn {
        padding: 4px 10px;
        font-size: 0.68rem;
    }
    
    .form-row, .export-stats-row, .oem-features-grid {
        grid-template-columns: 1fr;
    }
    .substrate-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .modal-actions-row {
        flex-direction: column;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}
