/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: #000;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    animation: pulse-glow 3s ease-in-out infinite;
}
.announcement-bar span { color: #ff001b; }
@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== HEADER ===== */
.header {
    background: #0a0a0a;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.header-left { display: flex; align-items: center; gap: 20px; }
.menu-btn {
    color: #fff;
    font-size: 22px;
    padding: 8px;
    transition: opacity 0.3s;
}
.menu-btn:hover { opacity: 0.7; }
.logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.header-nav a:hover, .header-nav a.active { opacity: 1; }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-right button {
    color: #fff;
    font-size: 18px;
    padding: 8px;
    transition: opacity 0.3s;
}
.header-right button:hover { opacity: 0.7; }
.cart-count {
    background: #ff001b;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -4px;
    right: -6px;
    font-weight: 700;
}
.cart-wrapper { position: relative; }

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

/* ===== HERO FX (Enhanced Visual Hero) ===== */
.hero-fx {
    background: #000;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(229,62,62,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(147,51,234,0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(59,130,246,0.1) 0%, transparent 55%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(229,62,62,0.08) 0%, transparent 50%);
    z-index: 0;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: glowFloat 8s ease-in-out infinite;
}
.hero-glow-1 {
    width: 400px; height: 400px;
    background: rgba(229,62,62,0.2);
    top: 10%; left: 15%;
    animation-delay: 0s;
}
.hero-glow-2 {
    width: 350px; height: 350px;
    background: rgba(147,51,234,0.15);
    top: 40%; right: 10%;
    animation-delay: -3s;
}
.hero-glow-3 {
    width: 300px; height: 300px;
    background: rgba(59,130,246,0.12);
    bottom: 10%; left: 30%;
    animation-delay: -5s;
}
@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    33% { transform: translate(30px, -20px) scale(1.1); opacity: 0.8; }
    66% { transform: translate(-20px, 15px) scale(0.95); opacity: 0.5; }
}

/* Grid lines overlay */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.particle {
    position: absolute;
    background: rgba(229,62,62,0.6);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 6px rgba(229,62,62,0.4);
}
@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

/* Hero content */
.hero-fx .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229,62,62,0.12);
    border: 1px solid rgba(229,62,62,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ff6b6b;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: #e53e3e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero title FX */
.hero-title-fx {
    font-size: clamp(42px, 8vw, 90px) !important;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 20px;
}
.hero-line {
    display: block;
    animation: fadeInUp 0.8s ease-out both;
}
.hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero-line:nth-child(2) { animation-delay: 0.4s; }
.hero-line:nth-child(3) { animation-delay: 0.6s; }
.hero-line-gradient {
    background: linear-gradient(135deg, #e53e3e 0%, #ff6b35 30%, #ffd700 60%, #e53e3e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out both, shimmer 4s linear infinite;
    animation-delay: 0.4s, 0s;
    font-size: clamp(52px, 10vw, 110px);
}
.hero-line-small {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: 10px;
    opacity: 0.7;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Hero subtitle */
.hero-fx .hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.6;
    margin-bottom: 40px;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 1s both;
}
.cta-primary {
    background: linear-gradient(135deg, #e53e3e, #ff6b35) !important;
    color: #fff !important;
    border: none !important;
    padding: 16px 36px !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(229,62,62,0.4);
}
.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229,62,62,0.5);
}
.cta-outline {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    padding: 16px 36px !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
}
.cta-outline:hover {
    border-color: #fff !important;
    background: rgba(255,255,255,0.05) !important;
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}
.hero-stat {
    text-align: center;
}
.hero-stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}
.hero-stat-label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.15);
}

