/**
 * Mirui Magic Props Theme - Main Stylesheet
 * Dark Luxury Magic Theme
 * 
 * @package Mirui_Magic
 * @version 1.0.0
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors - Dark Luxury Magic Theme */
    --color-primary: #d4af37;
    --color-primary-light: #f0d878;
    --color-primary-dark: #b8941f;
    --color-secondary: #6b21a8;
    --color-secondary-light: #9333ea;
    --color-secondary-dark: #4c1d95;
    
    /* Background Colors */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #888888;
    --text-dark: #333333;
    
    /* Accent Colors */
    --accent-gold: #d4af37;
    --accent-purple: #6b21a8;
    --accent-glow: rgba(212, 175, 55, 0.3);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d878 50%, #d4af37 100%);
    --gradient-purple: linear-gradient(135deg, #6b21a8 0%, #9333ea 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4);
    --shadow-glow-lg: 0 0 40px rgba(212, 175, 55, 0.6);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* ============================================
   BASE STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--color-primary-light);
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--bg-dark);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: #ffffff;
}

.btn-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gradient-gold);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-normal);
    padding: 1rem 0;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.site-branding {
    flex-shrink: 0;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
}

.site-title a {
    color: var(--text-primary);
}

.site-title a:hover {
    color: var(--color-primary);
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-menu li.active .nav-link {
    color: var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: var(--transition-normal);
}

.nav-menu li:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-md);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    list-style: none;
    z-index: 100;
}

.nav-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.dropdown-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-toggle,
.cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid #333;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
}

.search-toggle:hover,
.cart-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition-normal);
}

.cart-count.has-items {
    opacity: 1;
    transform: scale(1);
}

.header-cta-btn {
    display: none;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.header-cta-btn:hover {
    background: var(--color-primary-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid #333;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
}

.menu-icon span {
    display: block;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1001;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    position: relative;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid #333;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.search-close:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.search-form {
    position: relative;
}

.search-field {
    width: 100%;
    padding: 1.25rem 3rem 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid #333;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 1.125rem;
    transition: var(--transition-normal);
}

.search-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.search-submit {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 1.25rem;
    cursor: pointer;
}

.search-hint {
    text-align: center;
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 1002;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #222;
}

.mobile-menu-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #333;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
}

.mobile-nav-menu {
    flex: 1;
    list-style: none;
    padding: 1rem;
    margin: 0;
    overflow-y: auto;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #222;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.mobile-nav-menu a:hover {
    color: var(--color-primary);
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #222;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-contact-link,
.mobile-whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.mobile-contact-link {
    color: var(--text-secondary);
    background: var(--bg-darker);
}

.mobile-whatsapp-link {
    color: #ffffff;
    background: #25d366;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-image,
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 10s linear infinite;
}

.hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 20%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { left: 30%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 40%; animation-delay: 3s; }
.hero-particles span:nth-child(5) { left: 50%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { left: 60%; animation-delay: 5s; }
.hero-particles span:nth-child(7) { left: 70%; animation-delay: 6s; }
.hero-particles span:nth-child(8) { left: 80%; animation-delay: 7s; }
.hero-particles span:nth-child(9) { left: 90%; animation-delay: 8s; }
.hero-particles span:nth-child(10) { left: 95%; animation-delay: 9s; }
.hero-particles span:nth-child(11) { left: 5%; animation-delay: 1.5s; }
.hero-particles span:nth-child(12) { left: 15%; animation-delay: 2.5s; }
.hero-particles span:nth-child(13) { left: 25%; animation-delay: 3.5s; }
.hero-particles span:nth-child(14) { left: 35%; animation-delay: 4.5s; }
.hero-particles span:nth-child(15) { left: 45%; animation-delay: 5.5s; }
.hero-particles span:nth-child(16) { left: 55%; animation-delay: 6.5s; }
.hero-particles span:nth-child(17) { left: 65%; animation-delay: 7.5s; }
.hero-particles span:nth-child(18) { left: 75%; animation-delay: 8.5s; }
.hero-particles span:nth-child(19) { left: 85%; animation-delay: 9.5s; }
.hero-particles span:nth-child(20) { left: 3%; animation-delay: 0.5s; }

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 8rem 0 4rem;
}

.hero-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Hero Trust Badges */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--color-primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.2;
    animation: decoration-float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-decoration-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-decoration-2 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes decoration-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-dark);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.feature-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    overflow: hidden;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    font-size: 2rem;
    color: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.feature-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    filter: blur(20px);
    opacity: 0.3;
    z-index: 1;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-glow {
    opacity: 0.6;
    filter: blur(30px);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Magic Sparkles on Hover */
.magic-sparkle {
    position: absolute;
    color: var(--color-primary);
    font-size: 0.75rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.sparkle-1 { top: 20%; left: 20%; }
.sparkle-2 { top: 30%; right: 20%; }
.sparkle-3 { bottom: 30%; left: 30%; }

.feature-card:hover .magic-sparkle {
    opacity: 1;
    animation: sparkle-twinkle 1s ease-in-out infinite;
}

.feature-card:hover .sparkle-2 {
    animation-delay: 0.3s;
}

.feature-card:hover .sparkle-3 {
    animation-delay: 0.6s;
}

@keyframes sparkle-twinkle {
    0%, 100% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}


/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-darker);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid #333;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-tab:hover,
.category-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-dark);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

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

/* Product Badges */
.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.badge-sale {
    background: #dc2626;
    color: #ffffff;
}

.badge-featured {
    background: var(--color-primary);
    color: var(--bg-dark);
}

.badge-outofstock {
    background: #666;
    color: #ffffff;
}

/* Product Image */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

/* Product Actions */
.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-normal);
}

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

