:root {
    /* Supplayr-Inspired B2B Light Palette */
    --bg-deep: #f8fafc;
    --bg-primary: #ffffff;
    --bg-secondary: #f1f5f9;
    --bg-tertiary: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --accent-blue: #1E3A5F;
    --accent-blue-light: #3b82f6;
    --accent-blue-glow: rgba(30, 58, 95, 0.1);
    
    --accent-orange: #ff6b00;
    --accent-orange-hover: #e05e00;
    --accent-orange-glow: rgba(255, 107, 0, 0.1);
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --border-color: #f1f5f9;
    --border-accent: rgba(30, 58, 95, 0.15);
    
    /* Layout Tokens */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-box: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(30, 58, 95, 0.08);
    --shadow-modal: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) var(--bg-secondary);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Navigation Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0 30px;
    display: flex;
    align-items: center;
    height: 72px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: var(--transition-fast);
}

.header-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.scrolled {
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-img {
    height: 38px;
    width: 38px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
}

/* Delivery Pincode Trigger Button */
.header-pincode-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
    margin-left: 20px;
    width: 155px; /* Set fixed width to prevent horizontal shifts in navigation bar */
    flex-shrink: 0;
}

.header-pincode-btn:hover {
    border-color: var(--accent-blue-light);
    background: var(--bg-primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.header-pincode-btn .pin-icon {
    color: var(--accent-blue-light);
    font-size: 18px;
}

.header-pincode-btn .pin-title {
    font-size: 8px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.header-pincode-btn .pin-value {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0 16px;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    background: var(--bg-secondary);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-blue);
    background: rgba(30, 58, 95, 0.05);
}

.nav-link.active {
    color: #ffffff;
    background: var(--accent-blue);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

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

.search-bar-container {
    position: relative;
    width: 240px;
    transition: var(--transition-smooth);
}

.search-bar-container:focus-within {
    width: 300px;
}

.search-input {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    padding: 8px 16px 8px 38px;
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 13px;
    outline: none;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--accent-blue-light);
    background: var(--bg-primary);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--text-secondary);
    pointer-events: none;
}

.cart-icon-btn {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    color: var(--text-secondary);
    padding: 0 16px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-icon-btn:hover {
    background: var(--bg-tertiary);
    color: var(--accent-blue);
}

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

/* Category Horizontal Sub Navigation Bar */
.category-subnav {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 0 30px;
    height: 38px;
    display: flex;
    align-items: center;
}

.subnav-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Hide scrollbars */
}

.subnav-inner::-webkit-scrollbar {
    display: none;
}

.category-subnav-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 4px 12px;
    border-radius: 12px;
}

.category-subnav-link:hover {
    color: var(--accent-blue-light);
    background: var(--bg-secondary);
}

/* Page Animations - GPU accelerated to prevent flicker */
.fade-in {
    animation: fadeIn 0.18s ease-out forwards;
    will-change: opacity, transform;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Main View Layout – smooth content transitions to eliminate flicker */
main {
    min-height: calc(100vh - 76px - 280px);
    padding: 30px 40px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    transition: opacity 0.15s ease;
    will-change: opacity;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-secondary);
    border: 1px solid var(--bg-tertiary);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--text-secondary);
}

.btn-accent {
    background: var(--accent-blue);
    color: white;
}

.btn-accent:hover {
    background: #142844;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 11px;
    border-radius: 6px;
}

/* Trust Badges Row */
/* ============================================================
   PREMIUM HERO V2 — Full Redesign
   ============================================================ */

/* Hero section wrapper */
.hero-v2 {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    align-items: center;
    min-height: 480px;
    padding: 56px 52px;
    background: linear-gradient(135deg, #06101f 0%, #0d1f3a 40%, #112244 100%);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(96,165,250,0.04);
}

/* Ambient glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.55;
}
.hero-orb-1 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(37,99,235,0.5) 0%, transparent 70%);
    top: -80px; left: -60px;
    animation: orbFloat1 9s ease-in-out infinite;
}
.hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(251,146,60,0.25) 0%, transparent 70%);
    bottom: -60px; right: 30%;
    animation: orbFloat2 12s ease-in-out infinite;
}
.hero-orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(74,222,128,0.15) 0%, transparent 70%);
    top: 20px; right: 10%;
    animation: orbFloat3 8s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-15px,15px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(10px,20px)} }

/* Subtle grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

/* ---- LEFT COLUMN ---- */
.hero-v2-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Eyebrow label */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: fit-content;
    backdrop-filter: blur(8px);
}
.hero-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 6px #34d399; }
    50% { box-shadow: 0 0 14px #34d399; }
}
.hero-eyebrow-badge {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: 0.1em;
}

/* Main title */
.hero-v2-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
}
.hero-title-gradient {
    background: linear-gradient(90deg, #fb923c, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title-cycling {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Description */
.hero-v2-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.62);
    max-width: 480px;
    margin: 0;
}

/* CTA Buttons */
.hero-v2-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(249,115,22,0.55);
    background: linear-gradient(135deg, #fb923c, #f97316);
}
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-cta-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
    transform: translateY(-2px);
}

/* Trust proof strip */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.hero-trust-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
}

/* Stats row */
.hero-v2-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 12px 18px;
    min-width: 82px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}
.hero-stat-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}
.hero-stat-card--highlight {
    background: linear-gradient(135deg, rgba(251,191,36,0.12), rgba(249,115,22,0.08));
    border-color: rgba(251,191,36,0.2);
}
.hero-stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}
.hero-stat-value span {
    font-size: 14px;
    color: #fbbf24;
    font-weight: 700;
}
.hero-stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    font-weight: 600;
}

/* ---- RIGHT COLUMN ---- */
.hero-v2-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

/* Product showcase */
.hero-product-showcase {
    position: relative;
    width: 260px;
    height: 300px;
}

/* Main product card */
.hero-showcase-card--main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    width: 180px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(96,165,250,0.08);
    animation: showcaseFloat 5s ease-in-out infinite;
    z-index: 3;
}
@keyframes showcaseFloat {
    0%,100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}