/* Legacy hero styles */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s;
}
.hero-cta:hover {
    background: #ff001b;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== PAGE HERO (for category/utility pages) ===== */
.page-hero {
    position: relative;
    padding: 140px 40px 80px;
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, #000 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.page-hero p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb {
    font-size: 13px;
    opacity: 0.4;
    margin-bottom: 20px;
}
.breadcrumb a { opacity: 0.7; transition: opacity 0.3s; }
.breadcrumb a:hover { opacity: 1; }

/* ===== LOGOS BAR ===== */
.logos-bar {
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}
.logos-bar .logo-item {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.4;
    white-space: nowrap;
    transition: opacity 0.3s;
}
.logos-bar .logo-item:hover { opacity: 0.8; }

/* ===== SECTION TITLES ===== */
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-label.green { background: linear-gradient(135deg, #00ff88, #00cc66); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label.blue { background: linear-gradient(135deg, #006dff, #00b4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label.orange { background: linear-gradient(135deg, #f5a800, #ff6b35); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label.red { background: linear-gradient(135deg, #ff001b, #ff6b35); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label.pink { background: linear-gradient(135deg, #ff46c7, #ff001b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label.purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label.cyan { background: linear-gradient(135deg, #00d4ff, #0099ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.6;
    max-width: 500px;
    line-height: 1.6;
}

/* ===== BUILT FOR YOU ===== */
.built-for-you { padding: 80px 40px 30px; }

/* ===== PRODUCTS ===== */
.products-section { padding: 20px 40px 80px; }
.products-section.full-page { padding: 60px 40px 80px; }
.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.products-header h2 { font-size: 28px; font-weight: 800; }
.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.view-all:hover { opacity: 1; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.product-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.06);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.product-image {
    position: relative;
    aspect-ratio: 1;
    background: #1a1a1a;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff001b;
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.product-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-rating .star { color: #ffd700; }
.product-info { padding: 20px; }
.product-vendor {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 6px;
}
.product-name { font-size: 16px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 12px; }
.product-pricing { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.price-sale { font-size: 18px; font-weight: 800; color: #ff001b; }
.price-original { font-size: 14px; font-weight: 400; opacity: 0.4; text-decoration: line-through; }
.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s;
}
.add-to-cart:hover { background: #ff001b; color: #fff; }

/* Buy Now Button (Lemonsqueezy) */
.buy-now-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid #ff001b;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.buy-now-btn:hover {
    background: #ff001b;
    color: #fff;
}

/* ===== COMPARISON ===== */
.comparison-section { padding: 80px 40px; }
.comparison-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.shop-now-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: gap 0.3s;
}
.shop-now-link:hover { gap: 14px; }
.comparison-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto;
}
.comparison-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comparison-before { clip-path: inset(0 50% 0 0); }
.comparison-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 10;
    cursor: ew-resize;
}
.comparison-slider::after {
    content: '⟺';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.comparison-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 5;
}
.comparison-label.before { left: 20px; }
.comparison-label.after { right: 20px; }

/* ===== STATS ===== */
.stats-section {
    padding: 80px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.stats-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #1a1a1a;
}
.stats-image img { width: 100%; height: 100%; object-fit: cover; }
.stats-content { flex: 1; }

/* ===== FEATURES ===== */
.features-section { padding: 80px 40px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    padding: 30px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(255,255,255,0.15); }
.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff001b, #ff6b35);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.feature-card p { font-size: 14px; font-weight: 300; opacity: 0.5; line-height: 1.6; }

/* ===== RATED ===== */
.rated-section {
    position: relative;
    padding: 120px 40px;
    text-align: center;
    overflow: hidden;
}
.rated-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
}
.rated-content { position: relative; z-index: 2; }
.rated-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}
.rated-stars i { color: #f5a80b; font-size: 20px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 40px; }
.testimonials-section h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 50px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.testimonial-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(255,255,255,0.2); }
.testimonial-card .stars { margin-bottom: 16px; color: #ffd700; font-size: 14px; }
.testimonial-card .text { font-size: 15px; font-weight: 300; line-height: 1.7; opacity: 0.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff001b, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}
.author-info .name { font-size: 14px; font-weight: 600; }
.author-info .role { font-size: 12px; opacity: 0.4; }

/* ===== CTA ===== */
.cta-section { padding: 80px 40px; text-align: center; }
.cta-section .section-title { max-width: 700px; margin: 0 auto 16px; }
.cta-section .section-desc { margin: 0 auto 30px; }
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.cta-button:hover { background: #fff; color: #000; }

/* ===== FOOTER ===== */
.footer {
    padding: 60px 40px 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; opacity: 0.4; line-height: 1.6; max-width: 300px; }
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.6;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; opacity: 0.4; transition: opacity 0.3s; }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p { font-size: 12px; opacity: 0.3; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { font-size: 16px; opacity: 0.4; transition: opacity 0.3s; }
.footer-socials a:hover { opacity: 1; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999;
    padding: 30px 40px;
    transition: left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    overflow-y: auto;
}
.mobile-menu.open { left: 0; }
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.close-menu { color: #fff; font-size: 24px; }
.mobile-menu nav a {
    display: block;
    font-size: 28px;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: padding-left 0.3s;
}
.mobile-menu nav a:hover { padding-left: 20px; }

/* ===== UTILITY PAGES ===== */
.utility-page { padding: 60px 40px 80px; max-width: 900px; margin: 0 auto; }
.utility-page h2 { font-size: 28px; font-weight: 800; margin-bottom: 30px; margin-top: 40px; }
.utility-page h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; margin-top: 30px; }
.utility-page p, .utility-page li {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 12px;
}
.utility-page ul { list-style: disc; padding-left: 24px; }
.utility-page a { color: #ff001b; }
.utility-page a:hover { text-decoration: underline; }

/* FAQ Accordion */
.faq-list { margin-top: 30px; }
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s;
}
.faq-question:hover { opacity: 0.7; }
.faq-question i { transition: transform 0.3s; font-size: 14px; opacity: 0.4; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; font-weight: 300; opacity: 0.6; line-height: 1.7; }

/* Contact Form */
.contact-form { margin-top: 30px; }
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.6;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: #ff001b;
}
.form-group textarea { min-height: 150px; resize: vertical; }
.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s;
}
.submit-btn:hover { background: #ff001b; color: #fff; }

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header { padding: 14px 20px; }
    .header-nav { display: none; }
    .logo { font-size: 24px; letter-spacing: 3px; }
    .logos-bar { gap: 30px; padding: 30px 20px; flex-wrap: wrap; }
    .logos-bar .logo-item { font-size: 14px; }
    .built-for-you, .products-section, .comparison-section,
    .stats-section, .features-section, .testimonials-section,
    .cta-section, .rated-section { padding-left: 20px; padding-right: 20px; }
    .stats-section { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .page-hero { padding: 120px 20px 60px; }
    .utility-page { padding: 40px 20px 60px; }
    .comparison-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ===== ADDITIONAL CLASSES FOR CATEGORY PAGES ===== */
.container { max-width: 1200px; margin: 0 auto; }

/* Hero with background-image (category pages) */
.hero {
    background-size: cover;
    background-position: center;
}

/* Badge variant */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff001b;
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Rating variant */
.rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}
.rating .star, .rating i { color: #ffd700; }

/* Footer section variant (category pages) */
.footer-section h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.6;
}
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 12px; }
.footer-section a { font-size: 14px; opacity: 0.4; transition: opacity 0.3s; }
.footer-section a:hover { opacity: 1; }
.footer-section p { font-size: 14px; opacity: 0.4; line-height: 1.6; max-width: 300px; }