.action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.action-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-dark);
}

/* Product Info */
.product-info {
    padding: 1.5rem;
}

.product-category {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-title a {
    color: var(--text-primary);
}

.product-title a:hover {
    color: var(--color-primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-rating .star-rating {
    color: var(--color-primary);
}

.rating-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.product-price .woocommerce-Price-amount {
    color: var(--color-primary);
}

.product-price del {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.product-price ins {
    text-decoration: none;
}

/* Add to Cart Button */
.product-cart .add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-normal);
}

.product-cart .add-to-cart-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.product-cart .add-to-cart-btn.disabled {
    background: #333;
    color: var(--text-muted);
    cursor: not-allowed;
}

/* No Products */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-lg);
}

.no-products i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.no-products p {
    color: var(--text-muted);
}

/* Section Footer */
.section-footer {
    text-align: center;
    margin-top: 2rem;
}

.section-footer .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.quick-view-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--bg-darker);
    border: 1px solid #333;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-dark);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.modal-product-image {
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-product-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.modal-product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.modal-product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.modal-product-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-product-rating {
    margin-bottom: 1rem;
}

.modal-product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.modal-product-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex: 1;
}

.modal-product-actions {
    display: flex;
    gap: 1rem;
}

/* ============================================
   USE CASES SECTION
   ============================================ */
.use-cases-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

.use-case-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.use-case-card:hover .use-case-image img {
    transform: scale(1.1);
}

.use-case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
    transition: var(--transition-normal);
}

.use-case-card:hover .use-case-overlay {
    background: linear-gradient(180deg, rgba(107, 33, 168, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.use-case-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.use-case-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.use-case-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.use-case-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.use-case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.use-case-link:hover {
    color: var(--color-primary-light);
}

.use-case-link i {
    transition: var(--transition-normal);
}

.use-case-link:hover i {
    transform: translateX(5px);
}


/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-dark);
}

.video-wrapper {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-container video,
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-full);
    color: var(--bg-dark);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow-lg);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.8);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(107, 33, 168, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-content {
    text-align: center;
    max-width: 600px;
}

.video-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.video-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.video-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Video Stats */
.video-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
}

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

.stat-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-darker);
}

/* Trust Badge */
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
}

.trust-stars {
    display: flex;
    gap: 0.25rem;
}

