/* ============================================
   PRODUCTS PAGE - PRODUCTION READY DESIGN
   Exact match with homepage trending cards
   ============================================ */

/* ============================================
   RESET & VARIABLES
   ============================================ */
:root {
    --purple-primary: #7C3AED;
    --purple-dark: #6D28D9;
    --purple-chip: #5B21B6;
    --purple-chip-bg: #EEE8FF;
    --green-discount: #16A34A;
    --gold-star: #FFC107;
    --gray-text: #9CA3AF;
    --gray-light: #F3F4F6;
    --gray-border: #D1D5DB;
}

/* Critical Reset - Remove ALL margins/padding from body/html */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

*,
*::before,
*::after {
    box-sizing: border-box !important;
}

/* Button normalization - prevent height variations */
button {
    font: inherit !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

/* ============================================
   HIDE OLD ELEMENTS & REMOVE OFFSETS
   ============================================ */
.filter-section,
.desktop-filter,
.mobile-filter-button,
.mobile-filter-drawer,
.quick-nav,
.category-pills,
.category-title,
.sort-select,
.product-info>p {
    display: none !important;
}

/* Hide "Show more features" on mobile only */
@media (max-width: 768px) {
    .show-more {
        display: none !important;
    }
}

/* Override any margin-left from filter sidebar */
.quick-nav {
    margin-left: 0 !important;
    width: 100% !important;
}

/* Prevent horizontal scroll */
body,
html {
    overflow-x: hidden !important;
}

/* ============================================
   CONTAINER - REMOVE ALL OFFSETS
   ============================================ */
.products-list {
    padding: 40px 0 !important;
    background: #fafafa !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.products-list .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
}

.products-list .products {
    display: none !important;
}

/* ============================================
   HERO - REDESIGNED MODERN PREMIUM STYLE
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%) !important;
    padding: 80px 20px 50px !important;
    text-align: center !important;
    margin: 0 !important;
    margin-top: 80px !important;
    /* Push below fixed navbar */
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Desktop Hero Redesign - Modern Premium Look */
@media (min-width: 769px) {
    .contact-hero {
        background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%) !important;
        padding: 100px 20px 70px !important;
        position: relative !important;
    }

    /* Animated gradient overlay */
    .contact-hero::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: linear-gradient(135deg,
                rgba(147, 51, 234, 0.1) 0%,
                rgba(168, 85, 247, 0.05) 50%,
                rgba(6, 182, 212, 0.08) 100%) !important;
        pointer-events: none !important;
        z-index: 0 !important;
    }

    /* Subtle pattern overlay */
    .contact-hero::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0) !important;
        background-size: 40px 40px !important;
        pointer-events: none !important;
        z-index: 0 !important;
    }
}

.contact-hero .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
    position: relative !important;
    z-index: 1 !important;
}

.contact-hero h1 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    background: linear-gradient(to right, #FFD700, #FF8C00, #FF0080) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    /* Subtle glow that matches the gradient */
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.4)) !important;
    margin-bottom: 15px !important;
}