/* Social links */
.social-links { display: flex; gap: 16px; }
.social-links a { font-size: 18px; opacity: 0.4; transition: opacity 0.3s; }
.social-links a:hover { opacity: 1; }

/* Mobile nav variant */
.mobile-nav a {
    display: block;
    font-size: 28px;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: padding-left 0.3s;
}
.mobile-nav a:hover { padding-left: 20px; }
.mobile-nav a.active { opacity: 0.6; }

/* Header nav active state */
.header-nav a.active { opacity: 1; color: #ff001b; }

/* ===================================================================
   INDEX.HTML SPECIFIC STYLES (new structure)
   =================================================================== */

/* Header container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.hamburger {
    color: #fff;
    font-size: 22px;
    padding: 8px;
    transition: opacity 0.3s;
    display: none;
}
.hamburger:hover { opacity: 0.7; }

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.nav-desktop a:hover { opacity: 1; }

/* Header buttons */
.search-btn, .cart-btn {
    color: #fff;
    font-size: 18px;
    padding: 8px;
    transition: opacity 0.3s;
    position: relative;
}
.search-btn:hover, .cart-btn:hover { opacity: 0.7; }
.cart-counter {
    background: #ff001b;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -4px;
    right: -6px;
    font-weight: 700;
}

/* Header scrolled state */
.header.scrolled {
    background: rgba(10,10,10,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Mobile menu - active state (index.html uses .active instead of .open) */
.mobile-menu.active { left: 0; }
.mobile-menu-close {
    color: #fff;
    font-size: 24px;
    padding: 8px;
    transition: opacity 0.3s;
}
.mobile-menu-close:hover { opacity: 0.7; }
.mobile-menu-header h2 {
    font-size: 24px;
    font-weight: 800;
}
.mobile-menu-nav a {
    display: block;
    font-size: 22px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: padding-left 0.3s, opacity 0.3s;
}
.mobile-menu-nav a:hover { padding-left: 20px; opacity: 0.7; }
.mobile-menu-nav hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin: 10px 0;
}

/* Hero title variants */
.hero-title {
    font-size: clamp(42px, 8vw, 100px);
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* CTA button in hero (filled style) */
.hero .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.hero .cta-button:hover {
    background: #ff001b;
    color: #fff;
    transform: translateY(-2px);
}

/* Logos container */
.logos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.logos-bar .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.logos-bar .logo-item i {
    font-size: 24px;
    opacity: 0.5;
}
.logos-bar .logo-item p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
}

/* Section container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-subtitle {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.7;
    margin-bottom: 12px;
}
.section-description {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.5;
    line-height: 1.7;
    max-width: 700px;
}

/* Products section (index uses .products, not .products-section) */
.products {
    padding: 60px 40px 80px;
}

/* Product card as link (index uses <a> tags) */
a.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Product image with background-image */
.product-image {
    background-size: cover;
    background-position: center;
}

/* Product price variants */
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.current-price {
    font-size: 18px;
    font-weight: 800;
    color: #ff001b;
}
.original-price {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.4;
    text-decoration: line-through;
}
.product-desc {
    font-size: 13px;
    opacity: 0.5;
}
.product-info h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

/* ===== COMPARISON SLIDER (new structure for index.html) ===== */
/* The old .comparison-slider was the handle, now it's the container */
.comparison-section .comparison-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
    margin: 30px auto 0;
    background: #1a1a1a;
    cursor: ew-resize;
    /* Override the old absolute positioning */
    top: auto;
    bottom: auto;
    left: auto;
}
.comparison-section .comparison-slider::after {
    display: none; /* Remove the old pseudo-element handle */
}
.comparison-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comparison-image.before {
    width: 50%;
    z-index: 2;
    clip-path: none;
}
.comparison-image.after {
    z-index: 1;
}
.comparison-image .comparison-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 5;
}
.comparison-image.before .comparison-label { left: 20px; }
.comparison-image.after .comparison-label { right: 20px; }

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    pointer-events: none;
}
.comparison-section .comparison-slider {
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}
.comparison-handle i {
    position: absolute;
    background: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    pointer-events: none;
}
.comparison-handle i:first-child {
    left: -22px;
}
.comparison-handle i:last-child {
    left: 6px;
}

