/* ==========================================
   SivakasiMarket.com CSS Style System
   Theme: Midnight Festival (Dark Theme)
   ========================================== */

:root {
    /* Color Palette */
    --bg-primary: #080a14;
    --bg-secondary: #0f1326;
    --bg-tertiary: #191f3b;
    
    --accent-gold: #ffb300;
    --accent-gold-rgb: 255, 179, 0;
    --accent-orange: #ff5722;
    --accent-orange-rgb: 255, 87, 34;
    --accent-purple: #9c27b0;
    --accent-purple-rgb: 156, 39, 176;
    --accent-teal: #00bcd4;
    
    --text-primary: #f5f6fa;
    --text-secondary: #a0a8c7;
    --text-muted: #676e8d;
    --white: #ffffff;
    
    --success: #2ecc71;
    --success-rgb: 46, 204, 113;
    --danger: #e74c3c;
    
    /* Layout & Styling */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    --glass-bg: rgba(15, 19, 38, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
}

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

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

ul {
    list-style: none;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* ==========================================
   Utility Classes & Layout
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

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

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(var(--accent-gold-rgb), 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
}

.section-tag.glow {
    box-shadow: 0 0 15px rgba(var(--accent-gold-rgb), 0.3);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(var(--accent-gold-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--accent-gold-rgb), 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-purple));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(var(--accent-orange-rgb), 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--accent-orange-rgb), 0.5);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(var(--accent-gold-rgb), 0.05);
}

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

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
}

/* ==========================================
   Header & Navigation
   ========================================== */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px !important;
    max-height: 70px !important;
    z-index: 1000;
    background: transparent; /* Start transparent at the top */
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(8, 10, 20, 0.85); /* Smooth glassmorphism on scroll */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Festive bottom gradient line for header */
.glass-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange), var(--accent-purple), var(--accent-gold));
    background-size: 300% 100%;
    animation: borderFlow 8s linear infinite;
    opacity: 0; /* Only show bottom glow line when scrolled */
    transition: opacity 0.3s ease;
}

.glass-nav.scrolled::after {
    opacity: 1;
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 4%; /* Responsive full-width layout */
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    max-height: 45px;
}

.logo-image,
.logo img,
header.glass-nav .logo img,
header.glass-nav .logo-image {
    height: 36px !important;
    max-height: 36px !important;
    width: auto !important;
    max-width: 50px !important;
    object-fit: contain !important;
    display: inline-block !important;
    margin: 0 !important;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #2ecc71; /* Green logo word */
    white-space: nowrap;
}

.logo-highlight {
    color: #ffcc00; /* Yellow logo word */
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px; /* Spaced out beautifully */
    margin: 0 auto; /* Centers links perfectly in the header space */
}

.nav-item {
    font-size: 0.95rem; /* Clean standard size */
    font-weight: 600; /* Bolder font for festive look */
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    box-shadow: 0 0 8px rgba(var(--accent-gold-rgb), 0.8);
    transition: var(--transition-fast);
}

.nav-item:hover, .nav-item.active {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(var(--accent-gold-rgb), 0.3);
}

.nav-item.active::after, .nav-item:hover::after {
    width: 100%;
}

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

/* Festive Header Button Styles */
#nav-seller-btn {
    border: 1px solid rgba(var(--accent-gold-rgb), 0.5);
    background: rgba(var(--accent-gold-rgb), 0.04);
    color: var(--accent-gold);
}

#nav-seller-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(var(--accent-gold-rgb), 0.15);
    box-shadow: 0 0 15px rgba(var(--accent-gold-rgb), 0.3);
}

#nav-wa-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.3);
}

#nav-wa-btn:hover {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.mobile-menu-actions {
    display: none;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(156, 39, 176, 0.15), transparent 60%),
                radial-gradient(circle at bottom left, rgba(255, 87, 34, 0.1), transparent 60%);
}

