/* ==========================================================================
   ARTTECHES.COM — Master Public Design System & Light Mode Stylesheet
   Identity: White (Primary) + Artteches Orange (Accent) + Black/Charcoal (Typography)
   ========================================================================== */

:root {
    --bg-body: #ffffff;
    --bg-surface: #f8fafc;
    --bg-card: #ffffff;
    --bg-muted: #f1f5f9;
    --bg-dark-accent: #0f172a;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;
    
    --accent-orange: #f97316;
    --accent-orange-hover: #ea580c;
    --accent-orange-light: rgba(249, 115, 22, 0.08);
    --accent-orange-border: rgba(249, 115, 22, 0.3);
    
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 30px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
    --bg-body: #090d16;
    --bg-surface: #0f172a;
    --bg-card: #1e293b;
    --bg-muted: #1e293b;
    --bg-dark-accent: #020617;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --text-inverse: #0f172a;
    
    --accent-orange: #ff6a00;
    --accent-orange-hover: #ff8533;
    --accent-orange-light: rgba(255, 106, 0, 0.15);
    --accent-orange-border: rgba(255, 106, 0, 0.4);
    
    --border-color: #334155;
    --border-hover: #475569;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 35px -5px rgba(0, 0, 0, 0.6);
}

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

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

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

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

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

/* UTILITY CLASSES */
.orange-text { color: var(--accent-orange); }
.text-muted { color: var(--text-muted); }
.text-danger { color: #ef4444; }
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* BUTTONS */
.btn-primary-lg, .btn-primary-full, .btn-header-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent-orange);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}
.btn-primary-lg:hover, .btn-primary-full:hover, .btn-header-register:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-outline-lg, .btn-outline-full, .btn-header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.btn-outline-lg:hover, .btn-outline-full:hover, .btn-header-login:hover {
    border-color: var(--text-primary);
    background: var(--bg-surface);
}

.btn-header-login { padding: 8px 16px; font-size: 14px; border: 1px solid var(--border-color); }
.btn-header-register { padding: 8px 18px; font-size: 14px; }

/* SLIM TOP UTILITY BAR (Executive Dark Slate Design) */
.top-utility-bar {
    background: #0f172a;
    border-bottom: 1px solid #1e293b;
    font-size: 12px;
    color: #cbd5e1;
    padding: 6px 0;
    transition: background var(--transition-fast);
}
.utility-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.utility-left { display: flex; align-items: center; gap: 12px; }
.utility-welcome-text { font-weight: 500; color: #cbd5e1; display: flex; align-items: center; gap: 8px; }
.utility-welcome-text i { color: #ff6a00; }
.utility-right { display: flex; align-items: center; gap: 16px; }
.utility-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}
.utility-link:hover { color: #ff6a00; }

/* UTILITY SELECT PILLS (Sleek Native Select Controls) */
.utility-select-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    padding: 3px 8px;
    color: #f8fafc;
    transition: all var(--transition-fast);
}
.utility-select-pill:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #ff6a00;
}
.select-icon {
    font-size: 11px;
    color: #ff6a00;
}
.utility-select {
    background: transparent;
    border: none;
    color: #f8fafc;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}
.utility-select option {
    background: #1e293b;
    color: #f8fafc;
    font-size: 12px;
    padding: 6px;
}

.utility-dropdown-wrapper { position: relative; }
.utility-dropdown-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f8fafc;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all var(--transition-fast);
}
.utility-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #ff6a00;
    color: #ff6a00;
}
.utility-dropdown-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 190px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all var(--transition-fast);
    z-index: 1200;
}
.utility-dropdown-menu.dropdown-right { left: auto; right: 0; }
.utility-dropdown-wrapper:hover .utility-dropdown-menu {
    display: flex !important;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.utility-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 12px;
    color: #f8fafc;
    text-decoration: none;
    border-radius: 6px;
    transition: background var(--transition-fast);
}
.utility-dropdown-item:hover, .utility-dropdown-item.active {
    background: rgba(255, 106, 0, 0.18);
    color: #ff6a00;
    font-weight: 600;
}

