/* ====================================================
   ZALLEVE V2.0 - ULTRA PREMIUM GLASSMORPHISM & NEON
   ==================================================== */

body,
.page-wrapper,
.main {
    background-color: #000000 !important;
    background-image: radial-gradient(circle at 50% 0%, #0b0b1180 0%, #0a0a0f 60%) !important;
    color: #94a3b8 !important;
    font-family: 'Inter', 'Poppins', sans-serif !important;
}

.bg-light,
.bg-light-2,
.bg-lighter,
.bg-gray,
.bg-white {
    background: transparent !important;
}

.premium-section {
    position: relative;
    z-index: 2;
}

.premium-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.premium-title {
    font-size: 2.6rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
    position: relative;
}

/* Glowing Underline for Title */
.premium-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00f0ff, #7000ff);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    border-radius: 5px;
}

.premium-link-btn {
    color: #64748b !important;
    font-size: 1.4rem;
    font-weight: 500;
    transition: 0.3s ease;
}

.premium-link-btn:hover {
    color: #00f0ff !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* --- ULTRA PREMIUM PRODUCT CARDS --- */
.custom-product-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 16px !important;
    padding: 15px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Subtle Neon Glow on Hover (Not over-glowing) */
.custom-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.3) !important;
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.01) !important;
}

/* Fix Card Inner Backgrounds */
.custom-product-card .product-media,
.custom-product-card .product-body,
.custom-product-card .product-footer {
    background: transparent !important;
}

/* Card Typography */
.custom-product-card .product-title a {
    color: #e2e8f0 !important;
    font-weight: 500;
    font-size: 1.5rem;
    transition: 0.3s ease;
}

.custom-product-card:hover .product-title a {
    color: #00f0ff !important;
}

.custom-product-card .new-price {
    color: #ffffff !important;
    font-size: 1.8rem;
    font-weight: 700;
}

.custom-product-card .old-price {
    color: #64748b !important;
}

/* Premium Add to Cart Button */
.custom-product-card .btn-cart {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    margin-top: 10px;
    transition: all 0.3s ease !important;
}

.custom-product-card .btn-cart span {
    color: #94a3b8 !important;
    font-weight: 600 !important;
    font-size: 1.3rem;
}

.custom-product-card .btn-cart:hover {
    background: linear-gradient(90deg, #00f0ff, #0077ff) !important;
    border-color: transparent !important;
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3) !important;
}

.custom-product-card .btn-cart:hover span {
    color: #000000 !important;
    /* High contrast on hover */
}

/* Star Ratings Cyan */
.custom-product-card .ratings-val {
    color: #00f0ff !important;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.4);
}

.premium-cta-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.95) 0%, rgba(30, 41, 59, 0.8) 100%);
    z-index: 1;
}

