/* Variables globales */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #1b4d2e; /* Vert foncé de base */
    background-image: 
        linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0,0,0,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    position: relative;
}

/* Overlay subtil pour adoucir la texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(27, 77, 46, 0.7) 0%,
        rgba(27, 77, 46, 0.9) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Header et Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

/* Section héro */
.hero {
    padding-top: 100px;
    min-height: 100vh;
    background: transparent;
}

.product-showcase {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Conteneur pour le carrousel et les infos produit */
.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    margin-top: 1rem;
}

/* Ajustement du titre */
.product-showcase h2 {
    text-align: center;
    margin-bottom: 1rem;
}

/* Carrousel */
.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-inner {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 500px;
}

.carousel-item {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.carousel-item.active {
    display: flex;
    opacity: 1;
    transform: none;
    position: relative;
}

.carousel-item img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-item.active img {
    opacity: 1;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
    opacity: 0;
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
    opacity: 0;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    height: 50px;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-container:hover .carousel-control-prev,
.carousel-container:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.carousel-indicators {
    margin-bottom: -1rem;
    gap: 8px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.5;
    transition: all 0.3s ease;
    transform: scale(0.8);
    margin: 0 4px;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1);
}

/* Informations produit */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Ajustement du conteneur de prix */
.price-container {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 1rem;
    border-right: 2px solid rgba(0,0,0,0.1);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    margin-bottom: 0.3rem;
    white-space: nowrap;
}

.shipping-info {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Sélecteur de quantité */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-selector select {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    width: 100px;
}

/* Footer */
footer {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(5px);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Media Queries */
@media (max-width: 768px) {
    /* Ajustement du header pour mobile */
    header {
        padding: 0.5rem 0;
    }
    
    nav {
        padding: 0.5rem 1rem;
    }
    
    .logo img {
        max-width: 220px; /* Logo plus grand sur mobile */
        height: auto;
    }
    
    /* Ajustement de l'espacement pour le contenu sous le header */
    .section-content {
        margin-top: 100px;
    }
    
    #revolutionnez {
        padding-top: 120px;
    }
    
    .product-showcase {
        margin: 2rem 1rem;
        width: auto;
    }
    
    .product-description-block {
        margin: 0 1rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        display: none;
    }
    
    .contact-form {
        flex-direction: column;
    }
    
    .contact-form-captcha {
        width: 100%;
        flex: none;
    }
    
    .captcha-game-container {
        margin: 0 auto;
    }
    
    /* Ajustement des marges intérieures pour les petits écrans */
    .product-showcase {
        padding: 1.5rem;
    }
    
    .price-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Section commande */
.order-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.order-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.order-button:active {
    transform: translateY(0);
}

#paypal-button-container {
    margin-top: 1rem;
    min-height: 45px; /* Hauteur minimale pour éviter le saut de mise en page */
}

#paypal-button-container.visible {
    display: block !important;
    animation: fadeIn 0.3s ease-out forwards;
}

/* Animation pour l'apparition des boutons PayPal */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Animation du prix avec remise */
.price.discounted {
    position: relative;
    animation: pricePulse 0.5s ease-out;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

@keyframes pricePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
} 

/* Styles pour la navigation */
.nav-link {
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Styles pour les sections */
.section-content {
    display: block;
    transition: opacity 0.3s ease;
    margin-top: 40px; /* Réduit l'espace entre le header et le premier bloc */
    padding: 0.5rem 0; /* Réduit encore plus l'espace entre les sections */
}

.section-content + .section-content {
    margin-top: 0.5rem; /* Réduit encore plus l'espace entre les sections */
}

#revolutionnez {
    padding-top: 100px;
}

/* Style actif pour les liens de navigation */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Styles pour le défilement fluide */
html {
    scroll-behavior: smooth;
}

.section-content {
    scroll-margin-top: 80px; /* Ajuste la position de défilement pour tenir compte du header fixe */
}

/* Style actif pour les liens de navigation */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Animation de transition */
.section-content {
    transition: opacity 0.3s ease;
}

/* Style pour le premier bloc */
.product-description-block {
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.description-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.feature-highlight {
    margin: 3rem auto;
    max-width: 700px;
    text-align: center;
}

.feature-highlight h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}

.feature-highlight p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.usage-section {
    margin: 3rem auto;
    max-width: 500px;
    text-align: center;
}

.usage-section h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.usage-section ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.usage-section li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    position: relative;
    padding: 0.5rem 0;
    text-align: center;
}