.hero-showcase-icon { font-size: 36px; margin-bottom: 10px; }
.hero-showcase-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 4px;
}
.hero-showcase-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
}
.hero-showcase-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
}
.hero-showcase-price span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}
.hero-showcase-stock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 10px;
    color: #4ade80;
    font-weight: 600;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.2);
    border-radius: 100px;
    padding: 3px 10px;
}
.hero-stock-dot {
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Floating chips */
.hero-float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(15,25,50,0.85);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 4;
}
.hero-chip-1 { top: 10px; left: -30px; animation: chipFloat1 6s ease-in-out infinite; }
.hero-chip-2 { bottom: 60px; left: -40px; animation: chipFloat2 7s ease-in-out infinite; }
.hero-chip-3 { top: 30px; right: -20px; animation: chipFloat3 8s ease-in-out infinite; }
@keyframes chipFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes chipFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes chipFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Live order chip */
.hero-live-chip {
    position: absolute;
    bottom: 10px;
    right: -10px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(15,25,50,0.9);
    border: 1px solid rgba(74,222,128,0.25);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    z-index: 4;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hero-live-dot {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

/* ============================================================
   TRUST STRIP V2
   ============================================================ */
.trust-strip-v2 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 6px 0;
}
.trust-strip-item .material-icons-outlined {
    font-size: 20px;
    color: var(--accent-blue-light);
}
.trust-strip-divider {
    width: 1px;
    height: 28px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* ============================================================
   FEATURES GRID V2
   ============================================================ */
.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.feature-card-v2 {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.feature-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,58,95,0.0), rgba(30,58,95,0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(96,165,250,0.3);
    box-shadow: 0 12px 40px rgba(30,58,95,0.15);
}
.feature-card-v2:hover::before { opacity: 1; }
.feature-card-v2-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
}
.feature-card-v2 h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.feature-card-v2 p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.feature-card-v2-arrow {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.25s ease;
    font-size: 18px;
}
.feature-card-v2:hover .feature-card-v2-arrow {
    background: rgba(96,165,250,0.12);
    color: var(--accent-blue-light);
    transform: translateX(3px);
}

/* ============================================================
   FEATURED PRODUCTS SECTION
   ============================================================ */
.featured-products-section {
    margin-top: 20px;
    margin-bottom: 60px;
}
.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}
.featured-eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.featured-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}
.featured-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-blue-light);
    cursor: pointer;
    transition: all 0.2s ease;
}
.featured-view-all-btn:hover {
    background: rgba(96,165,250,0.06);
    border-color: rgba(96,165,250,0.3);
    transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE — HERO V2
   ============================================================ */
@media (max-width: 900px) {
    .hero-v2 {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        min-height: auto;
    }
    .hero-v2-right { display: none; }
    .hero-v2-title { font-size: 36px; }
    .features-grid-v2 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .hero-v2 { padding: 28px 20px; border-radius: 14px; }
    .hero-v2-title { font-size: 28px; }
    .hero-v2-stats { gap: 8px; }
    .hero-stat-card { padding: 10px 14px; min-width: 70px; }
    .hero-stat-value { font-size: 18px; }
    .hero-cta-primary, .hero-cta-secondary { padding: 12px 18px; font-size: 13px; }
    .trust-strip-v2 { padding: 14px 16px; gap: 10px; }
    .trust-strip-divider { display: none; }
    .features-grid-v2 { grid-template-columns: 1fr; gap: 14px; }
    .featured-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
    .hero-v2-actions { flex-direction: column; }
    .hero-cta-primary, .hero-cta-secondary { width: 100%; justify-content: center; }
    .hero-v2-stats { grid-template-columns: repeat(2,1fr); display: grid; }
}



/* B2B Catalog View Layout */
.catalog-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
}

/* Sidebar Filters */
.filters-sidebar {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius-md);
    height: fit-content;
    box-shadow: var(--shadow-box);
}

.filter-section {
    margin-bottom: 24px;
}

.filter-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}

.filter-checkbox {
    appearance: none;
    background: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    width: 16px;
    height: 16px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-checkbox:checked {
    background: var(--accent-blue-light);
    border-color: var(--accent-blue-light);
}

.filter-checkbox:checked::after {
    content: '✓';
    color: white;
    font-size: 10px;
    font-weight: 700;
}

/* Catalog Catalog grid and header */
.catalog-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

/* Product Cards */
.product-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-box);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-orange-glow);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent-orange-glow);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 107, 0, 0.15);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-image-container {
    background: var(--bg-secondary);
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.product-vector {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-name:hover {
    color: var(--accent-blue-light);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.stars {
    color: #f59e0b;
}

/* Bulk Price tiers indicator inside product card */
.product-price-block {
    margin-bottom: 12px;
    font-size: 11px;
    background: var(--bg-secondary);
    padding: 6px 10px;
    border-radius: var(--border-radius-sm);
}

.bulk-tier-price {
    font-weight: 700;
    color: var(--success);
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

/* Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    z-index: 210;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.cart-drawer.open {
    right: 0;
}

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

.cart-header h2 {
    font-size: 20px;
}

.close-cart-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
}

.close-cart-btn:hover {
    color: var(--accent-orange);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-muted);
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cart-empty-icon {
    font-size: 40px;
    color: var(--text-muted);
    opacity: 0.3;
}

.cart-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
}

.cart-item-img {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

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

.cart-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-blue-light);
}

.cart-item-price .bulk-badge {
    font-size: 9px;
    background: var(--accent-orange-glow);
    color: var(--accent-orange);
    padding: 1px 4px;
    border-radius: 4px;
    margin-left: 6px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.qty-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    color: var(--text-primary);
    width: 20px;
    height: 20px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.cart-item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.cart-item-remove:hover {
    color: var(--danger);
}

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

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.cart-summary-line.total {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--bg-tertiary);
}

.checkout-btn {
    width: 100%;
    margin-top: 14px;
}

/* Project Estimator View */
.estimator-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
}

.estimator-form-container {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-box);
}

.estimator-form-container h2 {
    font-size: 20px;
    margin-bottom: 6px;
}

.estimator-desc {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-select, .form-input {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
}

.form-select:focus, .form-input:focus {
    border-color: var(--accent-blue-light);
}

.input-with-unit {
    position: relative;
}

.input-unit {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--text-muted);
}

.estimator-results-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.stat-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 18px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-box);
}

.stat-box-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.stat-box-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-box-unit {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
}

.material-list-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--shadow-box);
}

.material-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

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

.material-table th {
    text-align: left;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-bottom: 1px solid var(--bg-secondary);
}

.material-table td {
    padding: 12px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.material-table tr:last-child td {
    border-bottom: none;
}

.material-item-name {
    font-weight: 600;
    color: var(--text-primary);
}

.material-item-qty {
    color: var(--accent-blue-light);
    font-weight: 700;
}

/* Chatbot AI Assistant View */
.chatbot-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-box);
}

.chatbot-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-blue-glow);
    border: 1px solid var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 18px;
}

