/**
 * Styles pour la page d'accueil - Medal of Honor V2
 * Reproduit le design de la V1
 * 
 * @package Medal_of_Honor_V2
 * @since 2.1.0
 */

/* ===== PAGE D'ACCUEIL ===== */
.front-page {
    min-height: 100vh;
}

/* ===== SECTION HERO ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 80px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.2) 100%);
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-background video,
.hero-video-background iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-center {
    text-align: center;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)); }
    100% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.7)); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.hero-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.hero-actions .btn-primary:hover::before {
    left: 100%;
}

.hero-actions .btn-primary:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.6);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border: 2px solid rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFF;
    border-color: rgba(255, 215, 0, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image-left {
    order: -1;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== SECTIONS GÉNÉRALES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F4E4BC;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #F4E4BC 0%, #D3A656 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #B8C5D6;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SECTION BOUTIQUE ===== */
.shop-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0c29 100%);
    position: relative;
}

.shop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

/* Les styles des cartes restent génériques ici */
.shop-card {
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.shop-card:hover::before {
    transform: scaleX(1);
}

.shop-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.shop-thumb img { 
    width: 100%; 
    height: 220px; 
    object-fit: cover; 
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.shop-card:hover .shop-thumb img {
    transform: scale(1.1);
}

.shop-title { 
    font-weight: 700; 
    color: #FFD700; 
    margin: 16px 0 8px;
    font-size: 1.25rem;
}

.shop-price { 
    color: #FFF; 
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 700;
}

.shop-actions { 
    display: flex; 
    align-items: center; 
    gap: 12px;
    justify-content: center;
}

.shop-actions input[type="number"] { 
    width: 80px; 
    padding: 10px; 
    border-radius: 8px; 
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    text-align: center;
}

.shop-actions .btn { 
    padding: 12px 24px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    color: #1a1a2e;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.shop-actions .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
}

.shop-footer { 
    margin-top: 32px; 
    text-align: center;
}

.shop-footer .btn-primary { 
    min-width: 250px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.shop-footer .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.6);
}

/* ===== SECTION SERVICES ===== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-16px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 24px 60px rgba(255, 215, 0, 0.4);
}

.service-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

/* ===== SECTION COMMENT ÇA MARCHE ===== */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0c29 100%);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #D3A656 0%, #E6C878 50%, #D3A656 100%);
    z-index: 1;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    font-size: 2.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.step-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    font-size: 1.05rem;
}

/* ===== SECTION TÉMOIGNAGES ===== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: #B8C5D6;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D3A656 0%, #E6C878 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #F4E4BC;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.author-info span {
    color: #B8C5D6;
    font-size: 0.9rem;
}

/* ===== SECTION PRODUITS ===== */
.featured-product-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f1419 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Harmonisation WooCommerce ul.products sur la page d'accueil */
.front-page-v2 ul.products,
.front-page ul.products,
.featured-product-section ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.front-page-v2 ul.products li.product,
.front-page ul.products li.product,
.featured-product-section ul.products li.product {
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
}

/* Empilement souhaité sur mobiles (<= 1024px) */
@media (max-width: 1024px) {
    .front-page-v2 ul.products,
    .front-page ul.products,
    .featured-product-section ul.products {
        grid-template-columns: 1fr !important;
    }

    /* WooCommerce Blocks: forcer 1 colonne en mobile (<=840px) */
    .front-page-v2 .wc-block-grid__products,
    .front-page .wc-block-grid__products,
    body.home .wc-block-grid__products,
    .featured-product-section .wc-block-grid__products,
    .front-page-v2 .wc-block-product-template,
    .front-page .wc-block-product-template,
    body.home .wc-block-product-template {
        grid-template-columns: 1fr !important;
        --columns: 1 !important;
    }

    .front-page-v2 .wc-block-grid__product,
    .front-page .wc-block-grid__product,
    body.home .wc-block-grid__product {
        margin: 0 !important;
        width: 100% !important;
    }

    /* Grille produits personnalisée */
    .products-grid { grid-template-columns: 1fr !important; }
}