/* Stats with background-image */
.stats-image {
    background-size: cover;
    background-position: center;
}
.stat-item h3 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 8px;
}
.stat-item p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.6;
}

/* Rating section (index.html) */
.rating-section {
    padding: 80px 40px;
    text-align: center;
}
.rating-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 50%, #0d0d0d 100%);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}
.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}
.rating-stars i { color: #f5a80b; font-size: 22px; }
.rating-score {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}
.rating-text {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.5;
}

/* Testimonial variants (index.html) */
.testimonial-stars {
    margin-bottom: 16px;
    color: #ffd700;
    font-size: 14px;
}
.testimonial-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 20px;
    font-style: italic;
}
p.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.5;
}

/* Instagram CTA (index.html) */
.instagram-cta {
    padding: 80px 40px;
    text-align: center;
}
.instagram-cta h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
}
.instagram-cta p {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.6;
    margin-bottom: 30px;
}
.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s;
}
.instagram-button:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Footer container (index.html uses .footer-container instead of .footer-grid) */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* ===== RESPONSIVE for new index.html ===== */
@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .hamburger { display: block; }
    .logos-container { gap: 30px; }
    .instagram-cta, .rating-section { padding-left: 20px; padding-right: 20px; }
    .products { padding-left: 20px; padding-right: 20px; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .footer-container { grid-template-columns: 1fr; }
    .logos-container { gap: 20px; }
}

/* ===== CART DRAWER ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    border-left: 1px solid rgba(255,255,255,0.08);
}
.cart-drawer.active {
    right: 0;
}
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-drawer-header h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cart-drawer-header .cart-item-count {
    font-size: 14px;
    opacity: 0.5;
    font-weight: 400;
    margin-left: 8px;
}
.cart-close-btn {
    color: #fff;
    font-size: 20px;
    padding: 8px;
    transition: opacity 0.3s;
}
.cart-close-btn:hover { opacity: 0.6; }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}
.cart-empty i {
    font-size: 48px;
    opacity: 0.15;
    margin-bottom: 20px;
}
.cart-empty p {
    font-size: 15px;
    opacity: 0.4;
    margin-bottom: 24px;
}
.cart-empty a {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s;
}
.cart-empty a:hover {
    background: #ff001b;
    color: #fff;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    flex-shrink: 0;
}
.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.cart-item-price {
    font-size: 15px;
    font-weight: 800;
    color: #ff001b;
}
.cart-item-remove {
    color: #fff;
    opacity: 0.3;
    font-size: 14px;
    padding: 8px;
    transition: opacity 0.3s, color 0.3s;
    align-self: center;
}
.cart-item-remove:hover {
    opacity: 1;
    color: #ff001b;
}

/* Cart Footer */
.cart-drawer-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.cart-subtotal-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
}
.cart-subtotal-value {
    font-size: 20px;
    font-weight: 800;
}
.cart-savings {
    font-size: 12px;
    color: #00cc66;
    margin-bottom: 16px;
    text-align: right;
}
.checkout-btn {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.checkout-btn:hover {
    background: #ff001b;
    color: #fff;
}
.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.continue-shopping:hover { opacity: 1; }

/* Added to cart animation on button */
.add-to-cart.added {
    background: #00cc66 !important;
    color: #fff !important;
    pointer-events: none;
}
