/**
 * Composants spécifiques
 */

/* === STATS SECTION === */
.floating-contact-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.rating .star {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
}

.testimonial-author-title {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* === CTA SECTION === */
.section-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === PAGE HEADER === */
.page-header {
    position: relative;
    background-color: #1a1a1a;
    background-image: url('../images/mayramfh_banniere.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.78) 0%, rgba(26, 26, 26, 0.55) 50%, rgba(26, 26, 26, 0.78) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* === PRODUCT DETAIL === */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.gallery-main-image {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 12px;
    background: var(--bg-secondary);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-thumb {
    padding-top: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-thumb.active {
    border-color: var(--secondary-color);
}

.gallery-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badges-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* Badges dans la page de détail produit - position statique */
.product-info .product-badges-group .product-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: auto;
    margin: 0;
}

.product-info .product-badges-group .badge-new {
    background: var(--secondary-color);
    color: white;
    top: auto;
    bottom: auto;
}

.product-info .product-badges-group .badge-promo {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    top: auto;
    bottom: auto;
    right: auto;
}

/* Bouton Contacter en haut (après les badges) */
.product-actions-top {
    margin: 1.5rem 0;
}

/* Style spécial pour le bouton "Contacter pour Commander" */
.product-actions-top .btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
    background-size: 200% 200%;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
                0 4px 12px rgba(37, 211, 102, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: whatsappButtonPulse 2s ease-in-out infinite,
               whatsappButtonShine 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-actions-top .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: whatsappButtonShineMove 3s ease-in-out infinite;
    z-index: 1;
}

.product-actions-top .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.product-actions-top .btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5),
                0 8px 16px rgba(37, 211, 102, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 50%;
    animation: whatsappButtonPulse 1s ease-in-out infinite,
               whatsappButtonShine 2s ease-in-out infinite;
}

.product-actions-top .btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.product-actions-top .btn-primary:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.product-actions-top .btn-primary svg {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: whatsappIconBounce 2s ease-in-out infinite;
}

.product-actions-top .btn-primary:hover svg {
    animation: whatsappIconBounce 1s ease-in-out infinite;
    transform: scale(1.1);
}

.product-actions-top .btn-primary span,
.product-actions-top .btn-primary {
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes whatsappButtonPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
                    0 4px 12px rgba(37, 211, 102, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6),
                    0 4px 16px rgba(37, 211, 102, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes whatsappButtonShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes whatsappButtonShineMove {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes whatsappIconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .product-actions-top .btn-primary {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

.product-price-box {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: priceBoxPulse 3s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.1);
    transition: all 0.3s ease;
}

.product-price-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--secondary-color), 
        var(--secondary-highlight), 
        var(--secondary-color), 
        var(--secondary-highlight),
        var(--secondary-color));
    background-size: 400% 400%;
    border-radius: 12px;
    z-index: -1;
    animation: priceBorderGlow 3s ease infinite;
    opacity: 0.6;
}

.product-price-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(var(--secondary-rgb), 0.2), 
        transparent);
    animation: priceShine 3s ease-in-out infinite;
    z-index: 0;
}

.product-price-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.2);
}

.product-price-box:hover::before {
    opacity: 0.8;
    animation-duration: 1.5s;
}