.chatbot-header-info h3 {
    font-size: 15px;
    margin-bottom: 1px;
}

.chatbot-status {
    font-size: 10px;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
}

.chatbot-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chat-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    font-size: 13px;
    line-height: 1.5;
}

.chat-bubble.bot {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-top-left-radius: 2px;
    align-self: flex-start;
}

.chat-bubble.user {
    background: var(--accent-blue);
    color: white;
    border-top-right-radius: 2px;
    align-self: flex-end;
}

.chat-recommend-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 10px;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.chat-recommend-card h4 {
    font-size: 12px;
    font-weight: 600;
}

.chat-recommend-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue-light);
}

.chatbot-input-container {
    border-top: 1px solid var(--border-color);
    padding: 12px;
    display: flex;
    gap: 12px;
    background: var(--bg-primary);
}

.chatbot-input {
    flex-grow: 1;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    padding: 10px 16px;
    border-radius: 20px;
    color: var(--text-primary);
    outline: none;
    font-size: 13px;
}

.chatbot-input:focus {
    border-color: var(--accent-blue-light);
    background: var(--bg-primary);
}

/* Tool Customizer View */
.customizer-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: center;
}

.customizer-preview-container {
    background: radial-gradient(circle, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border: 1px dashed var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-box);
}

.customizer-grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(30, 58, 95, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 95, 0.01) 1px, transparent 1px);
    background-size: 20px 20px;
}

.customizer-svg-wrapper {
    width: 280px;
    height: 280px;
}

.customizer-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.customizer-stat-row {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.customizer-stat-value {
    color: var(--accent-blue-light);
    font-weight: 700;
}

.customizer-sidebar {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-box);
}

.option-group-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.color-options-grid {
    display: flex;
    gap: 10px;
}

.color-option-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-option-btn.selected {
    transform: scale(1.1);
    border-color: var(--text-primary);
}

.selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.selector-btn {
    background: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 8px;
    font-size: 11px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    text-align: center;
}

.selector-btn.selected {
    background: var(--accent-orange-glow);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.customizer-price-box {
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--bg-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Order Tracker View */
.tracker-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-box);
}

.tracker-title {
    font-size: 22px;
    margin-bottom: 4px;
    text-align: center;
}

.tracker-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    text-align: center;
}

.tracker-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.tracker-stepper::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--bg-secondary);
}

.tracker-progress-bar {
    position: absolute;
    top: 18px;
    left: 40px;
    width: 0%;
    height: 2px;
    background: var(--accent-blue-light);
    transition: width var(--transition-smooth);
}

.tracker-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 80px;
}

.tracker-step-node {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
}

.tracker-step.active .tracker-step-node {
    border-color: var(--accent-blue-light);
    color: var(--accent-blue-light);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.tracker-step.completed .tracker-step-node {
    border-color: var(--success);
    color: var(--success);
    background: rgba(16, 185, 129, 0.05);
}

.tracker-step-label {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: var(--text-muted);
}

.tracker-step.active .tracker-step-label {
    color: var(--accent-blue-light);
}

.tracker-step.completed .tracker-step-label {
    color: var(--success);
}

.tracker-details-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    padding: 20px;
}

.tracker-details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

.tracker-details-label {
    color: var(--text-secondary);
}

.tracker-details-value {
    font-weight: 600;
}

.map-container {
    height: 160px;
    background: var(--bg-deep);
    border: 1px dashed var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

/* Modals Overlay (Pincode / Quickview) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

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

.modal-content {
    background: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    width: 90%;
    max-width: 760px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-modal);
    overflow: hidden;
    position: relative;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-secondary);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
}

.modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--accent-orange);
}

/* Multi-step Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-box);
}

.checkout-steps-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--bg-secondary);
    padding-bottom: 10px;
}

.checkout-step-tab {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.checkout-step-tab.active {
    color: var(--accent-blue-light);
}

.checkout-step-panel {
    display: none;
}

.checkout-step-panel.active {
    display: block;
}

/* Credit Card widget styling */
.credit-card-widget {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #112238 100%);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    position: relative;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(30,58,95,0.2);
}

.card-logo {
    font-size: 14px;
    font-weight: 800;
    opacity: 0.8;
}

.card-chip {
    width: 32px;
    height: 24px;
    background: #eab308;
    border-radius: 4px;
    margin-top: 10px;
}

.card-number-display {
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-top: 12px;
}

.card-bottom-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 10px;
    color: var(--text-muted);
}

/* Footer Section */
footer {
    background: var(--accent-blue);
    color: white;
    padding: 50px 80px 20px;
    margin-top: 80px;
}

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

.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: white;
}

.footer-about p {
    color: var(--bg-secondary);
    font-size: 13px;
    margin-top: 12px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--bg-secondary);
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #ffd166;
    padding-left: 2px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
    color: white;
    font-size: 13px;
    outline: none;
    flex-grow: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    font-size: 11px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 16px;
}

/* ────────── Supplayr Pincode Modal Elements ───────────────────────── */
.pincode-modal-body {
    padding: 30px;
}

