/* =============== STYLE POUR LES PAGES PROFIL HÔTESSES =============== */

.hostess-profile {
    margin-top: 70px;
    font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}

/* =============== HERO SECTION =============== */
.profile-hero {
    background: linear-gradient(135deg, rgba(203, 108, 230, 0.95) 0%, rgba(185, 104, 255, 0.95) 50%, rgba(216, 150, 255, 0.95) 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../Images/accueil-hero.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.profile-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.profile-image-container {
    position: relative;
    flex-shrink: 0;
}

.profile-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid white;
}

/* OLD PROFILE BADGE REMOVED */

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.profile-info {
    flex: 1;
    color: white;
}

.profile-name {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.profile-tagline {
    font-size: 1.5rem;
    margin: 0 0 30px 0;
    opacity: 0.95;
    font-weight: 300;
}

.profile-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 24px;
}

.stat-label {
    font-weight: 600;
    font-size: 16px;
}

/* =============== DESCRIPTION SECTION =============== */
.profile-description {
    padding: 80px 20px;
    background: white;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.profile-description h2 {
    color: #cb6ce6;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.divider {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #cb6ce6, transparent);
    margin: 0 auto 40px;
    border: none;
}

.profile-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.specialties {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #f0f0f0;
}

.specialties h3 {
    color: #cb6ce6;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tag {
    background: linear-gradient(135deg, #cb6ce6 0%, #b968ff 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(203, 108, 230, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(203, 108, 230, 0.5);
}

/* =============== AUDIO SECTION =============== */
.profile-audio {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f0f8 0%, #faf5fc 100%);
}

.profile-audio h2 {
    color: #cb6ce6;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.audio-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.audio-player-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.audio-player {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.2);
    margin-bottom: 20px;
}

.play-button-large {
    width: 100%;
    max-width: 300px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #cb6ce6 0%, #b968ff 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(203, 108, 230, 0.4);
}

.play-button-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(203, 108, 230, 0.6);
}

.play-button-large.playing {
    background: linear-gradient(135deg, #ff6b9d 0%, #c94b7a 100%);
}

.play-icon {
    font-size: 1.8rem;
}

.audio-player audio {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
}

.audio-note {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

/* =============== PRICING SECTION =============== */
.profile-pricing {
    padding: 80px 20px;
    background: white;
}

.profile-pricing h2 {
    color: #cb6ce6;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border: 3px solid #cb6ce6;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(203, 108, 230, 0.15);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(203, 108, 230, 0.3);
}

.pricing-card.featured {
    border-color: #b968ff;
    background: linear-gradient(135deg, #faf5fc 0%, #ffffff 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: #cb6ce6;
    font-size: 2rem;
    margin: 0 0 10px 0;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d 0%, #c94b7a 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-body {
    text-align: center;
}

.price-phone {
    margin-bottom: 20px;
}

.phone-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.phone-number.purple {
    background: linear-gradient(135deg, #cb6ce6 0%, #b968ff 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(203, 108, 230, 0.4);
}

.phone-number.white {
    background: white;
    color: #cb6ce6;
    border: 3px solid #cb6ce6;
}

.phone-number:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(203, 108, 230, 0.6);
}

.payment-method {
    color: #cb6ce6;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: #333;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-icon {
    margin-top: 20px;
    color: #cb6ce6;
}

.pricing-icon svg {
    width: 50px;
    height: 50px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #666;
}

.pricing-note p {
    margin: 10px 0;
    font-size: 1.1rem;
}

/* =============== BACK SECTION =============== */
.profile-back {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f0f8 0%, #faf5fc 100%);
    text-align: center;
}

.btn-back {
    display: inline-block;
    margin: 10px 15px;
    padding: 15px 40px;
    background: linear-gradient(135deg, #cb6ce6 0%, #b968ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(203, 108, 230, 0.3);
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(203, 108, 230, 0.5);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 992px) {
    .profile-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-name {
        font-size: 3rem;
    }
    
    .profile-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .profile-image {
        width: 250px;
        height: 330px;
    }
    
    .profile-name {
        font-size: 2.5rem;
    }
    
    .profile-tagline {
        font-size: 1.2rem;
    }
    
    .profile-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        justify-content: center;
    }
    
    .profile-description h2,
    .profile-audio h2,
    .profile-pricing h2 {
        font-size: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .phone-number {
        font-size: 1.5rem;
        padding: 12px 25px;
    }
    
    .btn-back {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 200px;
        height: 280px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-tagline {
        font-size: 1rem;
    }
    
    .profile-description p {
        font-size: 1rem;
    }
    
    .specialty-tags {
        gap: 10px;
    }
    
    .tag {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
    
    .play-button-large {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
}

/* =============== NOUVEAU LAYOUT 2 COLONNES =============== */
.hostess-profile-new {
    padding-top: 70px;
}

.profile-content-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0ff 100%);
}

.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* COLONNE GAUCHE */
.profile-left {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.15);
}

.profile-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
}

/* OLD PROFILE BADGE REMOVED */

.profile-name {
    font-size: 3rem;
    color: #2c3e50;
    margin: 0 0 10px 0;
    text-align: center;
    font-weight: 700;
}

.profile-tagline {
    font-size: 1.3rem;
    color: #cb6ce6;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.profile-description h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.profile-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.specialties h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 30px 0 15px 0;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specialty-tags .tag {
    background: linear-gradient(135deg, #cb6ce6, #b968ff);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.profile-audio-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.profile-audio-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.audio-player-container audio {
    width: 100%;
    margin-top: 10px;
}

/* COLONNE DROITE */
.profile-right {
    position: sticky;
    top: 90px;
}

.contact-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.pricing-card-profile {
    background: white;
    border: 3px solid #cb6ce6;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.15);
}

.pricing-card-profile.featured {
    border-width: 4px;
    box-shadow: 0 15px 40px rgba(203, 108, 230, 0.25);
}

.pricing-header-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-header-profile h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
}

.pricing-badge-profile {
    background: #cb6ce6;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-phone-profile {
    text-align: center;
    margin-bottom: 20px;
}

.phone-number-profile {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number-profile.purple {
    background: linear-gradient(135deg, #cb6ce6, #b968ff);
    color: white;
    box-shadow: 0 8px 20px rgba(203, 108, 230, 0.3);
}

.phone-number-profile.white {
    background: white;
    color: #cb6ce6;
    border: 3px solid #cb6ce6;
}

.phone-number-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(203, 108, 230, 0.4);
}

.payment-method-profile {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

/* GRILLE DE TARIFS */
.tarif-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.tarif-item {
    background: #f8f4ff;
    border: 2px solid #e0d4f0;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.tarif-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(203, 108, 230, 0.2);
    border-color: #cb6ce6;
}

.tarif-item.popular-tarif {
    background: linear-gradient(135deg, #fff0ff, #f8f4ff);
    border-color: #cb6ce6;
    border-width: 3px;
}

.tarif-item.best-deal {
    background: linear-gradient(135deg, #cb6ce6, #b968ff);
    border: none;
}

.tarif-item.best-deal * {
    color: white !important;
}

.tarif-duration {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.tarif-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #cb6ce6;
}

.tarif-bonus {
    display: block;
    font-size: 0.85rem;
    color: #ff4444;
    font-weight: 600;
    margin-top: 5px;
}

.pricing-features-profile {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.pricing-features-profile li {
    padding: 8px 0;
    font-size: 1rem;
    color: #666;
}

.pricing-note-profile {
    text-align: center;
    margin-top: 20px;
}

.pricing-note-profile p {
    color: #666;
    font-size: 0.95rem;
    margin: 5px 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .profile-name {
        font-size: 2.2rem;
    }
    
    .phone-number-profile {
        font-size: 1.8rem;
        padding: 15px 30px;
    }
    
    .tarif-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-left {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 1.8rem;
    }
    
    .phone-number-profile {
        font-size: 1.5rem;
        padding: 12px 25px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
}

/* =============== NOUVEAU LAYOUT 2 COLONNES - GAUCHE/DROITE =============== */
.hostess-profile-new {
    padding-top: 70px;
}

.profile-content-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0ff 100%);
}

.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ===== COLONNE GAUCHE : Photo + Description ===== */
.profile-left {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.15);
}

.profile-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
}

.profile-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #cb6ce6, #b968ff);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.profile-name {
    font-size: 3rem;
    color: #2c3e50;
    margin: 20px 0 10px 0;
    text-align: center;
    font-weight: 700;
}

.profile-tagline {
    font-size: 1.4rem;
    color: #cb6ce6;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
    font-style: italic;
}

.profile-description h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.profile-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.specialties {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.specialties h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.specialty-tags .tag {
    background: linear-gradient(135deg, #cb6ce6, #b968ff);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(203, 108, 230, 0.3);
    transition: all 0.3s ease;
}

.specialty-tags .tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(203, 108, 230, 0.4);
}

.profile-audio-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.profile-audio-section h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.audio-player-container audio {
    width: 100%;
    margin-top: 15px;
}

/* ===== COLONNE DROITE : Tarifs ===== */
.profile-right {
    position: sticky;
    top: 90px;
}

.contact-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.pricing-card-profile {
    background: white;
    border: 3px solid #cb6ce6;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(203, 108, 230, 0.15);
    transition: all 0.3s ease;
}

.pricing-card-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(203, 108, 230, 0.25);
}

.pricing-card-profile.featured {
    border-width: 4px;
    background: linear-gradient(135deg, #fff0ff, #f8f4ff);
    box-shadow: 0 15px 40px rgba(203, 108, 230, 0.25);
}

.pricing-header-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.pricing-header-profile h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
}

.pricing-badge-profile {
    background: #cb6ce6;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
}

.price-phone-profile {
    text-align: center;
    margin-bottom: 25px;
}

.phone-number-profile {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 700;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-phone 2s ease-in-out infinite;
}

@keyframes pulse-phone {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.phone-number-profile.purple {
    background: linear-gradient(135deg, #cb6ce6, #b968ff);
    color: white;
    box-shadow: 0 10px 25px rgba(203, 108, 230, 0.4);
}

.phone-number-profile.white {
    background: white;
    color: #cb6ce6;
    border: 3px solid #cb6ce6;
}

.phone-number-profile:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(203, 108, 230, 0.5);
    animation: none;
}

.payment-method-profile {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

/* ===== GRILLE DE TARIFS ===== */
.tarif-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.tarif-item {
    background: #f8f4ff;
    border: 2px solid #e0d4f0;
    border-radius: 15px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tarif-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(203, 108, 230, 0.25);
    border-color: #cb6ce6;
}

.tarif-item.popular-tarif {
    background: linear-gradient(135deg, #fff0ff, #f8f4ff);
    border-color: #cb6ce6;
    border-width: 3px;
    position: relative;
}

.tarif-item.popular-tarif::before {
    content: "⭐ Populaire";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #cb6ce6;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
}

.tarif-item.best-deal {
    background: linear-gradient(135deg, #cb6ce6, #b968ff);
    border: none;
    position: relative;
}

.tarif-item.best-deal::before {
    content: "🔥 Meilleure offre";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4444;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.68rem;
    font-weight: 600;
    white-space: nowrap;
}

.tarif-item.best-deal * {
    color: white !important;
}

.tarif-duration {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.tarif-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #cb6ce6;
    margin-bottom: 5px;
}

.tarif-bonus {
    display: block;
    font-size: 0.9rem;
    color: #ff4444;
    font-weight: 600;
    margin-top: 5px;
}

.pricing-features-profile {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.pricing-features-profile li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features-profile li:last-child {
    border-bottom: none;
}

.pricing-note-profile {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: #f8f4ff;
    border-radius: 15px;
}

.pricing-note-profile p {
    color: #666;
    font-size: 1rem;
    margin: 8px 0;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .profile-name {
        font-size: 2.2rem;
    }
    
    .profile-tagline {
        font-size: 1.1rem;
    }
    
    .phone-number-profile {
        font-size: 2rem;
        padding: 18px 35px;
    }
    
    .tarif-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-left {
        padding: 25px;
    }
    
    .pricing-card-profile {
        padding: 25px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 1.8rem;
    }
    
    .phone-number-profile {
        font-size: 1.6rem;
        padding: 15px 30px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .pricing-header-profile h3 {
        font-size: 1.5rem;
    }
    
    .tarif-price {
        font-size: 1.6rem;
    }
}

/* ===== TARIFS CLIQUABLES ===== */
a.tarif-item {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

a.tarif-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(203, 108, 230, 0.35);
    border-color: #cb6ce6;
}

a.tarif-item:active {
    transform: scale(0.97);
}

a.tarif-item .tarif-duration,
a.tarif-item .tarif-price,
a.tarif-item .tarif-bonus {
    pointer-events: none;
}

/* ===== LECTEUR AUDIO VISIBLE ET FONCTIONNEL ===== */
.audio-player-container {
    width: 100%;
    margin-top: 15px;
}

.audio-player-container audio {
    display: block;
    width: 100%;
    height: 54px;
    min-height: 54px;
    border-radius: 30px;
    outline: none;
    accent-color: #cb6ce6;
}

/* Chrome/Edge */
.audio-player-container audio::-webkit-media-controls-panel {
    background: linear-gradient(135deg, #f8f4ff, #fff0ff);
    border-radius: 30px;
}

.audio-player-container audio::-webkit-media-controls-play-button {
    background-color: #cb6ce6;
    border-radius: 50%;
}
/* ================================================================
   MOBILE UNIQUEMENT (max-width: 480px)
   ================================================================ */

/* Bouton "Lire la suite" — caché sur desktop et tablette */
.read-more-btn {
    display: none;
}

/* Bouton flottant — même style que hotesses.html */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    color: #cb6ce6;
    border: 2px solid #cb6ce6;
    border-radius: 50px;
    padding: 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(203, 108, 230, 0.3);
    transition: all 0.3s ease;
}

.floating-call-btn:hover {
    background-color: #cb6ce6;
    color: white;
    box-shadow: 0 6px 20px rgba(203, 108, 230, 0.5);
    transform: translateY(-2px);
}

.floating-call-btn svg {
    fill: currentColor;
    flex-shrink: 0;
}

@media (max-width: 480px) {

    /* ── Profile-left : reset du style carte desktop ── */
    .profile-left {
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    /* ── Photo pleine largeur ── */
    .profile-image-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .profile-image {
        width: 100% !important;
        height: 300px !important;
        border-radius: 0 !important;
        border: none !important;
        object-fit: cover !important;
        object-position: center top !important;
        display: block !important;
    }

    /* ── Badge : barre pleine largeur ── */
    .profile-badge {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        transform: none !important;
        border-radius: 0 !important;
        text-align: center !important;
        padding: 10px 16px !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
    }

    /* ── Nom + tagline ── */
    .profile-name {
        font-size: 1.9rem !important;
        text-align: center !important;
        margin: 16px 16px 4px !important;
        text-shadow: none !important;
    }

    .profile-tagline {
        text-align: center !important;
        font-size: 0.95rem !important;
        margin: 0 16px 16px !important;
    }

    /* ── Audio ── */
    .profile-audio-section {
        margin: 0 16px 16px !important;
        padding: 16px !important;
        background: linear-gradient(135deg, #f8f4ff, #fff0ff) !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 14px rgba(203,108,230,0.12) !important;
    }

    .profile-audio-section h3 {
        font-size: 0.95rem !important;
        color: #cb6ce6 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    /* ── Tarifs ── */
    .profile-right {
        position: static !important;
        padding: 20px 16px 0 !important;
    }

    .contact-title        { font-size: 1.35rem !important; margin-bottom: 14px !important; }
    .pricing-card-profile { padding: 18px !important; margin-bottom: 14px !important; }
    .phone-number-profile { font-size: 1.5rem !important; padding: 12px 22px !important; }

    .tarif-grid     { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .tarif-price    { font-size: 1.25rem !important; }
    .tarif-duration { font-size: 0.88rem !important; }
    .tarif-bonus    { font-size: 0.74rem !important; }

    /* ── Section "À propos" : masquée, dépliable ── */
    .profile-description {
        padding: 0 16px !important;
        margin: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease, padding 0.3s ease !important;
    }

    .profile-description.open {
        max-height: 1000px !important;
        padding: 20px 16px 24px !important;
        border-top: 2px solid #ede0f8 !important;
        background: #faf5fc !important;
    }

    .profile-description h2 { font-size: 1.25rem !important; margin-bottom: 10px !important; }
    .profile-description p  { font-size: 0.91rem !important; line-height: 1.7 !important; }
    .specialties            { margin-top: 18px !important; padding: 14px !important; }
    .specialties h3         { font-size: 1.05rem !important; }
    .specialty-tags .tag    { padding: 6px 14px !important; font-size: 0.83rem !important; }

    /* ── Bouton "Lire la suite" ── */
    .read-more-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        width: calc(100% - 32px) !important;
        margin: 14px 16px 0 !important;
        padding: 12px 20px !important;
        background: white !important;
        border: 2px solid #cb6ce6 !important;
        border-radius: 50px !important;
        color: #cb6ce6 !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
    }

    .read-more-btn.open {
        background: #cb6ce6 !important;
        color: white !important;
    }

    /* Espace bas pour le bouton flottant */
    .profile-back { padding-bottom: 90px !important; }

    /* Bouton flottant : ajustement mobile */
    .floating-call-btn {
        bottom: 15px !important;
        right: 15px !important;
        padding: 12px 18px !important;
        font-size: 14px !important;
    }
}