.price-current,
.price-original,
.price-discount,
.product-price,
.product-price-box,
.cart-item-price,
.search-result-price,
.summary-row,
.promo-code,
.summary-divider {
    display: none !important;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: #0a0a0b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFEB3B 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo i {
    font-size: 2.5rem;
    color: #0a0a0b;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(255, 215, 0, 0.2); }
}

.preloader-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFEB3B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #FFD700, #FFC107, #FFEB3B);
    border-radius: 3px;
    animation: preloaderBar 2s ease-in-out forwards;
}

@keyframes preloaderBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ========== CURSOR GLOW ========== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-glow.active {
    opacity: 1;
}

/* ========== PARTICLES ========== */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delay */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========== ANIMATED GRADIENT TEXT ========== */
.gradient-text-animated {
    background: linear-gradient(90deg, #FFD700, #FFEB3B, #FFC107, #FFD700);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientTextMove 4s ease infinite;
}

@keyframes gradientTextMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========== GLASSMORPHISM ========== */
.glass-card {
    background: rgba(26, 26, 29, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15) !important;
}

/* ========== CARD HOVER GLOW ========== */
.glow-hover {
    position: relative;
    overflow: hidden;
}

.glow-hover::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: inherit;
}

.glow-hover:hover::before {
    opacity: 1;
}

.glow-hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
}

.glow-hover:hover::after {
    opacity: 1;
}

/* ========== COUNTER ANIMATION ========== */
.counter {
    display: inline-block;
}

/* ========== SHIMMER EFFECT ========== */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmerMove 2s infinite;
}