.pincode-modal-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.pincode-input-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.pincode-suggestions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pincode-suggest-box {
    background: var(--bg-secondary);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.pincode-suggest-box:hover {
    background: var(--bg-tertiary);
    color: var(--accent-blue-light);
}

/* ────────── Razorpay Payment Simulation Overlay ───────────────────── */
.razorpay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.razorpay-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.razorpay-window {
    background: #ffffff;
    width: 380px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    font-family: sans-serif;
}

.razorpay-header {
    background: #1c273c;
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.razorpay-body {
    padding: 20px;
}

.razorpay-amount-box {
    text-align: center;
    margin-bottom: 20px;
}

.razorpay-amount {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.razorpay-option-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.razorpay-option-row:hover {
    background: #f9fafb;
    border-color: #3b82f6;
}

.razorpay-icon {
    font-size: 20px;
    color: #4b5563;
}

.razorpay-option-title {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* ────────── B2B RFQ Form Styles ───────────────────────────────────── */
.rfq-container {
    max-width: 600px;
    margin: 30px auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-box);
}

.rfq-header h2 {
    font-size: 22px;
    margin-bottom: 6px;
}

/* Responsive styles */
@media (max-width: 1366px) {
    header {
        padding: 0 20px;
        height: 72px;
    }
    .logo-text {
        font-size: 18px;
    }
    .header-pincode-btn {
        max-width: 150px;
        margin-left: 10px;
        padding: 6px 10px;
    }
    .header-pincode-btn .pin-value {
        font-size: 11px;
    }
    .nav-links {
        gap: 2px;
    }
    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    .search-bar-container {
        width: 180px;
    }
    .search-bar-container:focus-within {
        width: 220px;
    }
}

@media (max-width: 1100px) {
    header {
        height: 72px;
    }
    .logo-text {
        font-size: 16px;
    }
    .header-pincode-btn {
        max-width: 130px;
    }
    .nav-link {
        padding: 6px 8px;
        font-size: 11px;
    }
    .search-bar-container {
        width: 140px;
    }
    .search-bar-container:focus-within {
        width: 170px;
    }
}

@media (max-width: 1024px) {
    main {
        padding: 20px;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-container {
        grid-template-columns: 1fr;
    }
    
    .estimator-layout {
        grid-template-columns: 1fr;
    }
    
    .customizer-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    footer {
        padding: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    header, header.scrolled {
        height: auto;
        min-height: auto;
    }
    header {
        padding: 12px 16px;
    }
    .header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }
    .logo-container {
        order: 1;
    }
    .header-pincode-btn {
        order: 2;
        margin-left: auto;
        max-width: 160px;
    }
    .header-actions {
        order: 3;
        width: 100%;
        justify-content: space-between;
        margin-top: 4px;
        border-top: 1px solid var(--border-color);
        padding-top: 8px;
    }
    .search-bar-container {
        width: 60%;
        flex-grow: 1;
    }
    .search-bar-container:focus-within {
        width: 65%;
    }
    nav {
        order: 4;
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }
    .nav-links {
        width: 100%;
        justify-content: space-around;
        gap: 4px;
    }
}

@media (max-width: 640px) {
    header {
        padding: 10px 12px;
    }
    .header-inner {
        gap: 8px;
    }
    .logo-text {
        font-size: 15px;
    }
    .header-pincode-btn {
        max-width: 130px;
    }
    .header-pincode-btn .pin-title {
        font-size: 8px;
    }
    .header-pincode-btn .pin-value {
        font-size: 10px;
    }
    
    /* Header Actions Mobile Optimization */
    .header-actions {
        gap: 8px;
    }
    .search-bar-container {
        width: auto;
        flex-grow: 1;
    }
    .search-bar-container:focus-within {
        width: auto;
    }
    
    /* Compact Cart Icon Button */
    .cart-icon-btn span:not(.cart-badge):not(.material-icons-outlined) {
        display: none !important;
    }
    .cart-icon-btn {
        padding: 0;
        width: 40px;
        justify-content: center;
        gap: 0;
    }
    
    /* Compact Auth Pill Icon Button */
    .header-auth-label, 
    .header-auth-pill .chevron-icon {
        display: none !important;
    }
    .header-auth-pill {
        padding: 6px;
        border-radius: 50%;
    }

    nav {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    nav::-webkit-scrollbar {
        display: none;
    }
    .nav-links {
        width: max-content;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 2px;
    }
    .nav-link {
        font-size: 11px;
        padding: 6px 12px;
        white-space: nowrap;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    /* Dynamic 2-Column Catalog Grid on Mobile */
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .product-card {
        border-radius: var(--border-radius-sm) !important;
    }
    .product-image-container {
        height: 120px !important;
    }
    .product-info {
        padding: 10px !important;
    }
    .product-name {
        font-size: 13px !important;
        margin-bottom: 4px !important;
        line-height: 1.4 !important;
    }
    .product-price {
        font-size: 14px !important;
    }
    .product-cat {
        font-size: 9px !important;
    }
    .product-rating {
        font-size: 10px !important;
        margin-bottom: 6px !important;
    }
    .product-price-block {
        display: none !important;
    }
    .product-bottom {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
        margin-top: 6px !important;
    }
    .product-bottom .btn-sm {
        width: 100% !important;
        padding: 6px 10px !important;
        font-size: 11px !important;
    }

    /* Filters Sidebar Mobile Horizontal Scroll Tags */
    .filters-sidebar {
        padding: 12px;
        margin-bottom: 16px;
    }
    .filter-section {
        margin-bottom: 0 !important;
    }
    .filter-section:last-child {
        display: none;
    }
    .filter-title {
        font-size: 11px;
        margin-bottom: 8px;
    }
    .filter-list {
        flex-direction: row !important;
        overflow-x: auto;
        white-space: nowrap;
        gap: 8px !important;
        padding-bottom: 6px;
        scrollbar-width: none;
    }
    .filter-list::-webkit-scrollbar {
        display: none;
    }
    .filter-checkbox-label {
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .filter-checkbox-label:has(.filter-checkbox:checked) {
        background: rgba(30, 58, 95, 0.08);
        border-color: var(--accent-blue-light);
        color: var(--accent-blue);
    }

    /* Estimator Mobile Styling */
    .estimator-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .material-list-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .material-list-header button {
        width: 100%;
    }

    /* Checkout Steps Scrollable */
    .checkout-steps-nav {
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        padding-bottom: 6px;
    }
    .checkout-steps-nav::-webkit-scrollbar {
        display: none;
    }
}

/* ==========================================
   SUPPLAYR STYLE AUTHENTICATION COMPONENT
   ========================================== */
.auth-grid-container {
    max-width: 1000px;
    margin: 40px auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.auth-form-column {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-banner-column {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f4cc2 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-banner-column::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.auth-banner-card {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.auth-features-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    align-self: flex-start;
    width: 100%;
}

.auth-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.auth-features-list .check-icon {
    font-size: 18px;
    color: #3b82f6;
}

.auth-step-indicator {
    width: 24px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.auth-step-indicator.active {
    background: var(--accent-orange);
    width: 32px;
}

.auth-input-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-text-input {
    width: 100%;
    height: 46px;
    padding: 10px 16px 10px 42px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.auth-text-input:focus {
    border-color: var(--accent-blue-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.input-prefix-icon {
    position: absolute;
    left: 14px;
    font-size: 18px;
    color: #94a3b8;
}

.auth-submit-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 24px;
}

.auth-submit-btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.2);
}

.auth-switch-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
}

.auth-switch-link:hover {
    text-decoration: underline;
}

.auth-google-btn {
    width: 100%;
    height: 44px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-google-btn:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

/* Header Profile Pill */
.header-auth-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.header-auth-pill:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
}

.header-auth-avatar {
    width: 28px;
    height: 28px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.header-auth-avatar span {
    font-size: 18px;
}

.header-auth-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.header-auth-pill .chevron-icon {
    font-size: 16px;
    color: var(--text-secondary);
}

.header-auth-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    background: #ffffff;
    border: 1px solid var(--bg-tertiary);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 10px;
    animation: cookieSlideUp 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-auth-dropdown.open {
    display: flex;
}

.dropdown-btn-signin {
    background: #1e3b8a;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    border: none;
    width: 100%;
    height: 42px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-btn-signin:hover {
    background: #172554;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.dropdown-btn-signup {
    background: transparent;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    width: 100%;
    height: 42px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-btn-signup:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

@media (max-width: 1024px) {
    .auth-grid-container {
        grid-template-columns: 1fr;
        max-width: 550px;
        border-radius: 16px;
    }
    .auth-banner-column {
        display: none !important;
    }
}


/* Animated holographic glow base */
.hologram-cargo-box {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

/* Footer Tagline Interactive Styling */
.footer-tagline-elufer:hover {
    color: rgba(255,255,255,0.7) !important;
}

.footer-tagline-elufer:hover .tagline-author-glowing {
    color: #ffffff !important;
    text-shadow: 0 0 10px #ffd166, 0 0 20px #ffd166;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* ==========================================
   FLOATING ACTION WIDGETS & SOCIAL STYLES
   ========================================== */

/* Floating Vertical Social Icon Bar */
.floating-social-bar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: scale(1.15) translateX(4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae5 90%); }
.social-icon.x { background: #000000; }
.social-icon.youtube { background: #ff0000; }

/* Floating Action Group (FAB) */
.floating-action-group {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.fab-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.fab-btn.btn-top {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-btn.btn-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-btn.btn-chat {
    background: var(--accent-orange);
    color: #ffffff;
    position: relative;
}

.chat-unread-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: white;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-orange);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Floating Chatbot Widget Window */
.floating-chat-widget {
    position: fixed;
    right: 24px;
    bottom: 90px;
    width: 340px;
    height: 440px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 1001;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.floating-chat-widget.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.widget-chat-header {
    background: linear-gradient(135deg, #1e3a8a, #0f4cc2);
    color: #ffffff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd166;
}

.widget-chat-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.widget-chat-close:hover {
    opacity: 1;
}

.widget-chat-messages {
    flex-grow: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(248, 250, 252, 0.5);
}

.widget-chat-input-container {
    padding: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    gap: 8px;
    background: #ffffff;
}

.widget-chat-input {
    flex-grow: 1;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.widget-chat-input:focus {
    border-color: var(--accent-orange);
}

.widget-chat-send-btn {
    background: var(--accent-orange);
    color: #ffffff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.widget-chat-send-btn:hover {
    background: #e66000;
}

/* Responsiveness for mobile screens */
@media (max-width: 480px) {
    .floating-social-bar {
        display: none; /* Hide vertical social bar on mobile to avoid overlap */
    }
    
    .floating-chat-widget {
        width: 300px;
        right: 16px;
        bottom: 84px;
    }
}

/* ==========================================
   CONTACT US SECTION STYLES
   ========================================== */
.contact-section-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.contact-info-card {
    background: linear-gradient(135deg, #1e3a8a, #0f4cc2);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(15, 76, 194, 0.15);
}

.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.contact-form-card .form-input:focus,
.contact-form-card .form-select:focus,
.contact-form-card .form-textarea:focus {
    border-color: var(--accent-orange) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}

/* Responsive grid layout */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
}

/* ==========================================
   FEEDBACKS & RATINGS SECTION STYLES
   ========================================== */
.feedback-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    align-items: start;
}

.star-interactive:hover {
    transform: scale(1.15);
    color: #f59e0b !important;
}

.feedback-roster-column::-webkit-scrollbar {
    width: 6px;
}

.feedback-roster-column::-webkit-scrollbar-track {
    background: transparent;
}

.feedback-roster-column::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.feedback-roster-column::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (max-width: 992px) {
    .feedback-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Skeleton Loader Styling & Animations */
.skeleton-hero-placeholder,
.skeleton-trust-item,
.skeleton-features-item,
.skeleton-products-header,
.skeleton-products-item,
.skeleton-auth-placeholder {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-hero-placeholder {
    background: linear-gradient(90deg, #1e3a5f 25%, #2a4e7a 50%, #1e3a5f 75%) !important;
    background-size: 200% 100% !important;
    animation: skeleton-shimmer 1.5s infinite !important;
}

.skeleton-home-loading {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 0;
}

.skeleton-hero-placeholder {
    height: 410px; /* matches actual desktop hero height */
    border-radius: 16px;
}

.skeleton-trust-placeholder {
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 40px;
    border: 1px solid var(--border-color);
}

.skeleton-trust-item {
    width: 150px;
    height: 16px;
    border-radius: 8px;
}

.skeleton-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.skeleton-features-item {
    height: 180px;
    border-radius: 12px;
}

.skeleton-products-header {
    height: 30px;
    width: 280px;
    border-radius: 8px;
    margin: 20px auto 0;
}

.skeleton-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.skeleton-products-item {
    height: 420px;
    border-radius: 12px;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Mobile responsive adjustments for skeleton loader */
@media (max-width: 1024px) {
    .skeleton-hero-placeholder {
        height: 520px; /* matches tablet hero height */
    }
    .skeleton-features-grid {
        grid-template-columns: 1fr;
    }
    .skeleton-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .skeleton-products-item {
        height: 280px; /* matches mobile product card height */
    }
}

@media (max-width: 640px) {
    .skeleton-hero-placeholder {
        height: 735px; /* matches actual mobile hero height */
    }
    .skeleton-trust-placeholder {
        height: auto;
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }
    .skeleton-trust-item {
        width: 80%;
    }
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE ADAPTATIONS
   ========================================== */

/* General Table Horizontal Scroll Wrapper */
.material-list-card {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Responsive Cart Drawer for Mobile */
@media (max-width: 480px) {
    .cart-drawer {
        width: 100% !important;
        right: -100% !important;
    }
    .cart-drawer.open {
        right: 0 !important;
    }
}

/* Responsive Hero Section adjustments */
@media (max-width: 640px) {
    .hero-section {
        padding: 20px !important;
    }
    .hero-content h1 {
        font-size: 28px !important;
    }
    .hero-badges {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .hero-actions .btn {
        width: 100% !important;
    }
    main {
        padding: 20px 12px !important;
    }
    .floating-chat-widget {
        width: calc(100% - 32px) !important;
        right: 16px !important;
    }
}

/* Responsive Admin Portal Layout */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    min-height: 580px;
}

.admin-sidebar {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: fit-content;
    box-shadow: var(--shadow-box);
}

.active-admin-tab {
    color: #ffffff !important;
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

@media (max-width: 768px) {
    .admin-layout {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .admin-sidebar {
        flex-direction: row !important;
        overflow-x: auto !important;
        padding: 12px 16px !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch;
    }
    .admin-sidebar::-webkit-scrollbar {
        display: none !important;
    }
    .admin-sidebar button {
        white-space: nowrap !important;
        width: auto !important;
    }
}




/* ─── Traffic Counter Widget ─────────────────────────────────────────────── */
.traffic-counter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, rgba(30,58,95,0.25) 50%, rgba(255,107,0,0.08) 100%);
    border: 1px solid rgba(255,107,0,0.18);
    border-radius: 16px;
    padding: 18px 32px;
    margin: 24px 0 20px;
    width: 100%;
    max-width: 820px;
    align-self: center;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 0;
}

.traffic-counter-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,107,0,0.04) 50%, transparent 100%);
    animation: traffic-shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes traffic-shimmer {
    0%, 100% { transform: translateX(-100%); }
    50%       { transform: translateX(100%); }
}

.traffic-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 28px;
    position: relative;
    flex: 1;
    min-width: 110px;
}

.traffic-stat + .traffic-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.traffic-stat-icon {
    font-size: 16px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.traffic-stat-icon .material-icons-outlined {
    font-size: 14px;
}

.traffic-stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: all 0.4s ease;
}

.traffic-stat-value.counting {
    animation: count-pop 0.3s ease-out;
}

@keyframes count-pop {
    0%   { transform: scale(1.15); color: var(--accent-orange); }
    100% { transform: scale(1);    color: white; }
}

.traffic-stat-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 500;
}

.traffic-online-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: online-pulse 1.8s ease-in-out infinite;
    margin-right: 2px;
    flex-shrink: 0;
}

@keyframes online-pulse {
    0%, 100% { box-shadow: 0 0 4px #10b981; transform: scale(1); }
    50%       { box-shadow: 0 0 10px #10b981; transform: scale(1.2); }
}

.traffic-counter-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-orange);
    text-align: center;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    width: 100%;
}

.traffic-counter-title::before,
.traffic-counter-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,0.3), transparent);
    max-width: 80px;
}

@media (max-width: 640px) {
    .traffic-counter-bar { padding: 14px 12px; }
    .traffic-stat { padding: 6px 14px; min-width: 80px; }
    .traffic-stat-value { font-size: 18px; }
}

/* ============================================================
   CUSTOMER DASHBOARD — Full Styles
   ============================================================ */

.dashboard-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 130px);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 20px 60px;
    align-items: start;
}

.dashboard-sidebar {
    position: sticky;
    top: 90px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-box);
    margin-right: 24px;
}

.dash-profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 10px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    border-radius: var(--border-radius-md);
    margin-bottom: 8px;
}

.dash-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #ff6b00, #ff9f43);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,107,0,.35);
}

.dash-profile-info { overflow: hidden; }
.dash-profile-name { font-size: 13px; font-weight: 700; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-profile-email { font-size: 10px; color: rgba(255,255,255,.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.dash-profile-badge { display: inline-flex; align-items: center; gap: 3px; font-size: 9px; font-weight: 700; color: #ffd166; margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }

.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); padding: 8px 10px 4px; }

.dash-nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--border-radius-sm);
    font-size: 13px; font-weight: 500; color: var(--text-secondary);
    cursor: pointer; transition: all var(--transition-fast);
    text-decoration: none;
}
.dash-nav-item:hover { background: var(--bg-secondary); color: var(--accent-blue); }
.dash-nav-item.active { background: linear-gradient(135deg, var(--accent-blue), #0f4cc2); color: white; font-weight: 600; box-shadow: 0 4px 12px rgba(30,58,95,.25); }
.dash-nav-item .material-icons-outlined { font-size: 18px; }

.dash-signout-btn {
    display: flex; align-items: center; gap: 8px; justify-content: center;
    padding: 10px; border-radius: var(--border-radius-sm);
    font-size: 13px; font-weight: 600; color: #ef4444;
    background: rgba(239,68,68,.07); border: 1px solid rgba(239,68,68,.2);
    cursor: pointer; transition: all var(--transition-fast); margin-top: 8px;
}
.dash-signout-btn:hover { background: rgba(239,68,68,.14); }

.dashboard-main { min-width: 0; }

.dash-section-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.dash-section-title {
    display: flex; align-items: center; gap: 10px;
    font-size: 22px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary); margin: 0;
}
.dash-section-title .material-icons-outlined { color: var(--accent-orange); font-size: 24px; }
.dash-section-sub { color: var(--text-secondary); font-size: 13px; margin-top: 4px; }

.dash-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 0; }

.dash-stat-card {
    background: var(--bg-primary); border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md); padding: 18px 16px;
    display: flex; flex-direction: column; gap: 10px;
    cursor: pointer; transition: all var(--transition-smooth); box-shadow: var(--shadow-box);
}
.dash-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--accent-blue); }
.dash-stat-icon { width: 44px; height: 44px; border-radius: var(--border-radius-sm); display: flex; align-items: center; justify-content: center; color: white; }
.dash-stat-icon .material-icons-outlined { font-size: 22px; }
.dash-stat-value { font-size: 24px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-primary); }
.dash-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.dash-stat-trend { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-muted); }

.dash-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--border-radius-md); padding: 20px; box-shadow: var(--shadow-box); }
.dash-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }
.dash-card-header h3 { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--text-primary); margin: 0; }
.dash-card-header h3 .material-icons-outlined { font-size: 18px; color: var(--accent-orange); }
.dash-card-action { font-size: 12px; font-weight: 600; color: var(--accent-orange); cursor: pointer; transition: opacity var(--transition-fast); }
.dash-card-action:hover { opacity: .75; }

.dash-order-row { display: grid; grid-template-columns: 1fr auto auto auto auto; align-items: center; gap: 12px; padding: 12px 4px; border-bottom: 1px solid var(--border-color); cursor: pointer; transition: background var(--transition-fast); border-radius: var(--border-radius-sm); }
.dash-order-row:last-child { border-bottom: none; }
.dash-order-row:hover { background: var(--bg-secondary); padding-left: 8px; }

.dash-status-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.status-placed    { background: rgba(59,130,246,.12); color: #2563eb; }
.status-packed    { background: rgba(245,158,11,.12); color: #d97706; }
.status-flight    { background: rgba(255,107,0,.12); color: var(--accent-orange); }
.status-delivered { background: rgba(16,185,129,.12); color: #059669; }

.dash-quick-actions { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 24px; }
.dash-quick-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--border-radius-md); padding: 16px 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; transition: all var(--transition-smooth); text-align: center; font-size: 12px; font-weight: 600; color: var(--text-secondary); box-shadow: var(--shadow-box); }
.dash-quick-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); color: var(--accent-orange); border-color: var(--accent-orange); background: rgba(255,107,0,.04); }
.dash-quick-card .material-icons-outlined { font-size: 24px; color: var(--accent-blue); }
.dash-quick-card:hover .material-icons-outlined { color: var(--accent-orange); }

.dash-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.dash-filter-chip { padding: 7px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; border: 1px solid var(--border-color); background: var(--bg-primary); color: var(--text-secondary); cursor: pointer; transition: all var(--transition-fast); }
.dash-filter-chip:hover { border-color: var(--accent-orange); color: var(--accent-orange); }
.dash-filter-chip.active { background: var(--accent-blue); border-color: var(--accent-blue); color: white; }

.dash-order-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--border-radius-md); margin-bottom: 16px; overflow: hidden; box-shadow: var(--shadow-box); transition: box-shadow var(--transition-fast); }
.dash-order-card:hover { box-shadow: var(--shadow-hover); }
.dash-order-card-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border-color); background: linear-gradient(135deg, rgba(30,58,95,.03) 0%, transparent 100%); }
.dash-order-id { font-weight: 800; font-size: 15px; font-family: 'Plus Jakarta Sans', sans-serif; }
.dash-order-date { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.dash-tracking-bar { padding: 16px 20px; background: linear-gradient(135deg, rgba(255,107,0,.04) 0%, transparent); border-bottom: 1px solid var(--border-color); }
.dash-track-steps { display: flex; align-items: center; }
.dash-track-step { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 72px; }
.dash-track-dot { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-muted); background: var(--bg-secondary); transition: all var(--transition-smooth); }
.dash-track-step.done .dash-track-dot { border-color: var(--success); background: rgba(16,185,129,.12); color: var(--success); }
.dash-track-label { font-size: 10px; font-weight: 600; color: var(--text-muted); text-align: center; }
.dash-track-step.done .dash-track-label { color: var(--success); }
.dash-track-line { flex: 1; height: 2px; background: var(--border-color); margin: 0 4px; margin-bottom: 18px; border-radius: 2px; }
.dash-track-line.done { background: var(--success); }
.dash-eta-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: 20px; margin-top: 12px; background: rgba(255,107,0,.1); color: var(--accent-orange); font-size: 12px; font-weight: 700; }

