/**
 * VYAN HAIR — Comprehensive Luxury Editorial Design System
 * Palette: Dark Royal Blue (#00008B), White (#FFFFFF), Deep Navy (#05052F), Soft Gold (#D9C7A3), Soft Blue (#F4F6FF)
 */

:root {
    --primary: #00008B;
    --primary-dark: #00006b;
    --white: #FFFFFF;
    --navy: #05052F;
    --soft-blue: #F4F6FF;
    --light-blue: #EEF0FF;
    --gold: #D9C7A3;
    --gold-dark: #8c733f;
    --gold-hover: #c4b087;
    --text-dark: #111111;
    --text-muted: #666666;
    --border: #E5E7EB;
    --border-dark: #CBD5E1;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 139, 0.05);
    --shadow-hover: 0 16px 40px rgba(0, 0, 139, 0.12);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* CURRENCY GLYPH FIX — Prevents glyph ID 262145 in all font engines */
.currency-symbol {
    font-family: 'Inter', -apple-system, Arial, sans-serif !important;
    font-weight: 600;
    text-transform: none !important;
    display: inline-block;
    margin-right: 1px;
}

/* CONTAINER & GENERAL UTILITIES */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-main {
    min-height: calc(100vh - 450px);
}

.section-padding {
    padding: 80px 0;
}

.bg-soft { background-color: var(--soft-blue); }
.bg-white { background-color: var(--white); }
.border { border: 1px solid var(--border); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--gold-dark); }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 40px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.my-4 { margin-top: 24px; margin-bottom: 24px; }
.my-5 { margin-top: 40px; margin-bottom: 40px; }
.py-4 { padding-top: 24px; padding-bottom: 24px; }
.py-5 { padding-top: 40px; padding-bottom: 40px; }
.p-4 { padding: 24px; }
.ml-2 { margin-left: 8px; }
.d-block { display: block; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.sub-heading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.main-heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gold-accent-line {
    width: 48px;
    height: 2px;
    background-color: var(--gold);
    margin: 14px auto 0;
}

.gold-accent-line.align-left {
    margin-left: 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 14px 28px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 11px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 13px;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    padding: 0;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

/* ALERTS */
.alert {
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.alert-info { background-color: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.alert-success { background-color: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.alert-danger { background-color: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }

/* 1. PROMO BAR */
.promo-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 0;
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.promo-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

/* 2. MAIN HEADER */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--navy);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.45em;
    color: var(--gold-dark);
    margin-top: 2px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link.highlight-link {
    color: var(--gold-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--navy);
}

/* MOBILE DRAWER NAVIGATION (CRITICAL FIX: Hidden on desktop) */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 5, 47, 0.65);
    z-index: 1199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 82%;
    max-width: 320px;
    background-color: var(--white);
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.drawer-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--navy);
}

.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

.drawer-links {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.drawer-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.drawer-links a:hover {
    color: var(--primary);
}

.drawer-links .drawer-admin {
    color: var(--gold-dark);
    font-weight: 600;
}

/* On screens >= 768px (Desktop/Tablet), HIDE MOBILE DRAWER COMPLETELY */
@media (min-width: 768px) {
    .mobile-drawer, .mobile-drawer-overlay {
        display: none !important;
    }
}

/* 3. HERO SECTION */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 560px;
    background: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 47, 0.88) 0%, rgba(5, 5, 47, 0.45) 60%, rgba(5, 5, 47, 0.15) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 620px;
    color: var(--white);
}

.hero-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
}

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

/* 4. TRUST STRIP */
.trust-strip {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.trust-item h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--navy);
}

.trust-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* 5. COLLECTION TILES */
.collection-tiles-section {
    padding: 80px 0;
}

.collection-tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.collection-tile {
    position: relative;
    display: block;
    height: 380px;
    overflow: hidden;
    background-color: var(--navy);
}

.tile-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.tile-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 47, 0.1) 0%, rgba(5, 5, 47, 0.8) 100%);
    transition: var(--transition);
}

.collection-tile:hover .tile-image-wrap img {
    transform: scale(1.08);
}

.tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: var(--white);
    z-index: 2;
}

.tile-tag {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.tile-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.tile-cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--white);
    opacity: 0.85;
    transition: var(--transition);
}

.collection-tile:hover .tile-cta {
    opacity: 1;
    color: var(--gold);
}

/* 6. PRODUCT CARDS & THE VYAN EDIT */
.featured-products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.product-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--soft-blue);
}

.product-card-media img, .product-primary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-media img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--navy);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    z-index: 2;
}

.product-badge.badge-bestseller { background-color: var(--primary); }
.product-badge.badge-featured { background-color: var(--gold-dark); }
.product-badge.badge-new { background-color: #065F46; }

.quick-add-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 139, 0.95);
    color: var(--white);
    border: none;
    padding: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .quick-add-btn {
    transform: translateY(0);
}

.product-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-texture-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.product-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.stars {
    color: #eab308;
    font-size: 12px;
}

.rating-num {
    font-size: 11px;
    color: var(--text-muted);
}

.product-price-row {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.current-price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
}

.compare-price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* 7. BRAND STORY EDITORIAL */
.brand-story-section {
    padding: 90px 0;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-image-col {
    position: relative;
}

.editorial-portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.split-text-col {
    display: flex;
    flex-direction: column;
}

.editorial-headline {
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.2;
    margin: 12px 0 16px;
}

.editorial-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 16px;
}

.editorial-body {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.story-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.cred-item {
    display: flex;
    flex-direction: column;
}

.cred-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.cred-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 8. QUALITY SECTION (ROYAL BLUE) */
.quality-royal-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 90px 0;
}

.quality-header {
    text-align: center;
}

.sub-heading-light {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.main-heading-light {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.quality-card {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
}

.quality-num {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.quality-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
}

.quality-card p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* 9. TEXTURE EXPERIENCE */
.texture-experience-section {
    padding: 80px 0;
}

.texture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.texture-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.texture-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.texture-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.texture-info {
    padding: 20px;
    text-align: center;
}

.texture-info h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.texture-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.texture-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--primary);
}

/* 10. WIG TEASER */
.wig-teaser-section {
    background: linear-gradient(rgba(5, 5, 47, 0.88), rgba(5, 5, 47, 0.88)), url('https://images.unsplash.com/photo-1580618672591-eb180b1a973f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 90px 0;
}

.teaser-content {
    max-width: 800px;
    margin: 0 auto;
}

.teaser-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.teaser-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 16px;
}

