/* ==========================================================================
   FILE: css/style.css
   DESCRIPTION: Main Stylesheet for JEENASH STORE
   ========================================================================== */

/* --- CSS VARIABLES --- */
:root {
    --bg-base: #000000;
    --bg-surface: #0A0A0F;
    --bg-elevated: #14141A;
    --bg-glass: rgba(10, 10, 15, 0.75);
    --primary: #6d28d9;
    --primary-light: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.3);
    --secondary: #2563eb;
    --secondary-light: #3b82f6;
    --gold: #FFD700;
    --gold-light: #FDE68A;
    --gold-dark: #F59E0B;
    --gold-glow: rgba(255, 215, 0, 0.15);
    --gold-gradient: linear-gradient(135deg, #FFD700, #F59E0B);
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --silver-dark: #888888;
    --accent-orange: #f59e0b;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    --text-dark: #1e293b;
    --border-light: rgba(255, 255, 255, 0.04);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(255, 215, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    --gradient-text: linear-gradient(to right, #a78bfa, #60a5fa);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px -15px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --shadow-gold: 0 0 30px var(--gold-glow);
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --z-base: 1;
    --z-nav: 1000;
    --z-modal: 2000;
    --z-toast: 9999;
}

/* --- RESET & GLOBAL --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold);
    color: #000000;
}
::-moz-selection {
    background: var(--gold);
    color: #000000;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--silver-dark);
    border-radius: 10px;
    transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- UTILITY CLASSES --- */
.text-primary { color: var(--primary-light); }
.text-gold { color: var(--gold); }
.text-purple { color: #a855f7; }
.text-blue { color: #3b82f6; }
.text-orange { color: #f59e0b; }
.text-green { color: #10b981; }
.text-red { color: #ef4444; }
.text-muted { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* --- FOCUS VISIBLE --- */
*:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 4px;
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- BACKGROUND 3D BLOBS --- */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
    animation: pulse 12s ease-in-out infinite alternate;
}
.shape-1 {
    top: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
}
.shape-2 {
    top: 20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--silver), transparent 70%);
    animation-delay: -6s;
}
.shape-3 {
    bottom: -15%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light), transparent 70%);
    opacity: 0.04;
    animation-delay: -3s;
}
@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.06; }
    100% { transform: scale(1.08) translate(20px, -20px); opacity: 0.12; }
}

/* ==========================================================
   GLOBAL TYPOGRAPHY - (Hero, Sections, Page Headings)
   ========================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.25rem); }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- BUTTON SYSTEM --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    outline: none;
    position: relative;
    white-space: nowrap;
    min-height: 48px;
}
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    min-height: 56px;
}
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    min-height: 38px;
}
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(109, 40, 217, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(109, 40, 217, 0.4);
}
.btn-primary:active {
    transform: translateY(0) scale(0.98);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}
.btn-gold {
    background: var(--gold-gradient);
    color: #000000;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 25px var(--gold-glow);
}
.btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 45px rgba(255, 215, 0, 0.25);
}
.btn-gold:active {
    transform: translateY(0) scale(0.98);
}
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-glass);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.15);
}
.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}
.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* --- NAVIGATION --- */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    height: 80px;
}
.glass-nav.scrolled {
    background: rgba(10, 10, 15, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    color: #000000;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition-smooth);
}
.brand-logo:hover .logo-icon {
    transform: scale(1.05) rotate(-5deg);
}
.logo-text {
    color: var(--text-main);
}
.logo-text .text-primary {
    color: var(--gold);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
    border-radius: 2px;
}
.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link.active {
    color: var(--gold);
}
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
    min-height: 44px;
    min-width: 44px;
}
.mobile-menu-toggle:hover {
    color: var(--gold);
}
.auth-state {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 160px 0 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: var(--z-base);
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
}
.badge-wrapper.gold-badge {
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.12);
}
.badge-wrapper.gold-badge .badge-text {
    color: var(--gold-light);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: dotPulse 2s infinite;
}
.pulse-dot.gold-dot {
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
}
@keyframes dotPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hero-title .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}
.stat-number.gold {
    color: var(--gold);
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}
.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
}
.floating-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}
.card-3d {
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    width: 250px;
    transition: var(--transition-smooth);
}
.card-3d:hover {
    transform: translateZ(20px) !important;
    border-color: rgba(255, 255, 255, 0.15);
}
.card-3d.gold-card-3d {
    border: 1px solid rgba(255, 215, 0, 0.12);
    background: rgba(255, 215, 0, 0.03);
}
.card-3d.gold-card-3d .card-icon {
    color: var(--gold);
}
.card-icon {
    font-size: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.card-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}