.premium-cta-overlay {
    position: relative;
    z-index: 2;
    padding: 45px 30px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* FLEX LAYOUT FIX */
.premium-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.premium-cta-heading {
    flex: 0 0 28%;
    /* Heading takes 28% space */
    text-align: right;
    padding-right: 30px;
}

.premium-cta-text-box {
    flex: 1;
    /* Description takes remaining space */
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

/* Vertical line separator */
.premium-cta-text-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.premium-cta-btn-box {
    flex: 0 0 auto;
    /* Button size adjusts automatically */
}

.premium-gradient-text {
    background: linear-gradient(90deg, #00f0ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.premium-cta-desc {
    color: #cbd5e1;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.premium-glow-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #f8fafc !important;
    padding: 14px 35px !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    transition: all 0.4s ease !important;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.premium-glow-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.premium-glow-btn:hover {
    background: linear-gradient(90deg, #7c3aed, #00f0ff) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4) !important;
    transform: translateY(-3px);
}

.premium-glow-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .premium-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .premium-cta-heading {
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .premium-cta-text-box {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 25px;
    }

    .premium-cta-text-box::before {
        display: none;
    }
}

/* ===================================== */
/* ====================================================
   PREMIUM TRENDING SECTION & ICON TABS (FIXED & SLEEK)
   ==================================================== */
/* ====================================================
               PREMIUM TRENDING SECTION & ICON TABS (FIXED LAYOUT)
               ==================================================== */
.premium-trending-section {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* --- 2-ROW HEADER LAYOUT (Breathing Room) --- */
.premium-trending-header {
    display: flex;
    flex-direction: column;
    /* Stack Title & Tabs Vertically */
    align-items: flex-start;
    /* Align everything to left */
    gap: 25px;
    /* Proper gap between title and tabs */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
    margin-bottom: 40px !important;
    width: 100%;
}

/* --- HEADING STYLE --- */
.premium-trending-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 2.8rem !important;
    letter-spacing: -0.5px !important;
    position: relative;
    margin: 0 !important;
    padding-bottom: 12px;
    /* Space for the underline */
}

.premium-trending-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    /* Align perfectly with container's border-bottom */
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00f0ff, #7000ff);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
    border-radius: 5px;
}


/* --- TABS WRAPPER --- */
.premium-tabs-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden; /* Bahar wala container saaf rahay */
}

/* --- THE ACTUAL SCROLLABLE TABS --- */
.premium-icon-tabs {
    display: flex !important;
    flex-wrap: nowrap !important; 
    overflow-x: auto !important; 
    gap: 12px;
    padding: 5px 5px 15px 5px; 
    -ms-overflow-style: none;  
    scrollbar-width: none; 
    -webkit-overflow-scrolling: touch; 
}

.premium-icon-tabs::-webkit-scrollbar {
    display: none; 
}


.premium-icon-tabs .nav-item {
    flex: 0 0 auto !important; 
}
.premium-tabs-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    background: linear-gradient(to right, transparent, #06060c); /* Apne body background se match karein */
    pointer-events: none; /* Click ko na rokay */
    z-index: 2;
}

.premium-icon-tabs .nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 30px !important;
    /* Elegant Pill Shape */
    color: #94a3b8 !important;
    height: 40px;
    /* Perfect sleek height */
    padding: 0 22px !important;
    /* Comfortable side spacing */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    white-space: nowrap;
    /* Keep text on single line */
}

.premium-icon-tabs .nav-link i {
    font-size: 1.3rem;
    margin-bottom: 0;
    margin-right: 8px;
    /* Space between Icon & Text */
    transition: all 0.3s ease;
}

.premium-icon-tabs .nav-link span {
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.2px;
}

/* Tab Hover & Active States */
.premium-icon-tabs .nav-link.active,
.premium-icon-tabs .nav-link:hover {
    background: rgba(0, 240, 255, 0.06) !important;
    border-color: rgba(0, 240, 255, 0.4) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(0, 240, 255, 0.12) !important;
    transform: translateY(-2px);
}

.premium-icon-tabs .nav-link.active i,
.premium-icon-tabs .nav-link:hover i {
    color: #00f0ff !important;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.5));
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .premium-trending-header {
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .premium-trending-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .premium-icon-tabs {
        padding-left: 15px;
        padding-right: 15px;
        width: 100vw;
        margin-left: -15px;
    }
}

/* ====================================================
               ULTRA-PREMIUM INTERACTIVE DEALS SECTION
               ==================================================== */
.premium-deal-section {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 2;
}


.premium-deal-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 3rem !important;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.premium-deal-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00f0ff, #7000ff);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    border-radius: 5px;
}

.premium-deal-desc {
    color: #94a3b8 !important;
    font-size: 1.5rem !important;
    margin-top: 15px;
}


.premium-deal-card {
    position: relative;
    border-radius: 24px !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.deal-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right !important;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 0;
}

.premium-deal-card:hover .deal-bg-image {
    transform: scale(1.08);
}


.premium-deal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 15, 25, 0.98) 0%, rgba(11, 15, 25, 0.8) 45%, rgba(11, 15, 25, 0.1) 100%) !important;
    z-index: 1;
}

.premium-deal-card:hover {
    border-color: rgba(0, 240, 255, 0.4) !important;
    box-shadow: 0 30px 60px rgba(0, 240, 255, 0.15) !important;
}

.premium-deal-wrapper {
    position: relative;
    z-index: 2;
    padding: 60px 45px !important;
}

.deal-subtitle-neon {
    color: #00f0ff !important;
    text-transform: uppercase;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    font-size: 1.3rem !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.deal-text-main {
    color: #ffffff !important;
    font-size: 3.8rem !important;
    font-weight: 800 !important;
    line-height: 1.25;
}

.deal-prod-title a {
    color: #e2e8f0 !important;
    font-size: 1.8rem !important;
    font-weight: 500 !important;
    transition: color 0.3s ease;
}

.deal-prod-title a:hover {
    color: #00f0ff !important;
}

.deal-new-price {
    font-size: 2.6rem !important;
    color: #ff2a5f !important;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 42, 95, 0.3);
}

.deal-old-price {
    text-decoration: line-through;
    margin-left: 12px;
    color: #64748b !important;
    font-size: 1.5rem !important;
}

.premium-deal-card .deal-countdown {
    display: block;
    margin-bottom: 25px;
    margin-top: 15px;
}

.premium-deal-card .countdown-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap;
}