.teaser-desc {
    max-width: 650px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
}

/* 11. REVIEWS SECTION */
.reviews-section {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.review-stars {
    color: #eab308;
    margin-bottom: 12px;
}

.review-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.review-location {
    color: var(--text-muted);
}

.verified-pill {
    color: #15803d;
    font-weight: 600;
    margin-top: 4px;
}

/* 12. HAIR GUIDE / BLOG CLUSTER */
.guide-hub-wrap {
    padding: 60px 0;
}

.guide-hub-lead {
    max-width: 680px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 15px;
}

.guide-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.guide-card, .guide-card-lg {
    background-color: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.guide-card-lg:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.guide-card-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: block;
}

.guide-card-thumb img, .guide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.guide-card-lg:hover .guide-card-thumb img {
    transform: scale(1.05);
}

.guide-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 10px;
}

.guide-card-body, .guide-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.read-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.guide-card-title, .guide-content h3 {
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.guide-card-snippet, .guide-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.guide-read-more, .guide-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-top: auto;
}

/* Individual Guide Article */
.guide-article-wrap {
    padding: 60px 0;
}

.article-header {
    margin-bottom: 28px;
}

.article-cat-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.article-main-title {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    margin-bottom: 14px;
}

.article-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
}

.article-featured-image-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.article-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-prose {
    font-size: 16px;
    line-height: 1.8;
    color: #222222;
}

.article-prose .lead-paragraph {
    font-size: 19px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 28px;
}

.article-prose h2 {
    font-size: 26px;
    margin: 36px 0 16px;
    color: var(--navy);
}

.article-prose p {
    margin-bottom: 20px;
}

.article-prose ol {
    margin: 20px 0 28px 24px;
}

.article-prose li {
    margin-bottom: 10px;
}

.article-internal-links-box {
    background-color: var(--soft-blue);
    border-left: 3px solid var(--primary);
    padding: 24px;
    margin: 36px 0;
}

.article-internal-links-box h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 12px;
}

.internal-pills-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.internal-cat-link {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.internal-cat-link:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.article-footer-cta {
    border: 1px solid var(--border);
}

/* 13. FAQ ACCORDION */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 28px;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 22px;
    color: var(--primary);
    font-family: var(--font-body);
}

details[open] .faq-question::after { content: '−'; }

.faq-answer {
    padding-top: 14px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* 14. NEWSLETTER */
.newsletter-section {
    background-color: var(--navy);
    color: var(--white);
    padding: 70px 0;
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.newsletter-title {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--white);
    margin-bottom: 12px;
}

.newsletter-desc {
    max-width: 600px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.75);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 14px 18px;
    border: none;
    font-size: 13px;
    outline: none;
}

/* 15. SLIDE-IN CART DRAWER */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 5, 47, 0.55);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background-color: var(--white);
    z-index: 1001;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--navy);
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    color: var(--text-dark);
}

.shipping-meter-box {
    padding: 14px 24px;
    background-color: var(--soft-blue);
    border-bottom: 1px solid var(--border);
}

.shipping-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
}

.shipping-bar-track {
    width: 100%;
    height: 6px;
    background-color: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.shipping-bar-fill {
    height: 100%;
    background-color: var(--primary);
    transition: width 0.4s ease;
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-item-row {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-thumb {
    width: 70px;
    height: 90px;
    object-fit: cover;
    background-color: var(--soft-blue);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-variant {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.qty-stepper-mini {
    display: inline-flex;
    border: 1px solid var(--border);
}

.qty-stepper-mini button {
    background: none;
    border: none;
    width: 26px;
    height: 26px;
    cursor: pointer;
    font-weight: 600;
}

.qty-stepper-mini span {
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 11px;
    color: #dc2626;
    cursor: pointer;
    text-decoration: underline;
}

.cart-empty-state {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background-color: var(--white);
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.cart-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 16. SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 5, 47, 0.95);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding-top: 80px;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-container {
    max-width: 760px;
}

.search-input-wrap {
    position: relative;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
}

.search-input-wrap input {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 28px;
    padding: 12px 40px 12px 0;
    outline: none;
}

.search-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}

.popular-searches {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.search-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 12px;
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
}

.search-tag:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.search-results-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-height: 55vh;
    overflow-y: auto;
}

.search-res-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    display: flex;
    gap: 12px;
    color: var(--white);
    transition: var(--transition);
}

.search-res-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.search-res-card img {
    width: 60px;
    height: 70px;
    object-fit: cover;
}

/* 17. WHATSAPP CONCIERGE BUTTON */
.whatsapp-concierge {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 40px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 850;
    transition: var(--transition);
}

.whatsapp-concierge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.whatsapp-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* 18. PDP SPECIFIC */
.product-pdp-wrap {
    padding-bottom: 60px;
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    padding: 40px 0;
}

.pdp-gallery-col {
    position: relative;
}

.pdp-main-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    background-color: var(--soft-blue);
    overflow: hidden;
}

.pdp-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--navy);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 10px;
}

.pdp-thumbnails-strip {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.pdp-thumb-btn {
    width: 72px;
    height: 90px;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    opacity: 0.65;
    transition: var(--transition);
}

.pdp-thumb-btn.active, .pdp-thumb-btn:hover {
    opacity: 1;
    border-color: var(--primary);
}

.pdp-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-info-col {
    display: flex;
    flex-direction: column;
}

.pdp-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 6px;
}

.pdp-title {
    font-size: clamp(26px, 3.5vw, 36px);
    margin-bottom: 12px;
}

.pdp-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pdp-rating-score {
    font-weight: 600;
}

.pdp-reviews-count {
    font-size: 12px;
    color: var(--text-muted);
}

.pdp-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pdp-current-price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
}

.pdp-compare-price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pdp-tax-note {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 12px;
    color: #15803d;
    font-weight: 500;
    width: 100%;
}

.pdp-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pdp-option-group {
    margin-bottom: 20px;
}

.option-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.option-title {
    color: var(--navy);
}

.option-selected-val {
    color: var(--primary);
}