.product-image {
    margin: -0.5rem auto;
    max-width: 800px;
    margin-bottom: -0.5rem;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.conclusion {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
}

.conclusion p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-color);
    text-align: center;
}

/* Animation pour les éléments au survol */
.feature-highlight:hover,
.usage-section:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Style pour les liens dans le texte */
.product-description-block strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Style pour le formulaire de contact */
.contact-form-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.product-showcase .promo-code {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.contact-form-inputs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: none;
}

.contact-form-captcha {
    flex: 0 0 350px; /* Largeur fixe réduite pour le captcha */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

.contact-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Ajustement des inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    max-width: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

/* Style pour le logo dans la section showcase */
.showcase-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-logo img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Style pour le prix original barré */
.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 1rem;
    font-weight: normal;
    display: block;
    margin-top: 0.5rem;
}

/* Ajustement du style pour le logo dans product-info */
.product-info .showcase-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.product-info .showcase-logo img {
    max-width: 250px;  /* Légèrement plus petit que précédemment */
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Style pour les informations de prix */
.price-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    font-size: 0.9rem;
    padding-left: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discount-info {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    white-space: nowrap;
}

.discount-info br {
    content: "";
    display: block;
    margin: 0.2rem 0;
}

.shipping-info {
    color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
}

/* Styles pour la page de confirmation */
.confirmation-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.confirmation-header {
    margin-bottom: 3rem;
}

.confirmation-header img {
    max-width: 250px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.confirmation-header h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.confirmation-details {
    margin-bottom: 3rem;
}

.order-number {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.confirmation-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.next-steps {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.next-steps h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.next-steps h2 i,
.next-steps li i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.next-steps li i {
    width: 20px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.confirmation-footer {
    margin-top: 2rem;
}

.return-home {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background-color 0.3s, transform 0.2s;
}

.return-home:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.shipping-address {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.shipping-address h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.shipping-address p {
    margin: 0.5rem 0;
    color: var(--text-color);
    line-height: 1.4;
}

.captcha-game-container {
    display: none; /* Cacher par défaut */
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 350px;
}

.game-controls.visible .captcha-game-container {
    display: flex; /* Afficher lorsque le jeu est actif */
}

#captchaGame {
    border: 2px solid #ddd;
    border-radius: 8px;
    margin: 0;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 350px;
    height: auto;
    touch-action: none; /* Empêcher les gestes tactiles par défaut */
}

@media (min-width: 1024px) {
    #captchaGame {
        max-width: 600px; /* Augmente la taille maximale sur les grands écrans */
        height: auto;
    }
}

#startGame {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 400px;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin: 0 auto;
    text-align: center;
}

#startGame:hover {
    background: #2980b9;
}

/* Ajustement pour le bouton submit */
.submit-button-container {
    text-align: center;
    margin-top: 1rem;
     
     transition: opacity 0.3s ease, visibility 0.3s ease;
}

.submit-button-container.visible {
    opacity: 1;
    visibility: visible;
}

/* Style pour l'animation de disparition */
.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
    from { 
        opacity: 1;
        transform: translateY(0);
    }
    to { 
        opacity: 0;
        transform: translateY(-20px);
        display: none;
    }
}

#submitBtn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

#submitBtn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

#submitBtn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Media queries pour les petits écrans */
@media (max-width: 768px) {
    .contact-form {
        flex-direction: column;
    }
    
    .contact-form-captcha {
        width: 100%;
        flex: none;
    }
    
    .captcha-game-container {
        margin: 0 auto;
    }
}

/* Ajout des styles pour le mode plein écran */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

.fullscreen-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.fullscreen-game {
    width: 90%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 2/1;
}

.fullscreen-overlay .game-instructions {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.close-game {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-game:hover {
    transform: scale(1.1);
}

.game-controls {
    text-align: center;
    margin-top: 1rem;
}

.game-instructions-text {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.game-controls #startGame {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.game-controls #startGame:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.game-controls.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
    from { 
        opacity: 1;
        transform: translateY(0);
    }
    to { 
        opacity: 0;
        transform: translateY(-20px);
        display: none;
    }
}

/* Styles pour le bouton de menu mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Styles pour le menu mobile */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    justify-content: center; /* Centrer les éléments horizontalement */
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Ajustez selon la hauteur de votre header */
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem;
        box-shadow: var(--shadow);
        align-items: center; /* Centrer les éléments verticalement */
    }

    .nav-menu.active {
        display: flex;
    }
}

.message-container {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #dff0d8; /* Vert clair pour succès */
    color: #3c763d; /* Vert foncé pour le texte */
    border: 1px solid #d6e9c6;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
}

/* Notifications de formulaire */
.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    color: white;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    max-width: 400px;
}

.form-notification.success {
    background-color: #4CAF50;
    border-left: 4px solid #388E3C;
}

.form-notification.error {
    background-color: #f44336;
    border-left: 4px solid #d32f2f;
}

@media (max-width: 768px) {
    .form-notification {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: translateY(20px);
        text-align: center;
    }
}

/* Messages de formulaire */
.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out;
    z-index: 1000;
    max-width: 400px;
    font-size: 0.9rem;
}

.message-container.success {
    background-color: #4CAF50;
    color: white;
    border-left: 4px solid #388E3C;
}

.message-container.error {
    background-color: #f44336;
    color: white;
    border-left: 4px solid #d32f2f;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Ajout des styles pour le contenu responsive */

/* Styles pour le bloc revolutionnez */
.description-header {
    text-align: center;
    padding: 1rem;
}

.intro-text {
    margin-bottom: 2rem;
}

.title-text {
    font-family: Tahoma, sans-serif;
    font-size: 1.75rem;
    color: #212529;
    display: block;
    line-height: 1.4;
}

.product-image-container {
    margin: 2rem auto;
    max-width: 100%;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.feature-highlight {
    margin: 2rem auto;
    max-width: 700px;
}

.highlight-title {
    color: #ff0000;
    font-family: Tahoma, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.highlight-text {
    font-family: Tahoma, sans-serif;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin: 1rem auto;
}

.usage-section {
    margin: 2rem auto;
    max-width: 500px;
}

.usage-title {
    color: #ff0000;
    font-family: Tahoma, sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.usage-steps p {
    font-family: Verdana, sans-serif;
    font-size: 1rem;
    color: #424242;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.conclusion-text {
    margin-top: 2rem;
}

.conclusion-text p {
    font-family: Verdana, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.emphasis {
    font-weight: bold;
    color: #424242;
}

/* Styles responsives */
@media (max-width: 768px) {
    .title-text {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .product-image-container {
        margin: 1rem auto;
    }

    .responsive-image {
        max-width: 90%;
    }

    .highlight-title {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .highlight-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .usage-title {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    .usage-steps p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .conclusion-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Ajout des styles responsives pour la section revolutionnez */
@media (max-width: 768px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-showcase {
        padding: 1rem;
        margin: 0.5rem;
    }

    .carousel-inner {
        height: 300px;
    }

    .product-description {
        font-size: 0.9rem;
        text-align: center;
    }

    .showcase-logo img {
        max-width: 100%;
        height: auto;
    }

    .description-header {
        font-size: 1.2rem;
        padding: 0.5rem;
        text-align: center;
    }
}