#fireworks-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto; /* Allow users to click for sparks */
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.08) 0%, transparent 70%);
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.hero-burst-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity 0.3s ease, background 0.5s ease;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px; /* Aligns perfectly with the 1200px grid of other sections */
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.capital-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(8, 10, 20, 0.85); /* Sleek dark glass shield so crown and text pop out crisp */
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--accent-gold);
    border-radius: 30px;
    color: #ffea00;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.35), inset 0 0 10px rgba(255, 204, 0, 0.15);
    margin-bottom: 20px;
    animation: highlightPulse 2.5s infinite alternate ease-in-out;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}

@keyframes highlightPulse {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 204, 0, 0.3); }
    100% { transform: scale(1.04); box-shadow: 0 0 30px rgba(255, 204, 0, 0.6), 0 0 15px rgba(255, 61, 0, 0.5); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    animation: float 3s ease-in-out infinite;
}

/* Live Market Activity Ticker */
.live-market-ticker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 8px 18px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #00e676;
    backdrop-filter: blur(8px);
}

.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00e676;
    box-shadow: 0 0 10px #00e676;
    animation: blink 1.2s infinite alternate;
}

@keyframes blink {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Product Pricing Highlights */
.prod-price-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 10px;
    border-radius: 8px;
}

.prod-price-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.prod-price-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #00e676;
}

.prod-price-msrp {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.prod-discount-badge {
    background: rgba(255, 61, 0, 0.2);
    color: #ff3d00;
    border: 1px solid rgba(255, 61, 0, 0.4);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: auto;
}

.hero-badge .badge-icon {
    color: var(--accent-gold);
}

.hero-badge .badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    max-width: 900px; /* Keep title text readable and centered */
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.95);
}

.gradient-text {
    background: linear-gradient(135deg, #ffea00 0%, #ff9100 35%, #ff007f 70%, #d500f9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #ffea00 !important;
    font-weight: 900 !important;
    text-shadow: none !important;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.85)) !important;
    display: inline-block !important;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 30px auto;
    line-height: 1.6;
    max-width: 720px;
    background: rgba(8, 10, 20, 0.65);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

/* Creative Dual Hero Action Buttons */
.hero-cta-container {
    margin: 25px auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-marketplace {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #ffea00 0%, #ff9100 50%, #ff3d00 100%);
    color: #121212;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(255, 145, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ffffff;
    z-index: 2;
}

.btn-hero-marketplace:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.6);
    color: #000000;
}

.pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 35px;
    border: 2px solid #ffea00;
    animation: ringPulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.85; }
    100% { transform: scale(1.15); opacity: 0; }
}

.btn-hero-pricelist {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(15, 19, 38, 0.7);
    border: 2px solid var(--accent-gold);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 30px;
    text-decoration: none;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-hero-pricelist:hover {
    transform: translateY(-4px);
    background: rgba(255, 204, 0, 0.15);
    border-color: #ffffff;
    color: var(--accent-gold);
}

.discount-pill {
    background: #ff3d00;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(12, 16, 32, 0.85);
    border: 1.5px solid rgba(255, 204, 0, 0.2);
    padding: 6px 6px 6px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    gap: 12px;
}

.search-box:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(var(--accent-gold-rgb), 0.35);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    width: 100%;
}

.search-icon {
    color: var(--accent-gold);
    font-size: 1.15rem;
    margin-right: 14px;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    height: 48px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    text-align: left;
    text-overflow: ellipsis;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.btn-search {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--bg-primary);
    font-weight: 800;
    padding: 0 26px;
    height: 48px;
    border-radius: calc(var(--radius-md) - 2px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; /* Full-width desktop grid distribution */
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 40px;
    width: 100%;
}

.stat-card {
    text-align: center;
    padding: 0 20px;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.2);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* SVG Wave Divider */
.wave-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 4;
}

.wave-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wave-shape .shape-fill {
    fill: var(--bg-primary);
}

/* ==========================================
   Categories Section
   ========================================== */
.categories-section {
    background-color: var(--bg-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    opacity: 0;
    transition: var(--transition-fast);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-gold-rgb), 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--accent-gold-rgb), 0.1);
}

.category-card:hover::before {
    opacity: 1;
}