@keyframes shimmerMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ========== FLOATING ANIMATION ========== */
.float-animation {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== PULSE BORDER ========== */
.pulse-border {
    position: relative;
}

.pulse-border::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: inherit;
    animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* ========== TILT EFFECT ========== */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

/* ========== BASE & VARIABLES ========== */
:root {
    --primary: #FFD700;
    --primary-dark: #FFC107;
    --secondary: #FFEB3B;
    --accent: #FFF176;
    --success: #4ade80;
    --warning: #fbbf24;
    --danger: #f87171;
    --dark: #0a0a0b;
    --dark-light: #141416;
    --dark-card: #1a1a1d;
    --gray: #52525b;
    --gray-light: #a1a1aa;
    --light: #f4f4f5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFEB3B 100%);
    --gradient-dark: linear-gradient(180deg, rgba(255, 215, 0, 0.08) 0%, transparent 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 40px rgba(255, 215, 0, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --border-subtle: rgba(255, 215, 0, 0.15);
    --border-gold: rgba(255, 215, 0, 0.35);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
}

/* Premium Selection Color */
::selection {
    background: var(--primary);
    color: var(--dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
a:hover { color: var(--primary); }
ul { list-style: none; }
img { max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== ANNOUNCEMENT BANNER ========== */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
    padding: 12px 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.announcement-content i {
    font-size: 1rem;
}

.announcement-content strong {
    font-weight: 700;
}

.announcement-spin {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 10px 20px rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.1);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.btn-secondary:hover::before {
    width: 300%;
    height: 300%;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline:hover {
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-large { padding: 16px 32px; font-size: 1rem; }

.btn-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.btn-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: whatsapp-pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 60px;
    background: var(--dark-card);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark-card);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 44px; /* Space for announcement bar */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    top: 0;
    background: rgba(10, 10, 11, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--border-subtle), 0 10px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo i { 
    color: var(--primary); 
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.logo:hover i {
    transform: rotate(10deg) scale(1.1);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo .accent { color: var(--primary); }

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--gray-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-link:hover, .nav-link.active { color: var(--white); }

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions .btn-primary {
    padding: 10px 20px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.cart-btn { 
    position: relative;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--light);
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(232, 213, 163, 0.03) 0%, transparent 70%);
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: title-fade-in 1s ease-out;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

@keyframes title-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 32px;
    animation: subtitle-fade-in 1s ease-out 0.2s backwards;
}

@keyframes subtitle-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: buttons-fade-in 1s ease-out 0.4s backwards;
}

@keyframes buttons-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: stats-fade-in 1s ease-out 0.6s backwards;
}

@keyframes stats-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item { 
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number,
.stat-text {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-text {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

/* ========== PHONE SHOWCASE - SPECTACULAR ========== */
.phone-showcase {
    position: relative;
    width: 500px;
    height: 600px;
}

.phone-main {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Phone Frame - Premium Design */
.phone-frame {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #1a1a1d 0%, #0a0a0b 50%, #1a1a1d 100%);
    border-radius: 45px;
    padding: 10px;
    position: relative;
    box-shadow: 
        0 0 0 2px rgba(255, 215, 0, 0.3),
        0 50px 100px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(255, 215, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: phoneFloat 4s ease-in-out infinite;
}

/* Side Buttons */
.phone-frame::before {
    content: '';
    position: absolute;
    right: -3px;
    top: 120px;
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, #2a2a2d, #1a1a1d, #2a2a2d);
    border-radius: 0 2px 2px 0;
}

.phone-frame::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 150px;
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, #2a2a2d, #1a1a1d, #2a2a2d);
    border-radius: 2px 0 0 2px;
}

/* Notch */
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0a0a0b;
    border-radius: 0 0 20px 20px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.phone-notch::before {
    content: '';
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #333 40%, #111 60%);
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(255, 215, 0, 0.3);
}

.phone-notch::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #222;
    border-radius: 50%;
}

/* Screen Display */
.phone-screen-display {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #0f0f12 0%, #15151a 50%, #0f0f12 100%);
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screen-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: screenGlow 4s ease-in-out infinite alternate;
}

@keyframes screenGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.honor-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    margin-bottom: 30px;
}

.honor-logo i {
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: crownPulse 2s ease-in-out infinite;
}

@keyframes crownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.honor-logo span {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 8px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phone-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    z-index: 5;
}

.phone-status i {
    color: var(--primary);
    font-size: 1rem;
    animation: statusBlink 1.5s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.phone-status span {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Phone Float Animation */
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Phone Glow */
.phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
}

/* Phone Reflection */
.phone-reflection {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%) scaleY(-0.3) scaleX(0.9);
    width: 260px;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 45px 45px 0 0;
    filter: blur(10px);
    opacity: 0.3;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(26, 26, 29, 0.9);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 20;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.1rem;
}

.card-1 {
    top: 10%;
    left: -5%;
    animation: floatCard1 5s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: -10%;
    animation: floatCard2 4s ease-in-out infinite 0.5s;
}

.card-3 {
    bottom: 15%;
    left: 0%;
    animation: floatCard3 4.5s ease-in-out infinite 1s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Orbit Ring */
.orbit-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitSpin 15s linear infinite;
    z-index: 5;
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--dark-card);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.orbit-icon i {
    color: var(--primary);
    font-size: 1rem;
    animation: orbitSpin 15s linear infinite reverse;
}

.orbit-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-2 { bottom: 15%; right: 5%; }
.orbit-3 { bottom: 15%; left: 5%; }

/* Tech Circles */
.tech-circle {
    position: absolute;
    border: 1px dashed var(--border-gold);
    border-radius: 50%;
    opacity: 0.2;
}

.circle-1 {
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circleRotate 25s linear infinite;
}

.circle-2 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circleRotate 35s linear infinite reverse;
    border-style: dotted;
}

@keyframes circleRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========== BRANDS ========== */
.brands {
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.brands-title {
    text-align: center;
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-light);
    font-weight: 500;
}

.brand-item i { font-size: 1.5rem; color: var(--primary); }

/* ========== SECTIONS ========== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* ========== FEATURES ========== */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ========== PRODUCTS ========== */
.products-section { padding: 100px 0; background: var(--dark); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
}

.product-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Card glow effect on hover */
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 15px 5px rgba(255, 215, 0, 0.2); }
}

.product-image {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(212, 175, 55, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Shimmer effect on product image */
.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-card:hover .product-image::after {
    left: 100%;
}

.product-image i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.product-card:hover .product-image i {
    transform: scale(1.1);
    opacity: 1;
}

.product-content { padding: 20px; position: relative; z-index: 2; }

.product-category {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-title a:hover { color: var(--primary); }

.product-subtitle {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-rating i { color: var(--primary); }
.product-rating .reviews { color: var(--gray); }

.product-downloads {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-light);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.price-original {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
}

.btn-add-cart {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius);
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* ========== CATEGORIES ========== */
.categories { padding: 100px 0; background: var(--dark-light); }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.category-card:hover::before {
    width: 300%;
    height: 300%;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.category-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.category-card p { color: var(--gray-light); font-size: 0.9rem; margin-bottom: 12px; }

.category-count {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

/* ========== HOW IT WORKS ========== */
.how-it-works { padding: 100px 0; }

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    padding-top: 40px;
    text-align: center;
    max-width: 280px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 215, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 20px auto;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
    color: var(--secondary);
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.step-card p { color: var(--gray-light); font-size: 0.9rem; }

.step-connector {
    color: var(--gray);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    animation: pulse-connector 2s ease-in-out infinite;
}

@keyframes pulse-connector {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 100px 0; background: var(--dark-light); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(255, 215, 0, 0.1);
    line-height: 1;
    transition: all 0.4s ease;
}

.testimonial-card:hover::before {
    color: rgba(255, 215, 0, 0.25);
    transform: scale(1.2);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 215, 0, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating i { 
    color: var(--primary); 
    transition: transform 0.2s ease;
}

.testimonial-card:hover .testimonial-rating i {
    animation: star-bounce 0.4s ease forwards;
}

.testimonial-card:hover .testimonial-rating i:nth-child(1) { animation-delay: 0s; }
.testimonial-card:hover .testimonial-rating i:nth-child(2) { animation-delay: 0.05s; }
.testimonial-card:hover .testimonial-rating i:nth-child(3) { animation-delay: 0.1s; }
.testimonial-card:hover .testimonial-rating i:nth-child(4) { animation-delay: 0.15s; }
.testimonial-card:hover .testimonial-rating i:nth-child(5) { animation-delay: 0.2s; }

@keyframes star-bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.testimonial-text {
    color: var(--light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    transition: all 0.4s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.author-info h4 { font-size: 1rem; margin-bottom: 2px; }
.author-info span { font-size: 0.85rem; color: var(--gray-light); }

/* ========== CTA ========== */
.cta {
    padding: 100px 0;
    background: var(--gradient-gold);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    animation: cta-pattern-move 20s linear infinite;
}

@keyframes cta-pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.cta > * {
    position: relative;
    z-index: 1;
}

.cta h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; color: var(--dark); }
.cta p { font-size: 1.2rem; color: var(--dark); opacity: 0.8; margin-bottom: 32px; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; }

.cta .btn-primary {
    background: var(--dark);
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta .btn-primary::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: left 0.5s ease;
}

.cta .btn-primary:hover::before {
    left: 100%;
}

.cta .btn-primary:hover {
    background: var(--dark-card);
    transform: scale(1.05);
}

.cta .btn-outline { border-color: var(--dark); color: var(--dark); }
.cta .btn-outline:hover { background: var(--dark); color: var(--primary); transform: scale(1.05); }

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #050505 100%);
    padding: 80px 0 24px;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p { color: var(--gray-light); margin: 16px 0 24px; }

.social-links { display: flex; gap: 12px; }

.social-link {
    width: 44px;
    height: 44px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    transition: all 0.3s;
}

.social-link:hover { 
    background: var(--primary); 
    color: var(--dark); 
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--gray-light); transition: all 0.3s; }
.footer-links ul li a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-light);
}

.footer-contact ul li i { color: var(--primary); width: 20px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p { color: var(--gray); font-size: 0.9rem; }

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a { color: var(--gray); font-size: 0.9rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    text-align: center;
}

.page-title { font-size: 3rem; font-weight: 800; margin-bottom: 16px; }
.page-subtitle { color: var(--gray-light); font-size: 1.1rem; margin-bottom: 24px; }

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.breadcrumb a { color: var(--gray-light); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { color: var(--gray); font-size: 0.75rem; }
.breadcrumb span { color: var(--white); }

.breadcrumb-section {
    padding: 100px 0 20px;
}

/* ========== PRODUCTS PAGE ========== */
.products-page { padding: 60px 0 100px; }

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.filter-section h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.filter-section h3 i { color: var(--primary); }

.filter-section h4 { font-size: 0.95rem; margin-bottom: 12px; color: var(--gray-light); }

.clear-filters {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    cursor: pointer;
}

.filter-search {
    position: relative;
}

.filter-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.filter-search input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    background: var(--dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--light);
    font-size: 0.9rem;
}

.filter-search input:focus { outline: none; border-color: var(--primary); }

.filter-options { display: flex; flex-direction: column; gap: 10px; }

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: color 0.3s;
}

.filter-option:hover { color: var(--white); }

.filter-option input { display: none; }

.checkmark, .checkbox-mark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

.checkbox-mark { border-radius: 4px; }

.filter-option input:checked + .checkmark,
.filter-option input:checked + .checkbox-mark {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-option input:checked + .checkmark::after,
.filter-option input:checked + .checkbox-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--dark);
    border-radius: 50%;
}

.filter-option input:checked + .checkbox-mark::after {
    width: 10px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230a0a0b'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
    border-radius: 0;
}

/* Products Main */
.products-main { min-width: 0; }

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.results-count { color: var(--gray-light); font-size: 0.9rem; }
.results-count span { color: var(--primary); font-weight: 600; }

.toolbar-actions { display: flex; align-items: center; gap: 16px; }

.sort-dropdown select {
    padding: 10px 16px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--light);
    font-size: 0.9rem;
    cursor: pointer;
}

.view-toggle { display: flex; gap: 4px; }

.view-btn {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn.active, .view-btn:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
}

.no-results i { font-size: 4rem; color: var(--gray); margin-bottom: 20px; }
.no-results h3 { font-size: 1.5rem; margin-bottom: 8px; }
.no-results p { color: var(--gray-light); margin-bottom: 24px; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover:not(:disabled), .page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.page-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.page-dots { color: var(--gray); padding: 0 8px; }

/* ========== CART PAGE ========== */
.cart-section { padding: 60px 0 100px; }

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
}

.cart-items-container {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.cart-header h2 { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; }

.clear-cart-btn {
    background: none;
    border: none;
    color: var(--danger);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(212, 175, 55, 0.15));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image i { font-size: 2rem; color: var(--primary); }

.cart-item-details h3 { font-size: 1rem; margin-bottom: 4px; }
.cart-item-details p { font-size: 0.85rem; color: var(--gray-light); margin-bottom: 6px; }

.cart-item-category {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary);
    font-size: 0.75rem;
    border-radius: 4px;
}

.cart-item-price .current-price { font-size: 1.1rem; font-weight: 700; color: var(--success); }
.cart-item-price .original-price { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; display: block; }

.remove-item {
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: var(--radius);
    color: var(--danger);
    cursor: pointer;
    transition: all 0.3s;
}

.remove-item:hover { background: var(--danger); color: var(--white); }

.empty-cart {
    flex-direction: column;
    align-items: center;
    padding: 60px;
    text-align: center;
}

.empty-cart-icon { font-size: 5rem; color: var(--gray); margin-bottom: 20px; }
.empty-cart h3 { font-size: 1.5rem; margin-bottom: 8px; }
.empty-cart p { color: var(--gray-light); margin-bottom: 24px; }

/* Order Summary */
.order-summary {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 { font-size: 1.25rem; margin-bottom: 24px; color: var(--primary); }

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.summary-row span:first-child { color: var(--gray-light); }
.summary-row .discount { color: var(--success); }

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 16px;
    color: var(--primary);
}

.summary-divider { height: 1px; background: var(--border-subtle); margin: 16px 0; }

.promo-code {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.promo-code input {
    flex: 1;
    padding: 10px 14px;
    background: var(--dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--light);
    font-size: 0.9rem;
}

.btn-apply {
    padding: 10px 16px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius);
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.btn-checkout:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.payment-methods { text-align: center; margin-bottom: 20px; }
.payment-methods p { font-size: 0.85rem; color: var(--gray-light); margin-bottom: 12px; }
.payment-icons { display: flex; justify-content: center; gap: 16px; font-size: 1.5rem; color: var(--gray); }

.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius);
}

.guarantee-box i { color: var(--success); font-size: 1.5rem; }
.guarantee-box h4 { font-size: 0.9rem; margin-bottom: 4px; }
.guarantee-box p { font-size: 0.8rem; color: var(--gray-light); }

.continue-shopping { margin-top: 32px; }

/* Cart Features */
.cart-features { padding: 60px 0; background: var(--dark-light); }

.cart-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cart-feature {
    text-align: center;
    padding: 24px;
}

.cart-feature i { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.cart-feature h4 { font-size: 1rem; margin-bottom: 8px; }
.cart-feature p { font-size: 0.85rem; color: var(--gray-light); }

/* ========== PRODUCT DETAIL ========== */
.product-detail { padding: 40px 0 100px; }

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.product-image-section { position: relative; }

.product-image-main {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(212, 175, 55, 0.15));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
}

.product-icon-large i { font-size: 8rem; color: var(--primary); }

.product-meta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.meta-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.meta-card i { color: var(--primary); margin-bottom: 8px; display: block; }
.meta-card span { font-size: 0.85rem; color: var(--gray-light); }

.product-category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
}

.product-info-section .product-title { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.product-info-section .product-subtitle { color: var(--gray-light); margin-bottom: 16px; }

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.product-rating .stars i { color: var(--primary); }
.rating-text { color: var(--gray-light); font-size: 0.9rem; }
.downloads-text { color: var(--gray-light); font-size: 0.9rem; display: flex; align-items: center; gap: 4px; }

.product-price-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.price-main { display: flex; align-items: flex-start; }
.price-main .currency { font-size: 1.5rem; font-weight: 700; color: var(--success); }
.price-main .price-value { font-size: 3rem; font-weight: 800; color: var(--success); line-height: 1; }
.price-original { font-size: 1.2rem; color: var(--gray); text-decoration: line-through; }
.discount-badge { padding: 4px 12px; background: var(--danger); color: var(--white); font-size: 0.85rem; font-weight: 600; border-radius: 4px; }

.product-description, .product-specs { margin-bottom: 24px; }
.product-description h3, .product-specs h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--primary); }
.product-description p { color: var(--gray-light); line-height: 1.7; }

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
}

.spec-label { color: var(--gray-light); }
.spec-value { font-weight: 600; }

.product-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.product-actions button { flex: 1; }

.product-guarantees {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.guarantee-item i { color: var(--success); }

/* Product Tabs */
.product-tabs { margin-bottom: 60px; }

.tabs-header {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 24px;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover { color: var(--white); }

.tab-btn.active { color: var(--primary); }

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

.tab-pane h3 { font-size: 1.25rem; margin-bottom: 16px; color: var(--primary); }
.tab-pane h4 { font-size: 1rem; margin: 20px 0 12px; }
.tab-pane p { color: var(--gray-light); line-height: 1.7; }
.tab-pane ul { margin-left: 20px; color: var(--gray-light); }
.tab-pane ul li { margin-bottom: 8px; }

.compatibility-list { margin: 20px 0; }

.compat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    margin-bottom: 8px;
}

.compat-item.success i { color: var(--success); }
.compat-item.warning i { color: var(--primary); }

.compat-note, .warning-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.compat-note { background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.2); }
.compat-note i { color: var(--primary); }
.warning-box { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); }
.warning-box i { color: var(--warning); }

.instruction-steps { margin: 20px 0; }

.instruction-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.instruction-step .step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    position: static;
    transform: none;
    color: var(--dark);
}

.step-content h4 { margin: 0 0 4px; }
.step-content p { margin: 0; }

/* Reviews */
.reviews-summary {
    padding: 24px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 24px;
}

.rating-big .rating-number { font-size: 4rem; font-weight: 800; color: var(--primary); }
.stars-big { margin: 8px 0; }
.stars-big i { font-size: 1.5rem; color: var(--primary); }
.total-reviews { color: var(--gray-light); }

.reviews-list { display: flex; flex-direction: column; gap: 16px; }

.review-item {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

.reviewer-info h4 { font-size: 1rem; margin-bottom: 4px; }

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars-small i { color: var(--primary); font-size: 0.85rem; }
.review-date { color: var(--gray); font-size: 0.85rem; }

.verified-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--success);
    font-size: 0.85rem;
}

.review-text { color: var(--gray-light); line-height: 1.7; }

.related-products .section-title { margin-bottom: 24px; }

/* ========== MODAL ========== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal.active { opacity: 1; visibility: visible; }

.modal-content { 
    background: var(--dark-card); 
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); 
    width: 100%; 
    max-width: 600px; 
}

.search-modal { padding: 0; }

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.search-box i { color: var(--primary); font-size: 1.2rem; }

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.1rem;
    outline: none;
}

.close-modal {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.2rem;
    cursor: pointer;
}

.search-results { padding: 20px; max-height: 400px; overflow-y: auto; }

.search-hint { color: var(--gray); text-align: center; }

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius);
    transition: background 0.3s;
}

.search-result-item:hover { background: rgba(255, 215, 0, 0.1); }

.search-result-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(212, 175, 55, 0.15));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-result-icon i { color: var(--primary); font-size: 1.2rem; }

.search-result-info { flex: 1; }
.search-result-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.search-result-info p { font-size: 0.85rem; color: var(--gray-light); }
.search-result-price { font-weight: 700; color: var(--success); }

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--dark-card);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    color: var(--white);
    box-shadow: var(--shadow-gold);
    transform: translateX(150%);
    transition: transform 0.3s;
    z-index: 3000;
}

.toast.show { transform: translateX(0); }
.toast i { color: var(--primary); font-size: 1.2rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-image { display: none; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; }
    .cart-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-light);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    .nav-menu.active { display: flex; }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
    .nav-actions .btn-primary { display: none; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    
    .products-layout { grid-template-columns: 1fr; }
    .filters-sidebar { position: static; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    
    .cart-layout { grid-template-columns: 1fr; }
    .order-summary { position: static; }
    
    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }
    
    .product-actions { flex-direction: column; }
    .product-guarantees { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .section-title { font-size: 1.75rem; }
    .page-title { font-size: 2rem; }
    
    .products-grid { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 60px 1fr; gap: 12px; }
    .cart-item-price { grid-column: span 2; }
    .remove-item { position: absolute; top: 20px; right: 20px; }
    .cart-items-container { position: relative; }
    
    .cart-features-grid { grid-template-columns: 1fr; }
    .product-meta-cards { grid-template-columns: 1fr; }
    .tabs-header { overflow-x: auto; }
    .tab-btn { white-space: nowrap; padding: 12px 16px; }
    
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* ========== TRUST BADGES ========== */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid var(--border-subtle);
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: var(--border-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.trust-badge span {
    font-size: 0.85rem;
    color: var(--gray-light);
    font-weight: 500;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 100px 0;
    background: var(--dark-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* ========== REMOTE SERVICE SECTION ========== */
.remote-service {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.03) 0%, transparent 50%, rgba(255, 215, 0, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.remote-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--border-subtle), transparent);
    transform: translateX(-50%);
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.service-subtitle {
    font-size: 1.3rem;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.service-features {
    max-width: 900px;
    margin: 0 auto 60px;
    background: var(--dark-card);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.1);
}

.feature-list {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid #FFD700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.feature-item i {
    color: #FFD700;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.feature-item span {
    color: var(--white);
    font-size: 1.05rem;
}

.service-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.service-cta p {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.supported-models {
    max-width: 1000px;
    margin: 0 auto;
}

.models-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.model-item {
    background: var(--dark-card);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
    text-align: center;
}

.model-item:hover {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    color: var(--white);
}

@media (max-width: 768px) {
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-features {
        padding: 30px 20px;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--dark);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== SOCIAL PROOF POPUP ========== */
.social-proof {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9997;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
}

.social-proof.show {
    transform: translateX(0);
}

.social-proof-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-proof-content h5 {
    font-size: 0.9rem;
    color: var(--light);
    margin-bottom: 4px;
}

.social-proof-content p {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.social-proof-content .time {
    font-size: 0.75rem;
    color: var(--primary);
    margin-top: 4px;
}

.social-proof-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 4px;
    transition: color 0.3s ease;
}

.social-proof-close:hover {
    color: var(--light);
}

/* ========== MOBILE RESPONSIVE IMPROVEMENTS ========== */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 75px;
        right: 20px;
        font-size: 1rem;
    }
    
    .social-proof {
        left: 10px;
        right: 10px;
        bottom: 20px;
        max-width: calc(100% - 20px);
    }
    
    .trust-badges {
        gap: 12px;
    }
    
    .trust-badge {
        padding: 10px 14px;
        flex: 1 1 calc(50% - 12px);
        justify-content: center;
    }
    
    .trust-badge i {
        font-size: 1.2rem;
    }
    
    .trust-badge span {
        font-size: 0.75rem;
    }
    
    .faq-question {
        padding: 16px 18px;
    }
    
    .faq-question h4 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }
    
    /* Phone Showcase Mobile */
    .phone-showcase {
        width: 280px;
        height: 400px;
        margin: 0 auto;
    }
    
    .phone-frame {
        width: 180px;
        height: 360px;
    }
    
    .phone-screen {
        width: 166px;
        height: 346px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .orbit-ring {
        width: 260px;
        height: 260px;
    }
    
    .tech-circle {
        display: none;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    /* Announcement Bar Mobile */
    .announcement-bar {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    .announcement-bar i {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .trust-badge {
        flex: 1 1 100%;
    }
    
    .social-proof {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .social-proof-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .social-proof-content h5 {
        font-size: 0.8rem;
    }
    
    .social-proof-content p {
        font-size: 0.75rem;
    }
    
    .phone-showcase {
        width: 240px;
        height: 350px;
    }
    
    .phone-frame {
        width: 160px;
        height: 320px;
    }
    
    .phone-screen {
        width: 148px;
        height: 306px;
    }
    
    .orbit-ring {
        width: 220px;
        height: 220px;
    }
}

