
        /* ===== SECTIONS PRODUITS HIGH-TECH ===== */
        /* Surcharge de container-fluid avec marges */
body {
    background-color: #d2d9d9;
    margin-left: 40px;
    margin-right: 40px;
}

/* Style général des sections */
.category-section {
    position: relative;
    padding: 20px 0;
}

/* En-tête de section avec design moderne */
.category-section .d-flex.justify-content-between {
    margin-bottom: 30px !important;
    position: relative;
}

.category-section h2 {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    color: var(--color-800);
}

.category-section h2 span.bg-white {
    position: relative;
    z-index: 2;
    padding-right: 20px;
    background: transparent !important;
}

.category-section h2 .position-absolute.border-top {
    border-width: 3px !important;
    border-color: var(--color-500) !important;
    opacity: 0.3;
    top: 60% !important;
}

/* Animation au survol du bouton "Voir tout" */
.category-section .btn-outline-success {
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 25px !important;
}

.category-section .btn-outline-success:hover {
    background-color: var(--color-600);
    border-color: var(--color-600);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(20, 189, 85, 0.3);
}

.category-section .btn-outline-success i {
    transition: transform 0.3s ease;
}

.category-section .btn-outline-success:hover i {
    transform: translateX(5px);
}

/* Grille des produits */
.category-section .row.g-4 {
    margin: 0 -8px;
}

.category-section .col-lg-2 {
    padding: 0 8px;
}

/* Cartes produits modernes */
.category-section .product-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    background: white;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(7, 65, 29, 0.1);
    border-color: var(--color-200);
}

/* Badge de statut amélioré */
.category-section .product-card .position-absolute .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 30px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    animation: badgePulse 2s infinite;
    z-index: 10;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Image du produit avec effet de zoom */
.category-section .product-image-link {
    display: block;
    overflow: hidden;
    padding: 15px 15px 0 15px;
}

.category-section .product-image-link img {
    transition: transform 0.5s ease;
    height: 160px !important;
    object-fit: contain;
}

.category-section .product-card:hover .product-image-link img {
    transform: scale(1.1);
}

/* Corps de la carte */
.category-section .card-body {
    padding: 15px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.02));
}

.category-section .card-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #333;
    transition: color 0.3s ease;
}

.category-section .product-card:hover .card-title {
    color: var(--color-700);
}

/* Prix */
.category-section .d-flex.justify-content-between {
    margin-top: 10px !important;
}