.font-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: rgba(var(--accent-gold-rgb), 0.08);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.font-icon-wrapper i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card:hover .font-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
}

.category-card:hover .font-icon-wrapper i {
    -webkit-text-fill-color: var(--bg-primary);
}

.category-name {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.category-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.category-link {
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-link i {
    transition: var(--transition-fast);
}

.category-card:hover .category-link i {
    transform: translateX(4px);
}

/* ==========================================
   Verified Directory Section
   ========================================== */
.directory-section {
    background-color: var(--bg-secondary);
}

.directory-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--accent-gold);
    color: var(--white);
}

.filter-btn.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(var(--accent-gold-rgb), 0.3);
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.seller-card {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.seller-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(156, 39, 176, 0.15);
}

.seller-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.seller-badge {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mfr-badge {
    background: rgba(156, 39, 176, 0.15);
    color: #e040fb;
    border: 1px solid rgba(224, 64, 251, 0.3);
}

.wholesale-badge {
    background: rgba(0, 188, 212, 0.15);
    color: #00e5ff;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.seller-verification {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(var(--success-rgb), 0.1);
    padding: 4px 8px;
    border-radius: var(--radius-full);
}

.seller-name {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.seller-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.seller-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.seller-rating i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.rating-val {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 6px;
}

.seller-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.spec-tag {
    font-size: 0.75rem;
    padding: 3px 8px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}

.seller-meta {
    margin-top: auto;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.meta-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.meta-item i {
    color: var(--accent-gold);
    margin-right: 4px;
}

.seller-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.btn-wa {
    background-color: #25d366;
    color: var(--white);
}

.btn-wa:hover {
    background-color: #20ba5a;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

/* ==========================================
   Estimator Section
   ========================================== */
.estimator-section {
    background-color: var(--bg-primary);
}

.estimator-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 40px;
}

.estimator-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.estimator-card h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.estimator-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: var(--radius-full);
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-secondary);
}

.glow-value {
    color: var(--accent-gold);
    font-weight: 800;
    text-shadow: 0 0 8px rgba(var(--accent-gold-rgb), 0.3);
    margin-left: 8px;
    font-size: 1.1rem;
}

/* Custom Range Slider */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    outline: none;
    margin: 15px 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    cursor: pointer;
    box-shadow: 0 0 10px rgba(var(--accent-orange-rgb), 0.5);
    transition: var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-endpoints {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    transition: var(--transition-fast);
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--accent-gold);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark::after {
    display: block;
}

.custom-checkbox .checkmark::after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--bg-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Select Styling */
select {
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--white);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffb300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
}

select:focus {
    border-color: var(--accent-gold);
}

/* Pricing Results */
.calculator-outputs {
    background: radial-gradient(circle at bottom right, rgba(255, 179, 0, 0.05), transparent 70%), var(--bg-secondary);
}

