/* ============================================================
   VEXORA PREMIUM THEME — Main Stylesheet
   Ultra-modern dark mode, glassmorphism, luxury aesthetics
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
    /* Primary Colors */
    --vx-gold: #C8A96E;
    --vx-gold-light: #E8D5B7;
    --vx-gold-dark: #A68B4B;
    --vx-gold-glow: rgba(200, 169, 110, 0.3);
    
    /* Backgrounds */
    --vx-bg-primary: #0A0A0A;
    --vx-bg-secondary: #111118;
    --vx-bg-tertiary: #1A1A2E;
    --vx-bg-card: rgba(255, 255, 255, 0.03);
    --vx-bg-glass: rgba(255, 255, 255, 0.05);
    --vx-bg-glass-hover: rgba(255, 255, 255, 0.08);
    --vx-bg-glass-strong: rgba(255, 255, 255, 0.12);
    
    /* Text */
    --vx-text-primary: #F5F5F5;
    --vx-text-secondary: #9A9A9A;
    --vx-text-muted: #666666;
    --vx-text-accent: #C8A96E;
    
    /* Borders */
    --vx-border: rgba(255, 255, 255, 0.06);
    --vx-border-hover: rgba(200, 169, 110, 0.3);
    --vx-border-gold: rgba(200, 169, 110, 0.5);
    
    /* Status */
    --vx-success: #4CAF50;
    --vx-error: #FF5252;
    --vx-warning: #FFC107;
    --vx-info: #2196F3;
    
    /* Shadows */
    --vx-shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --vx-shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --vx-shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --vx-shadow-gold: 0 4px 20px rgba(200, 169, 110, 0.15);
    --vx-shadow-glow: 0 0 30px rgba(200, 169, 110, 0.1);
    
    /* Typography */
    --vx-font-heading: 'Playfair Display', Georgia, serif;
    --vx-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --vx-container: 1280px;
    --vx-container-wide: 1440px;
    --vx-gap: 24px;
    --vx-gap-sm: 16px;
    --vx-gap-lg: 48px;
    --vx-section-gap: 100px;
    
    /* Radius */
    --vx-radius-sm: 8px;
    --vx-radius-md: 12px;
    --vx-radius-lg: 20px;
    --vx-radius-xl: 32px;
    
    /* Transitions */
    --vx-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --vx-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --vx-transition-fast: all 0.15s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--vx-font-body);
    background: var(--vx-bg-primary);
    color: var(--vx-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Subtle background texture */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(200, 169, 110, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(26, 26, 46, 0.5) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vx-gold); text-decoration: none; transition: var(--vx-transition); }
a:hover { color: var(--vx-gold-light); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--vx-font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--vx-text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--vx-text-secondary); }

::selection {
    background: var(--vx-gold);
    color: var(--vx-bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--vx-bg-primary); }
::-webkit-scrollbar-thumb {
    background: var(--vx-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--vx-gold); }

/* ---- CONTAINER ---- */
.container {
    max-width: var(--vx-container);
    margin: 0 auto;
    padding: 0 var(--vx-gap);
    position: relative;
    z-index: 1;
}

.container-wide {
    max-width: var(--vx-container-wide);
    margin: 0 auto;
    padding: 0 var(--vx-gap);
    position: relative;
    z-index: 1;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--vx-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--vx-radius-sm);
    cursor: pointer;
    transition: var(--vx-transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--vx-gold), var(--vx-gold-dark));
    color: var(--vx-bg-primary);
    box-shadow: var(--vx-shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(200, 169, 110, 0.3);
    color: var(--vx-bg-primary);
}

.btn-outline {
    background: transparent;
    color: var(--vx-gold);
    border: 1.5px solid var(--vx-border-gold);
}
.btn-outline:hover {
    background: var(--vx-gold);
    color: var(--vx-bg-primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--vx-bg-glass);
    color: var(--vx-text-primary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--vx-border);
}
.btn-ghost:hover {
    background: var(--vx-bg-glass-hover);
    border-color: var(--vx-border-hover);
}