.premium-deal-card .countdown-section {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 70px !important;
    height: 70px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease;
}

.premium-deal-card .countdown-section:hover {
    border-color: #00f0ff !important;
    background: rgba(0, 240, 255, 0.05) !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.premium-deal-card .countdown-amount {
    color: #00f0ff !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.premium-deal-card .countdown-period {
    color: #94a3b8 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}


.deal-glow-btn {
    background: linear-gradient(90deg, #7c3aed, #00f0ff) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 14px 40px !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.deal-glow-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.deal-glow-btn:hover {
    background: linear-gradient(90deg, #00f0ff, #7c3aed) !important;
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.5) !important;
    transform: translateY(-3px) scale(1.02);
    color: #ffffff !important;
}

.deal-glow-btn:hover i {
    transform: translateX(5px);
}


@media (max-width: 480px) {
    .premium-deal-card .countdown-section {
        width: 58px !important;
        height: 58px !important;
    }

    .premium-deal-card .countdown-amount {
        font-size: 1.8rem !important;
    }

    .premium-deal-card .countdown-period {
        font-size: 0.8rem !important;
    }

    .premium-deal-wrapper {
        padding: 40px 20px !important;
    }

    .deal-text-main {
        font-size: 2.8rem !important;
    }
}

@media (max-width: 768px) {
    .premium-deal-card {
        display: flex;
        flex-direction: column; 
        min-height: auto !important;
    }

    .deal-bg-image {
        position: relative !important;
        height: 300px !important;
        width: 100% !important;
        background-size: contain !important; 
        background-position: center !important;
        z-index: 1;
    }


    .premium-deal-card::before {
        background: linear-gradient(to bottom, 
            rgba(11, 15, 25, 0) 0%, 
            rgba(11, 15, 25, 0.6) 30%, 
            rgba(11, 15, 25, 1) 100%
        ) !important;
        z-index: 2;
    }

    .premium-deal-wrapper {
        position: relative;
        z-index: 3;
        padding: 20px 15px 40px 15px !important;
        margin-top: -80px; 
        text-align: center; 
    }

    .deal-text-main {
        font-size: 2.8rem !important;
    }

    .premium-deal-card .countdown-row {
        justify-content: center !important; 
    }

    .deal-glow-btn {
        width: 100%; 
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .deal-bg-image {
        background-position: center right 10% !important; 
    }
}

/* ====================================================
               PREMIUM FEATURES / ICON BOXES STYLES
               ==================================================== */
.premium-features-container {
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.premium-feature-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 20px !important;
    padding: 35px 25px !important;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.premium-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.25) !important;
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.08) !important;
}


.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.feature-icon-wrapper i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #00f0ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}


.premium-feature-card:hover .feature-icon-wrapper {
    background: rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transform: scale(1.05);
}

.premium-feature-card:hover .feature-icon-wrapper i {
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.5));
}

.premium-feature-card .icon-box-title {
    color: #ffffff !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
}

.premium-feature-card:hover .icon-box-title {
    color: #00f0ff !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.premium-feature-card p {
    color: #94a3b8 !important;
    font-size: 1.35rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}

/* ====================================================
               PREMIUM FEATURED PRODUCTS SECTION
               ==================================================== */
.premium-featured-section {
    background: transparent !important;
    position: relative;
    z-index: 2;
    margin-top: 50px !important;
}


.premium-featured-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 35px !important;
    width: 100%;
}


.premium-featured-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 2.8rem !important;
    letter-spacing: -0.5px !important;
    position: relative;
    margin: 0 !important;
    padding-bottom: 15px;
    display: inline-block;
}

.premium-featured-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00f0ff, #7000ff);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    border-radius: 5px;
}

@media (max-width: 991px) {
    .premium-featured-header {
        text-align: center;
        padding-bottom: 20px;
    }

    .premium-featured-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ====================================================
               PREMIUM 4-COLUMN FEATURES SECTION STYLES
               ==================================================== */
.premium-features-four-col {
    padding: 35px 0;
    position: relative;
    z-index: 2;
}

.premium-feature-card-four {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 20px !important;
    padding: 30px 22px !important;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}


.premium-feature-card-four:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.25) !important;
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.08) !important;
}