.dash-order-items { padding: 12px 20px; }
.dash-order-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border-color); }
.dash-order-item:last-child { border-bottom: none; }
.dash-order-item-icon { width: 34px; height: 34px; border-radius: var(--border-radius-sm); background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; color: var(--accent-blue); flex-shrink: 0; }
.dash-order-item-info { flex: 1; min-width: 0; }
.dash-order-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; border-top: 1px solid var(--border-color); background: var(--bg-secondary); }

.dash-order-detail-modal { max-width: 760px; width: 95vw; }
.dash-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--border-color); }
.dash-modal-body { padding: 20px 24px; max-height: 65vh; overflow-y: auto; }
.dash-modal-footer { display: flex; gap: 10px; justify-content: flex-end; padding: 16px 24px; border-top: 1px solid var(--border-color); background: var(--bg-secondary); }
.dash-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dash-detail-section-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 10px; }
.dash-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-secondary); padding: 5px 0; }
.dash-address-block { display: flex; align-items: flex-start; gap: 8px; color: var(--text-secondary); font-size: 13px; line-height: 1.6; }
.dash-address-block .material-icons-outlined { font-size: 16px; color: var(--accent-orange); margin-top: 2px; flex-shrink: 0; }

.dash-invoices-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; }
.dash-invoice-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--border-radius-md); padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; transition: all var(--transition-smooth); box-shadow: var(--shadow-box); }
.dash-invoice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.dash-invoice-icon { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #ef4444, #dc2626); display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; }
.dash-invoice-id { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.dash-invoice-date { font-size: 11px; color: var(--text-muted); }
.dash-invoice-amount { font-size: 18px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--accent-orange); }
.dash-invoice-actions { display: flex; gap: 8px; justify-content: center; }

.dash-avatar-large { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #ff6b00, #ff9f43); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; color: white; box-shadow: 0 6px 20px rgba(255,107,0,.35); flex-shrink: 0; }
.dash-profile-edit-header { display: flex; align-items: center; gap: 16px; }

.dash-form { display: flex; flex-direction: column; gap: 14px; }
.dash-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dash-form-group { display: flex; flex-direction: column; gap: 6px; }
.dash-form-label { font-size: 12px; font-weight: 600; color: var(--text-secondary); }
.dash-input-wrapper { display: flex; align-items: center; gap: 10px; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--border-radius-sm); padding: 0 14px; transition: border-color var(--transition-fast); }
.dash-input-wrapper:focus-within { border-color: var(--accent-orange); background: white; }
.dash-input-wrapper .material-icons-outlined { font-size: 17px; color: var(--text-muted); flex-shrink: 0; }
.dash-input { flex: 1; background: none; border: none; outline: none; font-size: 13px; color: var(--text-primary); padding: 11px 0; font-family: 'Inter', sans-serif; width: 100%; }
.dash-input::placeholder { color: var(--text-muted); }
textarea.dash-input { padding: 12px 14px; border-radius: var(--border-radius-sm); border: 1px solid var(--border-color); background: var(--bg-secondary); resize: vertical; }
textarea.dash-input:focus { border-color: var(--accent-orange); background: white; outline: none; }
select.dash-input { cursor: pointer; }

.dash-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dash-info-item { text-align: center; background: var(--bg-secondary); border-radius: var(--border-radius-sm); padding: 14px; }
.dash-info-label { font-size: 10px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.dash-info-value { font-size: 13px; font-weight: 700; color: var(--text-primary); }

.dash-addresses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; }
.dash-address-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--border-radius-md); padding: 18px; position: relative; transition: all var(--transition-smooth); box-shadow: var(--shadow-box); }
.dash-address-card.default { border-color: var(--accent-orange); background: rgba(255,107,0,.02); }
.dash-address-card:hover { box-shadow: var(--shadow-hover); }
.dash-default-badge { position: absolute; top: 12px; right: 12px; display: inline-flex; align-items: center; gap: 3px; font-size: 10px; font-weight: 700; color: var(--accent-orange); background: rgba(255,107,0,.1); padding: 3px 8px; border-radius: 12px; }
.dash-address-label-badge { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 10px; border-radius: 12px; background: var(--bg-secondary); color: var(--text-secondary); margin-bottom: 10px; }
.dash-address-name { font-weight: 700; font-size: 14px; color: var(--text-primary); margin-bottom: 6px; }
.dash-address-text { font-size: 12px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 8px; }
.dash-address-mobile { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.dash-address-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.dash-add-address-card { border: 2px dashed var(--border-color); border-radius: var(--border-radius-md); padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition-fast); min-height: 160px; text-align: center; color: var(--text-secondary); }
.dash-add-address-card:hover { border-color: var(--accent-orange); color: var(--accent-orange); background: rgba(255,107,0,.03); }

.dash-loyalty-hero { display: flex; align-items: center; gap: 24px; background: linear-gradient(135deg, #1e3a5f 0%, #7c3aed 50%, #0f172a 100%); border-radius: var(--border-radius-lg); padding: 28px 32px; margin-bottom: 20px; color: white; box-shadow: 0 8px 30px rgba(30,58,95,.3); position: relative; overflow: hidden; }
.dash-loyalty-hero::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.06); }
.dash-loyalty-tier-icon { font-size: 52px; line-height: 1; flex-shrink: 0; }
.dash-loyalty-tier-info { flex: 1; }
.dash-loyalty-tier-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #ffd166; margin-bottom: 4px; }
.dash-loyalty-points { font-size: 36px; font-weight: 900; font-family: 'Plus Jakarta Sans', sans-serif; }
.dash-loyalty-points span { color: #ffd166; }

.dash-progress-bar { height: 8px; background: var(--bg-tertiary); border-radius: 4px; overflow: hidden; }
.dash-progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent-orange), #ffd166); border-radius: 4px; transition: width 1s ease; }

.dash-earn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dash-earn-item { text-align: center; padding: 16px 12px; background: var(--bg-secondary); border-radius: var(--border-radius-md); transition: all var(--transition-fast); cursor: default; }
.dash-earn-item:hover { background: var(--accent-orange); }
.dash-earn-icon { font-size: 24px; color: var(--accent-orange); margin-bottom: 8px; }
.dash-earn-item:hover .dash-earn-icon { color: white; }
.dash-earn-label { font-size: 12px; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }
.dash-earn-pts { font-size: 14px; font-weight: 800; color: var(--text-primary); }
.dash-earn-item:hover .dash-earn-label, .dash-earn-item:hover .dash-earn-pts { color: white; }

.dash-points-history { display: flex; flex-direction: column; }
.dash-points-row { display: flex; align-items: center; gap: 12px; padding: 12px 4px; border-bottom: 1px solid var(--border-color); }
.dash-points-row:last-child { border-bottom: none; }
.dash-pts-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dash-pts-icon.credit { background: rgba(16,185,129,.1); color: var(--success); }
.dash-pts-amount { margin-left: auto; font-weight: 700; font-size: 13px; }
.dash-pts-amount.credit { color: var(--success); }

.dash-session-item { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--bg-secondary); border-radius: var(--border-radius-sm); }
.dash-session-icon { width: 38px; height: 38px; border-radius: var(--border-radius-sm); background: var(--bg-primary); display: flex; align-items: center; justify-content: center; color: var(--accent-blue); }

.dash-notif-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border-color); }
.dash-notif-row:last-of-type { border-bottom: none; }
.dash-toggle { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.dash-toggle input { opacity: 0; width: 0; height: 0; }
.dash-toggle-slider { position: absolute; cursor: pointer; inset: 0; background: var(--bg-tertiary); border-radius: 26px; transition: .3s; border: 1px solid var(--border-color); }
.dash-toggle-slider::before { content: ''; position: absolute; height: 20px; width: 20px; left: 2px; bottom: 2px; background: white; border-radius: 50%; transition: .3s; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.dash-toggle input:checked + .dash-toggle-slider { background: var(--accent-orange); border-color: var(--accent-orange); }
.dash-toggle input:checked + .dash-toggle-slider::before { transform: translateX(20px); }

.dash-support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dash-support-card { background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--border-radius-md); padding: 24px 20px; text-align: center; box-shadow: var(--shadow-box); transition: all var(--transition-smooth); }
.dash-support-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.dash-support-card h3 { font-size: 14px; font-weight: 700; margin: 12px 0 6px; }
.dash-support-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }
.dash-support-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; margin: 0 auto; }
.dash-support-icon .material-icons-outlined { font-size: 24px; }

.dash-faq-item { border-bottom: 1px solid var(--border-color); }
.dash-faq-item:last-child { border-bottom: none; }
.dash-faq-question { display: flex; align-items: center; gap: 10px; padding: 14px 4px; font-size: 13px; font-weight: 600; color: var(--text-primary); cursor: pointer; list-style: none; }
.dash-faq-question::-webkit-details-marker { display: none; }
details[open] .dash-faq-question { color: var(--accent-orange); }
.dash-faq-answer { padding: 0 24px 14px; font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

.dash-empty-state { text-align: center; padding: 48px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.dash-empty-state .material-icons-outlined { font-size: 52px; color: var(--text-muted); }
.dash-empty-state p { color: var(--text-secondary); font-size: 14px; }

@media (max-width: 1100px) {
    .dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-quick-actions { grid-template-columns: repeat(3, 1fr); }
    .dash-info-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-earn-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .dashboard-shell { grid-template-columns: 1fr; padding: 16px; gap: 16px; }
    .dashboard-sidebar { position: static; margin-right: 0; }
    .dash-nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
    .dash-nav-label { display: none; }
    .dash-nav-item { padding: 8px 10px; font-size: 12px; }
    .dash-nav-item span:last-child { display: none; }
    .dash-nav-item .material-icons-outlined { font-size: 20px; }
    .dash-detail-grid { grid-template-columns: 1fr; }
    .dash-support-grid { grid-template-columns: 1fr; }
    .dash-loyalty-hero { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .dash-stats-grid { grid-template-columns: 1fr 1fr; }
    .dash-quick-actions { grid-template-columns: repeat(3, 1fr); }
    .dash-form-row { grid-template-columns: 1fr; }
    .dash-order-card-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .dash-section-header { flex-direction: column; }
    .dash-invoices-grid { grid-template-columns: 1fr; }
    .dash-addresses-grid { grid-template-columns: 1fr; }
    .dash-earn-grid { grid-template-columns: 1fr 1fr; }
}