/* ---- HEADER / NAVIGATION ---- */
.vexora-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--vx-transition);
    padding: 0;
}

.vexora-header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--vx-border);
    box-shadow: var(--vx-shadow-md);
}

.header-top-bar {
    background: linear-gradient(90deg, var(--vx-gold-dark), var(--vx-gold), var(--vx-gold-dark));
    color: var(--vx-bg-primary);
    text-align: center;
    padding: 6px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    max-width: var(--vx-container-wide);
    margin: 0 auto;
}

.vexora-logo {
    font-family: var(--vx-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vx-text-primary);
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
}

.vexora-logo span {
    color: var(--vx-gold);
}

.vexora-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vx-gold), transparent);
    opacity: 0.5;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-main a {
    color: var(--vx-text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--vx-transition);
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1.5px;
    background: var(--vx-gold);
    transition: var(--vx-transition);
    transform: translateX(-50%);
}

.nav-main a:hover,
.nav-main a.active {
    color: var(--vx-gold);
}

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

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

.header-action-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--vx-text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 8px;
    transition: var(--vx-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-action-btn:hover { color: var(--vx-gold); }

.vexora-cart-count {
    position: absolute;
    top: 0; right: -2px;
    background: var(--vx-gold);
    color: var(--vx-bg-primary);
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--vx-text-primary);
    transition: var(--vx-transition);
    border-radius: 2px;
}

/* ---- HERO SECTION ---- */
.vexora-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--vx-bg-primary) 0%, var(--vx-bg-tertiary) 50%, var(--vx-bg-primary) 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(200, 169, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(200, 169, 110, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-floating-shapes {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
    width: 400px; height: 400px;
    background: var(--vx-gold);
    top: 10%; right: -100px;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 300px; height: 300px;
    background: var(--vx-gold-light);
    bottom: 20%; left: -50px;
    animation-delay: -7s;
}

.hero-shape:nth-child(3) {
    width: 200px; height: 200px;
    background: var(--vx-gold);
    top: 50%; left: 40%;
    animation-delay: -14s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--vx-bg-glass);
    border: 1px solid var(--vx-border-gold);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vx-gold);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--vx-gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--vx-gold), var(--vx-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--vx-text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--vx-border);
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--vx-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--vx-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--vx-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ---- SECTION STYLES ---- */
.vexora-section {
    padding: var(--vx-section-gap) 0;
    position: relative;
    z-index: 1;
}

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

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vx-gold);
    margin-bottom: 12px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--vx-gold);
    opacity: 0.5;
}

.section-label::before { right: calc(100% + 12px); }
.section-label::after { left: calc(100% + 12px); }

.section-title {
    margin-bottom: 16px;
}

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