.option-pills-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill-btn {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.pill-btn.active, .pill-btn:hover {
    border-color: var(--primary);
    background-color: var(--soft-blue);
    color: var(--primary);
}

.pdp-purchase-row {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.quantity-stepper {
    display: flex;
    border: 1px solid var(--border);
    width: 110px;
}

.step-btn {
    width: 34px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-stepper input {
    width: 42px;
    text-align: center;
    border: none;
    outline: none;
    font-weight: 600;
}

.btn-add-bag {
    flex-grow: 1;
}

.pdp-buy-now-wrap {
    margin-top: 10px;
}

.pdp-concierge-help {
    margin-top: 18px;
    padding: 12px 16px;
    background-color: var(--soft-blue);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pdp-concierge-help a {
    color: var(--primary);
    font-weight: 600;
}

.pdp-spec-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
    text-align: center;
}

.badge-box {
    border: 1px solid var(--border);
    padding: 12px 8px;
}

.badge-box span {
    font-size: 11px;
    font-weight: 700;
    display: block;
    color: var(--navy);
}

.badge-box small {
    font-size: 10px;
    color: var(--text-muted);
}

.pdp-accordions {
    border-top: 1px solid var(--border);
    margin-top: 28px;
}

.pdp-acc-item {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.pdp-acc-item summary {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.pdp-acc-item summary::-webkit-details-marker { display: none; }
.pdp-acc-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 18px;
}
.pdp-acc-item[open] summary::after { content: '−'; }

.pdp-acc-content {
    padding-top: 12px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* 19. WIG BUILDER SPECIFIC */
.wig-builder-page-wrap {
    padding: 40px 0 80px;
}

.builder-intro {
    max-width: 650px;
    margin: 14px auto 0;
    color: var(--text-muted);
    font-size: 15px;
}

.builder-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.builder-steps-col {
    display: flex;
    flex-direction: column;
}

.builder-step-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.step-num-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.step-title {
    font-size: 22px;
    margin-bottom: 18px;
}

.step-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.wig-opt-btn {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 14px 18px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.wig-opt-btn.active, .wig-opt-btn:hover {
    border-color: var(--primary);
    background-color: var(--soft-blue);
}

.opt-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.opt-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.step-pills-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wig-pill-btn {
    border: 1px solid var(--border);
    background-color: var(--white);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.wig-pill-btn.active, .wig-pill-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.builder-summary-col {
    position: relative;
}

.summary-sticky-card {
    position: sticky;
    top: 100px;
    background-color: var(--soft-blue);
    border: 1px solid var(--border);
    padding: 32px;
}

.summary-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 8px;
}

.summary-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.summary-specs-list {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    margin-bottom: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.spec-row strong {
    color: var(--navy);
}

.summary-guarantees {
    font-size: 12px;
    color: #15803d;
    line-height: 1.8;
    margin-bottom: 24px;
}

.summary-price-box {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

/* 20. COLLECTION PAGE (/collections/[slug]) */
.collection-page-wrap {
    padding-bottom: 80px;
}

.collection-hero-banner {
    padding: 50px 0 30px;
    text-align: center;
}

.collection-h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--navy);
}

.collection-intro-desc {
    max-width: 680px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.category-pills-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--white);
    padding: 14px 0;
    margin-bottom: 36px;
}

.pills-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
}

.cat-pill {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid var(--border);
    color: var(--text-dark);
    transition: var(--transition);
}

.cat-pill.active, .cat-pill:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.collection-layout-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

.filter-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.filter-box {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
}

.filter-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.filter-group {
    margin-bottom: 18px;
}

.filter-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 6px;
}

.filter-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    font-size: 13px;
    outline: none;
}

.btn-clear-filters {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    margin-top: 10px;
}

.sidebar-guarantee-box {
    background-color: var(--soft-blue);
    border: 1px solid var(--border);
    padding: 20px;
}

.sidebar-guarantee-box h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 12px;
}

.sidebar-guarantee-box ul li {
    font-size: 12px;
    color: #15803d;
    margin-bottom: 6px;
}

.collection-main {
    flex-grow: 1;
}

.collection-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.results-count {
    font-size: 13px;
    color: var(--text-muted);
}

.results-count strong {
    color: var(--navy);
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.sort-select {
    padding: 6px 12px;
    border: 1px solid var(--border);
    font-size: 12px;
    outline: none;
}

.no-products-found {
    padding: 60px 0;
    text-align: center;
}

.collection-faq-section {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    margin-top: 48px;
}

.collection-faq-title {
    font-size: 22px;
    margin-bottom: 20px;
}

/* 21. DEDICATED CART PAGE (/cart) */
.cart-page-wrap {
    padding: 40px 0 80px;
}

.cart-page-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.cart-empty-page {
    padding: 60px 0;
}

.empty-msg {
    font-size: 16px;
    color: var(--text-muted);
}

.cart-page-shipping-meter {
    background-color: var(--soft-blue);
    border: 1px solid var(--border);
    padding: 18px 24px;
}

.shipping-lead {
    font-size: 13px;
    margin-bottom: 8px;
}

.cart-layout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    margin-top: 28px;
}

.cart-items-table-col {
    flex-grow: 1;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 2px solid var(--navy);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cart-table td {
    padding: 18px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-table-thumb {
    width: 65px;
    height: 85px;
    object-fit: cover;
}

.item-info-cell h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.item-meta, .item-meta-color {
    font-size: 11px;
    color: var(--text-muted);
}

.item-price-cell, .item-subtotal-cell {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.quantity-stepper-sm {
    display: inline-flex;
    border: 1px solid var(--border);
}

.quantity-stepper-sm button {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.quantity-stepper-sm span {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.remove-btn {
    background: none;
    border: none;
    color: #DC2626;
    font-size: 18px;
    cursor: pointer;
}

.cart-order-summary-card {
    background-color: var(--soft-blue);
    border: 1px solid var(--border);
    padding: 28px;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--navy);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

.summary-line.total-line {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 14px;
}

.summary-security-note {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
    text-align: center;
}

/* 22. DEDICATED CHECKOUT PAGE (/checkout) */
.checkout-page-wrap {
    padding: 40px 0 80px;
}

.checkout-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 36px;
}

.checkout-form-col {
    display: flex;
    flex-direction: column;
}

.checkout-section-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 28px;
}

.checkout-card-heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--navy);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row.two-col > .form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea, .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    font-size: 13px;
    outline: none;
}

.form-group input:focus, .form-control:focus {
    border-color: var(--primary);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-radio-box {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.payment-radio-box.active {
    border-color: var(--primary);
    background-color: var(--soft-blue);
}

.radio-content strong {
    display: block;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 4px;
}

.radio-content p {
    font-size: 12px;
    color: var(--text-muted);
}

.checkout-order-card {
    background-color: var(--soft-blue);
    border: 1px solid var(--border);
    padding: 28px;
    position: sticky;
    top: 100px;
}

.summary-heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--navy);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

.checkout-items-list {
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.checkout-item-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.checkout-item-img {
    width: 50px;
    height: 65px;
    object-fit: cover;
}

.checkout-item-info {
    flex-grow: 1;
}

.checkout-item-info h4 {
    font-size: 13px;
}

.checkout-item-info .meta {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.checkout-item-info .qty {
    font-size: 11px;
    color: var(--navy);
}

.checkout-item-price {
    font-size: 13px;
    font-weight: 700;
}

.checkout-totals {
    margin-top: 16px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.total-row.grand-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 12px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.security-footer-note {
    font-size: 12px;
    color: var(--text-muted);
}

/* Checkout Success */
.checkout-success-wrap {
    padding: 60px 0;
}

.success-icon-wrap {
    margin-bottom: 16px;
}

.success-lead {
    font-size: 16px;
    color: var(--text-muted);
    margin: 14px 0 24px;
}

.order-receipt-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
    font-size: 14px;
}

.receipt-body p {
    font-size: 13px;
    margin-bottom: 8px;
}

.badge-status {
    background-color: #DBEAFE;
    color: #1E40AF;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.shipping-timeline-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
}

/* 23. EMAIL VERIFICATION (/verify) */
.verify-page-wrap {
    padding: 60px 0;
}

.verify-lead {
    font-size: 15px;
    color: var(--text-muted);
}

.verify-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 36px;
    box-shadow: var(--shadow-soft);
}

.otp-input-field {
    font-size: 28px;
    letter-spacing: 0.3em;
    text-align: center;
    width: 220px;
    padding: 10px 14px;
    border: 2px solid var(--primary);
    outline: none;
    font-weight: 700;
    color: var(--navy);
    margin: 0 auto;
    display: block;
}

/* 24. BREADCRUMBS & FOOTER */
.breadcrumb-bar {
    background-color: var(--soft-blue);
    padding: 14px 0;
    font-size: 12px;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-sep { color: var(--text-muted); }
.bc-current { color: var(--navy); font-weight: 600; }

.site-footer {
    background-color: var(--navy);
    color: var(--white);
    padding-top: 80px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-trust-badges {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.footer-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.footer-contact-item {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-payment-icons {
    letter-spacing: 0.1em;
    font-size: 11px;
}

/* ATELIER HELPERS & REMAINING LAYOUT CLASSES */
.admin-link, .cart-trigger, .search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-col {
    grid-column: span 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.cart-subtotal-val {
    font-weight: 700;
    color: var(--navy);
}

.cart-summary-col, .checkout-summary-col {
    position: relative;
}

.cart-table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-actions {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
}



.guide-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}

.item-media-cell {
    width: 80px;
}

.item-qty-cell {
    width: 120px;
}

.item-remove-cell {
    width: 40px;
    text-align: center;
}

.lead-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* 25. RESPONSIVE BREAKPOINTS */

@media (max-width: 1023px) {
    .collection-tiles-grid, .products-grid, .quality-grid, .texture-grid, .guide-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-grid, .pdp-grid, .builder-grid, .checkout-grid, .cart-layout-grid, .collection-layout-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .collection-tiles-grid, .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .texture-grid, .reviews-grid, .guide-grid, .guide-articles-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 36px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cart-drawer {
        max-width: 100%;
    }
    .whatsapp-concierge {
        bottom: 16px;
        right: 16px;
        padding: 10px 14px;
    }

    /* Touch optimization */
    button, input, select, textarea, .pill-btn, .btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .btn-lg, .btn-primary, .btn-outline {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Checkout & Account single column on mobile */
    .account-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .checkout-grid {
        grid-template-columns: 1fr !important;
    }

    .checkout-form-col, .checkout-summary-col {
        width: 100% !important;
    }

    .form-row.two-col {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .form-row.two-col > .form-group {
        width: 100% !important;
        flex: 1 1 100% !important;
    }

    /* Cart drawer full mobile width */
    .cart-drawer {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Padding for PDP bottom bar */
    .pdp-main-section {
        padding-bottom: 70px !important;
    }
}

/* 26. STICKY MOBILE PDP ACTION BAR */
.pdp-sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.sticky-bar-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sticky-product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-deep);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.sticky-product-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-royal);
}

@media (min-width: 768px) {
    .pdp-sticky-mobile-bar {
        display: none !important;
    }
}

/* ==========================================================================
   VYAN EXPORTS — B2B EXPORTER & KASANA-INSPIRED STYLING SYSTEM
========================================================================== */

/* 1. B2B PROMO BAR & HEADER ENHANCEMENTS */
.b2b-export-bar {
    background: #05052F !important;
    color: #FFFFFF !important;
    font-size: 12px;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(217, 199, 163, 0.3);
    position: relative;
}

.b2b-export-bar strong {
    color: #D9C7A3 !important;
}

.b2b-promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 7px 36px 7px 0;
    position: relative;
}

.b2b-export-bar .promo-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #D9C7A3;
    font-size: 20px;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.2s;
}

.b2b-export-bar .promo-close:hover {
    opacity: 1;
    color: #FFFFFF;
}

.promo-wa-link {
    color: #25D366 !important;
    font-weight: 600;
}

.promo-wa-link:hover {
    text-decoration: underline;
}

.b2b-header {
    background: #FFFFFF !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 14px rgba(5, 5, 47, 0.06);
    border-bottom: 1px solid #E2E8F0;
    height: 78px;
}

.b2b-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 20px;
    max-width: 1440px;
}

.b2b-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 16px;
}

.logo-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.b2b-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #05052F;
    letter-spacing: 0.12em;
    line-height: 1;
}

.b2b-logo .logo-badge {
    background: #00008B;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    letter-spacing: 0.14em;
    border-radius: 3px;
    line-height: 1;
}

.logo-subline {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: #8c733f;
    margin-top: 5px;
    text-transform: uppercase;
    line-height: 1;
}

.b2b-header .desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap !important;
    margin: 0 auto;
}

.b2b-header .nav-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1E293B;
    white-space: nowrap !important;
    padding: 10px 2px;
    position: relative;
    transition: color 0.2s ease;
    line-height: 1;
}

.b2b-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00008B;
    transition: width 0.25s ease;
}

