@media (max-width: 480px) {
    .review-card {
        flex-direction: column;
        text-align: center;
        padding-bottom: 20px;
        max-height: none;
        height: auto;
    }
    
    .review-left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
        height: auto;
        max-height: 160px;
    }
    
    .reviewer-image {
        width: 60px;
        height: 60px;
        margin-bottom: 5px;
    }
    
    .reviewer-name {
        margin-bottom: 3px;
    }
    
    .review-right {
        padding-left: 0;
        border-left: none;
        padding-top: 10px;
        text-align: center;
        width: 100%;
        border-top: none;
        height: auto;
        overflow: visible;
        display: block;
    }
    
    .review-text {
        display: block;
        margin-top: 5px;
        font-size: 15px;
        line-height: 1.4;
        height: auto;
        max-height: none;
        overflow: visible;
    }
    
    .reviews-slider .slick-track {
        height: auto !important;
    }
    
    .reviews-slider .slick-slide {
        height: auto;
    }
    
    .reviews-slider .slick-prev,
    .reviews-slider .slick-next {
        top: 80px;
    }
}

/* Header styling */
header {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    background-color: #213244;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    flex: 1;
    text-align: left;
}

.header-center {
    flex: 2;
    text-align: center;
}

.header-right {
    flex: 1;
    text-align: right;
}

.header-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    cursor: pointer;
}

/* Logo size control */
.logo img.img-fluid, .flogo img {
    max-width: 40% !important;
}

@media only screen and (max-width: 767px) {
    .header-left, .header-right {
        flex: 0 0 auto;
    }
    
    .header-center {
        flex: 1;
    }
    
    /* Augmenter la taille du logo sur mobile */
    .logo img.img-fluid {
        max-width: 80% !important;
    }
    
    /* Augmenter la taille du logo du footer sur mobile */
    .flogo img {
        max-width: 80% !important;
    }
}

/* Color variables */
:root {
    --primary: #B19777;
    --primary-rgb: 177, 151, 119;
    --secondary: #333;
    --accent: #6e593c;
    --light: #f8f8f8;
    --dark: #222;
    --link-color: #1d928a;
}

/* Link styling */
a {
    color: #1d928a;
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 700 !important;
}

a:hover {
    color: #1d928a;
    opacity: 0.85;
    text-decoration: underline;
}

a.tatsu-shortcode {
    color: white !important;
}

.header-icon img {
    filter: brightness(1.2);
}

/* Styles pour la barre de partage personnalisée */
.custom-share-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin: 0 auto;
    max-width: 100%;
}

.share-buttons-group {
    display: flex;
    align-items: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    text-decoration: none;
}

.share-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.comments-count {
    display: flex;
    align-items: center;
    color: #2563a0;
}

.comments-icon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.share-count {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: #666;
    margin-left: 5px;
}

.count-number {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.count-label {
    font-size: 12px;
    color: #888;
}

/* Sur mobile, assurez-vous que la barre de partage s'affiche correctement */
@media (max-width: 767px) {
    .custom-share-bar {
        display: flex !important;
        visibility: visible !important;
    }
    
    /* Masquer la barre ShareThis sur mobile */
    .sharethis-inline-share-buttons {
        display: none !important;
    }
}

/* Animation scintillante pour les boutons CTA */
@keyframes goldGlow {
    0% {
        box-shadow: 0 0 5px 1px rgba(255, 215, 0, 0.5);
    }
    25% {
        box-shadow: 0 0 7px 2px rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 10px 2px rgba(255, 215, 0, 0.9);
    }
    75% {
        box-shadow: 0 0 7px 2px rgba(255, 215, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 5px 1px rgba(255, 215, 0, 0.5);
    }
}

/* Appliquer l'animation aux boutons CTA */
.tatsu-shortcode, .btn-floating-bar, a[href*="track.verifiedconsumer.net"] {
    border: 2px solid #B19777 !important;
    animation: goldGlow 2s infinite !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Style amélioré au survol */
.tatsu-shortcode:hover, .btn-floating-bar:hover, a[href*="track.verifiedconsumer.net"]:hover {
    animation: goldGlow 1s infinite !important;
    box-shadow: 0 0 15px 3px rgba(255, 215, 0, 0.8) !important;
}

/* Style pour le disclaimer Advertorial */
.advertorial-disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-family: 'Mulish', sans-serif;
    font-weight: 300;
    padding: 5px 0;
    letter-spacing: 1px;
    background-color: #213244;
    width: 100%;
}

/* Styles pour le conteneur vidéo et le bouton de lecture */
.video-container {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    margin: 20px 0;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease;
}

.play-button-svg {
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.3));
}

.video-container:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Styles pour la modal vidéo */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
}

.video-modal video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-video {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
    border: none;
    background: #ffc1078c;
    transition: transform 0.2s ease;
    width: 35px;
    height: 35px;
    z-index: 1001;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-video:hover {
    transform: scale(1.1);
}

/* Style pour la croix */
.close-video::before, .close-video::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 7px;
    width: 22px;
    height: 3px;
    background-color: #B19777; /* Couleur or */
    border: 1px solid #213244; /* Bordure bleu foncé */
    box-shadow: 0 0 5px rgba(177, 151, 119, 0.7); /* Ombre dorée */
}

.close-video::before {
    transform: rotate(45deg);
}

.close-video::after {
    transform: rotate(-45deg);
}

/* Style pour le bouton CTA dans la vidéo */
.video-cta {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.video-cta-button {
    background-color: #B19777;
    color: white;
    border: 2px solid #B19777;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: goldGlow 2s infinite;
}

.video-cta-button:hover {
    background-color: #1a2835;
    transform: translateY(-2px);
    animation: goldGlow 1s infinite;
    box-shadow: 0 0 15px 3px rgba(255, 215, 0, 0.8);
}

@media (max-width: 767px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-cta {
        bottom: -50px;
    }
    
    .video-cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Styles pour la section journal-header */
.journal-header {
    padding: 15px 20px;
    margin-bottom: 25px;
    background-color: var(--light);
    border-radius: 8px;
    border-bottom: 1px solid var(--accent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.journal-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ddd;
}

.journal-rating {
    display: flex;
    align-items: center;
}

.journal-rating img {
    width: 18px;
    height: 18px;
    margin-right: 2px;
}

.editors-choice-badge {
    background-color: var(--primary);
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Styles pour la section accordion */
#accordion {
    margin: 30px 0;
}

#accordion h3 {
    background-color: var(--light);
    border: 1px solid #ddd;
    padding: 15px;
    margin: 0 0 1px 0;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#accordion h3:hover {
    background-color: #f0f0f0;
}

#accordion div {
    padding: 15px;
    border: 1px solid #ddd;
    border-top: none;
    background-color: white;
    margin-bottom: 10px;
    border-radius: 0 0 4px 4px;
} 