.trust-stars i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.trust-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.testimonial-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.3;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonial-rating i.filled {
    color: var(--color-primary);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initials {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.author-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: #4caf50;
}

/* Partners Section */
.partners-section {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #222;
}

.partners-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--color-primary);
}

.partner-logo i {
    font-size: 1.25rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.2) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 0;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cta-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: cta-particle-float 8s ease-in-out infinite;
}

.cta-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cta-particles span:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
.cta-particles span:nth-child(3) { top: 30%; left: 80%; animation-delay: 2s; }
.cta-particles span:nth-child(4) { top: 70%; left: 70%; animation-delay: 3s; }
.cta-particles span:nth-child(5) { top: 40%; left: 50%; animation-delay: 4s; }
.cta-particles span:nth-child(6) { top: 80%; left: 30%; animation-delay: 5s; }
.cta-particles span:nth-child(7) { top: 10%; left: 60%; animation-delay: 6s; }
.cta-particles span:nth-child(8) { top: 50%; left: 90%; animation-delay: 7s; }
.cta-particles span:nth-child(9) { top: 90%; left: 50%; animation-delay: 0.5s; }
.cta-particles span:nth-child(10) { top: 15%; left: 40%; animation-delay: 1.5s; }

@keyframes cta-particle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.6;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.cta-trust .trust-item i {
    color: var(--color-primary);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: var(--spacing-lg) 0;
    background: var(--bg-darker);
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
}

.newsletter-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.newsletter-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: var(--bg-darker);
    border: 1px solid #333;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

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

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.newsletter-privacy {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid #222;
}

/* Footer Top */
.footer-top {
    padding: var(--spacing-xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Footer Company Column */
.footer-company {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.footer-contact-item:hover {
    color: var(--color-primary);
}

.footer-contact-item i {
    width: 20px;
    color: var(--color-primary);
}

.footer-contact-item.whatsapp {
    color: #25d366;
}

.footer-contact-item.whatsapp:hover {
    color: #128c7e;
}

/* Footer Column Title */
.footer-column-title {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: var(--transition-normal);
}

.footer-menu a:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

/* Shipping Bar */
.footer-shipping-bar {
    padding: 1.5rem 0;
    background: var(--bg-card);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.shipping-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.shipping-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.shipping-feature i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    background: var(--bg-dark);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

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

/* Footer Social */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Footer Payments */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icons i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.floating-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-normal);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 998;
}

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

.scroll-to-top:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-dark);
}

/* ============================================
   SHOP PAGE STYLES
   ============================================ */
.shop-main {
    padding: var(--spacing-lg) 0;
}

.shop-header {
    margin-bottom: var(--spacing-lg);
}

.shop-header-content {
    text-align: center;
    margin-bottom: 2rem;
}

.shop-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.shop-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.shop-banner {
    padding: 3rem;
    background: var(--gradient-purple);
    border-radius: var(--radius-lg);
    text-align: center;
}

.banner-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.banner-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.banner-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.shop-result-count {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.shop-ordering select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    background: var(--bg-darker);
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
}

.shop-view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-normal);
}

.view-btn.active,
.view-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-dark);
}

/* Shop Wrapper */
.shop-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-toggle {
    display: none;
    width: 100%;
    padding: 0.875rem;
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

.sidebar-content {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
}

/* Shop Products */
.shop-products .products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Shop Features */
.shop-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
}

.shop-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shop-feature .feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 1.25rem;
}

.shop-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.shop-feature p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */
.product-main {
    padding: var(--spacing-lg) 0;
}

.woocommerce-product-gallery {
    position: relative;
}

.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    z-index: 10;
}

.woocommerce-product-gallery__trigger:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-dark);
}