.b2b-header .nav-link:hover,
.b2b-header .nav-link.active {
    color: #00008B;
}

.b2b-header .nav-link:hover::after,
.b2b-header .nav-link.active::after {
    width: 100%;
}

.b2b-header .nav-link.highlight-gold {
    color: #8c733f;
    font-weight: 700;
}

.b2b-header .nav-link.highlight-gold::after {
    background: #D9C7A3;
}

.b2b-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-quote-header {
    background: #00008B;
    color: #FFFFFF !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 10px 18px;
    border-radius: 4px;
    border: 1px solid #00008B;
    white-space: nowrap !important;
    transition: all 0.2s ease;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 139, 0.15);
}

.btn-quote-header:hover {
    background: #05052F;
    border-color: #05052F;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 139, 0.25);
}

.header-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #FFFFFF !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 9px 14px;
    border-radius: 4px;
    white-space: nowrap !important;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.header-wa-btn:hover {
    background: #1eb954;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.b2b-header .icon-btn {
    padding: 8px;
    color: #1E293B;
}

.b2b-header .icon-btn:hover {
    color: #00008B;
}

/* 3. B2B HERO SECTION */
.b2b-hero-section {
    position: relative;
    background: linear-gradient(135deg, #05052F 0%, #00008B 60%, #0a1147 100%);
    color: #FFFFFF;
    padding: 100px 0 80px 0;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.b2b-hero-content {
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.hero-govt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(217, 199, 163, 0.4);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #D9C7A3;
    margin-bottom: 24px;
}

.b2b-hero-title {
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-title-white {
    color: #FFFFFF !important;
    display: inline-block;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.text-gold-gradient {
    color: #D9C7A3 !important;
    background: linear-gradient(90deg, #FFFFFF 0%, #D9C7A3 50%, #F5E8C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.b2b-hero-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #E2E8F0;
    margin-bottom: 30px;
    max-width: 780px;
}

.hero-credentials-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.cred-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
}

.cred-icon {
    color: #25D366;
    font-weight: 700;
}

.b2b-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #FFFFFF !important;
    font-weight: 700;
    border: none;
    transition: var(--transition);
}

.btn-wa:hover {
    background: #1eb954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #25D366 !important;
    border: 1px solid #25D366;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-wa:hover {
    background: #25D366;
    color: #FFFFFF !important;
}

/* 4. AUTHORITY & METRICS STRIP */
.authority-strip {
    background: #05052F;
    color: #FFFFFF;
    padding: 50px 0;
    border-bottom: 1px solid rgba(217, 199, 163, 0.2);
}

.authority-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 36px auto;
}

.authority-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.authority-badge h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #D9C7A3;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.authority-subtext {
    font-size: 15px;
    color: #CBD5E1;
    line-height: 1.6;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #D9C7A3;
}

.metric-num {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: #D9C7A3;
    line-height: 1.1;
    margin-bottom: 6px;
}

.metric-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #FFFFFF;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.metric-desc {
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.4;
}

/* 5. BLUNT-CUT SHOWCASE */
.blunt-cut-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.blunt-cut-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 36px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.blunt-cut-card .b-badge {
    display: inline-block;
    background: #00008B;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.blunt-cut-card .b-badge.gold {
    background: #8c733f;
    color: #FFFFFF;
}

.blunt-cut-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #05052F;
    margin-bottom: 16px;
}

.blunt-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
}

.blunt-features-list li {
    position: relative;
    padding-left: 20px;
}

.blunt-features-list li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #00008B;
    font-size: 18px;
    line-height: 1;
}

.comparison-note {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 16px;
}

.comparison-table-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.comparison-table th, .comparison-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #E5E7EB;
    text-align: left;
}

.comparison-table th {
    background: #F8FAFC;
    color: #05052F;
    font-weight: 600;
}

.badge-win {
    color: #059669;
    font-weight: 700;
    background: #ECFDF5;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.sample-callout {
    margin-top: 20px;
    padding: 12px 16px;
    background: #F4F6FF;
    border-left: 3px solid #00008B;
    border-radius: 4px;
    font-size: 12px;
    color: #1E293B;
}

/* 6. B2B PRODUCT CATALOG GRID */
.b2b-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.b2b-prod-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.b2b-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 139, 0.09);
    border-color: #CBD5E1;
}

.b2b-card-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #F1F5F9;
}

.b2b-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.b2b-prod-card:hover .b2b-card-media img {
    transform: scale(1.04);
}

.b2b-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #00008B;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 9px;
    border-radius: 2px;
}

.b2b-card-tag.gold {
    background: #8c733f;
}

.b2b-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.b2b-prod-cat {
    font-size: 11px;
    font-weight: 600;
    color: #8c733f;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.b2b-prod-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: #05052F;
    margin-bottom: 8px;
}

.b2b-prod-desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 16px;
}

.b2b-specs-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: #334155;
    background: #F8FAFC;
    padding: 10px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.b2b-price-tier {
    margin-top: auto;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.tier-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
}

.tier-price {
    font-size: 18px;
    font-weight: 700;
    color: #00008B;
}

.tier-price small {
    font-size: 11px;
    color: #64748B;
    font-weight: 400;
}

.b2b-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.catalog-download-box {
    background: linear-gradient(135deg, #05052F 0%, #00008B 100%);
    color: #FFFFFF;
    padding: 36px;
    border-radius: 8px;
}

.catalog-box-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.catalog-icon {
    font-size: 40px;
}

.catalog-box-inner h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.catalog-box-inner p {
    font-size: 14px;
    color: #E2E8F0 !important;
    line-height: 1.5;
}

/* 7. WHY US GRID */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 30px 24px;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-3px);
    border-color: #00008B;
    box-shadow: var(--shadow-soft);
}

.why-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #05052F;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.6;
}

/* 8. PROCESS TIMELINE */
.process-steps-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.process-step-item {
    display: flex;
    flex-direction: column;
}