/* Grilles produits progressives selon la taille d'écran */
@media (min-width: 1025px) and (max-width: 1440px) {
    /* Desktop moyen - 3 colonnes pour produits WooCommerce */
    .front-page-v2 ul.products,
    .front-page ul.products,
    .featured-product-section ul.products,
    .front-page-v2 .wc-block-grid__products,
    .front-page .wc-block-grid__products,
    body.home .wc-block-grid__products,
    .featured-product-section .wc-block-grid__products,
    .front-page-v2 .wc-block-product-template,
    .front-page .wc-block-product-template,
    body.home .wc-block-product-template {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        --columns: 3 !important;
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    /* Grille shop personnalisée - 4 colonnes sur desktop moyen */
    .shop-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 1441px) {
    /* Large desktop - 4 colonnes pour produits WooCommerce */
    .front-page-v2 ul.products,
    .front-page ul.products,
    .featured-product-section ul.products,
    .front-page-v2 .wc-block-grid__products,
    .front-page .wc-block-grid__products,
    body.home .wc-block-grid__products,
    .featured-product-section .wc-block-grid__products,
    .front-page-v2 .wc-block-product-template,
    .front-page .wc-block-product-template,
    body.home .wc-block-product-template {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        --columns: 4 !important;
    }

    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    /* Grille shop personnalisée - 5 colonnes sur très grands écrans */
    .shop-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }
}

/* ===== SHOP GRID (markup personnalisé .shop-grid/.shop-card) ===== */
.shop-grid {
    display: grid;
    grid-template-columns: 1fr; /* mobile-first */
    gap: 24px;
    align-items: stretch;
}

.shop-grid .shop-card {
    width: 100%;
    background: var(--moh-bg-light, #fff);
    border-radius: 12px;
    border: 1px solid var(--moh-glass-border);
    box-shadow: var(--moh-shadow-md);
    padding: 20px;
    text-align: center; /* centrage du contenu */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-grid .shop-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    background: var(--moh-glass-bg);
}

.shop-grid .shop-title { margin: 6px 0 0; font-weight: 700; }
.shop-grid .shop-title a { text-decoration: underline; text-underline-offset: 3px; }
.shop-grid .shop-price { font-weight: 600; color: var(--moh-text-secondary); }

.shop-grid .shop-actions {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center; /* centrage des éléments du formulaire */
    gap: 12px;
}
.shop-grid .shop-actions input[type="number"] {
    max-width: 80px;
    text-align: center;
}
.shop-grid .shop-actions .btn { min-width: 180px; }

/* Forcer 1 colonne sur la home <=1024px avec forte spécificité */
@media (max-width: 1024px) {
    body.home .shop-grid,
    .front-page .shop-grid,
    .front-page-v2 .shop-grid,
    .shop-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 1025px) {
    .shop-grid { 
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important; 
    }
}

.product-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-card.featured {
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D3A656 0%, #E6C878 100%);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #F4E4BC;
    margin-bottom: 15px;
}

.product-price {
    margin-bottom: 30px;
}

.product-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: #D3A656;
}

.product-price .period {
    color: #B8C5D6;
    font-size: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.product-features li {
    padding: 10px 0;
    color: #B8C5D6;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-action .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-action .btn-primary {
    background: linear-gradient(135deg, #D3A656 0%, #E6C878 100%);
    color: #1a1a2e;
}

.product-action .btn-outline-primary {
    background: transparent;
    color: #D3A656;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.product-action .btn:hover {
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE CAROUSEL ===== */
.mobile-carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.mobile-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.5rem 0;
}

.carousel-btn {
    background: var(--moh-glass-bg);
    border: 1px solid var(--moh-glass-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--moh-transition-fast);
    color: var(--moh-text-primary);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover:not(:disabled) {
    background: var(--moh-accent-primary);
    color: white;
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--moh-glass-border);
    border: none;
    cursor: pointer;
    transition: all var(--moh-transition-fast);
}

.carousel-dot.active {
    background: var(--moh-accent-primary);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: var(--moh-accent-primary);
    opacity: 0.7;
}

/* Styles pour les éléments du carousel */
.services-grid, .testimonials-grid, .products {
    display: flex;
    transition: transform 0.3s ease;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.services-grid > *, .testimonials-grid > *, .products > * {
    flex: 0 0 auto;
    width: calc(100% - 1rem);
}

/* Masquer le carousel sur desktop */
@media (min-width: 1025px) {
    .mobile-carousel-nav {
        display: none;
    }

    .services-grid, .testimonials-grid, .products {
        display: grid;
        transform: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 60px 0;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }

    .shop-section {
        padding: 60px 0;
    }

    .services-section {
        padding: 60px 0;
    }

    .how-it-works-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 36px 24px;
    }

    .service-icon {
        font-size: 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step-item {
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }
    
    /* Boutons dans la section Comment ça marche */
    .how-it-works-section .hero-actions,
    .how-it-works-section .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .how-it-works-section .hero-actions .btn,
    .how-it-works-section .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        gap: 0.8rem;
    }
    
    .hero-actions .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 280px;
    }
    
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .how-it-works-section .hero-actions .btn,
    .how-it-works-section .cta-actions .btn {
        max-width: 280px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .steps-container {
        padding: 0 0.5rem;
        gap: 20px;
    }
    
    .step-item {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 0.8rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}