.product_title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.woocommerce-review-link {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.product .price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.product .price del {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.product .price ins {
    text-decoration: none;
}

.woocommerce-product-details__short-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Product Meta */
.product_meta {
    padding-top: 1.5rem;
    border-top: 1px solid #222;
    margin-top: 1.5rem;
}

.product_meta > span {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.product_meta > span span,
.product_meta > span a {
    color: var(--text-secondary);
}

.product_meta > span a:hover {
    color: var(--color-primary);
}

/* Product Tabs */
.woocommerce-tabs {
    margin-top: var(--spacing-lg);
}

.wc-tabs {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    border-bottom: 1px solid #222;
}

.wc-tabs li {
    margin: 0;
}

.wc-tabs li a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: var(--transition-normal);
}

.wc-tabs li.active a,
.wc-tabs li a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.wc-tab {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
}

.wc-tab h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Related Products */
.related.products {
    margin-top: var(--spacing-lg);
}

.related.products h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}


/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Large Screens (1200px+) */
@media (min-width: 1200px) {
    .header-cta-btn {
        display: inline-flex;
    }
}

/* Medium Screens (992px - 1199px) */
@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Screens (768px - 991px) */
@media (max-width: 991px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    /* Header */
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation .nav-menu {
        display: none;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer Grid */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-company {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    /* Shop Wrapper */
    .shop-wrapper {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
    }
    
    .filter-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .sidebar-content {
        display: none;
    }
    
    .sidebar-content.active {
        display: block;
    }
    
    /* Shop Features */
    .shop-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Newsletter */
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Modal */
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-product-image {
        aspect-ratio: 1;
    }
}

/* Mobile Screens (576px - 767px) */
@media (max-width: 767px) {
    :root {
        --container-padding: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
    }
    
    .category-tab {
        white-space: nowrap;
    }
    
    /* Use Cases */
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-card {
        aspect-ratio: 16/9;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Video Stats */
    .video-stats {
        grid-template-columns: 1fr;
    }
    
    /* CTA */
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .shipping-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Shop */
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .shop-products .products {
        grid-template-columns: 1fr;
    }
    
    .shop-features {
        grid-template-columns: 1fr;
    }
    
    /* Floating Buttons */
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 1rem;
        right: 4rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Small Mobile Screens (< 576px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .video-title {
        font-size: 1.75rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

.animate-fadeInDown {
    animation: fadeInDown 0.5s ease forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 0.5s ease forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.5s ease forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.5s ease forwards;
}

/* Stagger Animation Delays */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ============================================
   LOADING STATES
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --color-primary: #ffd700;
        --text-secondary: #ffffff;
        --text-muted: #cccccc;
    }
}


/* ============================================
   VIDEO GALLERY SECTION
   ============================================ */
.video-gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-darker);
}

/* Featured Video */
.featured-video-wrapper {
    margin-bottom: var(--spacing-lg);
}

.featured-video {
    position: relative;
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.featured-video video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.featured-video-info {
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-top: 1px solid #222;
}

.featured-video-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.featured-video-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Video Embed */
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-embed iframe,
.video-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Gallery Grid - 5 per row */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

/* Video Thumb Placeholder */
.video-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
}

.video-thumb-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.video-thumb-placeholder i {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.6;
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.video-card:hover .video-thumb-placeholder i {
    opacity: 1;
    transform: scale(1.1);
}

.video-card {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #000;
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-normal);
}

.video-card:hover .video-thumbnail video {
    opacity: 1;
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.video-card:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.video-play-overlay i {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.9;
    transition: var(--transition-normal);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-card:hover .video-play-overlay i {
    transform: scale(1.1);
    opacity: 1;
}

.video-info {
    padding: 1rem 1.25rem;
    background: var(--bg-card);
}

.video-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.video-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
}

.lightbox-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-dark);
}

.lightbox-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

#lightboxVideoWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#lightboxVideoWrapper iframe,
#lightboxVideoWrapper video {
    width: 100%;
    height: 100%;
    border: none;
}

.lightbox-video-info {
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-top: 1px solid #222;
}

.lightbox-video-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

/* Load More Button */
.load-more-videos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-videos i {
    transition: var(--transition-normal);
}

.load-more-videos:hover i {
    transform: translateY(3px);
}

/* ============================================
   VIDEO GALLERY RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
    .video-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) {
    .video-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .featured-video-info {
        padding: 1rem 1.5rem;
    }
    
    .featured-video-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        width: 95%;
    }
    
    .lightbox-video-info {
        padding: 1rem;
    }
}