/* MASTER STICKY HEADER */
.master-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-body);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.master-header.scrolled {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--border-hover);
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-logo-link:hover { transform: translateY(-1px) scale(1.02); }
.brand-emblem {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #ff6a00 0%, #ee5100 100%);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
    transition: all 0.25s ease;
}
.brand-logo-link:hover .brand-emblem {
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
    transform: rotate(-3deg);
}
.brand-name {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

/* CENTER SEARCH INPUT */
.header-search-bar {
    flex: 1;
    max-width: 480px;
    position: relative;
    display: flex;
    align-items: center;
}
.search-bar-icon {
    position: absolute;
    left: 16px;
    color: var(--accent-orange);
    font-size: 14px;
    pointer-events: none;
    transition: transform 0.2s ease;
}
.header-search-input {
    width: 100%;
    height: 42px;
    padding: 0 46px 0 42px;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.header-search-input:hover, .header-search-input:focus {
    background: var(--bg-card);
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}
.header-search-bar .search-kbd-badge {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
kbd {
    background: var(--bg-muted);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
}

/* ACTION BUTTONS */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-action-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.icon-action-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    background: var(--accent-orange-light);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.15);
}

/* PRIMARY NAVIGATION ROW BELOW MAIN HEADER */
.primary-nav-bar {
    background: var(--bg-body);
    border-top: 1px solid var(--border-color);
    padding: 3px 0;
}
.primary-nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* DESKTOP NAVIGATION */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.nav-link:hover {
    color: var(--accent-orange);
    background: var(--accent-orange-light);
}
.nav-link.active {
    color: var(--accent-orange);
    background: var(--accent-orange-light);
    font-weight: 700;
}
.dropdown-arrow {
    font-size: 11px;
    transition: transform 0.25s ease;
}
.nav-dropdown-wrapper:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* MEGA MENU STYLING (Executive Clean Design System) */
.primary-nav-bar { position: relative; z-index: 1010; }
.primary-nav-container { position: relative; max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.desktop-nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
    transition: all 0.2s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}
.nav-link:hover {
    color: var(--accent-orange);
    background: var(--accent-orange-light);
}
.nav-link.active {
    color: var(--accent-orange);
    background: var(--accent-orange-light);
    font-weight: 700;
}

.mega-dropdown-wrapper { position: static !important; }

.mega-menu-panel {
    position: absolute;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    transform: translateY(8px) !important;
    width: 980px;
    max-width: 100%;
    min-height: 280px;
    padding: 26px 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 24px 50px -10px rgba(15, 23, 42, 0.16), 0 4px 14px rgba(15, 23, 42, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1200;
}

[data-theme="dark"] .mega-menu-panel {
    background: #0f172a;
    border-color: #1e293b;
    box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.65), 0 4px 14px rgba(0, 0, 0, 0.45);
}

.mega-menu-panel::before {
    content: '';
    position: absolute;
    top: -1px; left: 24px; right: 24px; height: 3px;
    background: linear-gradient(90deg, #ff6a00 0%, #3b82f6 50%, #a855f7 100%);
    border-radius: 3px 3px 0 0;
}

.mega-dropdown-wrapper:hover .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.mega-menu-grid {
    display: grid;
    gap: 22px;
    align-items: stretch;
}
.mega-grid-4 { grid-template-columns: repeat(4, 1fr); }
.mega-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mega-grid-2 { grid-template-columns: repeat(2, 1fr); }
.span-2 { grid-column: span 2; }

.mega-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.mega-grid-4 .mega-col:not(:last-child),
.mega-grid-3 .mega-col:not(:last-child):not(.span-2) {
    border-right: 1px solid var(--border-color);
    padding-right: 18px;
}

.mega-col-heading {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding-bottom: 8px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 4px;
    min-height: 48px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-item:hover {
    background: var(--bg-surface);
    color: var(--accent-orange);
    transform: translateX(4px);
}
.mega-item-title { font-weight: 700; font-size: 13px; color: var(--text-primary); line-height: 1.25; }
.mega-item-desc { font-weight: 500; font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.mega-item:hover .mega-item-title { color: var(--accent-orange); }

/* CATEGORY HERO SPOTLIGHT BANNER */
.mega-category-banner {
    height: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    background: linear-gradient(135deg, #090d16 0%, #1e1b4b 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}
.cat-banner-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 800; color: #ff6a00;
    background: rgba(255, 106, 0, 0.15); border: 1px solid rgba(255, 106, 0, 0.3);
    padding: 4px 10px; border-radius: var(--radius-full);
    letter-spacing: 0.06em; align-self: flex-start;
}
.cat-banner-title { font-size: 15px; font-weight: 800; line-height: 1.35; margin-top: 10px; margin-bottom: 6px; color: #ffffff; }
.cat-banner-desc { font-size: 11.5px; color: #cbd5e1; line-height: 1.5; margin-bottom: 16px; }

/* CATEGORIES RICH GRID (2 Columns x 3 Rows) */
.mega-categories-rich-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.mega-category-card-rich {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    text-decoration: none;
    min-height: 72px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.mega-category-card-rich:hover {
    border-color: var(--accent-orange);
    background: var(--bg-card);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(249, 115, 22, 0.15);
}
.cat-card-icon-rich {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.mega-category-card-rich:hover .cat-card-icon-rich {
    transform: scale(1.1) rotate(-4deg);
}
.cat-card-info-rich { flex: 1; min-width: 0; }
.cat-card-name-rich { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.cat-card-desc-rich { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.cat-card-tag { font-size: 9.5px; font-weight: 800; color: var(--accent-orange); background: var(--accent-orange-light); padding: 2px 7px; border-radius: 4px; display: inline-block; }
.cat-card-arrow-rich { font-size: 12px; color: var(--text-muted); transition: transform 0.2s ease, color 0.2s ease; }
.mega-category-card-rich:hover .cat-card-arrow-rich { transform: translateX(3px); color: var(--accent-orange); }

/* MEGA ICON WRAPPER COLORS */
.mega-icon-wrapper {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.mega-item:hover .mega-icon-wrapper { transform: scale(1.08); }
.icon-orange { background: rgba(249, 115, 22, 0.12); color: #f97316; }
.icon-purple { background: rgba(168, 85, 247, 0.12); color: #a855f7; }
.icon-red { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.icon-emerald { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.icon-blue { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.icon-pink { background: rgba(236, 72, 153, 0.12); color: #ec4899; }
.icon-amber { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.icon-indigo { background: rgba(99, 102, 241, 0.12); color: #6366f1; }
.icon-teal { background: rgba(20, 184, 166, 0.12); color: #14b8a6; }
.icon-cyan { background: rgba(6, 182, 212, 0.12); color: #06b6d4; }

/* MEGA COURSES GRID */
.mega-courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mega-course-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    min-height: 64px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-course-card:hover {
    border-color: var(--accent-orange);
    background: var(--bg-card);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.12);
}
.mega-crs-thumb { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.mega-crs-info { flex: 1; min-width: 0; }
.crs-title { font-size: 12px; font-weight: 700; color: var(--text-primary); line-height: 1.25; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crs-meta-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.crs-instructor { font-weight: 600; }
.crs-rating { font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 3px; }
.crs-price { font-size: 11.5px; font-weight: 800; color: var(--accent-orange); }

/* MEGA PROMO & DEALS BANNERS (Equalized Heights) */
.mega-promo-card, .mega-live-banner, .mega-deals-banner {
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.mega-promo-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.mega-live-banner {
    background: linear-gradient(135deg, #090d16 0%, #0f172a 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.mega-deals-banner {
    background: linear-gradient(135deg, #090d16 0%, #1e1b4b 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.promo-badge, .live-badge, .deals-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px; font-weight: 800;
    padding: 3px 9px; border-radius: var(--radius-full);
    margin-bottom: 8px; letter-spacing: 0.06em; text-transform: uppercase;
}
.promo-badge { color: #ff6a00; background: rgba(255, 106, 0, 0.15); border: 1px solid rgba(255, 106, 0, 0.3); }
.live-badge { color: #22c55e; background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3); }
.deals-badge { color: #ff6a00; background: rgba(255, 106, 0, 0.15); border: 1px solid rgba(255, 106, 0, 0.3); }

.promo-title, .live-session-title, .deals-title { font-size: 14.5px; font-weight: 800; line-height: 1.35; margin-bottom: 4px; color: #ffffff; }
.promo-desc, .live-session-time, .deals-desc { font-size: 11.5px; color: #cbd5e1; margin-bottom: 12px; line-height: 1.45; }

/* MEGA CATEGORY CARDS */
.mega-category-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    min-height: 64px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-category-card:hover {
    border-color: var(--accent-orange);
    background: var(--bg-card);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.1);
}
.cat-card-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--accent-orange-light);
    color: var(--accent-orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.mega-category-card:hover .cat-card-icon {
    transform: scale(1.08);
    background: var(--accent-orange);
    color: #ffffff;
}
.cat-card-info { flex: 1; min-width: 0; }
.cat-card-name { font-size: 12.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 1px; }
.cat-card-desc { font-size: 10.5px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-card-count { font-size: 9.5px; font-weight: 800; color: var(--accent-orange); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 1px; }

/* MEGA FOOTER BAR */
.mega-footer-bar {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mega-footer-link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--accent-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}
.mega-footer-link:hover { gap: 8px; }

/* MEGA PROMO BANNER CARD */
.mega-promo-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}
.mega-promo-card::after {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
    pointer-events: none;
}
.promo-badge { font-size: 10px; font-weight: 800; color: #ff6a00; letter-spacing: 0.08em; margin-bottom: 8px; text-transform: uppercase; }
.promo-title { font-size: 16px; font-weight: 800; line-height: 1.35; margin-bottom: 8px; color: #ffffff; }
.promo-desc { font-size: 12px; color: #cbd5e1; margin-bottom: 16px; line-height: 1.5; }
.promo-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px; background: linear-gradient(135deg, #ff6a00 0%, #ee5100 100%);
    color: #fff; text-decoration: none; border-radius: var(--radius-md);
    font-weight: 700; font-size: 12px;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.promo-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(249, 115, 22, 0.5); }

/* LIVE BANNER CARD */
.mega-live-banner {
    background: linear-gradient(135deg, #090d16 0%, #0f172a 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-xl);
    padding: 20px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.live-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 800; color: #22c55e;
    background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 3px 10px; border-radius: var(--radius-full);
    margin-bottom: 10px;
}
.live-session-title { font-size: 15px; font-weight: 800; margin-bottom: 6px; color: #ffffff; }
.live-session-time { font-size: 12px; color: #94a3b8; display: flex; align-items: center; gap: 6px; }

/* CREATOR CARDS */
.mega-creator-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.2s ease;
}
.mega-creator-card:hover {
    border-color: var(--accent-orange);
    background: var(--bg-card);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.creator-avatar-sm { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-color); }
.creator-name-sm { font-size: 13px; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 4px; }
.verified-icon { color: #3b82f6; font-size: 11px; }
.creator-products-sm { font-size: 11px; color: var(--text-muted); }

/* DEALS FIRE BADGE FLICKER */
.deals-fire-badge {
    display: inline-block;
    animation: flameFlicker 1.4s infinite ease-in-out;
}
@keyframes flameFlicker {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(6deg); opacity: 0.85; }
}

/* NOTIFICATIONS PANEL */
.notif-dropdown-panel { width: 350px; border-radius: var(--radius-xl); padding: 0; }
.notif-panel-body { max-height: 300px; overflow-y: auto; padding: 8px; }
.notif-item { display: flex; gap: 12px; padding: 10px; border-radius: var(--radius-md); transition: background var(--transition-fast); }
.notif-item:hover { background: var(--bg-surface); }
.notif-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.notif-time { font-size: 11px; color: var(--text-muted); }

/* USER DROPDOWN POPOVER */
.nav-dropdown-wrapper { position: relative; }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 230px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.18);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1200;
}
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-header-user {
    padding: 10px 12px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    margin-bottom: 6px;
}
.dropdown-header-user strong { display: block; font-size: 14px; color: var(--text-primary); }
.dropdown-header-user small { color: var(--text-muted); font-size: 11px; word-break: break-all; }
.dropdown-divider { height: 1px; background: var(--border-color); margin: 6px 0; }
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.15s ease;
}
.dropdown-item:hover {
    background: var(--accent-orange-light);
    color: var(--accent-orange);
}
.dropdown-icon { font-size: 14px; width: 18px; text-align: center; color: var(--text-muted); }
.dropdown-item:hover .dropdown-icon { color: var(--accent-orange); }

/* MOBILE BOTTOM NAVIGATION BAR */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 62px;
    background: var(--bg-body);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 1040;
    justify-content: space-around;
    align-items: center;
    backdrop-filter: blur(16px);
}
.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mobile-bottom-item i { font-size: 18px; }
.mobile-bottom-item.active { color: var(--accent-orange); font-weight: 700; }

@media (max-width: 992px) {
    .header-search-bar { display: none; }
    .top-utility-bar { display: none; }
    .primary-nav-bar { display: none; }
    .mobile-bottom-nav { display: flex; }
}

.action-badge {
    position: absolute;
    top: -3px; right: -3px;
    background: #0f172a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px; height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.action-badge.orange-badge {
    background: linear-gradient(135deg, #ff6a00 0%, #ee5100 100%);
}

.btn-header-login {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-header-login:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
}

.btn-header-register {
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6a00 0%, #ee5100 100%);
    border-radius: 10px;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-header-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
    color: #ffffff;
}

.live-pulse-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.mobile-menu-btn {
    display: none;
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 18px;
    color: #334155;
    cursor: pointer;
}

/* USER PROFILE BUTTON */
.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    cursor: pointer;
}
.user-avatar-img {
    width: 32px; height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.user-profile-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }

/* COMMAND SEARCH PALETTE MODAL */
.search-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.search-modal-container {
    width: 100%; max-width: 680px;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    animation: modalSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalSlideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.search-input-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    gap: 12px;
}
.search-modal-icon { font-size: 20px; color: var(--accent-orange); }
.search-modal-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 17px;
    color: var(--text-primary);
}
.search-modal-close-btn {
    border: none; background: transparent;
    font-size: 18px; color: var(--text-muted);
    cursor: pointer;
}

.search-quick-tags {
    padding: 12px 20px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 12px;
}
.quick-tag-label { font-weight: 700; color: var(--text-muted); }
.quick-search-tag {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.quick-search-tag:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.search-results-body {
    max-height: 380px;
    overflow-y: auto;
    padding: 16px 20px;
}
.search-initial-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 14px;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}
.search-result-item:hover { background: var(--bg-surface); }
.search-result-thumb {
    width: 48px; height: 36px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.search-modal-footer {
    padding: 12px 20px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* DRAWERS & MODALS */
.drawer-overlay, .modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
}
.drawer-panel {
    position: absolute;
    top: 0; right: 0; width: 400px; max-width: 90vw; height: 100vh;
    background: #ffffff;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    animation: drawerSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes drawerSlideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drawer-title { font-size: 18px; font-weight: 800; color: var(--text-primary); }
.drawer-close-btn { border: none; background: transparent; font-size: 20px; color: var(--text-muted); cursor: pointer; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.drawer-footer { padding: 20px; border-top: 1px solid var(--border-color); background: var(--bg-surface); }

.cart-subtotal-row {
    display: flex; justify-content: space-between;
    font-size: 16px; font-weight: 700; color: var(--text-primary);
    margin-bottom: 16px;
}
.cart-drawer-btns { display: flex; flex-direction: column; gap: 10px; }

/* QUICK VIEW MODAL */
.quick-view-modal-container {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; max-width: 92vw;
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: modalPop 0.25s ease;
}
@keyframes modalPop {
    from { transform: translate(-50%, -46%) scale(0.96); opacity: 0; }
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.modal-close-btn {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #ffffff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
}
.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px;
}
.quick-view-img {
    width: 100%; height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* SECTION PADDING & TITLES */
.section-padding { padding: 80px 0; }
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.section-tag {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-orange);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.section-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

/* HERO SLIDER SECTION */
.hero-slider-section {
    padding: 70px 0 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-surface) 100%);
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-main-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.hero-main-title span { color: var(--accent-orange); }
.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 540px;
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-composition {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.hero-showcase-frame {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.hero-showcase-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 35px -5px rgba(15, 23, 42, 0.15);
}

.hero-showcase-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}
.hero-window-dots {
    display: flex;
    gap: 6px;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }

.hero-window-title {
    font-family: monospace;
    font-size: 11px;
    color: var(--text-muted);
}
.hero-window-badge {
    font-weight: 700;
    font-size: 11px;
    color: var(--text-secondary);
}

.hero-showcase-media {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--bg-dark-accent);
}
.hero-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hero-showcase-frame:hover .hero-showcase-img {
    transform: scale(1.03);
}

.hero-media-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.95) 100%);
    color: #ffffff;
}
.hero-overlay-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent-orange);
    margin-bottom: 4px;
}
.hero-overlay-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
}
.hero-overlay-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #cbd5e1;
}
.hero-overlay-price {
    color: var(--accent-orange);
    font-size: 17px;
    font-weight: 900;
}

.hero-floating-chip {
    position: absolute;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 12px;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    display: flex; align-items: center; gap: 8px;
    animation: floatAnim 4s ease-in-out infinite;
    white-space: nowrap;
}
.chip-top-right {
    top: -14px; right: -14px;
}
.chip-bottom-left {
    bottom: -14px; left: -14px;
    animation-delay: 2s;
}
.chip-bottom-right {
    bottom: 30px; right: -20px;
    animation-delay: 1s;
}

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

/* TRUST BAR */
.trust-bar-section {
    padding: 24px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-orange);
}
.trust-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* CAROUSEL CONTAINERS */
.carousel-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 12px;
    scrollbar-width: none;
}
.carousel-container::-webkit-scrollbar { display: none; }

.category-chip-card {
    min-width: 170px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--transition-smooth);
    flex-shrink: 0;
}
.category-chip-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.category-chip-img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px auto;
}
.category-chip-name { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.category-chip-count { font-size: 12px; color: var(--text-muted); }

/* PRODUCT CARDS */
.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
    position: relative;
}
.product-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.product-card-thumb-wrap {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background: var(--bg-muted);
}
.product-card-thumb {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-thumb { transform: scale(1.05); }

.card-quick-actions {
    position: absolute;
    top: 12px; right: 12px;
    display: flex; flex-direction: column; gap: 8px;
    z-index: 5;
}
.card-icon-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}
.card-icon-btn:hover { background: var(--accent-orange); color: #fff; border-color: var(--accent-orange); }

.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-meta-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.card-category-badge { font-size: 11px; font-weight: 700; color: var(--accent-orange); text-transform: uppercase; }
.card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-creator-row {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-secondary);
    margin-bottom: 16px;
}
.card-creator-avatar { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.card-footer-row {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-price { font-size: 18px; font-weight: 800; color: var(--text-primary); }
.card-sale-price { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-right: 6px; }

/* CREATORS CARDS */
.creator-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-smooth);
}
.creator-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.creator-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px auto;
    border: 3px solid var(--border-color);
    transition: border-color var(--transition-fast);
}
.creator-card:hover .creator-avatar { border-color: var(--accent-orange); }

.creator-name { font-size: 16px; font-weight: 800; color: var(--text-primary); }
.creator-role { font-size: 12px; color: var(--accent-orange); font-weight: 600; margin-bottom: 12px; }
.creator-stats { display: flex; justify-content: center; gap: 16px; font-size: 12px; color: var(--text-muted); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-color); }

/* MASTER FOOTER */
.master-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 30px 0;
    margin-top: 80px;
}
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-bio-text { color: var(--text-secondary); max-width: 440px; margin: 16px 0; font-size: 14px; }
.footer-status-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; background: var(--bg-surface); padding: 6px 12px; border-radius: var(--radius-full); border: 1px solid var(--border-color); }

.newsletter-form { display: flex; gap: 10px; margin-top: 14px; }
.newsletter-input { flex: 1; padding: 12px 16px; border: 1px solid var(--border-color); border-radius: var(--radius-md); font-size: 14px; outline: none; }
.newsletter-input:focus { border-color: var(--accent-orange); }
.newsletter-btn { background: var(--accent-orange); color: #fff; border: none; font-weight: 700; padding: 0 20px; border-radius: var(--radius-md); cursor: pointer; }

.footer-divider { height: 1px; background: var(--border-color); margin: 30px 0; }

.footer-links-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.footer-col-title { font-size: 15px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.footer-links-list a:hover { color: var(--accent-orange); }

.footer-social-box { display: flex; gap: 10px; }
.footer-social-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}
.footer-social-btn:hover { background: var(--accent-orange); color: #fff; border-color: var(--accent-orange); }

.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); margin-top: 20px; }
.footer-bottom-links { display: flex; gap: 10px; align-items: center; }
.footer-bottom-links a:hover { color: var(--accent-orange); }
.dot-sep { color: var(--border-color); }

/* TOAST NOTIFICATIONS */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast-message {
    background: var(--bg-dark-accent);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn 0.3s ease;
}
@keyframes toastIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1200px) {
    .cards-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-main-title { font-size: 40px; }
    .hero-cta-group { justify-content: center; }
    .hero-composition { height: 340px; }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top-grid { grid-template-columns: 1fr; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .search-kbd-badge { display: none; }
    .footer-links-grid { grid-template-columns: 1fr; }
    .cards-grid-4 { grid-template-columns: 1fr; }
    .trust-bar-grid { grid-template-columns: 1fr; }
    .quick-view-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   AUTHENTICATION LAYOUT ARCHITECTURE (DESKTOP & MOBILE SHELLS)
   ========================================================================== */
.auth-page-wrapper {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* MOBILE AUTH SHELL (< 1024px) */
@media (max-width: 1023px) {
    .desktop-auth-shell {
        display: none !important;
    }

    .mobile-auth-shell {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: calc(100dvh - 120px);
        padding: max(20px, env(safe-area-inset-top)) 16px max(20px, env(safe-area-inset-bottom)) 16px;
        box-sizing: border-box;
    }

    .mobile-auth-card {
        width: 100%;
        max-width: 420px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        padding: 28px 22px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
        box-sizing: border-box;
    }

    .mobile-auth-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .mobile-auth-header-text {
        text-align: center;
        margin-bottom: 24px;
    }

    .mobile-auth-title {
        font-size: 22px;
        font-weight: 800;
        color: #0f172a;
        margin: 0 0 6px 0;
        letter-spacing: -0.02em;
    }

    .mobile-auth-subtitle {
        font-size: 13px;
        color: #64748b;
        margin: 0;
        line-height: 1.4;
    }

    .mobile-auth-footer-link {
        margin-top: 22px;
        text-align: center;
        font-size: 13px;
        color: #64748b;
    }

    .mobile-auth-header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        height: 56px;
        background: #ffffff;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        z-index: 9999;
    }

    .mobile-auth-back-link {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #64748b;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-auth-help-link {
        font-size: 13px;
        color: #ff5500;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-auth-legal-footer {
        width: 100%;
        padding: 16px;
        text-align: center;
        background: transparent;
        margin-top: auto;
    }

    .auth-legal-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 12px;
        color: #64748b;
        margin-bottom: 6px;
    }

    .auth-legal-links a {
        color: #64748b;
        text-decoration: none;
    }

    .auth-legal-copyright {
        font-size: 11px;
        color: #94a3b8;
    }

    /* STRICT DESKTOP SUPPRESSION ON MOBILE AUTH */
    body.auth-page .master-header,
    body.auth-page .master-footer,
    body.auth-page .mobile-bottom-nav {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* DESKTOP AUTH SHELL (>= 1024px) */
@media (min-width: 1024px) {
    .mobile-auth-shell,
    .mobile-auth-header,
    .mobile-auth-legal-footer {
        display: none !important;
    }

    .desktop-auth-shell {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 24px;
        min-height: calc(100vh - 140px);
    }
}

/* AUTH FORM INPUT WITH ICONS */
.input-with-icon,
.pwd-wrapper {
    position: relative;
    width: 100%;
}

.input-with-icon .input-icon,
.pwd-wrapper .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
}

.input-with-icon .form-input,
.pwd-wrapper .form-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input-with-icon .form-input:focus,
.pwd-wrapper .form-input:focus {
    border-color: #ff5500;
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.12);
}

.pwd-wrapper .pwd-toggle-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
}

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

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

.forgot-link {
    font-size: 12px;
    color: #ff5500;
    font-weight: 600;
    text-decoration: none;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
}

.checkbox-label input {
    accent-color: #ff5500;
    width: 16px;
    height: 16px;
}

.auth-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff5500, #e04b00);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 85, 0, 0.25);
    transition: transform 0.15s ease, background 0.15s ease;
}

.auth-submit-btn:active {
    transform: scale(0.98);
}

.orange-link {
    color: #ff5500;
    font-weight: 700;
    text-decoration: none;
}

.auth-error-alert {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   21-SECTION EXTREME PREMIUM DESKTOP HOMEPAGE DESIGN SYSTEM
   Visual Ratio: 70% White / 20% Black / 10% Orange Accent
   ========================================================================== */

/* ASYMMETRIC HERO COMPOSITION (45% LEFT / 55% RIGHT) */
.hero-asymmetric-sec {
    padding: 56px 0 48px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}
.hero-asymmetric-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 52px;
    align-items: center;
}
.hero-quick-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    font-size: 13px;
    font-weight: 700;
}
.hero-quick-links a {
    color: #475569;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.hero-quick-links a:hover {
    color: var(--accent-orange);
}

/* HORIZONTAL TRUST & STATS STRIP */
.stats-strip-sec {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 32px 0;
}
.stats-strip-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stat-col {
    text-align: center;
    flex: 1;
}
.stat-val {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 2px;
}
.stat-lbl {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stat-divider-line {
    width: 1px;
    height: 40px;
    background: #cbd5e1;
}

/* CATEGORY UNIVERSE GRID */
.category-universe-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.cat-card-universe {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 16px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-card-universe:hover {
    transform: translateY(-6px);
    border-color: var(--accent-orange);
    box-shadow: 0 16px 36px rgba(255, 85, 0, 0.12);
}
.cat-card-universe .cat-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #fff7ed;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
    transition: transform 0.25s ease;
}
.cat-card-universe:hover .cat-icon-container {
    transform: scale(1.1);
}

/* CREATOR SPOTLIGHT SPLIT SECTION */
.creator-spotlight-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: stretch;
}
.featured-creator-hero-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid #334155;
    border-radius: 24px;
    padding: 36px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* WHY ARTTECHES 6 FEATURE BLOCKS */
.why-artteches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-num-badge {
    font-size: 13px;
    font-weight: 900;
    color: var(--accent-orange);
    background: var(--accent-orange-light);
    border: 1px solid var(--accent-orange-border);
    padding: 3px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 14px;
}

/* ARTTECHES ECOSYSTEM NODE VISUALIZATION */
.ecosystem-node-sec {
    background: #0b0f19;
    color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    position: relative;
    overflow: hidden;
}
.ecosystem-node-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.node-center-emblem {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,85,0,0.25) 0%, rgba(15,23,42,0.95) 75%);
    border: 2px solid var(--accent-orange);
    box-shadow: 0 0 50px rgba(255, 85, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 48px auto;
    text-align: center;
}
.node-grid-around {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.node-pill-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 85, 0, 0.3);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}
.node-pill-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 24px rgba(255, 85, 0, 0.3);
    transform: translateY(-4px);
}

/* FREE RESOURCES GRID */
.free-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.free-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.25s ease;
}
.free-card:hover {
    border-color: #10b981;
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.1);
}

/* DRAMATIC BLACK CTA SECTION */
.black-cta-sec {
    background: linear-gradient(135deg, #05070a 0%, #0f172a 100%);
    border-radius: 32px;
    padding: 64px 56px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    border: 1px solid #1e293b;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

/* CREATOR CARD MULTI-BACKGROUND DESIGN SYSTEM (STYLES A - E) */
.creator-card-style-a {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    border: 1px solid #ffedd5;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.25s ease;
}
.creator-card-style-a:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 16px 36px rgba(255, 85, 0, 0.12);
    transform: translateY(-5px);
}

.creator-card-style-b {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 24px;
    color: #ffffff;
    transition: all 0.25s ease;
}
.creator-card-style-b:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.creator-card-style-c {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--accent-orange);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.25s ease;
}
.creator-card-style-c:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.creator-card-style-d {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.25s ease;
}
.creator-card-style-d:hover {
    border-color: #0f172a;
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.creator-card-style-e {
    background: #05070a;
    border: 1px solid rgba(255, 85, 0, 0.35);
    border-radius: 20px;
    padding: 24px;
    color: #ffffff;
    transition: all 0.25s ease;
}
.creator-card-style-e:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 0 30px rgba(255, 85, 0, 0.25);
    transform: translateY(-5px);
}

/* ACADEMIC CONNECTED LEARNING PATHWAY */
.learning-path-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
    padding: 0 20px;
}
.learning-path-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff5500 0%, #3b82f6 50%, #10b981 100%);
    z-index: 1;
    transform: translateY(-50%);
}
.path-step-node {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px 16px;
    text-align: center;
    width: 19%;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
}
.path-step-node:hover {
    border-color: var(--accent-orange);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(255, 85, 0, 0.15);
}
.path-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -32px auto 10px auto;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(255, 85, 0, 0.3);
}

/* CREATOR STOREFRONT PREVIEW BANNER */
.creator-shop-preview-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid #334155;
    border-radius: 28px;
    overflow: hidden;
    color: #ffffff;
    margin-top: 48px;
}

/* DARK MODE OVERRIDES FOR NEW SECTIONS */
[data-theme="dark"] .hero-asymmetric-sec { background: #0b0f19; }
[data-theme="dark"] .stats-strip-sec { background: #0f172a !important; border-color: #1e293b !important; }
[data-theme="dark"] .stat-val { color: #ffffff !important; }
[data-theme="dark"] .stat-lbl { color: #94a3b8 !important; }
[data-theme="dark"] .stat-divider-line { background: #334155 !important; }
[data-theme="dark"] .cat-card-universe { background: #0f172a; border-color: #1e293b; }
[data-theme="dark"] .cat-card-universe div { color: #ffffff; }
[data-theme="dark"] .free-card { background: #0f172a; border-color: #1e293b; }
[data-theme="dark"] .creator-card-style-a { background: #0f172a; border-color: #1e293b; }
[data-theme="dark"] .creator-card-style-c { background: #0f172a; border-color: #1e293b; border-top-color: var(--accent-orange); }
[data-theme="dark"] .creator-card-style-d { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .path-step-node { background: #0f172a; border-color: #1e293b; color: #ffffff; }

/* RTL URDU OVERRIDES FOR NEW SECTIONS */
[dir="rtl"] .hero-asymmetric-grid { grid-template-columns: 1.15fr 0.85fr; }
[dir="rtl"] .creator-spotlight-split { grid-template-columns: 1fr 1.1fr; }
[dir="rtl"] .black-cta-sec { grid-template-columns: 0.8fr 1.2fr; }
[dir="rtl"] .hero-quick-links { flex-direction: row-reverse; }
[dir="rtl"] .learning-path-wrapper { flex-direction: row-reverse; }


/* 1. HERO & VISUAL COMPOSITION */
.hero-slider-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 54px 0 40px 0;
    transition: background 0.3s ease;
}
.hero-showcase-frame {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px -12px rgba(15, 23, 42, 0.14), 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-showcase-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 70px -12px rgba(15, 23, 42, 0.18);
}
.hero-floating-chip {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    transition: all 0.25s ease;
    z-index: 10;
}

/* 2. FILTER CHIPS BAR */
.filter-chips-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.filter-chip-btn {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}
.filter-chip-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.filter-chip-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 85, 0, 0.25);
}

/* 3. PRODUCT & COURSE ENHANCED CARDS */
.product-card-enhanced {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}
.product-card-enhanced:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
}
.product-card-enhanced .card-thumb-wrapper img {
    transition: transform 0.35s ease;
}
.product-card-enhanced:hover .card-thumb-wrapper img {
    transform: scale(1.04);
}

/* 4. FEATURED COURSE SPOTLIGHT BANNER */
.featured-course-spotlight {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #334155;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* 5. TRUST FEATURE CARDS */
.trust-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 26px 22px;
    transition: all 0.25s ease;
}
.trust-feature-card:hover {
    border-color: var(--accent-orange-border);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}
.trust-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-orange-light);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

/* 6. SKELETON LOADING PLACEHOLDERS */
.skeleton-box {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 12px;
}
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    height: 340px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 7. DARK MODE OVERRIDES ([data-theme="dark"]) */
[data-theme="dark"] .hero-slider-section { background: #0b0f19; }
[data-theme="dark"] .hero-showcase-frame { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .hero-floating-chip { background: #1e293b; border-color: #334155; color: #f8fafc; }
[data-theme="dark"] .trust-bar-section { background: #0f172a !important; border-color: #1e293b !important; }
[data-theme="dark"] .trust-bar-section div { color: #cbd5e1 !important; }
[data-theme="dark"] .trust-bar-section .trust-number { color: #ffffff !important; }
[data-theme="dark"] .product-card-enhanced { background: #0f172a; border-color: #1e293b; }
[data-theme="dark"] .product-card-enhanced:hover { border-color: #334155; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5); }
[data-theme="dark"] .category-chip-card { background: #0f172a !important; border-color: #1e293b !important; }
[data-theme="dark"] .category-chip-card:hover { border-color: var(--accent-orange) !important; }
[data-theme="dark"] .category-chip-card div { color: #f8fafc !important; }
[data-theme="dark"] .trust-feature-card { background: #0f172a; border-color: #1e293b; }
[data-theme="dark"] .trust-feature-card:hover { border-color: var(--accent-orange); }
[data-theme="dark"] .filter-chip-btn { background: #1e293b; border-color: #334155; color: #cbd5e1; }
[data-theme="dark"] .filter-chip-btn:hover { background: #334155; color: #ffffff; }
[data-theme="dark"] .filter-chip-btn.active { background: var(--accent-orange); border-color: var(--accent-orange); color: #ffffff; }
[data-theme="dark"] .skeleton-box { background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%); }

/* 8. RTL URDU & ARABIC LAYOUT OVERRIDES ([dir="rtl"]) */
[dir="rtl"] body, [dir="rtl"] html {
    font-family: 'Jameel Noori Nastaleeq', 'Noto Nastaliq Urdu', 'Segoe UI', Tahoma, sans-serif;
    direction: rtl;
    text-align: right;
}
[dir="rtl"] .section-header {
    flex-direction: row-reverse;
}
[dir="rtl"] .fa-arrow-right, [dir="rtl"] .fa-chevron-right {
    transform: scaleX(-1);
}
[dir="rtl"] .hero-floating-chip.chip-right {
    right: auto !important;
    left: -16px !important;
}
[dir="rtl"] .hero-floating-chip.chip-left {
    left: auto !important;
    right: -16px !important;
}
[dir="rtl"] .hero-cta-group {
    flex-direction: row-reverse;
}
[dir="rtl"] .search-bar-input-group i {
    right: 16px;
    left: auto;
}