.step-badge {
    background: #00008B;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px 4px 0 0;
    text-align: center;
}

.step-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 20px 16px;
    flex-grow: 1;
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: #05052F;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 12px;
    color: #64748B;
    line-height: 1.5;
}

.video-audit-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #F4F6FF;
    border: 1px solid #CBD5E1;
    border-left: 4px solid #00008B;
    padding: 28px 32px;
    border-radius: 8px;
    margin-top: 40px;
}

.video-badge {
    background: #DC2626;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #05052F;
    margin-bottom: 4px;
}

.video-info p {
    font-size: 13px;
    color: #475569;
}

/* 9. FEATURES MATRIX */
.features-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.f-matrix-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 24px;
}

.f-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.f-matrix-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #05052F;
    font-weight: 600;
    margin-bottom: 8px;
}

.f-matrix-card p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
}

/* 10. FAKE GRADE SYSTEM SECTION (KASANA SIGNATURE) */
.fake-grades-section {
    background: #FEF2F2;
    border-top: 1px solid #FCA5A5;
    border-bottom: 1px solid #FCA5A5;
}

.fake-grades-box {
    background: #FFFFFF;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(185, 28, 28, 0.05);
}

.fake-grades-badge {
    display: inline-block;
    background: #DC2626;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.fake-grades-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #991B1B;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.fake-grades-lead {
    font-size: 16px;
    color: #1F2937;
    line-height: 1.7;
    margin-bottom: 30px;
}

.grades-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    border-top: 1px solid #FEE2E2;
    padding-top: 28px;
}

.grades-col h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #05052F;
    font-weight: 600;
    margin-bottom: 12px;
}

.grades-col p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 12px;
}

.truth-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #1F2937;
    margin-top: 14px;
}

.grades-footer-quote {
    margin-top: 30px;
    padding: 16px 20px;
    background: #F8FAFC;
    border-left: 4px solid #00008B;
    border-radius: 4px;
    font-size: 15px;
    color: #05052F;
    font-style: italic;
}

/* 11. SHIPPING NETWORK */
.shipping-network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.dest-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.dest-card:hover {
    transform: translateY(-3px);
    border-color: #00008B;
    box-shadow: var(--shadow-soft);
}

.dest-flag {
    font-size: 32px;
    margin-bottom: 12px;
}

.dest-card h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    color: #05052F;
    font-weight: 600;
    margin-bottom: 6px;
}

.dest-time {
    display: inline-block;
    background: #EEF2FF;
    color: #00008B;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.dest-card p {
    font-size: 12px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 12px;
}

.dest-carrier {
    font-size: 11px;
    font-weight: 600;
    color: #8c733f;
    text-transform: uppercase;
}

.shipping-guarantee-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    border-top: 1px solid #E5E7EB;
    padding-top: 30px;
}

.s-guarantee-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sg-icon {
    font-size: 26px;
}

.s-guarantee-item strong {
    font-size: 14px;
    color: #05052F;
    display: block;
    margin-bottom: 4px;
}

.s-guarantee-item p {
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
}

/* 12. HOW TO ORDER */
.ordering-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.order-step-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 28px 20px;
    position: relative;
}

.o-step-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #D9C7A3;
    line-height: 1;
    margin-bottom: 14px;
}

.order-step-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #05052F;
    font-weight: 600;
    margin-bottom: 10px;
}

.order-step-card p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.5;
}

.ordering-help-banner {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    padding: 36px;
    border-radius: 8px;
}

.ordering-help-banner h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #05052F;
    margin-bottom: 8px;
}

.ordering-help-banner p {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 20px;
}

/* 13. SAMPLES & GUARANTEE */
.samples-policy-container {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 48px;
}

.samples-badge {
    display: inline-block;
    background: #00008B;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.samples-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #05052F;
    margin-bottom: 14px;
}

.samples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 24px;
}

.sample-col h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #05052F;
    margin-bottom: 12px;
}

.sample-col p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 12px;
}

.sample-test-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #1E293B;
    margin-top: 10px;
}

.guarantee-box {
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-left: 4px solid #10B981;
    padding: 16px 20px;
    border-radius: 4px;
    margin-top: 16px;
}

.guarantee-box strong {
    color: #065F46;
    display: block;
    margin-bottom: 4px;
}

.guarantee-box p {
    font-size: 13px;
    color: #334155;
    margin: 0;
}

/* 14. PAYPAL TRUST */
.payment-trust-box {
    max-width: 860px;
    margin: 0 auto;
}

.paypal-logo-badge {
    display: inline-block;
    background: #003087;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.payment-trust-box h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #05052F;
    margin-bottom: 12px;
}

.payment-sub {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 30px;
}

.payment-options-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.p-option-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.p-icon {
    font-size: 30px;
    margin-bottom: 10px;
    display: inline-block;
}

.p-option-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #05052F;
    margin-bottom: 6px;
}

.p-option-card p {
    font-size: 12px;
    color: #64748B;
    line-height: 1.5;
}

/* 15. REVIEWS CONFIDENTIALITY (KASANA SIGNATURE) */
.reviews-philosophy-section {
    background: #05052F;
    color: #FFFFFF;
    text-align: center;
}

.reviews-philosophy-box {
    max-width: 800px;
    margin: 0 auto;
}

.reviews-philosophy-text {
    font-size: 16px;
    line-height: 1.8;
    color: #E2E8F0;
    margin-bottom: 16px;
}

.privacy-credentials-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
    font-size: 13px;
    color: #D9C7A3;
    font-weight: 500;
}

/* 16. FAQS */
.b2b-faq-accordion details {
    border-bottom: 1px solid #E5E7EB;
    padding: 16px 0;
}

.b2b-faq-accordion summary {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: #05052F;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.b2b-faq-accordion summary::-webkit-details-marker {
    display: none;
}

.b2b-faq-accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    color: #00008B;
    font-weight: 400;
}

.b2b-faq-accordion details[open] summary::after {
    content: "−";
}

.b2b-faq-accordion .faq-answer {
    padding-top: 12px;
    font-size: 14px;
    color: #4B5563;
    line-height: 1.7;
}

/* 17. B2B WHOLESALE INQUIRY FORM */
.wholesale-inquiry-section {
    padding-bottom: 100px;
}

.inquiry-form-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 50px;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
}