.category-section .fw-bold.fs-5 {
    font-size: 1.2rem !important;
    background: linear-gradient(135deg, var(--color-700), var(--color-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-section .text-decoration-line-through {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Boutons d'action */
.category-section .d-flex.gap-2 {
    margin-top: 15px !important;
}

.category-section .btn-teranga,
.category-section .btn-whatsapp,
.category-section .btn-outline-success {
    padding: 8px !important;
    border-radius: 12px !important;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border: none;
}

.category-section .btn-teranga {
    background-color: var(--color-600);
    color: white;
}

.category-section .btn-teranga:hover {
    background-color: var(--color-700);
    transform: scale(1.05);
}

.category-section .btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.category-section .btn-whatsapp:hover {
    background-color: #20b859;
    transform: scale(1.05);
}

.category-section .btn-outline-success {
    border: 2px solid var(--color-600);
    color: var(--color-700);
    background: transparent;
}

.category-section .btn-outline-success:hover {
    background-color: var(--color-600);
    color: white;
    transform: scale(1.05);
}
.category-section .product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.category-section .product-card:hover::after {
    opacity: 1;
}
/* Séparateur visuel */
.category-section + .text-center.my-1 {
    margin: 30px 0 !important;
}

.category-section + .text-center.my-1 .badge {
    background: linear-gradient(135deg, var(--color-50), white) !important;
    border: 1px solid var(--color-200);
    color: var(--color-800);
    padding: 8px 20px !important;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-section + .text-center.my-1 .badge i {
    color: #ffc107;
    animation: starSpin 3s infinite;
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .category-section .col-lg-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 992px) {
    .category-section h2 {
        font-size: 1.5rem;
    }
    
    .category-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .category-section .btn-outline-success {
        padding: 8px 15px !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .category-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .category-section .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    
    .category-section h2 {
        width: 100%;
    }
    
    .category-section .btn-outline-success {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .category-section .product-card .position-absolute .badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    
    .category-section .card-title {
        font-size: 0.8rem;
    }
    
    .category-section .fw-bold.fs-5 {
        font-size: 1rem !important;
    }
}
        /* Animation au survol des pubs */
.pub-app-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pub-app-item:hover {
    transform: translateX(5px);
    background-color: var(--color-50);
    border-radius: 12px;
}

/* Style des boutons dans les pubs */
.btn-teranga i, .btn-whatsapp i {
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .pub-app-item {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .pub-app-item > div:first-child {
        width: 100% !important;
        margin-bottom: 10px;
    }
}
                /* Style spécifique à la page membre */
        .membership-hero {
            background: linear-gradient(135deg, var(--color-900), var(--color-700));
            color: white;
            border-radius: 30px;
            padding: 40px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .membership-hero::before {
            content: "FOREVER";
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 120px;
            font-weight: 800;
            color: rgba(255,255,255,0.05);
            z-index: 1;
        }
        .membership-hero-content {
            position: relative;
            z-index: 2;
        }
        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: 0.3s;
            height: 100%;
            border: 1px solid var(--color-100);
        }
        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(7,65,29,0.1);
            border-color: var(--color-400);
        }

        /* Style pour les sections de catégories */
.category-section h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.category-section h2 span.bg-white {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

/* Animation au survol des cartes */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1) !important;
}

/* Style des badges de statut */
.product-card .position-absolute .badge {
    font-size: 0.8rem;
    padding: 8px 15px;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Boutons d'action */
.btn-teranga, .btn-whatsapp, .btn-outline-success {
    transition: all 0.2s ease;
}

.btn-teranga:hover {
    background-color: var(--color-700);
    transform: translateY(-2px);
}

.btn-whatsapp:hover {
    background-color: #20b859;
    transform: translateY(-2px);
}

.btn-outline-success:hover {
    background-color: var(--color-600);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .category-section h2 {
        font-size: 1.5rem;
    }
    
    .product-card .position-absolute .badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

/* ===== SECTION PACKS SANTÉ & BIEN-ÊTRE ===== */

.packs-section {
    position: relative;
    padding: 20px 0 40px;
}

/* En-tête de section */
.packs-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-800);
    margin-bottom: 0;
    position: relative;
    padding-left: 15px;
    border-left: 6px solid var(--color-500);
}

.packs-section .btn-view-all {
    background: transparent;
    color: var(--color-700);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    border: 2px solid var(--color-200);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.packs-section .btn-view-all:hover {
    background: var(--color-600);
    border-color: var(--color-600);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(20, 189, 85, 0.2);
}

.packs-section .btn-view-all i {
    transition: transform 0.3s ease;
}

.packs-section .btn-view-all:hover i {
    transform: translateX(5px);
}

/* Carte pack */
.pack-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(20, 189, 85, 0.1);
}

.pack-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 40px rgba(7, 65, 29, 0.15);
    border-color: var(--color-300);
}

/* Badge économie */
.pack-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.badge-economie {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
    display: inline-block;
    animation: pulseEconomie 2s infinite;
}

@keyframes pulseEconomie {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Wrapper d'image */
.pack-image-wrapper {
    position: relative;
    overflow: hidden;
    padding: 25px;
    background: linear-gradient(135deg, var(--color-50), white);
    border-bottom: 1px solid var(--color-100);
}

.pack-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pack-card:hover .pack-image {
    transform: scale(1.1);
}

/* Overlay au survol */
.image-overlay-pack {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 65, 29, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pack-card:hover .image-overlay-pack {
    opacity: 1;
}

.overlay-text-pack {
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 40px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    font-size: 0.9rem;
}

.pack-card:hover .overlay-text-pack {
    transform: translateY(0);
}

/* Contenu */
.pack-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pack-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-800);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pack-card:hover .pack-title {
    color: var(--color-600);
}

.pack-description {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

/* Section des prix */
.pack-price-section {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pack-current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-700);
    line-height: 1.2;
}

.pack-old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.pack-economie {
    font-size: 0.85rem;
    color: #ff4757;
    font-weight: 600;
    background: rgba(255, 71, 87, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

/* Boutons d'action */
.pack-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.btn-pack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-cart-pack {
    background: linear-gradient(135deg, var(--color-600), var(--color-700));
    color: white;
    flex: 2;
}

.btn-cart-pack i {
    font-size: 1.1rem;
}

.btn-cart-pack:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20, 189, 85, 0.4);
}

.btn-whatsapp-pack {
    background: #25D366;
    color: white;
    width: 45px;
    padding: 10px 0;
}

.btn-whatsapp-pack:hover {
    background: #20b859;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-view-pack {
    background: var(--color-100);
    color: var(--color-800);
    width: 45px;
    padding: 10px 0;
}

.btn-view-pack:hover {
    background: var(--color-200);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(7, 65, 29, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .packs-section .section-title {
        font-size: 1.5rem;
    }
    
    .pack-image {
        height: 160px;
    }
    
    .pack-current-price {
        font-size: 1.4rem;
    }
    
    .btn-cart-pack span {
        display: none;
    }
    
    .btn-cart-pack {
        width: 45px;
        padding: 10px 0;
    }
    
    .btn-cart-pack i {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .packs-section .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    
    .packs-section .btn-view-all {
        width: 100%;
        justify-content: center;
    }
    
    .pack-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .pack-image {
        height: 140px;
    }
    
    .badge-economie {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .pack-current-price {
        font-size: 1.2rem;
    }
}

/* ===== SECTION HIGH-TECH & MAISON ===== */

.tech-section {
    position: relative;
    padding: 30px 0 40px;
    background: linear-gradient(180deg, rgba(232, 253, 240, 0.3), transparent);
    border-radius: 40px;
}

/* En-tête de section */
.tech-section .section-title-tech {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-800);
    margin-bottom: 0;
    position: relative;
    padding-left: 15px;
    border-left: 6px solid var(--color-500);
}

.tech-section .btn-view-all-tech {
    background: transparent;
    color: var(--color-700);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 40px;
    text-decoration: none;
    border: 2px solid var(--color-200);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.tech-section .btn-view-all-tech:hover {
    background: var(--color-600);
    border-color: var(--color-600);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(20, 189, 85, 0.2);
}

.tech-section .btn-view-all-tech i {
    transition: transform 0.3s ease;
}

.tech-section .btn-view-all-tech:hover i {
    transform: translateX(5px);
}

/* Carte high-tech */
.tech-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(20, 189, 85, 0.1);
}

.tech-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 40px rgba(7, 65, 29, 0.15);
    border-color: var(--color-300);
}

/* Badges de statut */
.tech-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    animation: badgeGlow 2s infinite;
}

@keyframes badgeGlow {
    0% { box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 8px 25px rgba(20, 189, 85, 0.4); }
    100% { box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); }
}

.badge-nouveau {
    background: linear-gradient(135deg, #4299e1, #3182ce);
}

.badge-promo {
    background: linear-gradient(135deg, #f56565, #e53e3e);
}

.badge-tendance {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
}

.badge-disponible {
    background: linear-gradient(135deg, var(--color-600), var(--color-700));
}

/* Image wrapper */
.tech-image-wrapper {
    position: relative;
    overflow: hidden;
    padding: 25px;
    background: linear-gradient(135deg, var(--color-50), white);
    border-bottom: 1px solid var(--color-100);
}

.tech-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-card:hover .tech-image {
    transform: scale(1.1);
}

/* Overlay au survol */
.image-overlay-tech {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 65, 29, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover .image-overlay-tech {
    opacity: 1;
}

.overlay-text-tech {
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border: 2px solid white;
    border-radius: 40px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    font-size: 0.9rem;
}

.tech-card:hover .overlay-text-tech {
    transform: translateY(0);
}

/* Contenu */
.tech-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tech-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-800);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tech-card:hover .tech-title {
    color: var(--color-600);
}

.tech-description {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
    flex: 1;
}

/* Prix et catégorie */
.tech-price-section {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tech-current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-700);
    line-height: 1.2;
}

.tech-category {
    font-size: 0.75rem;
    color: #888;
    background: var(--color-50);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

/* Boutons d'action */
.tech-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.btn-tech {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-cart-tech {
    background: linear-gradient(135deg, var(--color-600), var(--color-700));
    color: white;
    flex: 2;
}

.btn-cart-tech i {
    font-size: 1rem;
}

.btn-cart-tech:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20, 189, 85, 0.4);
}

.btn-whatsapp-tech {
    background: #25D366;
    color: white;
    width: 40px;
    padding: 8px 0;
}

.btn-whatsapp-tech:hover {
    background: #20b859;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-view-tech {
    background: var(--color-100);
    color: var(--color-800);
    width: 40px;
    padding: 8px 0;
}

.btn-view-tech:hover {
    background: var(--color-200);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(7, 65, 29, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .tech-section .section-title-tech {
        font-size: 1.6rem;
    }
    
    .tech-image {
        height: 160px;
    }
    
    .tech-current-price {
        font-size: 1.3rem;
    }
    
    .btn-cart-tech span {
        display: none;
    }
    
    .btn-cart-tech {
        width: 40px;
        padding: 8px 0;
    }
}

@media (max-width: 768px) {
    .tech-section .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    
    .tech-section .btn-view-all-tech {
        width: 100%;
        justify-content: center;
    }
    
    .tech-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .tech-image {
        height: 140px;
    }
    
    .tech-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .tech-current-price {
        font-size: 1.1rem;
    }
}
/* Animation des étoiles */
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Responsive pour la popup */
@media (max-width: 768px) {
    #teranga-popup > div > div[style*="display: flex; flex-direction: row;"] {
        flex-direction: column !important;
    }
    
    #teranga-popup > div > div[style*="display: flex; flex-direction: row;"] > div {
        padding: 15px !important;
    }
    
    #teranga-popup .popup-close {
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    #teranga-popup > div > div[style*="display: flex; gap: 15px; margin-top: 20px;"] {
        flex-wrap: wrap;
    }
    
    #teranga-popup > div > div[style*="display: flex; gap: 15px; margin-top: 20px;"] > a {
        flex: 1 1 100%;
    }
}
  