.card-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.floating-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
    transform: translateZ(50px) rotateX(10deg) rotateY(-15deg);
}
.floating-2 {
    top: 40%;
    right: 5%;
    animation: float 8s ease-in-out infinite alternate;
    transform: translateZ(80px) rotateX(-5deg) rotateY(10deg);
}
.floating-3 {
    bottom: 10%;
    left: 20%;
    animation: float 7s ease-in-out infinite alternate-reverse;
    transform: translateZ(30px) rotateX(15deg) rotateY(5deg);
}
@keyframes float {
    0% { transform: translateY(0px) rotateX(10deg) rotateY(-15deg); }
    50% { transform: translateY(-20px) rotateX(15deg) rotateY(-5deg); }
    100% { transform: translateY(0px) rotateX(10deg) rotateY(-15deg); }
}

/* --- STORE SECTION --- */
.store-section {
    padding: var(--space-xl) 0;
    position: relative;
    z-index: var(--z-base);
}
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-lg);
    text-align: center;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 2rem;
}
.section-title .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.category-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-glass);
}
.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.875rem;
    white-space: nowrap;
}
.filter-btn:hover {
    color: var(--text-main);
}
.filter-btn.active {
    background: var(--bg-surface);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
}
.filter-btn.gold-active {
    background: var(--gold-gradient) !important;
    color: #000000 !important;
    font-weight: 700;
    border: none !important;
    box-shadow: 0 4px 20px var(--gold-glow);
}

/* ==========================================================
   PRODUCT CARDS - COMPACT FIXED LAYOUT
   ========================================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
    align-items: start;
}

/* 🔴 CRITICAL: Card ke ANDAR koi bhi heading GLOBAL size nahi lega */
.product-card h1,
.product-card h2,
.product-card h3,
.product-card h4,
.product-card h5,
.product-card h6 {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: normal !important;
    font-family: var(--font-body) !important;
    color: var(--text-main) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: var(--shadow-md);
}

.product-card.gold-card:hover {
    border-color: var(--gold) !important;
    box-shadow: var(--shadow-md), 0 0 40px var(--gold-glow) !important;
}

.product-card.gold-card .product-title {
    color: var(--gold-light);
}

/* --- Product Image --- */
.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-base);
    flex-shrink: 0;
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image {
    transform: scale(1.04);
}

/* --- Badges --- */
.badge-overlay {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-sm);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 2;
}
.badge-free {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.badge-paid {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.25);
}
.badge-gold {
    background: var(--gold-gradient);
    color: #000000;
    border: none;
    box-shadow: 0 0 20px var(--gold-glow);
}
.badge-hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    border: none;
    animation: pulseBadge 2s infinite;
}
@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* --- Product Content - COMPACT FLOW --- */
.product-content {
    padding: 0.75rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.2rem;
    flex: 0 1 auto;
    min-height: 0;
}

.product-category {
    font-size: 0.6rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.15rem;
    font-weight: 600;
    flex-shrink: 0;
}
.product-category.gold-category {
    color: var(--gold);
}

/* 🔴 FIXED: Product Title — compact */
.product-title {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    line-height: 1.3 !important;
    margin: 0 0 0.15rem 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-family: var(--font-body) !important;
    letter-spacing: normal !important;
    min-height: 0 !important;
    flex-shrink: 0;
}

/* 🔴 FIXED: Description — immediately after title */
.product-desc {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 0 1 auto;
    margin: 0 0 0.3rem 0;
    min-height: 0;
}