.b2b-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #1E293B;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-size: 14px;
    color: #0F172A;
    background: #FFFFFF;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #00008B;
    box-shadow: 0 0 0 3px rgba(0, 0, 139, 0.1);
}

.inquiry-submit-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.inquiry-submit-row .btn {
    flex: 1;
    justify-content: center;
}

.inquiry-success-msg {
    background: #ECFDF5;
    border: 1px solid #6EE7B7;
    color: #065F46;
    padding: 16px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
}

/* 18. B2B FOOTER ENHANCEMENTS */
.b2b-footer {
    background: #03031C;
}

.footer-brand-title {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.brand-heavy {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.06em;
}

.brand-light {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: #D9C7A3;
    letter-spacing: 0.1em;
}

.footer-govt-badge {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 199, 163, 0.2);
    padding: 8px 12px;
    border-radius: 4px;
    margin: 12px 0;
}

.govt-seal {
    font-size: 18px;
}

.footer-govt-badge p {
    font-size: 11px;
    color: #D9C7A3;
    line-height: 1.4;
    margin: 0;
}

.export-countries-tag {
    font-size: 11px;
    color: #94A3B8;
    line-height: 1.5;
    margin-top: 12px;
}

.export-countries-tag span {
    color: #D9C7A3;
    font-weight: 600;
}

.pay-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 3px;
    color: #CBD5E1;
}

.pay-tag.paypal-tag {
    background: #003087;
    color: #FFFFFF;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .b2b-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps-timeline {
        grid-template-columns: 1fr;
    }
    .shipping-network-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ordering-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================================================
   COMPREHENSIVE MOBILE OPTIMIZATION & RESPONSIVE PERFECTION (< 768px & < 480px)
   ============================================================================= */

@media (max-width: 768px) {
    /* 1. Header & Announcement Bar */
    .b2b-export-bar {
        font-size: 11px !important;
        padding: 6px 12px !important;
    }
    .b2b-promo-content {
        justify-content: center !important;
        gap: 6px !important;
        text-align: center;
        padding-right: 24px;
    }
    .promo-close {
        right: 8px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 16px !important;
    }
    .b2b-header {
        height: 66px !important;
    }
    .b2b-header .header-inner {
        height: 66px !important;
        gap: 10px !important;
        padding: 0 16px !important;
    }
    .brand-logo.b2b-logo .logo-title-group {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .brand-logo .logo-text {
        font-size: 20px !important;
        letter-spacing: 0.12em !important;
    }
    .brand-logo .logo-badge {
        font-size: 8px !important;
        padding: 1px 5px !important;
    }
    .brand-logo .logo-subline {
        font-size: 7px !important;
        letter-spacing: 0.10em !important;
    }
    .header-wa-btn {
        padding: 7px 10px !important;
        font-size: 11px !important;
    }
    .header-wa-btn span {
        display: none !important;
    }
    .header-actions {
        gap: 6px !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
    }
    .desktop-nav {
        display: none !important;
    }

    /* 2. Hero Section */
    .b2b-hero-section {
        padding: 44px 0 48px 0 !important;
        min-height: auto !important;
    }
    .hero-govt-badge {
        font-size: 9.5px !important;
        padding: 5px 12px !important;
        margin-bottom: 16px !important;
        letter-spacing: 0.05em !important;
        line-height: 1.4 !important;
        text-align: center;
        max-width: 100%;
        display: inline-flex;
    }
    .b2b-hero-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        letter-spacing: 0.01em !important;
        margin-bottom: 16px !important;
        color: #FFFFFF !important;
        word-break: break-word;
    }
    .hero-title-white {
        color: #FFFFFF !important;
        display: inline !important;
    }
    .b2b-hero-lead {
        font-size: 14px !important;
        line-height: 1.65 !important;
        margin-bottom: 22px !important;
        color: #E2E8F0 !important;
    }
    .hero-credentials-row {
        gap: 6px !important;
        margin-bottom: 24px !important;
    }
    .cred-chip {
        font-size: 11px !important;
        padding: 5px 10px !important;
    }
    .b2b-hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .b2b-hero-actions .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        min-height: 48px !important;
        font-size: 13px !important;
        padding: 12px 16px !important;
    }

    /* 3. Authority & Business Excellence Strip */
    .authority-strip {
        padding: 36px 0 !important;
    }
    .authority-badge {
        flex-direction: column;
        gap: 6px;
    }
    .authority-badge h2 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
    .authority-subtext {
        font-size: 13px !important;
        line-height: 1.55 !important;
    }
    .authority-strip .metrics-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .metric-card {
        padding: 16px 10px !important;
    }
    .metric-num {
        font-size: 26px !important;
    }
    .metric-label {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }
    .metric-desc {
        font-size: 10.5px !important;
        line-height: 1.35 !important;
    }

    /* 4. Blunt-Cut Showcase */
    .blunt-cut-section {
        padding: 50px 0 !important;
    }
    .blunt-cut-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .blunt-cut-card {
        padding: 22px 16px !important;
    }
    .blunt-cut-card h3 {
        font-size: 20px !important;
    }
    .blunt-features-list li {
        font-size: 13px !important;
        margin-bottom: 12px !important;
    }
    .comparison-table-wrap {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 6px;
        margin-top: 14px;
    }
    .comparison-table {
        min-width: 440px !important;
        font-size: 12px !important;
    }
    .comparison-table th, .comparison-table td {
        padding: 10px 12px !important;
    }

    /* 5. Category Filter Tabs & Products Grid */
    .b2b-cat-filter-bar {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 4px 2px 12px 2px !important;
        margin: 16px 0 20px 0 !important;
        scrollbar-width: none !important;
    }
    .b2b-cat-filter-bar::-webkit-scrollbar {
        display: none !important;
    }
    .b2b-cat-filter-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 11px !important;
        padding: 6px 14px !important;
    }
    .b2b-products-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* 6. Why Choose Us & Architecture */
    .why-us-section {
        padding: 50px 0 !important;
    }
    .why-us-grid, .features-matrix-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .why-card {
        padding: 20px 16px !important;
    }

    /* 7. Factory & Virtual Audit */
    .factory-infra-section {
        padding: 50px 0 !important;
    }
    .infra-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .video-audit-banner {
        flex-direction: column !important;
        text-align: center !important;
        padding: 24px 16px !important;
        gap: 18px !important;
    }
    .video-audit-content h3 {
        font-size: 20px !important;
    }
    .video-audit-content p {
        font-size: 13px !important;
    }
    .video-audit-banner .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* 8. Grade Truth, Shipping & Ordering Steps */
    .grades-content-grid, .samples-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .shipping-network-grid, .ordering-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* 9. B2B Wholesale Catalog Request Form */
    .inquiry-section {
        padding: 50px 0 !important;
    }
    .inquiry-form-card {
        padding: 22px 16px !important;
        border-radius: 10px !important;
    }
    .inquiry-header h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    .inquiry-header p {
        font-size: 13px !important;
    }
    .form-row-2, .form-row-3 {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .inquiry-form-card input, 
    .inquiry-form-card select, 
    .inquiry-form-card textarea {
        min-height: 46px !important;
        font-size: 14px !important;
        padding: 10px 12px !important;
    }
    .inquiry-actions-row {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .inquiry-actions-row button,
    .inquiry-actions-row a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        min-height: 48px !important;
    }

    /* 10. Reviews Confidentiality */
    .reviews-philosophy-section {
        padding: 44px 16px !important;
    }
    .reviews-philosophy-text {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }
    .privacy-credentials-row {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: center !important;
    }

    /* 11. Footer */
    .footer-top {
        padding: 40px 0 24px 0 !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .footer-bottom-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
    }

    /* 12. Sticky WhatsApp Concierge */
    .whatsapp-concierge {
        bottom: 18px !important;
        right: 14px !important;
        padding: 9px 14px !important;
        font-size: 11.5px !important;
    }
    body.has-pdp-sticky .whatsapp-concierge,
    .pdp-sticky-mobile-bar ~ * .whatsapp-concierge {
        bottom: 74px !important;
    }

    /* 13. Mobile Drawer Enhancement */
    .mobile-drawer {
        width: 320px !important;
        max-width: 86vw !important;
        padding: 20px 16px !important;
    }
    .drawer-section-heading {
        font-size: 11px !important;
        margin: 16px 0 8px 0 !important;
    }

    .hide-mobile {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .b2b-hero-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    .authority-strip .metrics-grid {
        grid-template-columns: 1fr !important;
    }
    .metric-card {
        padding: 14px !important;
    }
    .section-header .main-heading {
        font-size: 22px !important;
    }
}

/* =============================================================================
   PRODUCTS MEGA-DROPDOWN MENU STYLES
   ============================================================================= */
.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-chevron {
    margin-left: 4px;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.nav-item-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu.mega-menu-wide {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-35%) translateY(10px);
    width: 980px;
    max-width: 95vw;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(5, 5, 47, 0.18);
    padding: 20px 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    pointer-events: none;
}

.nav-item-dropdown:hover .nav-dropdown-menu.mega-menu-wide,
.nav-item-dropdown:focus-within .nav-dropdown-menu.mega-menu-wide {
    opacity: 1;
    visibility: visible;
    transform: translateX(-35%) translateY(0);
    pointer-events: auto;
}

/* Mega-Menu Top Header */
.meganav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 16px;
}