.feature-icon-wrapper-four {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-icon-wrapper-four i {
    font-size: 2rem;
    background: linear-gradient(135deg, #00f0ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.premium-feature-card-four:hover .feature-icon-wrapper-four {
    background: rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transform: scale(1.05);
}

.premium-feature-card-four:hover .feature-icon-wrapper-four i {
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.5));
}

.premium-feature-card-four .icon-box-title {
    color: #ffffff !important;
    font-size: 1.7rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
}

.premium-feature-card-four:hover .icon-box-title {
    color: #00f0ff !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.premium-feature-card-four p {
    color: #94a3b8 !important;
    font-size: 1.3rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
}

/* ====================================================
           PREMIUM VIP MODAL POPUP STYLES
           ==================================================== */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.82) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 9999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-modal-box {
    background: rgba(10, 10, 15, 0.85) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    max-width: 820px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 240, 255, 0.15) !important;
    animation: vipModalEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes vipModalEntrance {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.vip-close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    font-size: 28px !important;
    color: #64748b !important;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-close-btn:hover {
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    transform: rotate(90deg);
}

.vip-img-side {
    background: rgba(255, 255, 255, 0.01) !important;
    padding: 30px 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vip-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 240, 255, 0.1) !important;
    border: 1px solid rgba(0, 240, 255, 0.3) !important;
    color: #00f0ff !important;
    padding: 6px 12px !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
    z-index: 2;
}

.vip-image-zoom-container {
    width: 100%;
    height: 310px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.vip-image-zoom-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-modal-box:hover .vip-image-zoom-container img {
    transform: scale(1.05);
}

.vip-details-side {
    padding: 35px 30px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vip-modal-title {
    color: #ffffff !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    line-height: 1.3;
    margin-bottom: 12px !important;
}

.vip-new-price {
    color: #00f0ff !important;
    font-size: 2.4rem !important;
    font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.vip-old-price {
    color: #64748b !important;
    font-size: 1.5rem !important;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

.vip-desc {
    color: #cbd5e1 !important;
    font-size: 1.35rem !important;
    line-height: 1.6;
    margin-bottom: 15px !important;
}

.vip-features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
}

.vip-features-list li {
    position: relative;
    padding-left: 20px;
    font-size: 1.3rem !important;
    color: #94a3b8 !important;
    margin-bottom: 8px;
}

.vip-features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #00f0ff;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
    font-size: 1.1rem;
}

.vip-action-btn {
    background: linear-gradient(90deg, #7c3aed, #00f0ff) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px 35px !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: inline-block;
    text-align: center;
}

.vip-action-btn:hover {
    background: linear-gradient(90deg, #00f0ff, #7c3aed) !important;
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.5) !important;
    transform: translateY(-3px) scale(1.02);
    color: #ffffff !important;
}

@media (max-width: 991px) {
    .custom-modal-box {
        max-width: 450px;
    }

    .vip-img-side {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .vip-image-zoom-container {
        height: 220px;
    }

    .vip-details-side {
        padding: 25px 20px !important;
    }
}

/* ====================================================
               PREMIUM SOCIAL COMMUNITY SECTION STYLES
               ==================================================== */
.premium-community-box {
    position: relative;
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.premium-community-box:hover {
    border-color: rgba(0, 240, 255, 0.2) !important;
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.05) !important;
    transform: translateY(-5px);
}


.premium-community-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, rgba(112, 0, 255, 0.03) 50%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.premium-community-wrapper {
    position: relative;
    z-index: 1;
    padding: 50px 30px !important;
}

.community-title {
    color: #ffffff !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
    margin-bottom: 15px !important;
    background: linear-gradient(90deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.community-desc {
    color: #94a3b8 !important;
    font-size: 1.5rem !important;
    max-width: 700px;
    margin: 0 auto 30px auto !important;
    line-height: 1.6;
}


.premium-social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.premium-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8 !important;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}


.fb-btn:hover {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.7) !important;
    transform: translateY(-4px) scale(1.08);
}


.ig-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(220, 39, 67, 0.7) !important;
    transform: translateY(-4px) scale(1.08);
}


.yt-btn:hover {
    background: #ff0000 !important;
    border-color: #ff0000 !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.7) !important;
    transform: translateY(-4px) scale(1.08);
}


.tk-btn:hover {
    background: #000000 !important;
    border-color: #00f2fe !important;
    color: #ffffff !important;
    box-shadow: -4px -4px 15px rgba(0, 242, 254, 0.6), 4px 4px 15px rgba(254, 44, 85, 0.6) !important;
    transform: translateY(-4px) scale(1.08);
}