.contact-hero p {
    font-size: 1.2rem !important;
    color: #64748b !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Desktop Hero Title & Description Redesign */
@media (min-width: 769px) {
    .contact-hero h1 {
        font-family: 'Outfit', sans-serif !important;
        font-size: 4.5rem !important;
        /* Slightly larger for impact */
        font-weight: 900 !important;
        background: linear-gradient(to right, #FFD700, #FF8C00, #FF0080) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        margin-bottom: 20px !important;
        letter-spacing: -0.02em !important;
        line-height: 1.1 !important;
        position: relative !important;
        display: inline-block !important;
        /* Removing text-shadow as it conflicts with background-clip: text. Using filter: drop-shadow instead */
        filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.3)) drop-shadow(0 0 40px rgba(255, 0, 128, 0.2)) !important;
        animation: simple-float 3s ease-in-out infinite !important;
    }

    /* Subtle floating animation with glow pulse */
    @keyframes simple-float {

        0%,
        100% {
            transform: translateY(0);
            filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.3)) drop-shadow(0 0 40px rgba(255, 0, 128, 0.2));
        }

        50% {
            transform: translateY(-5px);
            filter: drop-shadow(0 0 25px rgba(255, 140, 0, 0.5)) drop-shadow(0 0 50px rgba(255, 0, 128, 0.3));
        }
    }

    /* Container for title and sparkles */
    .hero-title-wrapper {
        position: relative !important;
        display: inline-block !important;
        margin-bottom: 20px !important;
    }

    /* Reset H1 margin since wrapper handles it */
    .contact-hero .hero-title-wrapper h1 {
        margin-bottom: 0 !important;
    }

    /* Enhanced Sparkle Elements */
    .sparkle {
        position: absolute !important;
        font-size: 1.5rem !important;
        pointer-events: none !important;
        z-index: 10 !important;
        animation: sparkle-float 3s ease-in-out infinite !important;
    }

    /* Sparkle 1: Top Left - Gold */
    .sparkle.s1 {
        top: -15px !important;
        left: -40px !important;
        color: #FFD700 !important;
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.8) !important;
        animation-delay: 0s !important;
    }

    /* Sparkle 2: Bottom Right - Pink */
    .sparkle.s2 {
        bottom: -10px !important;
        right: -30px !important;
        color: #FF0080 !important;
        text-shadow: 0 0 15px rgba(255, 0, 128, 0.8) !important;
        font-size: 2rem !important;
        animation-delay: 1.5s !important;
    }

    /* Sparkle 3: Top Right - Orange (Small) */
    .sparkle.s3 {
        top: -20px !important;
        right: 10% !important;
        color: #FF8C00 !important;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.8) !important;
        font-size: 1.2rem !important;
        animation-delay: 0.5s !important;
    }

    /* Sparkle 4: Bottom Left - Gold (Small) */
    .sparkle.s4 {
        bottom: 0px !important;
        left: 10% !important;
        color: #FFD700 !important;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8) !important;
        font-size: 1.2rem !important;
        animation-delay: 2s !important;
    }

    @keyframes sparkle-float {

        0%,
        100% {
            opacity: 0;
            transform: scale(0.5) translateY(0) rotate(0deg);
        }

        50% {
            opacity: 1;
            transform: scale(1.2) translateY(-10px) rotate(180deg);
        }
    }

    .contact-hero p {
        font-size: 1.35rem !important;
        color: #CBD5E1 !important;
        max-width: 700px !important;
        margin: 0 auto 40px !important;
        font-weight: 400 !important;
        line-height: 1.6 !important;
        opacity: 0.95 !important;
    }

    /* Category Pills Redesign for Dark Hero */
    .contact-hero .category-pills {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        justify-content: center !important;
        margin-bottom: 36px !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .contact-hero .category-pill {
        padding: 12px 24px !important;
        border-radius: 50px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 2px solid rgba(255, 255, 255, 0.15) !important;
        color: #E2E8F0 !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        position: relative !important;
        z-index: 10 !important;
        pointer-events: auto !important;
    }

    .contact-hero .category-pill:hover {
        background: rgba(255, 255, 255, 0.12) !important;
        border-color: rgba(147, 51, 234, 0.5) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(147, 51, 234, 0.2) !important;
    }

    .contact-hero .category-pill.active {
        background: linear-gradient(135deg, #9333ea, #7C3AED) !important;
        border-color: #9333ea !important;
        color: #FFFFFF !important;
        box-shadow: 0 4px 16px rgba(147, 51, 234, 0.4) !important;
    }
}

/* NEW: Hero Grid Selector - Desktop Only with Category Theme Colors */
@media (min-width: 769px) {

    /* Default theme (All Products / Purple) */
    .hero-grid-selector {
        margin-top: 32px !important;
        padding: 20px 28px !important;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
        border-radius: 16px !important;
        border-left: 5px solid #9333ea !important;
        box-shadow: 0 4px 20px rgba(147, 51, 234, 0.12) !important;
        max-width: 500px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        transition: all 0.3s ease !important;
    }

    .hero-grid-selector .selector-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 16px !important;
    }

    .hero-grid-selector label {
        font-weight: 700 !important;
        font-size: 15px !important;
        color: #1a1a1a !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin: 0 !important;
    }

    .hero-grid-selector label i {
        color: #9333ea !important;
        font-size: 18px !important;
        transition: color 0.3s ease !important;
    }

    .hero-grid-selector .col-select {
        padding: 12px 18px !important;
        border: 2px solid #e5e7eb !important;
        border-radius: 10px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        background: #ffffff !important;
        color: #1a1a1a !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        min-width: 150px !important;
    }

    .hero-grid-selector .col-select:hover {
        border-color: #9333ea !important;
        background: #faf5ff !important;
    }

    .hero-grid-selector .col-select:focus {
        outline: none !important;
        border-color: #9333ea !important;
        box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.15) !important;
    }

    /* Netflix Theme - Red */
    .hero-grid-selector[data-active-category="netflix"] {
        border-left-color: #E50914 !important;
        box-shadow: 0 4px 20px rgba(229, 9, 20, 0.15) !important;
        background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="netflix"] label i {
        color: #E50914 !important;
    }

    .hero-grid-selector[data-active-category="netflix"] .col-select:hover {
        border-color: #E50914 !important;
        background: #fff5f5 !important;
    }

    .hero-grid-selector[data-active-category="netflix"] .col-select:focus {
        border-color: #E50914 !important;
        box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1) !important;
    }

    /* Hotstar Theme - Blue */
    .hero-grid-selector[data-active-category="hotstar"] {
        border-left-color: #0F1014 !important;
        box-shadow: 0 4px 20px rgba(15, 16, 20, 0.15) !important;
        background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="hotstar"] label i {
        color: #0F1014 !important;
    }

    .hero-grid-selector[data-active-category="hotstar"] .col-select:hover {
        border-color: #0F1014 !important;
        background: #f3f4f6 !important;
    }

    .hero-grid-selector[data-active-category="hotstar"] .col-select:focus {
        border-color: #0F1014 !important;
        box-shadow: 0 0 0 3px rgba(15, 16, 20, 0.1) !important;
    }

    /* Prime Video Theme - Teal/Cyan */
    .hero-grid-selector[data-active-category="prime"] {
        border-left-color: #00A8E1 !important;
        box-shadow: 0 4px 20px rgba(0, 168, 225, 0.15) !important;
        background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="prime"] label i {
        color: #00A8E1 !important;
    }

    .hero-grid-selector[data-active-category="prime"] .col-select:hover {
        border-color: #00A8E1 !important;
        background: #f0f9ff !important;
    }

    .hero-grid-selector[data-active-category="prime"] .col-select:focus {
        border-color: #00A8E1 !important;
        box-shadow: 0 0 0 3px rgba(0, 168, 225, 0.1) !important;
    }

    /* SonyLIV Theme - Dark Blue */
    .hero-grid-selector[data-active-category="sonyliv"] {
        border-left-color: #1F2937 !important;
        box-shadow: 0 4px 20px rgba(31, 41, 55, 0.15) !important;
        background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="sonyliv"] label i {
        color: #1F2937 !important;
    }

    .hero-grid-selector[data-active-category="sonyliv"] .col-select:hover {
        border-color: #1F2937 !important;
        background: #f9fafb !important;
    }

    .hero-grid-selector[data-active-category="sonyliv"] .col-select:focus {
        border-color: #1F2937 !important;
        box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1) !important;
    }

    /* Zee5 Theme - Purple */
    .hero-grid-selector[data-active-category="zee5"] {
        border-left-color: #8B31C4 !important;
        box-shadow: 0 4px 20px rgba(139, 49, 196, 0.15) !important;
        background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="zee5"] label i {
        color: #8B31C4 !important;
    }

    .hero-grid-selector[data-active-category="zee5"] .col-select:hover {
        border-color: #8B31C4 !important;
        background: #faf5ff !important;
    }

    .hero-grid-selector[data-active-category="zee5"] .col-select:focus {
        border-color: #8B31C4 !important;
        box-shadow: 0 0 0 3px rgba(139, 49, 196, 0.1) !important;
    }

    /* Hoichoi Theme - Orange */
    .hero-grid-selector[data-active-category="hoichoi"] {
        border-left-color: #FF6B00 !important;
        box-shadow: 0 4px 20px rgba(255, 107, 0, 0.15) !important;
        background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="hoichoi"] label i {
        color: #FF6B00 !important;
    }

    .hero-grid-selector[data-active-category="hoichoi"] .col-select:hover {
        border-color: #FF6B00 !important;
        background: #fff7ed !important;
    }

    .hero-grid-selector[data-active-category="hoichoi"] .col-select:focus {
        border-color: #FF6B00 !important;
        box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1) !important;
    }

    /* YouTube Theme - Red */
    .hero-grid-selector[data-active-category="youtube"] {
        border-left-color: #FF0000 !important;
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.15) !important;
        background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="youtube"] label i {
        color: #FF0000 !important;
    }

    .hero-grid-selector[data-active-category="youtube"] .col-select:hover {
        border-color: #FF0000 !important;
        background: #fff5f5 !important;
    }

    .hero-grid-selector[data-active-category="youtube"] .col-select:focus {
        border-color: #FF0000 !important;
        box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1) !important;
    }

    /* Spotify Theme - Green */
    .hero-grid-selector[data-active-category="spotify"] {
        border-left-color: #1DB954 !important;
        box-shadow: 0 4px 20px rgba(29, 185, 84, 0.15) !important;
        background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="spotify"] label i {
        color: #1DB954 !important;
    }

    .hero-grid-selector[data-active-category="spotify"] .col-select:hover {
        border-color: #1DB954 !important;
        background: #f0fdf4 !important;
    }

    .hero-grid-selector[data-active-category="spotify"] .col-select:focus {
        border-color: #1DB954 !important;
        box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1) !important;
    }

    /* LinkedIn Theme - Blue */
    .hero-grid-selector[data-active-category="linkedin"] {
        border-left-color: #0A66C2 !important;
        box-shadow: 0 4px 20px rgba(10, 102, 194, 0.15) !important;
        background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="linkedin"] label i {
        color: #0A66C2 !important;
    }

    .hero-grid-selector[data-active-category="linkedin"] .col-select:hover {
        border-color: #0A66C2 !important;
        background: #eff6ff !important;
    }

    .hero-grid-selector[data-active-category="linkedin"] .col-select:focus {
        border-color: #0A66C2 !important;
        box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1) !important;
    }

    /* Software Theme - Indigo */
    .hero-grid-selector[data-active-category="software"] {
        border-left-color: #4F46E5 !important;
        box-shadow: 0 4px 20px rgba(79, 70, 229, 0.15) !important;
        background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="software"] label i {
        color: #4F46E5 !important;
    }

    .hero-grid-selector[data-active-category="software"] .col-select:hover {
        border-color: #4F46E5 !important;
        background: #eef2ff !important;
    }

    .hero-grid-selector[data-active-category="software"] .col-select:focus {
        border-color: #4F46E5 !important;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1) !important;
    }

    /* AI Theme - Cyan/Teal */
    .hero-grid-selector[data-active-category="ai"] {
        border-left-color: #06B6D4 !important;
        box-shadow: 0 4px 20px rgba(6, 182, 212, 0.15) !important;
        background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%) !important;
    }

    .hero-grid-selector[data-active-category="ai"] label i {
        color: #06B6D4 !important;
    }

    .hero-grid-selector[data-active-category="ai"] .col-select:hover {
        border-color: #06B6D4 !important;
        background: #ecfeff !important;
    }

    .hero-grid-selector[data-active-category="ai"] .col-select:focus {
        border-color: #06B6D4 !important;
        box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1) !important;
    }
}