.results-pricing {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-val {
    font-weight: 600;
}

.retail-val {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.main-row {
    margin: 20px 0;
    border-top: 1px dashed var(--glass-border);
    border-bottom: 1px dashed var(--glass-border);
    padding: 16px 0;
}

.wholesale-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.highlight-val {
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(var(--accent-gold-rgb), 0.3);
}

.savings-row {
    margin-bottom: 0;
}

.savings-val {
    color: var(--success);
    font-weight: 700;
    background: rgba(var(--success-rgb), 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.perks-container h4 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.perks-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.perk-bullet {
    color: var(--success);
}

/* ==========================================
   Register Business Section
   ========================================== */
.register-business-section {
    background-color: var(--bg-secondary);
    background-image: radial-gradient(circle at bottom left, rgba(255, 87, 34, 0.08), transparent 50%),
                      radial-gradient(circle at top right, rgba(156, 39, 176, 0.08), transparent 50%);
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.register-info .benefits-list {
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.benefits-list li i {
    font-size: 1.3rem;
    color: var(--accent-gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(var(--accent-gold-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.register-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.register-form-card {
    padding: 40px;
}

.register-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row.split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition-fast);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(var(--accent-orange-rgb), 0.25);
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    background-color: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    padding-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active FAQ State */
.faq-item.active {
    border-color: var(--accent-gold);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* arbitrary high number */
    transition: max-height 0.4s ease-in-out;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ==========================================
   Footer
   ========================================== */
.main-footer {
    background-color: #04050a;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-col .footer-desc {
    color: var(--text-secondary);
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--bg-primary);
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links-col a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.office-address {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 24px;
}

.office-address i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-gold);
}

.office-phone {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
}

.office-phone i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-gold);
}

.safety-warning {
    background: rgba(255, 87, 34, 0.08);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    font-size: 0.85rem;
    color: #ff8a65;
}

.safety-warning i {
    font-size: 1rem;
    margin-right: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-copy {
    margin-bottom: 10px;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ==========================================
   Quote Request Modal
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 10, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal-card {
    width: 100%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.modal-card textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--white);
    resize: none;
    transition: var(--transition-fast);
}

.modal-card textarea:focus {
    border-color: var(--accent-gold);
}

/* ==========================================
   Toast Notification System
   ========================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent-gold);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-success {
    border-left-color: var(--success);
}
.toast-success .toast-icon {
    color: var(--success);
}

.toast-info {
    border-left-color: var(--accent-gold);
}
.toast-info .toast-icon {
    color: var(--accent-gold);
}

/* ==========================================
   Sourcing Tier Comparison Section
   ========================================== */
.comparison-section {
    background: radial-gradient(circle at bottom right, rgba(255, 179, 0, 0.03), transparent 50%),
                radial-gradient(circle at top left, rgba(0, 188, 212, 0.02), transparent 50%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tier-card {
    background: rgba(15, 19, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tier-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Featured Depot Card styling */
.tier-card.featured {
    border: 2px solid var(--accent-orange);
    background: linear-gradient(180deg, rgba(255, 87, 34, 0.05) 0%, rgba(15, 19, 38, 0.5) 100%);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.08);
}

.tier-card.featured:hover {
    border-color: #ff7043;
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.15);
}

.tier-featured-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
    white-space: nowrap;
}

.tier-badge-label {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.tier-mfr .tier-badge-label {
    background: rgba(0, 188, 212, 0.1);
    color: var(--accent-teal);
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.tier-whs .tier-badge-label {
    background: rgba(255, 87, 34, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.tier-rtl .tier-badge-label {
    background: rgba(156, 39, 176, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.tier-header h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
}

.tier-price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
    flex: 1;
}

.tier-feature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.tier-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feat-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
}

.feat-value.highlight-green {
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.2);
}

.feat-value.highlight-orange {
    color: #ff9800;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.2);
}

.tier-footer {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tier-card {
        padding: 30px 20px;
    }
}

/* ==========================================
   Responsive Media Queries
   ========================================== */
@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(var(--accent-gold-rgb), 0.8));
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(var(--accent-gold-rgb), 1));
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==========================================
   Responsive Media Queries
   ========================================== */

/* Header Collapse Breakpoint (Prevents menu collisions) */
@media (max-width: 1250px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 19, 38, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        padding-bottom: 60px;
        gap: 24px;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid var(--glass-border);
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    #nav-seller-btn {
        display: none;
    }
    
    #nav-wa-btn {
        display: none;
    }
    
    .nav-container {
        padding: 12px 24px;
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 320px;
        margin-top: 12px;
        padding: 16px 0;
        border-top: 1px dashed var(--glass-border);
    }
    
    .mobile-nav-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
}

/* Medium Desktop/Tablet Dimensions */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .stats-bar {
        grid-template-columns: repeat(4, 1fr); /* 4 items in a row on tablet, dividers hidden */
        gap: 16px;
    }
    .stat-divider {
        display: none;
    }
    .estimator-wrapper {
        grid-template-columns: 1fr;
    }
    .register-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Dimensions */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        word-wrap: break-word;
        word-break: break-word;
    }

    .categories-visual-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 Columns x 6 Rows on Mobile */
        gap: 12px !important;
    }
    
    .cat-card-item {
        padding: 16px 10px;
    }

    .cat-icon-wrapper {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .cat-card-title {
        font-size: 0.84rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 10px 14px;
        border-radius: 14px;
    }

    .capital-highlight-badge {
        font-size: 0.76rem;
        padding: 8px 14px;
        letter-spacing: 0.8px;
        gap: 6px;
        margin-bottom: 15px;
        max-width: 92%;
    }
    
    .live-market-ticker {
        font-size: 0.74rem;
        padding: 8px 16px;
        max-width: 92%;
        margin: 0 auto;
        white-space: normal !important;
        text-align: center;
        line-height: 1.4;
        border-radius: 20px;
        overflow: visible !important;
    }

    .hero-cta-container {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 14px;
        margin: 22px auto 30px auto;
    }
    
    .btn-hero-marketplace,
    .btn-hero-pricelist {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.98rem;
    }

    .nav-actions .nav-basket-btn,
    .nav-actions #lang-toggle,
    .nav-actions .desktop-seller-btn {
        display: none !important;
    }

    .nav-actions {
        gap: 0 !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(255, 204, 0, 0.15);
        border: 1px solid var(--accent-gold);
        color: var(--accent-gold);
        font-size: 1.2rem;
    }

    .hero-badge {
        padding: 6px 12px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-badge .badge-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
        white-space: normal;
        text-align: center;
    }

    .search-box-container {
        padding: 0 4px;
        margin-bottom: 35px;
        width: 100%;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        gap: 10px;
        border-radius: 16px;
        background: rgba(12, 16, 32, 0.95);
        border: 1.5px solid rgba(255, 204, 0, 0.25);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    }

    .search-input-wrapper {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        padding: 0 12px;
        height: 48px;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .search-icon {
        display: inline-block !important;
        margin-right: 10px;
        color: var(--accent-gold);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .search-box input {
        height: 48px;
        text-align: left !important;
        font-size: 0.9rem;
        padding: 0;
        width: 100%;
        color: #ffffff;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .search-box input::placeholder {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.55);
    }

    .btn-search {
        width: 100%;
        height: 48px;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 800;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #ff9100, #ff3d00);
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(255, 61, 0, 0.35);
    }
    
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
    }
    
    .stat-card {
        padding: 8px;
    }
    
    .stat-num {
        font-size: 1.6rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row.split {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-card {
        padding: 24px;
        border-radius: var(--radius-md);
    }
    
    .modal-card .form-row.split {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr; /* Stack vertically on tiny mobile screens */
        gap: 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   LANDING PAGE (10 SECTIONS) EXTENDED UI/UX STYLES
   ========================================================================== */

/* Nav Basket & Language Switcher */
.nav-basket-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--accent-gold);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.2s;
}

.nav-basket-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.basket-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3d00;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
}

.btn-lang {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0 12px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline-gold {
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    font-weight: 700;
    border-radius: 12px;
    padding: 0 16px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: #121212;
}

/* Search Scope Tabs */
.search-scope-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.scope-tab {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.scope-tab.active,
.scope-tab:hover {
    background: var(--accent-gold);
    color: #121212;
    border-color: var(--accent-gold);
    font-weight: 800;
}

/* Popular Searches Quick Chips */
.popular-searches {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.pop-label {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
}

.pop-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.pop-chip:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* 3 Sourcing Business Tiers Cards */
.bg-darker {
    background: #090c1a;
}

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

.business-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.tier-card {
    background: rgba(15, 19, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.tier-featured {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.05) 0%, rgba(15, 19, 38, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.15);
}

.featured-ribbon {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: #121212;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 12px;
}

.tier-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.factory-icon-bg { background: rgba(0, 230, 118, 0.15); color: #00e676; }
.wholesale-icon-bg { background: rgba(255, 204, 0, 0.15); color: #ffcc00; }
.retail-icon-bg { background: rgba(255, 61, 0, 0.15); color: #ff3d00; }

.tier-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 8px;
}
.factory-badge { color: #00e676; }
.wholesale-badge { color: #ffcc00; }
.retail-badge { color: #ff3d00; }

.tier-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.tier-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tier-features li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-green { color: #00e676; }
.text-gold { color: #ffcc00; }
.text-orange { color: #ff3d00; }

.btn-outline-tier {
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline-tier:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* 4. Explore Fireworks Categories (Visual Grid: 6 Cols Desktop | 2 Cols Mobile) */
.categories-header {
    margin-bottom: 40px;
}

.categories-visual-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 Columns x 2 Rows = 12 Cards on Desktop */
    gap: 18px;
}

.cat-card-item {
    background: rgba(12, 16, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cat-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.cat-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.cat-card-item:hover .cat-icon-wrapper {
    transform: scale(1.1);
}

.cat-card-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.cat-card-count {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Distinct Icon Colors */
.cat-gold .cat-icon-wrapper { background: rgba(255, 204, 0, 0.15); color: #ffea00; border: 1px solid rgba(255, 204, 0, 0.4); }
.cat-orange .cat-icon-wrapper { background: rgba(255, 109, 0, 0.15); color: #ff6d00; border: 1px solid rgba(255, 109, 0, 0.4); }
.cat-cyan .cat-icon-wrapper { background: rgba(0, 229, 255, 0.15); color: #00e5ff; border: 1px solid rgba(0, 229, 255, 0.4); }
.cat-purple .cat-icon-wrapper { background: rgba(213, 0, 249, 0.15); color: #d500f9; border: 1px solid rgba(213, 0, 249, 0.4); }
.cat-lime .cat-icon-wrapper { background: rgba(174, 234, 0, 0.15); color: #aeea00; border: 1px solid rgba(174, 234, 0, 0.4); }
.cat-red .cat-icon-wrapper { background: rgba(255, 23, 68, 0.15); color: #ff1744; border: 1px solid rgba(255, 23, 68, 0.4); }
.cat-coral .cat-icon-wrapper { background: rgba(255, 82, 82, 0.15); color: #ff5252; border: 1px solid rgba(255, 82, 82, 0.4); }
.cat-teal .cat-icon-wrapper { background: rgba(0, 191, 165, 0.15); color: #00bfa5; border: 1px solid rgba(0, 191, 165, 0.4); }
.cat-violet .cat-icon-wrapper { background: rgba(124, 77, 255, 0.15); color: #7c4dff; border: 1px solid rgba(124, 77, 255, 0.4); }
.cat-pink .cat-icon-wrapper { background: rgba(255, 64, 129, 0.15); color: #ff4081; border: 1px solid rgba(255, 64, 129, 0.4); }
.cat-green .cat-icon-wrapper { background: rgba(0, 230, 118, 0.15); color: #00e676; border: 1px solid rgba(0, 230, 118, 0.4); }
.cat-blue .cat-icon-wrapper { background: rgba(64, 196, 255, 0.15); color: #40c4ff; border: 1px solid rgba(64, 196, 255, 0.4); }

/* 5. Market Discovery (Tabs & Grid) */
.discovery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.discovery-tabs {
    display: flex;
    gap: 10px;
}

.disc-tab {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.disc-tab.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: #121212;
    border-color: transparent;
}

.disc-tab-pane {
    display: none;
}

.disc-tab-pane.active {
    display: block;
}

.sellers-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Seller Card */
.seller-card {
    background: rgba(15, 19, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seller-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.seller-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ff5722;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.avatar-purple { background: #9c27b0; }
.avatar-green { background: #00e676; color: #121212; }
.avatar-gold { background: #ffea00; color: #121212; }

.seller-title-box {
    flex: 1;
    overflow: hidden;
}

.seller-title-box h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seller-location {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.verified-badge {
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
    border: 1px solid rgba(0, 230, 118, 0.3);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}

.seller-tags {
    display: flex;
    gap: 6px;
}

.stag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}
.stag-factory { background: rgba(0, 230, 118, 0.1); color: #00e676; }
.stag-wholesale { background: rgba(255, 204, 0, 0.1); color: #ffcc00; }
.stag-retail { background: rgba(255, 61, 0, 0.1); color: #ff3d00; }
.stag-moq { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.7); }

.seller-rating {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}
.seller-rating .stars { color: #ffcc00; }

.seller-card-footer {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.seller-card-footer .btn {
    flex: 1;
    font-size: 0.78rem;
    padding: 8px;
    border-radius: 8px;
    font-weight: 700;
    justify-content: center;
}

/* Product Card */
.prod-card {
    background: rgba(15, 19, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
}

.prod-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 8px;
    text-transform: uppercase;
}
.prod-tag-hot { background: #ff3d00; color: #ffffff; }
.prod-tag-eco { background: #00e676; color: #121212; }
.prod-tag-green { background: #00b0ff; color: #ffffff; }
.prod-tag-gift { background: #ffea00; color: #121212; }
.prod-tag-sound { background: #d500f9; color: #ffffff; }
.prod-tag-stage { background: #00e5ff; color: #121212; }

.prod-icon-preview {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.prod-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.prod-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.prod-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prod-seller {
    font-size: 0.7rem;
    color: var(--accent-gold);
}

.btn-ask-price {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: #121212;
    border: none;
    border-radius: 8px;
    padding: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
}

.btn-ask-price:hover {
    opacity: 0.9;
}

/* 6. Compare Steps Grid */
.compare-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.cstep-card {
    background: rgba(15, 19, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
}

.cstep-card.active,
.cstep-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    background: rgba(255, 204, 0, 0.05);
}

.cstep-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 15px;
    right: 20px;
}

.cstep-icon {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.cstep-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.cstep-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* 7. How SivakasiMarket Works Timeline */
.how-works-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.hw-item {
    text-align: center;
    flex: 1;
    z-index: 2;
}

.hw-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: #121212;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.4);
}

.hw-content h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.hw-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: 180px;
    margin: 0 auto;
    line-height: 1.4;
}

.hw-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 204, 0, 0.3);
    margin-top: -35px;
}

/* 8. Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.trust-card {
    background: rgba(15, 19, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.trust-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.trust-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* 9. FAQ Accordion & Registration Banner */
.faq-accordion-container {
    max-width: 800px;
    margin: 40px auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(15, 19, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-question {
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-icon {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    background: rgba(0, 0, 0, 0.15);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 24px 20px 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Final Registration Banner */
.registration-cta-banner {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(156, 39, 176, 0.15) 100%), #0f1326;
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 204, 0, 0.15);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-banner-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-banner-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: #121212;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
}

/* 10. Footer */
.main-footer {
    background: #060812;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 100px 0; /* padding bottom for mobile bar */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-about p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 15px 0;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
}

/* MOBILE BOTTOM NAVIGATION BAR */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(8, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    justify-content: space-around;
    align-items: center;
    padding: 0 5px;
}

.mbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    background: transparent;
    border: none;
    position: relative;
    cursor: pointer;
}

.mbar-item i {
    font-size: 1.1rem;
}

.mbar-item.active,
.mbar-item:hover {
    color: var(--accent-gold);
}

.mbar-badge {
    position: absolute;
    top: -2px;
    right: 12px;
    background: #ff3d00;
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MODAL & DRAWER STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #0f1326;
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.modal-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

.form-control-readonly {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    font-weight: 700;
}

/* ENQUIRY BASKET DRAWER */
.basket-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
}

.basket-drawer-overlay.active {
    display: block;
}

.basket-drawer {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    height: 100%;
    background: #0f1326;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.basket-drawer.active {
    right: 0;
}

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

.drawer-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.drawer-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.empty-basket-msg {
    text-align: center;
    padding: 40px 10px;
    color: var(--text-muted);
}

.empty-basket-msg i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE CSS MEDIA QUERIES */
@media (max-width: 992px) {
    .business-tiers-grid,
    .compare-steps-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .how-works-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .hw-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: none !important;
    }

    .business-tiers-grid,
    .compare-steps-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .desktop-seller-btn {
        display: none;
    }

    .cta-banner-content h2 {
        font-size: 1.6rem;
    }

    .basket-drawer {
        width: 100%;
        right: -100%;
    }
}