.product-attributes {
    margin-top: 1.75rem;
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.attributes-title {
    font-size: 1.125rem;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.attributes-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.attribute-item {
    display: grid;
    grid-template-columns: minmax(140px, 180px) 1fr;
    gap: 1rem;
    align-items: start;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    background: var(--bg-secondary, #f8fafc);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.attribute-name {
    margin: 0;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    line-height: 1.3;
}

.attribute-value {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.attribute-value-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    background: rgba(var(--secondary-rgb), 0.12);
    border: 1px solid rgba(var(--secondary-rgb), 0.2);
}

[data-theme="dark"] .product-attributes {
    background: var(--card-bg, #1e293b);
    border-color: var(--border-color, #334155);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .attribute-item {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .attribute-name {
    color: var(--text-primary, #e2e8f0);
}

[data-theme="dark"] .attribute-value-badge {
    color: var(--text-primary, #e2e8f0);
    background: rgba(var(--secondary-rgb), 0.18);
    border-color: rgba(var(--secondary-rgb), 0.28);
}

@media (max-width: 768px) {
    .product-attributes {
        padding: 1.25rem;
    }

    .attribute-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.875rem;
    }
}

.product-detail .creator-contact-section {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.product-detail .creator-contact-section .creator-social-links,
.product-detail .creator-contact-section .creator-phone-links {
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.product-detail .creator-contact-section .section-subtitle {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
}

.product-detail .creator-contact-section .social-buttons,
.product-detail .creator-contact-section .phone-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.product-detail .creator-contact-section .social-btn,
.product-detail .creator-contact-section .phone-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--bg-secondary, #f8fafc);
    color: var(--text-primary, #1a1a1a);
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-detail .creator-contact-section .social-btn svg,
.product-detail .creator-contact-section .phone-btn svg {
    flex: 0 0 auto;
}

.product-detail .creator-contact-section .social-btn span,
.product-detail .creator-contact-section .phone-btn span {
    font-weight: 600;
}

.product-detail .creator-contact-section .social-btn:hover,
.product-detail .creator-contact-section .phone-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--secondary-rgb), 0.35);
    box-shadow: 0 10px 25px rgba(var(--secondary-rgb), 0.15);
}

[data-theme="dark"] .product-detail .creator-contact-section .creator-social-links,
[data-theme="dark"] .product-detail .creator-contact-section .creator-phone-links {
    background: var(--card-bg, #1e293b);
    border-color: var(--border-color, #334155);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .product-detail .creator-contact-section .section-subtitle {
    color: var(--text-primary, #e2e8f0);
}

[data-theme="dark"] .product-detail .creator-contact-section .social-btn,
[data-theme="dark"] .product-detail .creator-contact-section .phone-btn {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.10);
    color: var(--text-primary, #e2e8f0);
}

@media (max-width: 768px) {
    .product-detail .creator-contact-section .creator-social-links,
    .product-detail .creator-contact-section .creator-phone-links {
        padding: 1.25rem;
    }

    .product-detail .creator-contact-section .social-buttons,
    .product-detail .creator-contact-section .phone-buttons {
        grid-template-columns: 1fr;
    }
}

/* Animation de pulsation pour la boîte */
@keyframes priceBoxPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(var(--secondary-rgb), 0.2);
    }
}

/* Animation de la bordure dorée */
@keyframes priceBorderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Mode sombre - ajustements pour l'animation */
[data-theme="dark"] .product-price-box {
    background: var(--card-bg);
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.15);
}

[data-theme="dark"] .product-price-box::before {
    opacity: 0.4;
}

[data-theme="dark"] .product-price-box:hover {
    box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.25);
}

/* ... */

.stat-item {
    background: var(--bg-secondary, #f8fafc);
    border-color: var(--border-color, #e5e7eb);
}

.stat-item:hover {
    background: var(--bg-tertiary, #f1f5f9);
    border-color: var(--border-color, #e5e7eb);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary, #64748b);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mode sombre */
[data-theme="dark"] .stat-item {
    background: var(--bg-secondary, #1e293b);
    border-color: var(--border-color, #334155);
}

[data-theme="dark"] .stat-item:hover {
    background: var(--bg-tertiary, #334155);
    border-color: #475569;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .stat-value {
    background: linear-gradient(135deg, var(--secondary-highlight), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .creator-header {
        padding: 3rem 0 2rem;
    }

    .creator-avatar-large {
        width: 120px;
        height: 120px;
    }

    .creator-name-large {
        font-size: 2.1rem;
        justify-content: center;
    }

    .creator-social-links {
        justify-content: center;
    }

    .creator-sidebar {
        position: static;
        top: auto;
    }
}

.creator-header {
     position: relative;
     color: white;
     padding: 3.5rem 0 2.5rem;
     background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(17, 24, 39, 0.92) 60%, rgba(26, 26, 26, 0.92) 100%);
     overflow: hidden;
 }

 .creator-cover {
     position: absolute;
     inset: 0;
     z-index: 0;
 }

 .creator-cover img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: brightness(0.7);
 }

 .creator-cover-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(26, 26, 26, 0.86) 0%, rgba(26, 26, 26, 0.55) 50%, rgba(26, 26, 26, 0.86) 100%);
 }

 .creator-header .container {
     position: relative;
     z-index: 1;
 }

 .creator-profile {
     display: flex;
     align-items: center;
     gap: 1.75rem;
 }

 .creator-avatar-large {
     width: 140px;
     height: 140px;
     border-radius: 999px;
     overflow: hidden;
     border: 4px solid rgba(255, 255, 255, 0.9);
     box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
     background: rgba(255, 255, 255, 0.08);
     flex: 0 0 auto;
 }

 .creator-avatar-large img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .creator-info-header {
     min-width: 0;
 }

 .creator-name-large {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     font-size: 3rem;
     margin-bottom: 0.5rem;
     text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
 }

 .featured-badge {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 34px;
     height: 34px;
     border-radius: 999px;
     background: rgba(212, 175, 55, 0.18);
     border: 1px solid rgba(212, 175, 55, 0.45);
     color: var(--secondary-color);
     font-size: 1rem;
 }

 .creator-specialty-large {
     font-size: 1.125rem;
     opacity: 0.92;
     margin-bottom: 0.75rem;
 }

 .creator-location-large {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     opacity: 0.9;
     margin-bottom: 1rem;
 }

 .creator-social-links {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     flex-wrap: wrap;
 }

 .creator-social-links .social-link {
     width: 44px;
     height: 44px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 14px;
     background: rgba(255, 255, 255, 0.12);
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: white;
     transition: all 0.25s ease;
 }

 .creator-social-links .social-link:hover {
     transform: translateY(-2px);
     background: rgba(212, 175, 55, 0.18);
     border-color: rgba(212, 175, 55, 0.45);
     color: white;
 }

 .creator-detail-layout {
     display: grid;
     grid-template-columns: minmax(0, 1fr) 360px;
     gap: 3rem;
     align-items: start;
 }

 .creator-main {
     display: flex;
     flex-direction: column;
     gap: 2.5rem;
     min-width: 0;
 }

 .creator-sidebar {
     position: sticky;
     top: 96px;
     display: flex;
     flex-direction: column;
     gap: 1.25rem;
 }

 .creator-bio-section,
 .creator-video-section,
 .creator-products-section,
 .creator-location-card,
 .creator-stats-card,
 .creator-gallery-card {
     background: var(--card-bg, #ffffff);
     border: 1px solid var(--border-color, #e5e7eb);
     border-radius: 16px;
     padding: 1.75rem;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
 }

 .creator-bio-section h2,
 .creator-video-section h2,
 .creator-products-section h2 {
     position: relative;
     padding-bottom: 0.75rem;
     margin-bottom: 1.25rem;
 }

 .creator-bio-section p {
     color: var(--text-secondary, #64748b);
     line-height: 1.85;
 }

 .video-container {
     position: relative;
     width: 100%;
     padding-top: 56.25%;
     border-radius: 14px;
     overflow: hidden;
     background: var(--bg-secondary, #f8fafc);
     border: 1px solid var(--border-color, #e5e7eb);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
 }

 .video-container iframe {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
 }

 .creator-products-section .product-grid {
     margin-top: 1.25rem;
 }

 .creator-location-card h3,
 .creator-stats-card h3,
 .creator-gallery-card h3 {
     margin-bottom: 1rem;
 }

 .location-info {
     display: flex;
     flex-direction: column;
     gap: 0.875rem;
 }

 .location-item {
     display: grid;
     grid-template-columns: 20px 1fr;
     gap: 0.75rem;
     align-items: start;
     color: var(--text-primary, #1a1a1a);
 }

 .location-details {
     display: flex;
     flex-direction: column;
     gap: 0.125rem;
 }

 .location-label {
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: var(--text-secondary, #64748b);
 }

 .location-value {
     font-weight: 600;
 }

 .stats-list.stats-list-two-columns {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
 }

 @media (max-width: 1024px) {
     .creator-detail-layout {
         grid-template-columns: minmax(0, 1fr) 320px;
         gap: 2rem;
     }
 }

 @media (max-width: 768px) {
     .creator-header {
         padding: 3rem 0 2rem;
     }
 
     .creator-avatar-large {
         width: 120px;
         height: 120px;
     }
 
     .creator-name-large {
         font-size: 2.1rem;
         justify-content: center;
     }
 
     .creator-social-links {
         justify-content: center;
     }
 
     .creator-sidebar {
         position: static;
         top: auto;
     }
 }

/* Mode sombre */
[data-theme="dark"] .creator-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(17, 24, 39, 0.92) 60%, rgba(26, 26, 26, 0.92) 100%);
}

[data-theme="dark"] .creator-cover-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.86) 0%, rgba(26, 26, 26, 0.55) 50%, rgba(26, 26, 26, 0.86) 100%);
}

[data-theme="dark"] .creator-avatar-large {
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .creator-name-large {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

[data-theme="dark"] .creator-social-links .social-link {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .creator-social-links .social-link:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.45);
}

[data-theme="dark"] .creator-bio-section,
[data-theme="dark"] .creator-video-section,
[data-theme="dark"] .creator-products-section,
[data-theme="dark"] .creator-location-card,
[data-theme="dark"] .creator-stats-card,
[data-theme="dark"] .creator-gallery-card {
    background: var(--card-bg, #1e293b);
    border: 1px solid var(--border-color, #334155);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .creator-bio-section p {
    color: var(--text-secondary, #cbd5e1);
}

[data-theme="dark"] .video-container {
    background: var(--bg-secondary, #1e293b);
    border: 1px solid var(--border-color, #334155);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .creator-products-section .product-grid {
    margin-top: 1.25rem;
}

[data-theme="dark"] .location-info {
    color: var(--text-primary, #cbd5e1);
}

[data-theme="dark"] .location-label {
    color: var(--text-secondary, #64748b);
}

[data-theme="dark"] .stats-list.stats-list-two-columns {
    color: var(--text-primary, #cbd5e1);
}

[data-theme="dark"] .creator-bio-section h2::after,
[data-theme="dark"] .creator-video-section h2::after,
[data-theme="dark"] .creator-products-section h2::after {
    background: linear-gradient(90deg, var(--secondary-highlight), var(--secondary-color));
    box-shadow: 0 0 8px rgba(var(--secondary-rgb), 0.5);
}

[data-theme="dark"] .video-container {
    background: var(--bg-secondary, #1e293b);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .creator-products-section p {
    color: var(--text-secondary, #cbd5e1);
}

/* === RESPONSIVE - CREATOR MAIN === */
@media (max-width: 768px) {
    .creator-main {
        gap: 2rem;
    }
    
    .creator-bio-section,
    .creator-video-section,
    .creator-products-section {
        padding: 1.5rem;
    }
    
    .creator-bio-section h2,
    .creator-video-section h2,
    .creator-products-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .creator-bio-section,
    .creator-video-section,
    .creator-products-section {
        padding: 1.25rem;
    }
    
    .creator-bio-section h2,
    .creator-video-section h2,
    .creator-products-section h2 {
        font-size: 1.25rem;
    }
    
    .creator-bio-section p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}