
/* ===== STYLES WELEE POUR LES BOUTONS ===== */

/* Classe de base pour tous les boutons Welee */
.welee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Bouton principal (rose Welee) */
.welee-btn-primary {
    background: linear-gradient(135deg, #F9CD64 0%, #A82155 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.25);
}

.welee-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.35);
    background: linear-gradient(135deg, #A82155 0%, #FF1A4D 100%);
}

.welee-btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(255, 51, 102, 0.25);
}

/* Bouton secondaire (blanc avec bordure rose) */
.welee-btn-secondary {
    background: white;
    color: #A82155;
    border: 2px solid #F9CD64;
    box-shadow: 0 4px 10px rgba(255, 107, 157, 0.15);
}

.welee-btn-secondary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE9F0 100%);
    border-color: #A82155;
    box-shadow: 0 6px 15px rgba(255, 51, 102, 0.2);
    color: #FF1A4D;
}

.welee-btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 51, 102, 0.15);
}

/* Bouton Instagram (dégradé spécifique) */
.welee-btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.25);
    border: none;
}

.welee-btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.35);
    background: linear-gradient(45deg, #FD1D1D, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
}

.welee-btn-instagram:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(225, 48, 108, 0.25);
}

/* Effet de brillance sur tous les boutons */
.welee-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: 0.5s;
}

.welee-btn:hover::before {
    left: 100%;
}

/* Animation pour les icônes */
.welee-btn i {
    transition: transform 0.3s ease;
}

.welee-btn:hover i {
    transform: scale(1.1);
}

/* Style pour le texte dans les boutons */
.welee-btn span {
    transition: transform 0.3s ease;
}

.welee-btn:hover span {
    transform: translateX(2px);
}

/* ===== STYLES EXISTANTS MODIFIÉS ===== */

/* Style pour le bouton de suivi Instagram */
.instagram-follow-btn {
    margin-top: 15px;
}

/* Carousel Container */
.instagram-carousel-container {
    position: relative;
    margin: 40px 0;
    padding: 0 50px;
    /* width: 70%; */
}

.instagram-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.instagram-grid::-webkit-scrollbar {
    display: none;
}

.instagram-card {
    flex: 0 0 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.instagram-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Instagram Image Styling */
.instagram-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.instagram-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-card:hover .instagram-image img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-icon {
    display: flex;
    gap: 20px;
    color: white;
    font-size: 1.5rem;
}

.instagram-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
    color: #A82155;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
    color: #FF1A4D;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

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

.carousel-btn:hover i {
    transform: scale(1.2);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #A82155;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
}

.dot:hover {
    background: #FF1A4D;
    transform: scale(1.1);
}

/* Style pour la section Schedule CTA */
.schedule-cta {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE9F0 100%);
    border-radius: 15px;
    border-left: 5px solid #A82155;
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.1);
}

.schedule-cta p {
    color: #5d1049;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .instagram-carousel-container {
        padding: 0 40px;
    }
    
    .instagram-card {
        flex: 0 0 280px;
    }
    
    .instagram-image {
        height: 280px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .schedule-cta {
        padding: 20px;
        margin-top: 30px;
    }
    
    .schedule-cta p {
        font-size: 1rem;
    }
    
    .welee-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .instagram-carousel-container {
        padding: 0 30px;
    }
    
    .instagram-card {
        flex: 0 0 250px;
    }
    
    .instagram-image {
        height: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .welee-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Styles pour la section Instagram */
.instagram-section {
    padding: 80px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
}

.instagram-content {
    padding: 20px;
}

.instagram-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.instagram-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
}

.instagram-stat i {
    color: #A82155;
}

.instagram-content p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Style pour les boutons "Voir sur Instagram" dans les cartes */
.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.instagram-handle h5 {
    display: none; /* Caché car nous utilisons maintenant span */
}



/*====================================================
        TIKTOK CSS
===================================================*/


        /* Style pour le bouton de rendez-vous */
        .schedule-cta {
            text-align: center;
            margin-top: 50px;
            padding: 25px;
            background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
            border-radius: 15px;
            border-left: 5px solid #F9CD64;
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15);
            align-items: center;
            justify-content: center;
            display: flex;
            margin-left: auto;
            margin-right: auto;
        }
        
        .schedule-cta p {
            color: #5d1049;
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .btn-schedule {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(135deg, #F9CD64 0%, #c2185b 100%);
            color: white;
            padding: 16px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .btn-schedule::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-schedule:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
            background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
        }
        
        .btn-schedule:hover::before {
            left: 100%;
        }
        
        .btn-schedule:active {
            transform: translateY(-1px);
            box-shadow: 0 3px 15px rgba(233, 30, 99, 0.3);
        }
        
        .btn-schedule i {
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }
        
        .btn-schedule:hover i {
            transform: scale(1.1);
        }
        
        /* Carousel Container */
        .tiktok-carousel-container {
            position: relative;
            margin: 40px 0;
            padding: 0 50px;
        }
        
        .tiktok-grid {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 25px;
            padding: 20px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .tiktok-grid::-webkit-scrollbar {
            display: none;
        }
        
        .tiktok-card {
            flex: 0 0 320px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            background: white;
            transition: all 0.3s ease;
            height: 600px;
        }
        
        .tiktok-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        /* Carousel Navigation Buttons */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 10;
            transition: all 0.3s ease;
            color: #F9CD64;
            font-size: 1.2rem;
        }
        
        .carousel-btn:hover {
            background: white;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-btn.prev {
            left: 0;
        }
        
        .carousel-btn.next {
            right: 0;
        }
        
        .carousel-btn i {
            transition: transform 0.3s ease;
        }
        
        .carousel-btn:hover i {
            transform: scale(1.2);
        }
        
        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 25px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e0e0e0;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .dot.active {
            background: #F9CD64;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
        }
        
        .dot:hover {
            background: #c2185b;
            transform: scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .tiktok-carousel-container {
                padding: 0 40px;
            }
            
            .tiktok-card {
                flex: 0 0 280px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .schedule-cta {
                padding: 20px;
                margin-top: 30px;
            }
            
            .schedule-cta p {
                font-size: 1rem;
            }
            
            .btn-schedule {
                padding: 14px 25px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .tiktok-carousel-container {
                padding: 0 30px;
            }
            
            .tiktok-card {
                flex: 0 0 250px;
            }
            
            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }
        
        /* Styles existants pour la section TikTok */
        .tiktok-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .tiktok-video {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }
        
        .tiktok-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .tiktok-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .tiktok-card:hover .tiktok-overlay {
            opacity: 1;
        }
        
        .tiktok-play-btn {
            width: 70px;
            height: 70px;
            background: rgba(233, 30, 99, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .tiktok-play-btn:hover {
            transform: scale(1.1);
        }
        
        .tiktok-play-btn i {
            color: white;
            font-size: 1.8rem;
            margin-left: 5px;
        }
        
        .tiktok-content {
            padding: 20px;
        }
        
        .tiktok-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .tiktok-stat {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #666;
            font-size: 0.9rem;
        }
        
        .tiktok-stat i {
            color: #F9CD64;
        }
        
        .tiktok-content p {
            color: #333;
            font-size: 1rem;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .tiktok-handle {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #F9CD64;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .tiktok-handle:hover {
            color: #c2185b;
        }
        
        .tiktok-handle i {
            font-size: 1.2rem;
        }
        
        .tiktok-handle h5 {
            margin: 0;
            font-size: 1rem;
        }
    