/* --- Product Footer - NATURAL POSITION --- */
.product-footer {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-light);
    margin-top: 0.3rem;
    flex-shrink: 0;
}
.product-price {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}
.product-price .price-free {
    color: var(--accent-green);
}
.product-price.price-gold {
    color: var(--gold) !important;
}
.product-price .original {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.4rem;
    font-weight: 400;
}
.product-footer .btn {
    width: 100%;
    border-radius: var(--radius-sm) !important;
    padding: 0.5rem 0.5rem;
    font-size: 0.7rem;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    min-height: 38px;
}

/* --- OFFER BANNER --- */
.offer-banner {
    background: var(--gold-gradient);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    margin: 2rem 0;
    box-shadow: 0 4px 30px var(--gold-glow);
}
.offer-banner span {
    background: #000000;
    color: var(--gold);
    padding: 0.1rem 0.8rem;
    border-radius: var(--radius-sm);
    margin: 0 0.25rem;
}

/* --- EMPTY STATE --- */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-glass);
    border-radius: var(--radius-lg);
}
.empty-state i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.empty-state p {
    color: var(--text-muted);
}

/* --- SKELETON LOADING --- */
.skeleton-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    pointer-events: none;
}
.skeleton-img {
    width: 100%;
    aspect-ratio: 16/10;
    background: rgba(255, 255, 255, 0.04);
}
.skeleton-content {
    padding: 0.75rem 1rem 1rem;
}
.skeleton-line {
    height: 0.7rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    margin-bottom: 0.3rem;
}
.skeleton-line.title { width: 80%; height: 0.85rem; margin-bottom: 0.4rem; }
.skeleton-line.desc { width: 100%; height: 0.6rem; }
.skeleton-line.short { width: 60%; margin-bottom: 0.8rem; }
.skeleton-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 0.4rem;
}
.skeleton-badge {
    width: 40px;
    height: 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
}
.skeleton-btn {
    width: 70px;
    height: 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-full);
}
.skeleton-img,
.skeleton-line,
.skeleton-badge,
.skeleton-btn {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.07) 50%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 1000px 100%;
    animation: shimmer 1.5s infinite linear;
}
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* --- FOOTER --- */
.site-footer {
    background: var(--bg-surface);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--border-glass);
    position: relative;
    z-index: var(--z-base);
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-desc {
    color: var(--text-muted);
    margin: 1.5rem 0;
    max-width: 350px;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    transition: var(--transition-bounce);
}
.social-links a:hover {
    background: var(--gold-gradient);
    border-color: var(--gold);
    transform: translateY(-3px);
    color: #000000;
}
.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* --- TRUST BADGES --- */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}
.trust-badge i {
    color: var(--gold);
    font-size: 1.25rem;
}

/* --- MODALS --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 1rem;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.96);
    transition: var(--transition-smooth);
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}
.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--bg-surface);
    z-index: 10;
}
.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}
.close-modal-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.5rem;
    min-height: 40px;
    min-width: 40px;
    border-radius: 50%;
}
.close-modal-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}
.modal-body {
    padding: 2rem;
}
.modal-footer {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* --- FORM ELEMENTS --- */
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition-fast);
    font-size: 1rem;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.form-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
}
.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-light);
    cursor: pointer;
    flex-shrink: 0;
}
.checkbox-group label {
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- TOAST NOTIFICATION --- */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-toast);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    min-width: 280px;
    max-width: 400px;
}
.toast-notification.show {
    transform: translateX(0);
}
.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.toast-success i { color: var(--accent-green); }
.toast-error i { color: var(--accent-red); }
.toast-warning i { color: var(--accent-orange); }
.toast-info i { color: var(--secondary-light); }
.toast-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    width: 100%;
    border-radius: 2px;
    position: relative;
}
.toast-progress::after {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    border-radius: 2px;
    animation: toast-progress 3s linear forwards;
}
.toast-success .toast-progress::after { background: var(--accent-green); }
.toast-error .toast-progress::after { background: var(--accent-red); }
.toast-warning .toast-progress::after { background: var(--accent-orange); }
.toast-info .toast-progress::after { background: var(--secondary-light); }
@keyframes toast-progress {
    0% { width: 100%; }
    100% { width: 0%; }
}

/* ==========================================================
   RESPONSIVE DESIGN
   ========================================================== */

/* Desktop: 3 columns */
@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

/* Tablet: 2 columns */
@media (max-width: 991px) and (min-width: 601px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-section {
        padding: 140px 0 60px 0;
        min-height: auto;
    }
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        height: 68px;
    }
    .nav-container {
        height: 68px;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .main-navigation {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: var(--bg-surface);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-glass);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-lg);
    }
    .main-navigation.nav-open {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    .nav-actions {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .brand-logo {
        font-size: 1.2rem;
    }
    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .hero-section {
        padding: 120px 0 40px 0;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-cta-group .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-number {
        font-size: 1.5rem;
    }

    .store-section {
        padding: var(--space-lg) 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .category-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.5rem;
        border-radius: var(--radius-md);
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .category-filters::-webkit-scrollbar {
        display: none;
    }
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem !important;
        padding: 0.5rem 0;
    }
    .product-card {
        border-radius: var(--radius-sm) !important;
    }
    .product-image-wrapper {
        aspect-ratio: 1/1;
    }
    .product-content {
        padding: 0.5rem 0.6rem 0.6rem !important;
        gap: 0.1rem !important;
    }
    .product-category {
        font-size: 0.45rem !important;
        letter-spacing: 0.5px;
        margin-bottom: 0.1rem !important;
    }
    .product-title {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
        margin: 0 0 0.1rem 0 !important;
        -webkit-line-clamp: 2;
    }
    .product-desc {
        display: none !important;
    }
    .product-footer {
        padding-top: 0.3rem !important;
        gap: 0.25rem !important;
        margin-top: 0.1rem !important;
    }
    .product-price {
        font-size: 0.75rem !important;
    }
    .product-price .original {
        font-size: 0.5rem !important;
    }
    .product-footer .btn {
        padding: 0.3rem 0 !important;
        font-size: 0.5rem !important;
        border-radius: 4px !important;
        min-height: 28px !important;
        letter-spacing: 0.3px;
    }
    .badge-overlay {
        font-size: 0.4rem !important;
        padding: 0.1rem 0.35rem !important;
        top: 0.3rem !important;
        left: 0.3rem !important;
        border-radius: 4px !important;
    }
    .offer-banner {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
        margin: 1rem 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .footer-desc {
        margin: 1rem auto;
        max-width: 100%;
    }
    .social-links {
        justify-content: center;
    }
    .footer-links ul {
        align-items: center;
    }
    .toast-notification {
        min-width: auto;
        max-width: calc(100% - 2rem);
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
    }
    .modal-content {
        max-width: 100%;
        margin: 1rem;
        border-radius: var(--radius-md);
    }
    .modal-header {
        padding: 1rem 1.25rem;
    }
    .modal-body {
        padding: 1.25rem;
    }
    .modal-footer {
        flex-direction: column-reverse;
    }
    .modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0.5rem 0;
    }
    .product-card {
        max-width: 100%;
        margin: 0 auto;
        border-radius: var(--radius-sm) !important;
    }
    .product-image-wrapper {
        aspect-ratio: 16/10;
    }
    .product-content {
        padding: 0.6rem 0.8rem 0.8rem !important;
        gap: 0.15rem !important;
    }
    .product-title {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin: 0 0 0.15rem 0 !important;
    }
    .product-desc {
        display: -webkit-box !important;
        font-size: 0.7rem !important;
        -webkit-line-clamp: 2;
        margin: 0 0 0.2rem 0 !important;
    }
    .product-price {
        font-size: 0.9rem !important;
    }
    .product-footer .btn {
        font-size: 0.6rem !important;
        padding: 0.4rem 0 !important;
        min-height: 34px !important;
    }
    .badge-overlay {
        font-size: 0.5rem !important;
        padding: 0.15rem 0.5rem !important;
        top: 0.5rem !important;
        left: 0.5rem !important;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .badge-wrapper {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
        min-height: 42px;
    }
    .btn-lg {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
        min-height: 48px;
    }
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}
.scale-in {
    animation: scaleIn 0.5s ease forwards;
}

/* --- GLOW EFFECTS --- */
.glow-effect {
    position: relative;
    overflow: hidden;
}
.glow-effect::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--gold-glow), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}
.glow-effect:hover::before {
    opacity: 0.3;
}

/* --- PRINT STYLES --- */
@media print {
    .glass-nav,
    .site-footer,
    .bg-shape {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
}