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

/* Hero Section */
.shop-hero {
    width: 100%;
    min-height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../../../assets/imgs/backgroundBS.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    background-image: url('../../../assets/imgs/backgroundtexte.jpg');
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 5rem;
    font-family: Poppins, sans-serif;
    margin-bottom: 0;
}

.hero-content p {
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 1.5rem;
    margin-top: 10px;
}

/* ==================== BILLING TOGGLE ==================== */
.billing-toggle-container {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background-color: #1B1B1B;
}

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
}

.billing-label {
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.billing-label.active {
    color: #B10000;
    font-weight: 700;
}

.discount-badge {
    background: linear-gradient(135deg, #B10000, #ff3333);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-left: 5px;
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background-color: #333;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-switch.active {
    background-color: #B10000;
}

.toggle-slider {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
}

/* ==================== WHY SUBSCRIPTIONS SECTION ==================== */
.why-subscriptions {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 40px;
    background: linear-gradient(145deg, #1B1B1B, #151515);
    border: 2px solid rgba(177, 0, 0, 0.3);
    border-radius: 15px;
}

.why-subscriptions h2 {
    color: #B10000;
    font-family: Poppins, sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.why-subscriptions p {
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.why-subscriptions strong {
    color: #B10000;
}

/* ==================== VIP SECTION ==================== */
.vip-section {
    max-width: 1600px;
    margin: 60px auto;
    padding: 0 20px;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ==================== VIP CARD BASE ==================== */
.vip-card {
    background: linear-gradient(145deg, #1B1B1B, #151515);
    border: 2px solid;
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vip-card:hover {
    transform: translateY(-5px);
}

.tier-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: Poppins, sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popular-badge,
.exclusive-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: Poppins, sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.tier-icon {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.vip-card:hover .tier-icon {
    transform: scale(1.05);
}

.tier-icon i {
    font-size: 50px;
}

.tier-name {
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 2rem;
    text-align: center;
    margin: 20px 0 10px;
    font-weight: 700;
}

.tier-subtitle {
    color: #9d9d9d;
    font-family: Roboto, sans-serif;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
}

.price-container {
    text-align: center;
    margin: 30px 0;
    min-height: 90px;
}

.price {
    transition: all 0.3s ease;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: Poppins, sans-serif;
}

.currency {
    font-size: 1.2rem;
    font-family: Roboto, sans-serif;
    margin-left: 5px;
}

.savings {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
    color: #4ade80;
    font-family: Poppins, sans-serif;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.features-list li {
    color: #fff;
    font-family: Roboto, sans-serif;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.features-list i {
    font-size: 14px;
    min-width: 14px;
}

.purchase-btn {
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 10px;
    font-family: Poppins, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.purchase-btn:hover {
    transform: translateY(-2px);
}

.purchase-btn i {
    transition: transform 0.3s ease;
}

.purchase-btn:hover i {
    transform: translateX(5px);
}

/* ==================== BRONZE TIER ==================== */
.bronze-tier {
    border-color: #cd7f32;
}

.bronze-tier .tier-badge {
    background: #cd7f32;
    color: #fff;
}

.bronze-tier .tier-icon {
    background: #cd7f32;
}

.bronze-tier .tier-icon i {
    color: #fff;
}

.bronze-tier .amount {
    color: #cd7f32;
}

.bronze-tier .features-list i {
    color: #cd7f32;
}

.bronze-tier .purchase-btn {
    background: #cd7f32;
    color: #fff;
}

.bronze-tier:hover {
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.3);
    border-color: #b8860b;
}

.bronze-tier .purchase-btn:hover {
    background: #b8860b;
}

/* ==================== SILVER TIER ==================== */
.silver-tier {
    border-color: #c0c0c0;
}

.silver-tier .tier-badge {
    background: #c0c0c0;
    color: #000;
}

.silver-tier .tier-icon {
    background: #c0c0c0;
}

.silver-tier .tier-icon i {
    color: #000;
}

.silver-tier .amount {
    color: #c0c0c0;
}

.silver-tier .features-list i {
    color: #c0c0c0;
}

.silver-tier .purchase-btn {
    background: #c0c0c0;
    color: #000;
}

.silver-tier:hover {
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.4);
    border-color: #e0e0e0;
}

.silver-tier .purchase-btn:hover {
    background: #a8a8a8;
}

/* ==================== GOLD TIER ==================== */
.gold-tier {
    border-color: #ffd700;
}

.gold-tier .popular-badge {
    background: #B10000;
    color: #fff;
}

.gold-tier .tier-badge {
    background: #ffd700;
    color: #000;
}

.gold-tier .tier-icon {
    background: #ffd700;
}

.gold-tier .tier-icon i {
    color: #000;
}

.gold-tier .amount {
    color: #ffd700;
}

.gold-tier .features-list i {
    color: #ffd700;
}

.gold-tier .purchase-btn {
    background: #ffd700;
    color: #000;
    font-weight: 700;
}

.gold-tier:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border-color: #ffed4e;
}

.gold-tier .purchase-btn:hover {
    background: #ffed4e;
}

/* ==================== PLATINUM TIER ==================== */
.platinum-tier {
    border-color: #e5e4e2;
}

.platinum-tier .tier-badge {
    background: #e5e4e2;
    color: #000;
}

.platinum-tier .tier-icon {
    background: #e5e4e2;
}

.platinum-tier .tier-icon i {
    color: #000;
}

.platinum-tier .amount {
    color: #e5e4e2;
}

.platinum-tier .features-list i {
    color: #e5e4e2;
}

.platinum-tier .purchase-btn {
    background: #e5e4e2;
    color: #000;
    font-weight: 700;
}

.platinum-tier:hover {
    box-shadow: 0 10px 30px rgba(229, 228, 226, 0.4);
    border-color: #ffffff;
}

.platinum-tier .purchase-btn:hover {
    background: #c9c9c9;
}

/* ==================== ELITE TIER ==================== */
.elite-tier {
    border-color: #B10000;
}

.elite-tier .exclusive-badge {
    background: #B10000;
    color: #fff;
}

.elite-tier .tier-badge {
    background: linear-gradient(135deg, #B10000, #ffd700);
    color: #fff;
}

.elite-tier .tier-icon {
    background: linear-gradient(135deg, #B10000, #ffd700);
}

.elite-tier .tier-icon i {
    color: #fff;
}

.elite-tier .tier-name {
    color: #B10000;
}

.elite-tier .amount {
    color: #B10000;
}

.elite-tier .features-list i {
    color: #B10000;
}

.elite-tier .purchase-btn {
    background: linear-gradient(135deg, #B10000, #ff3333);
    color: #fff;
    font-weight: 800;
}

.elite-tier:hover {
    box-shadow: 0 10px 30px rgba(177, 0, 0, 0.5);
    border-color: #ff3333;
}

.elite-tier .purchase-btn:hover {
    background: linear-gradient(135deg, #8d0000, #B10000);
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: #9d9d9d;
    font-family: Roboto, sans-serif;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ==================== STANDARD SECTION ==================== */
.standard-section {
    padding-bottom: 60px;
}

/* ==================== PREMIUM SECTION ==================== */
.premium-section {
    position: relative;
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(180deg,
        rgba(177, 0, 0, 0.05) 0%,
        rgba(177, 0, 0, 0.15) 50%,
        rgba(177, 0, 0, 0.05) 100%);
    border-top: 3px solid rgba(177, 0, 0, 0.3);
    border-bottom: 3px solid rgba(177, 0, 0, 0.3);
}

.premium-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(177, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(177, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.premium-section .vip-grid {
    position: relative;
    z-index: 1;
}

/* Premium Header */
.premium-header {
    position: relative;
    z-index: 1;
}

.premium-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #B10000, #ff3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(177, 0, 0, 0.5);
}

.premium-icon i {
    font-size: 40px;
    color: #fff;
}

.premium-header h2 {
    background: linear-gradient(135deg, #fff, #B10000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Grid - 2 colonnes pour les offres premium */
.premium-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Premium Cards */
.premium-card {
    position: relative;
    overflow: hidden;
    border-width: 3px;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(177, 0, 0, 0.3), transparent);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 228, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.elite-glow {
    background: radial-gradient(circle, rgba(177, 0, 0, 0.2) 0%, transparent 70%);
}

.premium-card:hover .premium-glow {
    opacity: 1;
}

.premium-btn {
    font-size: 1.1rem;
    padding: 18px 35px;
    font-weight: 700;
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 1400px) {
    .vip-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .vip-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }

    .tier-name {
        font-size: 1.8rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .why-subscriptions {
        padding: 30px 20px;
    }

    .why-subscriptions h2 {
        font-size: 1.5rem;
    }

    .why-subscriptions p {
        font-size: 1rem;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .premium-section {
        padding: 60px 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .billing-toggle {
        flex-direction: column;
        gap: 15px;
    }

    .vip-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vip-card {
        padding: 30px 20px;
    }

    .why-subscriptions {
        margin: 40px 20px 20px;
        padding: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .premium-section {
        margin-top: 60px;
        padding: 50px 20px;
    }

    .premium-icon {
        width: 60px;
        height: 60px;
    }

    .premium-icon i {
        font-size: 30px;
    }
}
