/* ===============================
   VARIABLES GLOBALES
================================= */
:root {
    --brand-purple: #563B85;
    --brand-pink: #EE7CAE;
    --brand-green: #7DC4A3;
    --brand-yellow: #FFD23D;

    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --premium-shadow: 0 15px 35px rgba(86, 59, 133, 0.1);
}

/* ===============================
   GLOBAL
================================= */
body {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

/* ===============================
   NAVIGATION
================================= */
#start-main .nav-link {
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    padding: 0 12px;
}

/* Hover couleurs dynamiques */
#start-main>li:nth-child(1) .nav-link:hover {
    color: #00B1EB;
}

#start-main>li:nth-child(2) .nav-link:hover {
    color: #EA5B0D;
}

#start-main>li:nth-child(3) .nav-link:hover {
    color: #27348B;
}

#start-main>li:nth-child(4) .nav-link:hover {
    color: #019641;
}

/* ===============================
   TITRES / BLOCS
================================= */
.block-title-4 {
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.block-title-4 h4 span {
    background: #fff;
    padding-right: 15px;
    color: var(--brand-purple);
    font-weight: 700;
}

.block-title-6 {
    border-left: 4px solid var(--brand-purple);
    padding-left: 15px;
}

/* ===============================
   CARDS & UI
================================= */
.card-full {
    border: none;
    background: transparent;
}

.image-wrapper img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
}

/* ===============================
   PREMIUM SIDEBAR
================================= */
.premium-sidebar-card {
    background: var(--brand-purple);
    border-radius: 20px;
    padding: 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(86, 59, 133, 0.25);
}

.premium-sidebar-card::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.premium-benefit-item {
    display: flex;
    align-items: center;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.premium-benefit-item i {
    width: 22px;
    color: var(--brand-yellow);
}

/* ===============================
   BOUTONS
================================= */
.btn-premium-sidebar {
    background: var(--brand-pink);
    color: #fff;
    border-radius: 12px;
    padding: 12px;
    font-weight: 800;
    text-transform: uppercase;
    width: 100%;
}

.btn-premium-subscribe {
    background: linear-gradient(45deg, var(--brand-purple), var(--brand-pink));
    color: #fff;
    border-radius: 27px;
    padding: 12px 30px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-premium-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-mobile-shop {
    background: var(--brand-green);
    color: #fff;
    border-radius: 27px;
    padding: 12px 10px;
}

/* ===============================
   TABLES (CART / CHECKOUT)
================================= */
.table {
    border-collapse: separate;
    border-spacing: 0 15px;
}

.table tbody tr {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    transition: transform 0.2s;
}

.table tbody tr:hover {
    transform: translateY(-3px);
}

/* ===============================
   BADGES
================================= */
.badge-physical {
    background: var(--brand-yellow);
    color: #000;
    font-weight: 700;
}

.badge-virtual {
    background: var(--brand-pink);
    color: #fff;
}

/* ===============================
   SOCIAL
================================= */
.social-two li a {
    display: block;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    border-radius: 8px;
}

.bg-instagram {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.bg-linkedin {
    background: #0077b5;
}

/* ===============================
   UTILITAIRES
================================= */
.cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    background: #EA5B0D;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
}

/* ===============================
   ANIMATIONS
================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.6s ease;
}

/* ===============================
   CHECKOUT
================================= */
.checkout-title {
    text-align: center;
    font-weight: 800;
    margin: 2rem 0;
}

.checkout-table {
    border-spacing: 0 12px;
}

.checkout-btn-submit {
    background: var(--brand-green);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
}

/* ===============================
   SUCCESS PAGE
================================= */
.success-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding: 3rem;
    text-align: center;
}