/* Hide hero grid selector on mobile */
@media (max-width: 768px) {
    .hero-grid-selector {
        display: none !important;
    }
}

/* ============================================
   CATEGORY SECTION - CENTERED SYSTEM
   ============================================ */
.category-section {
    display: block !important;
    max-width: 1200px !important;
    margin: 80px auto !important;
    padding: 40px 16px 60px !important;
    box-sizing: border-box !important;
    background: transparent !important;
    position: relative !important;
}

/* Desktop Only - Themed Separation Lines and Header Backgrounds */
@media (min-width: 769px) {

    /* Themed Separation Line After Each Category */
    .category-section::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(200, 200, 200, 0.3) 50%, transparent 100%);
    }

    /* Brand-Themed Separation Lines - Netflix */
    .category-section[data-category="netflix"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(229, 9, 20, 0.2) 50%,
                transparent 100%);
    }

    /* Brand-Themed Separation Lines - Hotstar */
    .category-section[data-category="hotstar"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(142, 36, 170, 0.2) 50%,
                transparent 100%);
    }

    /* Brand-Themed Separation Lines - Prime */
    .category-section[data-category="prime"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(0, 168, 225, 0.2) 50%,
                transparent 100%);
    }

    /* Brand-Themed Separation Lines - YouTube */
    .category-section[data-category="youtube"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(255, 0, 0, 0.2) 50%,
                transparent 100%);
    }

    /* Brand-Themed Separation Lines - Spotify */
    .category-section[data-category="spotify"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(29, 185, 84, 0.2) 50%,
                transparent 100%);
    }

    /* Brand-Themed Separation Lines - LinkedIn */
    .category-section[data-category="linkedin"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(0, 119, 181, 0.2) 50%,
                transparent 100%);
    }

    /* Brand-Themed Separation Lines - Software */
    .category-section[data-category="software"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(99, 102, 241, 0.2) 50%,
                transparent 100%);
    }

    /* Brand-Themed Separation Lines - AI */
    .category-section[data-category="ai"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(168, 85, 247, 0.2) 50%,
                transparent 100%);
    }

    /* Brand-Themed Separation Lines - SonyLIV */
    .category-section[data-category="sonyliv"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(255, 87, 34, 0.2) 50%,
                transparent 100%);
    }

    /* Brand-Themed Separation Lines - Zee5 */
    .category-section[data-category="zee5"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(25, 118, 210, 0.2) 50%,
                transparent 100%);
    }

    /* Brand-Themed Separation Lines - Hoichoi */
    .category-section[data-category="hoichoi"]::after {
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(255, 107, 0, 0.2) 50%,
                transparent 100%);
    }

    .category-header {
        text-align: center !important;
        margin-bottom: 50px !important;
        padding: 40px 30px !important;
        position: relative !important;
        border-radius: 24px !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05),
            0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        overflow: hidden !important;
    }

    .category-header:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
    }

    /* Brand-Themed Header Backgrounds - Netflix (Red) */
    .category-section[data-category="netflix"] .category-header {
        background: linear-gradient(135deg, #fff0f0 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(229, 9, 20, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - Hotstar (Purple) */
    .category-section[data-category="hotstar"] .category-header {
        background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(142, 36, 170, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - Prime (Blue) */
    .category-section[data-category="prime"] .category-header {
        background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(0, 168, 225, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - YouTube (Red) */
    .category-section[data-category="youtube"] .category-header {
        background: linear-gradient(135deg, #fff0f0 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(255, 0, 0, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - Spotify (Green) */
    .category-section[data-category="spotify"] .category-header {
        background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(29, 185, 84, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - LinkedIn (Blue) */
    .category-section[data-category="linkedin"] .category-header {
        background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(0, 119, 181, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - Software (Indigo) */
    .category-section[data-category="software"] .category-header {
        background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - AI (Purple) */
    .category-section[data-category="ai"] .category-header {
        background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(168, 85, 247, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - SonyLIV (Orange) */
    .category-section[data-category="sonyliv"] .category-header {
        background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(255, 87, 34, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - Zee5 (Blue) */
    .category-section[data-category="zee5"] .category-header {
        background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(25, 118, 210, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - Hoichoi (Orange) */
    .category-section[data-category="hoichoi"] .category-header {
        background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(255, 107, 0, 0.15) !important;
        border-left: none !important;
    }

    /* Brand-Themed Header Backgrounds - CapCut (Special) */
    .category-section[data-category="capcut"] .category-header {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3) !important;
        border-left: none !important;
    }

    .category-section[data-category="capcut"] .category-header h2,
    .category-section[data-category="capcut"] .category-header p {
        color: #ffffff !important;
    }
}

/* Hide old top border elements to clean up design */
.category-header::before {
    display: none !important;
}

/* End of desktop-only media query */


.category-header h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #000000 !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -0.5px !important;
}

/* Responsive Category Header */
@media (max-width: 768px) {
    .category-header {
        padding: 24px 16px !important;
        margin-bottom: 48px !important;
    }

    .category-header h2 {
        font-size: 2.2rem !important;
    }

    .category-header h2::before,
    .category-header h2::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .category-header {
        padding: 20px 12px !important;
        margin-bottom: 40px !important;
    }

    .category-header h2 {
        font-size: 1.8rem !important;
    }

    .category-header::before {
        width: 50px !important;
        height: 3px !important;
    }

    .category-header p {
        font-size: 0.95rem !important;
    }
}

/* Brand-Themed Top Bar for Category Headers */
.category-section[data-category="netflix"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #E50914 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4) !important;
}

.category-section[data-category="hotstar"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #8E24AA 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(142, 36, 170, 0.4) !important;
}

.category-section[data-category="prime"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #00A8E1 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(0, 168, 225, 0.4) !important;
}

.category-section[data-category="youtube"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #FF0000 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4) !important;
}

.category-section[data-category="spotify"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #1DB954 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(29, 185, 84, 0.4) !important;
}

.category-section[data-category="linkedin"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #0077B5 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.4) !important;
}

.category-section[data-category="software"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #6366F1 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4) !important;
}

.category-section[data-category="ai"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #A855F7 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4) !important;
}

.category-section[data-category="sonyliv"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #FF5722 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.4) !important;
}

.category-section[data-category="zee5"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #1976D2 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(25, 118, 210, 0.4) !important;
}

.category-section[data-category="hoichoi"] .category-header::before {
    background: linear-gradient(90deg, transparent 0%, #FF6B00 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4) !important;
}

/* Category Heading - Brand Themed Colors with Subtle Glow */
.category-section[data-category="netflix"] .category-header h2 {
    color: #E50914 !important;
    filter: drop-shadow(0 0 12px rgba(229, 9, 20, 0.15)) !important;
}

.category-section[data-category="hotstar"] .category-header h2 {
    color: #8E24AA !important;
    filter: drop-shadow(0 0 12px rgba(142, 36, 170, 0.15)) !important;
}

.category-section[data-category="prime"] .category-header h2 {
    color: #00A8E1 !important;
    filter: drop-shadow(0 0 12px rgba(0, 168, 225, 0.15)) !important;
}

.category-section[data-category="youtube"] .category-header h2 {
    color: #FF0000 !important;
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.15)) !important;
}

.category-section[data-category="spotify"] .category-header h2 {
    color: #1DB954 !important;
    filter: drop-shadow(0 0 12px rgba(29, 185, 84, 0.15)) !important;
}

.category-section[data-category="linkedin"] .category-header h2 {
    color: #0077B5 !important;
    filter: drop-shadow(0 0 12px rgba(0, 119, 181, 0.15)) !important;
}

.category-section[data-category="software"] .category-header h2 {
    color: #6366F1 !important;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.15)) !important;
}

.category-section[data-category="ai"] .category-header h2 {
    color: #A855F7 !important;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.15)) !important;
}

.category-section[data-category="sonyliv"] .category-header h2 {
    color: #FF5722 !important;
    filter: drop-shadow(0 0 12px rgba(255, 87, 34, 0.15)) !important;
}

.category-section[data-category="zee5"] .category-header h2 {
    color: #000000 !important;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.15)) !important;
}

.category-section[data-category="hoichoi"] .category-header h2 {
    color: #FF6B00 !important;
    filter: drop-shadow(0 0 12px rgba(255, 107, 0, 0.15)) !important;
}

.category-header p {
    font-size: 1.05rem !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    margin: 8px 0 0 0 !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    opacity: 0.85 !important;
}

/* ============================================
   PRODUCTS GRID - CONFIGURABLE COLUMNS + TYPOGRAPHY
   ============================================ */
.category-products,
.products-grid,
.cards {
    --cols: 4;
    /* DEFAULT: 4 columns on desktop */

    /* Typography variables - responsive to column count */
    --fs-title: 18px;
    --fs-price: 28px;
    --fs-mrp: 16px;
    --fs-chip: 11px;

    display: grid !important;
    grid-template-columns: repeat(var(--cols), 1fr) !important;
    gap: 30px !important;
    justify-content: center !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

/* Column utility classes with adaptive typography */
.cols-3 {
    --cols: 3 !important;
    --fs-title: 22px !important;
    --fs-price: 34px !important;
    --fs-mrp: 18px !important;
    --fs-chip: 12px !important;
}

.cols-4 {
    --cols: 4 !important;
    --fs-title: 20px !important;
    --fs-price: 32px !important;
    --fs-mrp: 18px !important;
    --fs-chip: 12px !important;
}

.cols-5 {
    --cols: 5 !important;
    --fs-title: 18px !important;
    --fs-price: 26px !important;
    --fs-mrp: 16px !important;
    --fs-chip: 11px !important;
}

.cols-6 {
    --cols: 6 !important;
    --fs-title: 16px !important;
    --fs-price: 22px !important;
    --fs-mrp: 14px !important;
    --fs-chip: 10px !important;
}

/* Tablet: Force 2 columns */
@media (max-width: 1023px) {

    .category-products,
    .products-grid,
    .cards {
        --cols: 2 !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile: 1 column (hidden by default, shown when accordion expands) */
@media (max-width: 640px) {

    .category-products,
    .products-grid,
    .cards {
        --cols: 1 !important;
        grid-template-columns: 1fr !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease, opacity 0.3s ease !important;
    }
}

/* ============================================
   CARD SHELL - EQUAL HEIGHT LAYOUT
   ============================================ */
.product,
.product-card {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #f3f4f6 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    height: 100% !important;
}

/* Hover Effects */
.category-products .product:hover,
.category-section .product:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.2) !important;
    border-color: rgba(124, 58, 237, 0.3) !important;
    z-index: 10 !important;
}

/* Netflix - Red Hover */
.product[data-category="netflix"]:hover {
    box-shadow: 0 16px 48px rgba(229, 9, 20, 0.12) !important;
    border-color: rgba(229, 9, 20, 0.3) !important;
}

.product[data-category="netflix"]:hover .product-info h3 {
    color: #E50914 !important;
}

.product[data-category="netflix"]:hover .price .discounted,
.product[data-category="netflix"]:hover .price-sale {
    color: #E50914 !important;
}

/* Hotstar - Purple Hover */
.product[data-category="hotstar"]:hover {
    box-shadow: 0 16px 48px rgba(142, 36, 170, 0.12) !important;
    border-color: rgba(142, 36, 170, 0.3) !important;
}

.product[data-category="hotstar"]:hover .product-info h3 {
    color: #8E24AA !important;
}

.product[data-category="hotstar"]:hover .price .discounted,
.product[data-category="hotstar"]:hover .price-sale {
    color: #8E24AA !important;
}

/* Prime Video - Cyan Hover */
.product[data-category="prime"]:hover {
    box-shadow: 0 16px 48px rgba(0, 168, 225, 0.12) !important;
    border-color: rgba(0, 168, 225, 0.3) !important;
}

.product[data-category="prime"]:hover .product-info h3 {
    color: #00A8E1 !important;
}

.product[data-category="prime"]:hover .price .discounted,
.product[data-category="prime"]:hover .price-sale {
    color: #00A8E1 !important;
}

/* YouTube - Red Hover */
.product[data-category="youtube"]:hover {
    box-shadow: 0 16px 48px rgba(255, 0, 0, 0.12) !important;
    border-color: rgba(255, 0, 0, 0.3) !important;
}

.product[data-category="youtube"]:hover .product-info h3 {
    color: #FF0000 !important;
}

.product[data-category="youtube"]:hover .price .discounted,
.product[data-category="youtube"]:hover .price-sale {
    color: #FF0000 !important;
}

/* Spotify - Green Hover */
.product[data-category="spotify"]:hover {
    box-shadow: 0 16px 48px rgba(29, 185, 84, 0.12) !important;
    border-color: rgba(29, 185, 84, 0.3) !important;
}

.product[data-category="spotify"]:hover .product-info h3 {
    color: #1DB954 !important;
}

.product[data-category="spotify"]:hover .price .discounted,
.product[data-category="spotify"]:hover .price-sale {
    color: #1DB954 !important;
}

/* LinkedIn - Blue Hover */
.product[data-category="linkedin"]:hover {
    box-shadow: 0 16px 48px rgba(0, 119, 181, 0.12) !important;
    border-color: rgba(0, 119, 181, 0.3) !important;
}

.product[data-category="linkedin"]:hover .product-info h3 {
    color: #0077B5 !important;
}

.product[data-category="linkedin"]:hover .price .discounted,
.product[data-category="linkedin"]:hover .price-sale {
    color: #0077B5 !important;
}

/* Software - Purple/Blue Hover */
.product[data-category="software"]:hover {
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.12) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
}

.product[data-category="software"]:hover .product-info h3 {
    color: #6366F1 !important;
}

.product[data-category="software"]:hover .price .discounted,
.product[data-category="software"]:hover .price-sale {
    color: #6366F1 !important;
}

/* AI Tools - Purple/Pink Hover */
.product[data-category="ai"]:hover {
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.12) !important;
    border-color: rgba(168, 85, 247, 0.3) !important;
}

.product[data-category="ai"]:hover .product-info h3 {
    color: #A855F7 !important;
}

.product[data-category="ai"]:hover .price .discounted,
.product[data-category="ai"]:hover .price-sale {
    color: #A855F7 !important;
}

/* SonyLIV - Orange Hover */
.product[data-category="sonyliv"]:hover {
    box-shadow: 0 16px 48px rgba(255, 87, 34, 0.12) !important;
    border-color: rgba(255, 87, 34, 0.3) !important;
}

.product[data-category="sonyliv"]:hover .product-info h3 {
    color: #FF5722 !important;
}

.product[data-category="sonyliv"]:hover .price .discounted,
.product[data-category="sonyliv"]:hover .price-sale {
    color: #FF5722 !important;
}

/* Zee5 - Blue Hover */
.product[data-category="zee5"]:hover {
    box-shadow: 0 16px 48px rgba(25, 118, 210, 0.12) !important;
    border-color: rgba(25, 118, 210, 0.3) !important;
}

.product[data-category="zee5"]:hover .product-info h3 {
    color: #1976D2 !important;
}

.product[data-category="zee5"]:hover .price .discounted,
.product[data-category="zee5"]:hover .price-sale {
    color: #1976D2 !important;
}

/* Hoichoi - Orange Hover */
.product[data-category="hoichoi"]:hover {
    box-shadow: 0 16px 48px rgba(255, 107, 0, 0.12) !important;
    border-color: rgba(255, 107, 0, 0.3) !important;
}

.product[data-category="hoichoi"]:hover .product-info h3 {
    color: #FF6B00 !important;
}

.product[data-category="hoichoi"]:hover .price .discounted,
.product[data-category="hoichoi"]:hover .price-sale {
    color: #FF6B00 !important;
}

.product::before,
.product::after {
    display: none !important;
}

/* ============================================
   MEDIA CONTAINER - 16:9 ASPECT RATIO
   ============================================ */
.product-img {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    overflow: hidden !important;
    background: #f3f4f6 !important;
}

.product-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    filter: brightness(1) !important;
}

.product:hover .product-img img {
    transform: scale(1.08) !important;
    filter: brightness(1.05) !important;
}

/* Remove old overlays */
.product-img::before,
.product-img::after,
.product:hover .product-img::before,
.product:hover .product-img::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* ============================================
   DISCOUNT BADGE - TOP LEFT
   ============================================ */
.discount-badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
    padding: 6px 14px !important;
    border-radius: 9999px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    z-index: 10 !important;
    background: #FF4D4F !important;
    color: #ffffff !important;
    width: auto !important;
    min-width: auto !important;
    max-width: none !important;
    height: auto !important;
    clip-path: none !important;
    backdrop-filter: none !important;
    animation: none !important;
}

/* ============================================
   WHATSAPP - TOP RIGHT (40px circle)
   ============================================ */
.whatsapp-icon {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    bottom: auto !important;
    width: 40px !important;
    height: 40px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
    z-index: 11 !important;
    cursor: pointer !important;
    transition: transform 0.3s ease !important;
}

.whatsapp-icon:hover {
    transform: scale(1.1) !important;
}

.whatsapp-icon i {
    color: #ffffff !important;
    font-size: 20px !important;
}

/* ============================================
   CARD BODY - FLEX LAYOUT WITH AUTO CTA
   ============================================ */
.product-info {
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    box-sizing: border-box !important;
    gap: 0 !important;
}

/* CATEGORY LABEL - Not in original HTML, hide it */
.product-category {
    display: none !important;
}

/* TITLE - FIXED 2 LINE HEIGHT FOR CONSISTENCY */
.product-info h3,
.card-title {
    font-size: var(--fs-title) !important;
    font-weight: 800 !important;
    color: #111111 !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.35 !important;
    height: 2.7em !important;
    /* Fixed height = exactly 2 lines */
    min-height: 2.7em !important;
    max-height: 2.7em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    /* Standard property */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    position: relative !important;
    user-select: none !important;
}

/* Expanded state - show full title */
.product-info h3.is-open,
.card-title.is-open {
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    display: block !important;
    white-space: normal !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    overflow: visible !important;
}

/* Hover hint for expandable titles */
.product-info h3:hover,
.card-title:hover {
    color: #7C3AED !important;
}

/* Focus state for accessibility */
.product-info h3:focus,
.card-title:focus {
    outline: 2px solid #7C3AED !important;
    outline-offset: 2px !important;
}

/* ============================================
   RATING - FIXED HEIGHT FOR CONSISTENCY
   ============================================ */
.rating {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
    height: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    box-sizing: border-box !important;
}

.rating i {
    color: var(--gold-star) !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

/* Add review count after stars (if not exists in HTML) */
.rating::after {
    content: '' !important;
    font-size: 13px !important;
    color: var(--gray-text) !important;
}

/* ============================================
   DURATION AS FEATURE CHIPS - BRAND-THEMED
   ============================================ */
.duration,
.plan-chip {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 12px !important;
    background: var(--purple-chip-bg) !important;
    color: var(--purple-chip) !important;
    font-size: var(--fs-chip) !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    border-radius: 12px !important;
    margin-bottom: 16px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    height: 26px !important;
    min-height: 26px !important;
    max-height: 26px !important;
    box-sizing: border-box !important;
}

/* Netflix - Red Theme Plan Chip */
[data-category="netflix"] .duration,
[data-category="netflix"] .plan-chip {
    background: rgba(229, 9, 20, 0.1) !important;
    color: #E50914 !important;
}

.product[data-category="netflix"]:hover .duration,
.product[data-category="netflix"]:hover .plan-chip {
    background: rgba(229, 9, 20, 0.15) !important;
    color: #B20710 !important;
}

/* Hotstar - Purple Theme Plan Chip */
[data-category="hotstar"] .duration,
[data-category="hotstar"] .plan-chip {
    background: rgba(142, 36, 170, 0.1) !important;
    color: #8E24AA !important;
}

.product[data-category="hotstar"]:hover .duration,
.product[data-category="hotstar"]:hover .plan-chip {
    background: rgba(142, 36, 170, 0.15) !important;
    color: #6A1B9A !important;
}

/* Prime Video - Cyan Theme Plan Chip */
[data-category="prime"] .duration,
[data-category="prime"] .plan-chip {
    background: rgba(0, 168, 225, 0.1) !important;
    color: #00A8E1 !important;
}

.product[data-category="prime"]:hover .duration,
.product[data-category="prime"]:hover .plan-chip {
    background: rgba(0, 168, 225, 0.15) !important;
    color: #0088CC !important;
}

/* YouTube - Red Theme Plan Chip - HIDDEN */
[data-category="youtube"] .duration,
[data-category="youtube"] .plan-chip,
[data-category="youtube"] .plan-selector {
    display: none !important;
}

.product[data-category="youtube"]:hover .duration,
.product[data-category="youtube"]:hover .plan-chip {
    display: none !important;
}

/* Spotify - Green Theme Plan Chip - HIDDEN */
[data-category="spotify"] .duration,
[data-category="spotify"] .plan-chip,
[data-category="spotify"] .plan-selector {
    display: none !important;
}

.product[data-category="spotify"]:hover .duration,
.product[data-category="spotify"]:hover .plan-chip {
    display: none !important;
}

/* LinkedIn - Blue Theme Plan Chip */
[data-category="linkedin"] .duration,
[data-category="linkedin"] .plan-chip {
    background: rgba(0, 119, 181, 0.1) !important;
    color: #0077B5 !important;
}

.product[data-category="linkedin"]:hover .duration,
.product[data-category="linkedin"]:hover .plan-chip {
    background: rgba(0, 119, 181, 0.15) !important;
    color: #005E93 !important;
}

/* Software - Purple/Blue Theme Plan Chip */
[data-category="software"] .duration,
[data-category="software"] .plan-chip {
    background: rgba(99, 102, 241, 0.1) !important;
    color: #6366F1 !important;
}

.product[data-category="software"]:hover .duration,
.product[data-category="software"]:hover .plan-chip {
    background: rgba(99, 102, 241, 0.15) !important;
    color: #4F46E5 !important;
}

/* AI Tools - Purple/Pink Theme Plan Chip */
[data-category="ai"] .duration,
[data-category="ai"] .plan-chip {
    background: rgba(168, 85, 247, 0.1) !important;
    color: #A855F7 !important;
}

.product[data-category="ai"]:hover .duration,
.product[data-category="ai"]:hover .plan-chip {
    background: rgba(168, 85, 247, 0.15) !important;
    color: #9333EA !important;
}

/* SonyLIV - Orange Theme Plan Chip */
[data-category="sonyliv"] .duration,
[data-category="sonyliv"] .plan-chip {
    background: rgba(255, 87, 34, 0.1) !important;
    color: #FF5722 !important;
}

.product[data-category="sonyliv"]:hover .duration,
.product[data-category="sonyliv"]:hover .plan-chip {
    background: rgba(255, 87, 34, 0.15) !important;
    color: #E64A19 !important;
}

/* Zee5 - Blue/Dark Theme Plan Chip */
[data-category="zee5"] .duration,
[data-category="zee5"] .plan-chip {
    background: rgba(25, 118, 210, 0.1) !important;
    color: #1976D2 !important;
}

.product[data-category="zee5"]:hover .duration,
.product[data-category="zee5"]:hover .plan-chip {
    background: rgba(25, 118, 210, 0.15) !important;
    color: #0D47A1 !important;
}

/* Hoichoi - Orange Theme Plan Chip */
[data-category="hoichoi"] .duration,
[data-category="hoichoi"] .plan-chip {
    background: rgba(255, 107, 0, 0.1) !important;
    color: #FF6B00 !important;
}

.product[data-category="hoichoi"]:hover .duration,
.product[data-category="hoichoi"]:hover .plan-chip {
    background: rgba(255, 107, 0, 0.15) !important;
    color: #E65100 !important;
}

.plan-row {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
}

/* ============================================
   PRICE ROW - FIXED HEIGHT + BASELINE ALIGNMENT
   ============================================ */
.price,
.price-row {
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Sale Price - Smaller for Perfect Fit */
.price .discounted,
.price-sale {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    line-height: 1 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: color 0.3s ease !important;
    white-space: nowrap !important;
}

/* MRP - Proportional Size */
.price .original,
.price-mrp {
    font-size: 14px !important;
    color: #9CA3AF !important;
    text-decoration: line-through !important;
    opacity: 0.8 !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    transition: opacity 0.3s ease !important;
}

/* Responsive sizing for different screen sizes */
@media (max-width: 1200px) {

    .price .discounted,
    .price-sale {
        font-size: 20px !important;
    }

    .price .original,
    .price-mrp {
        font-size: 13px !important;
    }
}

@media (max-width: 768px) {

    .price .discounted,
    .price-sale {
        font-size: 18px !important;
    }

    .price .original,
    .price-mrp {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {

    .price .discounted,
    .price-sale {
        font-size: 16px !important;
    }

    .price .original,
    .price-mrp {
        font-size: 11px !important;
    }
}

/* ============================================
   ADD TO CART - BRAND-THEMED BUTTONS
   ============================================ */
.add-to-cart-btn {
    /* CRITICAL: Fixed height, no percentage padding */
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;

    /* Layout */
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    /* Spacing - horizontal only, no vertical % */
    padding: 0 20px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: auto !important;
    /* Push to bottom */

    /* Typography */
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-align: center !important;

    /* Default Style */
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25) !important;

    /* Behavior */
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.add-to-cart-btn::before {
    display: none !important;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px) !important;
}

/* Netflix - Red Theme */
[data-category="netflix"] .add-to-cart-btn {
    background: linear-gradient(135deg, #E50914 0%, #B20710 100%) !important;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3), 0 0 20px rgba(229, 9, 20, 0.1) !important;
}

[data-category="netflix"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #F40612 0%, #E50914 100%) !important;
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4), 0 0 30px rgba(229, 9, 20, 0.15) !important;
}

/* Hotstar - Purple/Dark Theme */
[data-category="hotstar"] .add-to-cart-btn {
    background: linear-gradient(135deg, #8E24AA 0%, #6A1B9A 100%) !important;
    box-shadow: 0 4px 12px rgba(142, 36, 170, 0.3), 0 0 20px rgba(142, 36, 170, 0.1) !important;
}

[data-category="hotstar"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #AB47BC 0%, #8E24AA 100%) !important;
    box-shadow: 0 8px 20px rgba(142, 36, 170, 0.4), 0 0 30px rgba(142, 36, 170, 0.15) !important;
}

/* Prime Video - Cyan/Blue Theme */
[data-category="prime"] .add-to-cart-btn {
    background: linear-gradient(135deg, #00A8E1 0%, #0088CC 100%) !important;
    box-shadow: 0 4px 12px rgba(0, 168, 225, 0.3), 0 0 20px rgba(0, 168, 225, 0.1) !important;
}

[data-category="prime"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #1AB8F3 0%, #00A8E1 100%) !important;
    box-shadow: 0 8px 20px rgba(0, 168, 225, 0.4), 0 0 30px rgba(0, 168, 225, 0.15) !important;
}

/* YouTube - Red Theme */
[data-category="youtube"] .add-to-cart-btn {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%) !important;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3), 0 0 20px rgba(255, 0, 0, 0.1) !important;
}

[data-category="youtube"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #FF1a1a 0%, #FF0000 100%) !important;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4), 0 0 30px rgba(255, 0, 0, 0.15) !important;
}

/* Spotify - Green Theme */
[data-category="spotify"] .add-to-cart-btn {
    background: linear-gradient(135deg, #1DB954 0%, #169C46 100%) !important;
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3), 0 0 20px rgba(29, 185, 84, 0.1) !important;
}

[data-category="spotify"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #1ED760 0%, #1DB954 100%) !important;
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.4), 0 0 30px rgba(29, 185, 84, 0.15) !important;
}

/* LinkedIn - Blue Theme */
[data-category="linkedin"] .add-to-cart-btn {
    background: linear-gradient(135deg, #0077B5 0%, #005E93 100%) !important;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3), 0 0 20px rgba(0, 119, 181, 0.1) !important;
}

[data-category="linkedin"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #0095D5 0%, #0077B5 100%) !important;
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4), 0 0 30px rgba(0, 119, 181, 0.15) !important;
}

/* Software - Purple/Blue Theme */
[data-category="software"] .add-to-cart-btn {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3), 0 0 20px rgba(99, 102, 241, 0.1) !important;
}

[data-category="software"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #818CF8 0%, #6366F1 100%) !important;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4), 0 0 30px rgba(99, 102, 241, 0.15) !important;
}

/* AI Tools - Purple/Pink Theme */
[data-category="ai"] .add-to-cart-btn {
    background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%) !important;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3), 0 0 20px rgba(168, 85, 247, 0.1) !important;
}

[data-category="ai"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #C084FC 0%, #A855F7 100%) !important;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4), 0 0 30px rgba(168, 85, 247, 0.15) !important;
}

/* SonyLIV - Red/Orange Theme */
[data-category="sonyliv"] .add-to-cart-btn {
    background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%) !important;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3), 0 0 20px rgba(255, 87, 34, 0.1) !important;
}

[data-category="sonyliv"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #FF6E40 0%, #FF5722 100%) !important;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4), 0 0 30px rgba(255, 87, 34, 0.15) !important;
}

/* Zee5 - Blue/Dark Theme */
[data-category="zee5"] .add-to-cart-btn {
    background: linear-gradient(135deg, #0F1014 0%, #1A1D29 100%) !important;
    box-shadow: 0 4px 12px rgba(15, 16, 20, 0.3), 0 0 20px rgba(25, 118, 210, 0.1) !important;
}

[data-category="zee5"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #1A1D29 0%, #0F1014 100%) !important;
    box-shadow: 0 8px 20px rgba(15, 16, 20, 0.4), 0 0 30px rgba(25, 118, 210, 0.15) !important;
}

/* Hoichoi - Orange Theme */
[data-category="hoichoi"] .add-to-cart-btn {
    background: linear-gradient(135deg, #FF6B00 0%, #E65100 100%) !important;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3), 0 0 20px rgba(255, 107, 0, 0.1) !important;
}

[data-category="hoichoi"] .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #FF8A33 0%, #FF6B00 100%) !important;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4), 0 0 30px rgba(255, 107, 0, 0.15) !important;
}

.add-to-cart-btn i {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px !important;
    line-height: 1 !important;
    flex: 0 0 20px !important;
    display: inline-block !important;
}

/* Remove any transform scale that might affect height */
.add-to-cart-btn:active {
    transform: translateY(0) !important;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
    .category-products {
        grid-template-columns: 1fr !important;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .category-header h2 {
        font-size: 2rem;
    }

    .product-info h3 {
        font-size: 18px !important;
    }

    .price .discounted {
        font-size: 28px !important;
    }
}


/* ============================================
   OVERRIDE FILTER SIDEBAR MARGINS
   ============================================ */
@media (min-width: 769px) {
    .products-list {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-top: 40px !important;
    }

    .quick-nav {
        margin-left: 0 !important;
        width: 100% !important;
    }
}

/* Ensure no wrapper has unexpected margins */
main,
.products-wrapper,
section.products {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Intro section centering */
.intro-section {
    max-width: 1200px !important;
    margin: 60px auto !important;
    padding: 40px 16px !important;
    box-sizing: border-box !important;
}

.intro-section .container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.intro-section .section-title {
    text-align: center !important;
    margin-bottom: 40px !important;
}

/* ============================================
   FINAL OVERRIDE - NUCLEAR OPTION
   Ensures NO left-side gaps on any screen size
   ============================================ */

/* Remove ALL possible left margins on products section */
body,
html,
main,
.products-list,
.products-wrapper,
section.products,
.category-section,
.category-products,
.products-grid,
.cards {
    margin-left: 0 !important;
}

/* Sections should not have padding-left */
.products-list,
.products-wrapper,
section.products,
.category-section {
    padding-left: 0 !important;
}

/* Grid should not have padding */
.category-products,
.products-grid,
.cards {
    padding-left: 0 !important;
}

/* Ensure proper centering for all containers */
.products-list,
.category-section,
.intro-section {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.products-list .container,
.category-section .container {
    max-width: 1200px !important;
    margin-inline: auto !important;
    padding-inline: 16px !important;
}

/* Override ANY media query trying to add left margin */
@media (min-width: 769px) {

    .products-list,
    .products-wrapper,
    section.products,
    main {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (min-width: 1024px) {

    .products-list,
    .products-wrapper,
    section.products,
    main {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden !important;
    width: 100% !important;
}

html {
    overflow-x: hidden !important;
    width: 100% !important;
}

/* Ensure all content is centered */
.products-list>*,
.category-section>*,
.intro-section>* {
    max-width: 100% !important;
}

/* ============================================
   DESKTOP: COLUMN SELECTOR
   ============================================ */
.grid-column-selector {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    margin: 0 auto 40px;
    max-width: 1200px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.selector-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.selector-inner label {
    font-weight: 700;
    font-size: 15px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
}

.selector-inner label i {
    color: #7C3AED;
    font-size: 18px;
}

.col-select {
    padding: 10px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    background: #ffffff;
    color: #111;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 160px;
}

.col-select:hover {
    border-color: #7C3AED;
}

.col-select:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Hide on mobile/tablet */
@media (max-width: 1023px) {
    .grid-column-selector {
        display: none !important;
    }
}

/* ============================================
   MOBILE: ACCORDION SUMMARY CARD
   ============================================ */
.category-accordion {
    display: none;
    /* Hidden by default, shown by JS on mobile */
    margin-bottom: 16px;
}

.accordion-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: left;
}

.accordion-toggle:hover {
    border-color: #7C3AED;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.accordion-toggle:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.accordion-icon {
    width: 80px;
    height: 54px;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
}

.accordion-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-content {
    min-width: 0;
}

.accordion-title {
    margin: 0;
    font-weight: 800;
    font-size: 17px;
    color: #111;
    line-height: 1.2;
    margin-bottom: 4px;
}

.accordion-meta {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.2;
}

.accordion-chevron {
    font-size: 20px;
    color: #7C3AED;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-toggle[aria-expanded="true"] .accordion-chevron {
    transform: rotate(180deg);
}

/* Mobile only */
@media (min-width: 641px) {
    .category-accordion {
        display: none !important;
    }
}

/* ============================================
   MOBILE: HIDE HEADER WHEN ACCORDION SHOWN
   ============================================ */
@media (max-width: 640px) {
    .category-accordion~.category-header {
        display: none !important;
    }
}

/* ============================================
   FAST MOBILE OPTIMIZATION - COMPACT CARDS 
   ============================================ */
@media (max-width: 768px) {

    .category-products,
    .products-grid,
    .cards,
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px !important;
    }

    .product-info {
        padding: 8px !important;
    }

    .product-img {
        height: 100px !important;
        min-height: 100px !important;
    }

    .product-info h3,
    .card-title {
        font-size: 13px !important;
        height: 2.6em !important;
        margin-bottom: 4px !important;
    }

    .price .discounted,
    .price-sale {
        font-size: 16px !important;
    }

    .price .original,
    .price-mrp {
        font-size: 10px !important;
    }

    .add-to-cart-btn {
        height: 34px !important;
        min-height: 34px !important;
        font-size: 11px !important;
        border-radius: 6px !important;
        padding: 0 8px !important;
    }

    .add-to-cart-btn i {
        font-size: 11px !important;
    }

    .discount-badge {
        font-size: 8px !important;
        padding: 2px 6px !important;
        top: 5px !important;
        left: 5px !important;
    }

    .whatsapp-icon {
        width: 28px !important;
        height: 28px !important;
        top: 5px !important;
        right: 5px !important;
    }

    .whatsapp-icon i {
        font-size: 14px !important;
    }

    .rating {
        height: 12px !important;
        min-height: 12px !important;
        gap: 2px !important;
    }

    .rating i {
        font-size: 10px !important;
    }

    .duration {
        font-size: 9px !important;
        padding: 2px 6px !important;
        margin-bottom: 4px !important;
    }
}

@media (max-width: 480px) {

    .category-products,
    .products-grid,
    .cards,
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .product-img {
        height: 90px !important;
        min-height: 90px !important;
    }

    .contact-hero h1 {
        font-size: 1.8rem !important;
    }
}

/* ============================================
   FINAL MOBILE PREMIUM OVERRIDES (CONSORTIUM)
   Ensures title visibility and premium pill styling
   ============================================ */
@media (max-width: 768px) {
    .contact-hero {
        margin-top: 130px !important;
        padding: 20px 20px 40px !important;
        overflow: visible !important;
        background: #ffffff !important;
    }

    /* FLOATING STICKY TITLE FOR MOBILE */
    .hero-title-wrapper {
        position: sticky !important;
        top: 220px !important;
        /* Huge gap to clear everything */
        /* Clears the mobile search bar/navbar */
        z-index: 2000 !important;
        display: block !important;
        padding: 15px 0 4px !important;
        /* Breathing room at top, compact bottom */
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-radius: 0 0 25px 25px !important;
        margin: 0 -15px 5px !important;
        /* Minimal gap below for products */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
        transform: translateY(0);
        transition: all 0.3s ease !important;
    }

    .contact-hero h1 {
        font-size: 1.8rem !important;
        /* Slightly smaller for floating */
        background: linear-gradient(to right, #FFD700, #FF8C00, #FF0080) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        color: #FF8C00 !important;
        display: block !important;
        position: relative !important;
        z-index: 2001 !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 0 !important;
        padding: 10px 0 !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }

    /* ENHANCED ANIMATED SPARKLES FOR FLOATING TITLE */
    .sparkle {
        display: block !important;
        position: absolute !important;
        font-size: 1.1rem !important;
        z-index: 2002 !important;
        animation: sparkle-float-mobile 2.5s ease-in-out infinite !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    @keyframes sparkle-float-mobile {

        0%,
        100% {
            transform: translate(0, 0) scale(1) rotate(0deg);
            opacity: 0.8;
        }

        50% {
            transform: translate(5px, -8px) scale(1.2) rotate(15deg);
            opacity: 1;
        }
    }

    .sparkle.s1 {
        top: -5px !important;
        left: 15px !important;
        color: #FFD700 !important;
        animation-delay: 0s !important;
    }

    .sparkle.s2 {
        bottom: -5px !important;
        right: 15px !important;
        color: #FF0080 !important;
        animation-delay: 0.5s !important;
    }

    .sparkle.s3 {
        top: 10px !important;
        right: 25px !important;
        color: #FFD700 !important;
        animation-delay: 1s !important;
    }

    .sparkle.s4 {
        bottom: 10px !important;
        left: 25px !important;
        color: #FF0080 !important;
        animation-delay: 1.5s !important;
    }

    /* Category Swipe Premium Style - Matching Main Theme */
    .contact-hero .category-pills {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        padding: 15px 5px !important;
        margin-top: 25px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        position: relative !important;
        z-index: 100 !important;
    }

    .contact-hero .category-pills::-webkit-scrollbar {
        display: none !important;
    }

    .contact-hero .category-pill {
        white-space: nowrap !important;
        padding: 10px 24px !important;
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        flex-shrink: 0 !important;
        border-radius: 14px !important;
        background: #fdfaff !important;
        border: 2px solid rgba(124, 58, 237, 0.4) !important;
        color: #6D28D9 !important;
        /* Premium Deep Purple */
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
        transition: all 0.3s ease !important;
    }

    .contact-hero .category-pill.active {
        background: linear-gradient(135deg, #7C3AED, #5B21B6) !important;
        border-color: #5B21B6 !important;
        color: #FFFFFF !important;
        box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4) !important;
    }
}