.meganav-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 2px 8px;
    background: #00008B;
    color: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.meganav-main-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #05052F;
    margin: 0;
    text-transform: uppercase;
}

.meganav-all-link {
    font-size: 11px;
    font-weight: 600;
    color: #8c733f;
    text-decoration: none;
    transition: color 0.2s;
}

.meganav-all-link:hover {
    color: #00008B;
    text-decoration: underline;
}

/* 4 Category Columns Grid */
.meganav-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.meganav-cat-col {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.cat-col-header {
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 10px;
}

.cat-col-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #00008B;
    background: #E0E7FF;
    padding: 2px 6px;
    border-radius: 3px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.cat-col-tag.gold {
    background: #FEF3C7;
    color: #92400E;
}

.cat-col-title {
    font-size: 12px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.cat-col-view-all {
    font-size: 10px;
    color: #64748B;
    text-decoration: none;
    font-weight: 500;
}

.cat-col-view-all:hover {
    color: #00008B;
    text-decoration: underline;
}

.cat-col-products {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

/* Individual Product Card with PICTURE in Mega-Menu */
.mega-prod-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-prod-card:hover {
    border-color: #00008B;
    box-shadow: 0 4px 12px rgba(0, 0, 139, 0.1);
    transform: translateY(-1px);
}

.mega-prod-img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #E2E8F0;
}

.mega-prod-meta {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mega-prod-badge {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #00008B;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.mega-prod-badge.gold {
    color: #92400E;
}

.mega-prod-name {
    font-size: 11px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mega-prod-price {
    font-size: 11px;
    font-weight: 600;
    color: #00008B;
    margin-top: 2px;
}

.mega-prod-card.atelier-special {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border-color: #FCD34D;
}

/* Mega-Menu Bottom Bar */
.meganav-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.meganav-footer-badges {
    display: flex;
    gap: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #05052F;
}

.btn-meganav-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #00008B;
    color: #FFFFFF !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-meganav-action:hover {
    background: #05052F;
}

/* Mobile Drawer Products with Pictures */
.drawer-category-box {
    margin-bottom: 12px;
}

.drawer-cat-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #00008B;
    text-transform: uppercase;
    padding: 8px 0 4px 0;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 8px;
}

.drawer-prod-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    text-decoration: none;
    border-bottom: 1px solid #F1F5F9;
}

.drawer-prod-img {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #E2E8F0;
}

.drawer-prod-info {
    display: flex;
    flex-direction: column;
}

.drawer-prod-name {
    font-size: 12px;
    font-weight: 600;
    color: #1E293B;
    line-height: 1.2;
}

.drawer-prod-price {
    font-size: 11px;
    color: #00008B;
    font-weight: 700;
}

/* Category Filter Tabs on Homepage */
.b2b-cat-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 24px 0 32px 0;
}

.b2b-cat-filter-btn {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 20px;
    background: #F1F5F9;
    color: #475569;
    border: 1px solid #CBD5E1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.b2b-cat-filter-btn:hover,
.b2b-cat-filter-btn.active {
    background: #00008B;
    color: #FFFFFF;
    border-color: #00008B;
    box-shadow: 0 4px 12px rgba(0, 0, 139, 0.15);
}