/* ---- CATEGORIES GRID ---- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vx-gap);
}

.category-card {
    position: relative;
    border-radius: var(--vx-radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    group: true;
}

.category-card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--vx-transition-slow);
}

.category-card:hover .category-card-bg {
    transform: scale(1.08);
}

.category-card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 60%, rgba(10,10,10,0.1) 100%);
    transition: var(--vx-transition);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.2) 100%);
}

.category-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--vx-transition);
}

.category-card:hover .category-card-content {
    transform: translateY(0);
}

.category-card-icon {
    font-size: 2rem;
    color: var(--vx-gold);
    margin-bottom: 12px;
    display: block;
}

.category-card-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--vx-text-primary);
}

.category-card-count {
    font-size: 0.8rem;
    color: var(--vx-text-muted);
    margin-bottom: 16px;
}

.category-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vx-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--vx-transition);
}

.category-card:hover .category-card-link {
    opacity: 1;
    transform: translateY(0);
}

/* ---- PRODUCT CARDS ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--vx-gap);
}

.product-card {
    position: relative;
    background: var(--vx-bg-card);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-md);
    overflow: hidden;
    transition: var(--vx-transition);
}

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

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--vx-bg-secondary);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--vx-transition-slow);
}

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

.product-card-actions {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: var(--vx-transition);
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-card-action-btn {
    width: 44px; height: 44px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--vx-border);
    border-radius: 50%;
    color: var(--vx-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--vx-transition);
}

.product-card-action-btn:hover {
    background: var(--vx-gold);
    color: var(--vx-bg-primary);
    border-color: var(--vx-gold);
}

.vexora-badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.badge {
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
}

.badge-sale {
    background: var(--vx-error);
    color: #fff;
}

.badge-new {
    background: var(--vx-gold);
    color: var(--vx-bg-primary);
}

.badge-bestseller {
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    color: #fff;
}

.product-card-info {
    padding: 20px;
}

.product-card-category {
    font-size: 0.7rem;
    color: var(--vx-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card-title {
    font-family: var(--vx-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--vx-text-primary);
    line-height: 1.4;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
}

.product-card-title a:hover {
    color: var(--vx-gold);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vx-text-primary);
}

.price-regular {
    font-size: 0.85rem;
    color: var(--vx-text-muted);
    text-decoration: line-through;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.star {
    color: var(--vx-gold);
    font-size: 0.8rem;
}

.star.empty {
    color: var(--vx-text-muted);
}

.rating-count {
    font-size: 0.75rem;
    color: var(--vx-text-muted);
    margin-left: 4px;
}

/* ---- FEATURES / WHY VEXORA ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vx-gap);
}

.feature-card {
    background: var(--vx-bg-glass);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-md);
    padding: 32px;
    text-align: center;
    transition: var(--vx-transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--vx-border-hover);
    background: var(--vx-bg-glass-hover);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--vx-gold), var(--vx-gold-dark));
    border-radius: var(--vx-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--vx-bg-primary);
}

.feature-title {
    font-family: var(--vx-font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 0.85rem;
    color: var(--vx-text-muted);
    line-height: 1.6;
}

/* ---- NEWSLETTER ---- */
.newsletter-section {
    background: linear-gradient(135deg, var(--vx-bg-tertiary) 0%, var(--vx-bg-secondary) 100%);
    border-top: 1px solid var(--vx-border);
    border-bottom: 1px solid var(--vx-border);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200,169,110,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: var(--vx-bg-glass);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-sm);
    color: var(--vx-text-primary);
    font-family: var(--vx-font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--vx-transition);
}

.newsletter-input:focus {
    border-color: var(--vx-gold);
    box-shadow: 0 0 0 3px var(--vx-gold-glow);
}

.newsletter-input::placeholder {
    color: var(--vx-text-muted);
}

