* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #d8a7b1, #6b7280);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

header p {
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

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

.cta-section {
    text-align: center;
    padding: 1.5rem;
    background: #f5f5f5;
    margin: 0.8rem 0;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.promo-badge {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ff6200 0%, #e55a00 100%);
    color: white;
    margin: 1.2rem auto 0 0;
    position: relative;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: pulse 2s infinite ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

.promo-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: sparkle-promo 4s infinite;
}

.promo-badge span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #ff6200;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    cursor: pointer;
    margin-bottom: 0.8rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: sparkle 2s infinite;
    z-index: 1;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background: #e55a00;
}

.deal-text {
    font-size: 1rem;
    color: #ff0000;
    font-weight: bold;
    margin-bottom: 0;
}

.reviews {
    text-align: center;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    margin: 0.8rem 0;
}

.reviews .stars {
    font-size: 1.5rem;
    color: #ff6200;
    margin-bottom: 0.4rem;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(255, 98, 0, 0.7);
}

.reviews .stars::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 250%;
    height: 250%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 98, 0, 0.5) 30%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 98, 0, 0.5) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: sparkle-stars 1.5s infinite;
    z-index: 1;
}

.reviews .stars span {
    position: relative;
    z-index: 2;
}

.reviews p {
    font-size: 0.9rem;
    color: #333;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: sparkle 3s infinite;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3, .feature-card p {
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #d8a7b1;
}

.product-description {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
    text-align: center;
    overflow: auto;
}

.product-description img {
    max-width: 1100px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    border-radius: 8px;
}

.product-description h2 {
    font-size: 1.6rem;
    color: #d8a7b1;
    margin-bottom: 1rem;
}

.product-description h3 {
    font-size: 1.4rem;
    color: #333;
    margin: 1rem 0 0.5rem;
}

.product-description h4 {
    font-size: 1.2rem;
    color: #555;
    margin: 0.8rem 0 0.4rem;
}

.product-description h5 {
    font-size: 1rem;
    color: #666;
    margin: 0.6rem 0 0.3rem;
}

.product-description h6 {
    font-size: 0.9rem;
    color: #777;
    margin: 0.5rem 0 0.3rem;
}

.product-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 1rem;
}

.product-description ul {
    list-style: none;
    text-align: left;
    margin: 1rem auto;
    max-width: 800px;
}

.product-description ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #333;
    transition: color 0.3s ease, transform 0.3s ease;
}

.product-description ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #d8a7b1;
    font-size: 1rem;
}

.product-description ul li:hover {
    color: #ff6200;
    transform: translateX(5px);
}

.product-description details {
    max-width: 800px;
    margin: 1rem auto;
    background: #f9f9f9;
    border: 1px solid #d8a7b1;
    border-radius: 8px;
    padding: 0.5rem;
}

.product-description details summary {
    font-size: 1rem;
    font-weight: bold;
    color: #d8a7b1;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.product-description details summary::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.product-description details[open] summary::before {
    transform: rotate(90deg);
}

.product-description details summary:hover {
    color: #ff6200;
}

.product-description details p {
    padding: 0.8rem;
    font-size: 0.9rem;
    color: #333;
    text-align: justify;
    transition: opacity 0.3s ease;
}

.product-table {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto;
    border-collapse: collapse;
    border: 1px solid #d8a7b1;
    background: white;
}

.product-table caption {
    font-size: 1rem;
    font-weight: bold;
    color: #d8a7b1;
    padding: 0.5rem;
    text-align: center;
}

.product-table th {
    background: #d8a7b1;
    color: white;
    font-weight: bold;
    padding: 0.8rem;
    border: 1px solid #d8a7b1;
}

.product-table td {
    padding: 0.8rem;
    border: 1px solid #d8a7b1;
    color: #333;
    text-align: left;
}

.product-table tr:nth-child(even) {
    background: #f9f9f9;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 1100px;
    margin: 1rem auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: #333;
    color: white;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: #d8a7b1;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6200;
}

 footer p:last-child {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.back-to-top {
    display: block;
    width: fit-content;
    margin: 0 auto 1rem;
    padding: 0.6rem 1.2rem;
    background: #ff6200;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: sparkle 2s infinite;
    z-index: 1;
}

.back-to-top:hover {
    background: #e55a00;
}

.back-to-top span {
    position: relative;
    z-index: 2;
}

/* Styles pour le sélecteur de langue dans le footer */
.language-selector {
    margin: 10px 0;
    text-align: center;
}

.flag-emoji {
    font-size: 16px; /* Taille par défaut pour les emojis */
    margin: 0 6px;
    vertical-align: middle;
    border: 1px solid #d8a7b1; /* Bordure assortie à la palette de couleurs */
    border-radius: 3px; /* Coins arrondis pour un look moderne */
    padding: 2px; /* Légère marge interne pour équilibrer */
    display: inline-block;
    line-height: 1; /* Aligner correctement les emojis */
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.flag-emoji:hover {
    transform: scale(1.1); /* Légère animation au survol */
    opacity: 0.9;
}

/* Assurer une mise en page responsive pour les emojis */
@media (max-width: 768px) {
    .flag-emoji {
        font-size: 14px; /* Plus petit sur tablette */
        margin: 0 5px;
        padding: 1px;
    }
}

@media (max-width: 480px) {
    .flag-emoji {
        font-size: 12px; /* Encore plus petit sur mobile */
        margin: 0 4px;
        padding: 1px;
    }
}

@keyframes sparkle {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    50% {
        transform: rotate(45deg) translateX(100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

@keyframes sparkle-stars {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    50% {
        transform: rotate(45deg) translateX(100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

@keyframes sparkle-promo {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    header {
        padding: 2rem 1rem;
    }

    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .container {
        padding: 1rem;
    }

    .cta-section {
        padding: 1rem;
        margin: 0.5rem 0;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .promo-badge {
        width: 60px;
        height: 60px;
        margin: 1rem auto 0 0;
        font-size: 1rem;
    }

    .promo-badge span {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .deal-text {
        font-size: 0.9rem;
    }

    .reviews {
        padding: 0.6rem;
        margin: 0.5rem 0;
    }

    .reviews .stars {
        font-size: 1.3rem;
        text-shadow: 0 0 3px rgba(255, 98, 0, 0.5);
    }

    .reviews p {
        font-size: 0.8rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .product-description {
        padding: 1rem;
        margin: 1rem 0;
    }

    .product-description h2 {
        font-size: 1.4rem;
    }

    .product-description h3 {
        font-size: 1.2rem;
    }

    .product-description h4 {
        font-size: 1.1rem;
    }

    .product-description h5 {
        font-size: 0.9rem;
    }

    .product-description h6 {
        font-size: 0.8rem;
    }

    .product-description p {
        font-size: 0.8rem;
    }

    .product-description ul li {
        font-size: 0.8rem;
    }

    .product-description ul li::before {
        font-size: 0.9rem;
    }

    .product-description details {
        margin: 0.8rem auto;
    }

    .product-description details summary {
        font-size: 0.9rem;
        padding: 0.4rem;
        padding-left: 1.4rem;
    }

    .product-description details summary::before {
        font-size: 0.8rem;
    }

    .product-description details p {
        font-size: 0.8rem;
        padding: 0.6rem;
    }

    .product-table {
        font-size: 0.9rem;
    }

    .product-table th,
    .product-table td {
        padding: 0.6rem;
    }

    .product-table caption {
        font-size: 0.9rem;
    }

    .video-container {
        max-width: 100%;
        margin: 0.8rem auto;
    }

    footer {
        padding: 1rem;
    }

    .footer-links a {
        margin: 0 0.3rem;
        font-size: 0.8rem;
    }

    footer p:last-child {
        font-size: 0.7rem;
    }

    .back-to-top {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 0.8rem;
    }

    header h1 {
        font-size: 1.5rem;
    }

    header p {
        font-size: 0.8rem;
    }

    .cta-section h2 {
        font-size: 1.2rem;
    }

    .promo-badge {
        width: 50px;
        height: 50px;
        margin: 0.8rem auto 0 0;
    }

    .promo-badge span {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .deal-text {
        font-size: 0.8rem;
    }

    .reviews .stars {
        font-size: 1.1rem;
        text-shadow: 0 0 2px rgba(255, 98, 0, 0.5);
    }

    .reviews p {
        font-size: 0.7rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .product-description h2 {
        font-size: 1.2rem;
    }

    .product-description h3 {
        font-size: 1.1rem;
    }

    .product-description h4 {
        font-size: 1rem;
    }

    .product-description h5 {
        font-size: 0.8rem;
    }

    .product-description h6 {
        font-size: 0.7rem;
    }

    .product-description p {
        font-size: 0.7rem;
    }

    .product-description ul li {
        font-size: 0.7rem;
    }

    .product-description ul li::before {
        font-size: 0.8rem;
    }

    .product-description details {
        margin: 0.6rem auto;
    }

    .product-description details summary {
        font-size: 0.8rem;
        padding: 0.3rem;
        padding-left: 1.3rem;
    }

    .product-description details summary::before {
        font-size: 0.7rem;
    }

    .product-description details p {
        font-size: 0.7rem;
        padding: 0.5rem;
    }

    .product-table {
        font-size: 0.8rem;
    }

    .product-table th,
    .product-table td {
        padding: 0.4rem;
    }

    .product-table caption {
        font-size: 0.8rem;
    }

    .footer-links a {
        margin: 0 0.2rem;
        font-size: 0.7rem;
    }

    footer p:last-child {
        font-size: 0.6rem;
    }

    .back-to-top {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}