/* ---- BLOG CARDS ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vx-gap);
}

.blog-card {
    background: var(--vx-bg-card);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-md);
    overflow: hidden;
    transition: var(--vx-transition);
}

.blog-card:hover {
    border-color: var(--vx-border-hover);
    transform: translateY(-4px);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--vx-bg-secondary);
}

.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--vx-transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    color: var(--vx-text-muted);
}

.blog-card-category {
    color: var(--vx-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    font-family: var(--vx-font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--vx-text-primary);
}

.blog-card-title a:hover {
    color: var(--vx-gold);
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--vx-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--vx-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-link:hover {
    gap: 10px;
}

/* ---- FOOTER ---- */
.vexora-footer {
    background: var(--vx-bg-secondary);
    border-top: 1px solid var(--vx-border);
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 80px 0 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: var(--vx-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vx-text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    text-decoration: none;
}

.footer-logo span { color: var(--vx-gold); }

.footer-description {
    font-size: 0.85rem;
    color: var(--vx-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

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

.footer-social a:hover {
    background: var(--vx-gold);
    border-color: var(--vx-gold);
    color: var(--vx-bg-primary);
    transform: translateY(-2px);
}

.footer-column-title {
    font-family: var(--vx-font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vx-text-primary);
    margin-bottom: 24px;
}

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

.footer-links a {
    color: var(--vx-text-muted);
    font-size: 0.85rem;
    transition: var(--vx-transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--vx-border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--vx-text-muted);
}

.footer-payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-icon {
    padding: 6px 12px;
    background: var(--vx-bg-glass);
    border: 1px solid var(--vx-border);
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--vx-text-muted);
    font-weight: 600;
}

/* ---- BREADCRUMBS ---- */
.vexora-breadcrumbs {
    padding: 120px 0 20px;
    font-size: 0.8rem;
}

.vexora-breadcrumbs a {
    color: var(--vx-text-muted);
}

.vexora-breadcrumbs a:hover {
    color: var(--vx-gold);
}

.vexora-breadcrumbs .sep {
    color: var(--vx-text-muted);
    margin: 0 8px;
}

.vexora-breadcrumbs .current {
    color: var(--vx-text-primary);
}

/* ---- FORMS ---- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    background: var(--vx-bg-glass);
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-sm);
    color: var(--vx-text-primary);
    font-family: var(--vx-font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--vx-transition);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--vx-gold);
    box-shadow: 0 0 0 3px var(--vx-gold-glow);
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--vx-text-secondary);
    margin-bottom: 6px;
}

/* ---- TOAST NOTIFICATION ---- */
.vexora-toast {
    position: fixed;
    top: 100px;
    right: 24px;
    padding: 16px 24px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--vx-border-gold);
    border-radius: var(--vx-radius-sm);
    color: var(--vx-text-primary);
    font-size: 0.9rem;
    z-index: 10000;
    transform: translateX(120%);
    transition: var(--vx-transition);
    box-shadow: var(--vx-shadow-gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.vexora-toast.success { border-color: var(--vx-success); }
.vexora-toast.error { border-color: var(--vx-error); }

/* ---- LOADING SPINNER ---- */
.vexora-spinner {
    width: 32px; height: 32px;
    border: 2px solid var(--vx-border);
    border-top-color: var(--vx-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- PAGE TEMPLATES ---- */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--vx-bg-tertiary) 0%, var(--vx-bg-primary) 100%);
    border-bottom: 1px solid var(--vx-border);
}

.page-content {
    padding: 60px 0;
}

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .hero-stats { gap: 32px; }
}

@media (max-width: 768px) {
    :root {
        --vx-section-gap: 60px;
        --vx-gap: 16px;
    }
    
    .header-main { padding: 12px 20px; }
    
    .nav-main { display: none; }
    
    .mobile-menu-toggle { display: flex; }
    
    /* Mobile menu overlay */
    .mobile-nav {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: var(--vx-transition);
    }
    
    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav a {
        font-size: 1.5rem;
        font-family: var(--vx-font-heading);
        color: var(--vx-text-primary);
        letter-spacing: 2px;
    }
    
    .mobile-nav a:hover { color: var(--vx-gold); }
    
    .mobile-nav-close {
        position: absolute;
        top: 20px; right: 20px;
        background: none;
        border: none;
        color: var(--vx-text-primary);
        font-size: 2rem;
        cursor: pointer;
    }
    
    .vexora-hero { min-height: 90vh; }
    .hero-content { padding: 0 20px; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
    
    .categories-grid { grid-template-columns: 1fr; }
    .category-card { aspect-ratio: 4/3; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card-info { padding: 12px; }
    .product-card-actions { display: none; }
    
    .blog-grid { grid-template-columns: 1fr; }
    
    .features-grid { grid-template-columns: 1fr; }
    
    .newsletter-form { flex-direction: column; }
    
    .footer-main { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .header-top-bar { font-size: 0.65rem; letter-spacing: 1px; padding: 5px 10px; }
}

/* ---- ANIMATIONS (Intersection Observer) ---- */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }
