@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

/* ==========================================================================
   Styles globaux (toutes les pages)
   ========================================================================== */
   body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Bouton CTA utilisé partout */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #d4e1c2;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #333;
}

/* ==========================================================================
   Bannière promotionnelle (index.html, dashboard.html)
   ========================================================================== */
.promo-banner {
    background-color: #d4e1c2;
    color: #333;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* ==========================================================================
   En-tête (index.html, dashboard.html)
   ========================================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-links .store-icon,
.header-links .home-icon {
    font-size: 18px;
    color: #333;
}

.header-links .social-links {
    display: flex;
    gap: 15px;
}

.header-links .social-links a {
    font-size: 18px;
    color: #333;
    transition: color 0.3s;
}

.header-links .social-links a:hover {
    color: #4CAF50;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo p {
    font-size: 14px;
    color: #666;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-section a,
.user-section .user-avatar {
    font-size: 14px;
    color: #333;
}

.dashboard-sticker {
    background-color: #d4e1c2;
    color: #000;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.dashboard-sticker:hover {
    background-color: #7fa981;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px; /* Espace entre les éléments */
    cursor: pointer; 
    z-index: 1000;
}

.basket-icon {
    cursor: pointer;
    z-index: 1000;
    position: relative;
}


#basket-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #d4e1c2;
    color: rgb(0, 0, 0);
    font-size: 12px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-section {
    display: flex;
    align-items: center;
}

/* Navigation principale */
.main-nav {
    background-color: #fff;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-nav a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #999;
}

/* Hero Banner */
.hero-banner {
    background-image: url('pictures/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px;
    max-width: 600px;
}

.hero-content h3 {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Carousel des produits */
.product-carousel {
    position: relative;
    padding: 60px 40px;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Hauteur minimale pour visibilité */
}

/* Optionnel : Ajoutez des images de fond si désiré */
.carousel-slide:nth-child(1) {
    background-image: url('pictures/slide1.jpg');
    background-size: cover;
    background-position: center;
}
.carousel-slide:nth-child(2) {
    background-image: url('pictures/slide2.jpg');
    background-size: cover;
    background-position: center;
}
.carousel-slide:nth-child(3) {
    background-image: url('pictures/slide3.jpg');
    background-size: cover;
    background-position: center;
}
.carousel-slide:nth-child(4) {
    background-image: url('pictures/slide4.jpg');
    background-size: cover;
    background-position: center;
}
.carousel-slide:nth-child(5) {
    background-image: url('pictures/slide5.jpg');
    background-size: cover;
    background-position: center;
}
.carousel-slide:nth-child(6) {
    background-image: url('pictures/slide6.jpg');
    background-size: cover;
    background-position: center;
}

.product-highlight {
    text-align: center;
    color: #fff; /* Blanc si images de fond, sinon ajustez */
    background-color: rgba(0, 0, 0, 0.7); /* Fond semi-transparent si images */
    padding: 30px;
    max-width: 500px;
}

.product-highlight h2 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-highlight h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 200;
}

.carousel-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.carousel-controls .control {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    color: #fff;
}

.carousel-controls .control.active {
    background: #000;
}

/* Nouveautés (The News) */
.new-products {
    display: block;
    justify-content: center; /* Centrer horizontalement */
    padding: 60px 40px;
    text-align: center;
}

.section-header {
    text-align: center; /* Centre le texte du titre et de la description */
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
}

/* Grille horizontale pour les nouveautés sur la page d’accueil */
.horizontal-scroll-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: center;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding: 20px 0;
}

/* Titre au-dessus des nouveautés */
.new-products .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.new-products .section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2c3e2f;
    margin-bottom: 10px;
    position: relative;
}

.new-products .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4e1c2, transparent);
}

.new-products .section-header p {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.horizontal-scroll-grid .product-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* Centrage de la grille des produits horizontalement */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center; /* Centre les éléments de la grille horizontalement */
    width: 100%;
}

/* Card produit */
.product-card {
    border: 1px solid #eee;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centre horizontalement le contenu de la carte */
    text-align: center; /* Centre le texte à l'intérieur de la carte */
}

.product-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center; /* Centre l'image horizontalement */
    align-items: center; /* Centre l'image verticalement */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    font-weight: 600;
    margin-bottom: 15px;
}

.add-to-cart {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #d4e1c2;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #83a272;
}

.delivery-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
}

.option i {
    margin-right: 5px;
}

/* ==========================================================================
   Modal d'authentification (index.html)
   ========================================================================== */
   .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 400px;
    border-radius: 10px;
}

.close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #d4e1c2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #d4e1c2;
}

/* ==========================================================================
   section our store
   ========================================================================== */
.boutiques {
    background-color: #d4e1c2;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.boutiques h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.boutiques-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.boutique {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.boutique p {
    margin-bottom: 10px;
    font-size: 16px;
}

.boutique-name {
    font-size: 18px;
    font-weight: bold;
    color: #d4e1c2;
}

/* Instagram Feed */
.instagram-feed {
    background-color: #fafafa;
    padding: 40px 0;
    text-align: center;
}

.instagram-feed h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.instagram-feed p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.instagram-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.instagram-post {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .instagram-grid {
        flex-wrap: wrap;
    }
}

/* Options de livraison */
.delivery-options {
    display: flex;
    justify-content: space-around;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.delivery-option {
    text-align: center;
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.delivery-option i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #d4e1c2;
}

.delivery-option h3 {
    font-size: 18px;
    margin: 10px 0;
}

.delivery-option p {
    color: #666;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .delivery-options {
        flex-direction: column;
        gap: 20px;
    }
}

/* Engagements */
.engagements {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.engagement {
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .engagements {
        flex-direction: column;
        gap: 20px;
    }
}

/* Newsletter */
.newsletter {
    background-color: #f4f4f4;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.newsletter h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 12px;
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: #d4e1c2;
    color: #000;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #83a272;
}

.newsletter .legal {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    .newsletter-form input {
        width: 100%;
    }
    .newsletter-form button {
        width: 100%;
    }
}

/* ==========================================================================
   Footer (index.html, dashboard.html)
   ========================================================================== */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    max-width: 250px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 14px;
    transition: text-decoration 0.3s;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-bottom .social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-bottom .social-links a {
    font-size: 18px;
    color: #fff;
    transition: color 0.3s;
}

.footer-bottom .social-links a:hover {
    color: #d4e1c2;
}

/* ==========================================================================
   Styles spécifiques à dashboard.html
   ========================================================================== */
   .dashboard-container {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-wrapper {
    display: flex;
    gap: 20px;
}

.dashboard-nav {
    width: 250px;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
}

.dashboard-nav ul {
    display: flex;
    flex-direction: column;
}

.dashboard-nav li {
    margin-bottom: 15px;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    background-color: #d4e1c2;
    color: #000;
    border-radius: 5px;
}

.dashboard-nav a[href="#account"]::before {
    content: '\f007';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.dashboard-nav a[href="#orders"]::before {
    content: '\f218';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.dashboard-nav a[href="#cart"]::before {
    content: '\f07a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.dashboard-nav a[href="#payment"]::before {
    content: '\f09d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.dashboard-content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block;
}

.data-display {
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #f4f4f4;
}

.address-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.address-row .field {
    flex: 1;
}

.address-row .field label {
    display: block;
    margin-bottom: 5px;
}

.address-row .field input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn-primary {
    background-color: #d4e1c2; /* bleu élégant ou couleur utilisée sur "Add to cart" */
    color: #000000;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #96b64d; /* un bleu légèrement plus sombre au survol */
}

.btn-danger {
    background-color: #e74c3c; /* couleur rouge pour supprimer, optionnel si tu préfères bleu */
    color: #ffffff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-danger:hover {
    background-color: #c0392b; /* rouge plus foncé au survol */
}

/* Style pour la ligne contenant State, Zip Code et City */
.address-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.address-row .field {
    flex: 1;
}

.address-row .field label {
    display: block;
    margin-bottom: 5px;
}

.address-row .field input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

/* Autocomplétion avec thème personnalisé */
.field {
    position: relative;
    overflow: visible; /* très important */
  }

.autocomplete-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #d4e1c2;
    border-top: none;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 6px rgba(131, 162, 114, 0.4);
    border-radius: 0 0 8px 8px;
}

.autocomplete-list li {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #eef1e8;
    color: #333;
    background-color: #fff;
    transition: background-color 0.2s ease;
}

.autocomplete-list li:hover {
    background-color: #d4e1c2;
    color: #000;
    font-weight: 500;
}

/* saisie errones cb */
input.invalid {
    background-color: #fdecea;
}

input.valid {
    border: 2px solid #9cbb72;
}

/* === Contact Form Styles === */
.contact-form-container {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
  }
  
  .contact-header {
    background-color: #d4e1c2;
    padding: 15px;
    color: #3e3e3e;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .contact-header .logo {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  
  .contact-title {
    margin: 0;
    font-size: 16px;
    flex-grow: 1;
    font-weight: bold;
  }
  
  .close-btn {
    background: none;
    border: none;
    color: #3e3e3e;
    font-size: 20px;
    cursor: pointer;
  }
  
  .contact-body {
    padding: 15px;
    background-color: #f8f8f8;
  }
  
  .contact-body .form-group {
    margin-bottom: 15px;
  }
  
  .contact-body label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #3e3e3e;
  }
  
  .contact-body input,
  .contact-body textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px;
  }
  
  .contact-body textarea {
    height: 100px;
    resize: vertical;
  }
  
  .submit-btn {
    background-color: #d4e1c2;
    color: #3e3e3e;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #bccdaf;
  }
  
  .success-message {
    display: none;
    color: green;
    text-align: center;
    padding: 10px;
    font-size: 14px;
  }
  
  input:invalid {
    border-color: #e74c3c;
  }
  
  input[type="email"]:invalid:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
  }

  @keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  #contactFormContainer {
    animation: slideUp 0.3s ease-out;
  }
  
  /* Fin des styles du formulaire de contact */
  
  /* password */
  .password-wrapper {
    position: relative;
  }
  
  .password-wrapper input {
    width: 100%;
    padding-right: 30px;
  }
  
  .password-wrapper .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
  }
  /* ========================================================================== 
   CORRECTIONS RESPONSIVE POUR MOBILE
   ========================================================================== */

/* Corrections pour le header sur mobile */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .header-links {
        order: 3;
        justify-content: center;
    }
    
    .logo {
        order: 1;
        margin-bottom: 10px;
    }
    
    .header-right {
        order: 2;
        justify-content: center;
    }
    
    .social-links {
        gap: 10px;
    }
}

/* Corrections pour la navigation principale */
@media screen and (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* Corrections pour le hero banner */
@media screen and (max-width: 768px) {
    .hero-banner {
        height: 50vh;
    }
    
    .hero-content {
        padding: 20px;
        margin: 0 15px;
    }
    
    .hero-content h3 {
        font-size: 24px;
    }
}

/* Corrections pour le carousel */
@media screen and (max-width: 768px) {
    .product-carousel {
        padding: 30px 15px;
    }
    
    .carousel-slide {
        min-height: 300px;
    }
    
    .product-highlight {
        padding: 20px;
        margin: 0 10px;
    }
    
    .product-highlight h2 {
        font-size: 12px;
    }
    
    .product-highlight h3 {
        font-size: 14px;
    }
}

/* CORRECTION PRINCIPALE POUR LES IMAGES PRODUITS */
@media screen and (max-width: 768px) {
    .new-products {
        padding: 30px 15px;
        flex-direction: column;
    }
    
    .product-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
        gap: 20px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .product-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-image {
        height: 200px; /* Hauteur réduite pour mobile */
        width: 100%;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h5 {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .delivery-options {
        flex-direction: column;
        gap: 8px;
    }
    
    .option {
        font-size: 11px;
        justify-content: flex-start;
    }
}

/* Corrections pour la section boutiques */
@media screen and (max-width: 768px) {
    .boutiques {
        padding: 30px 15px;
    }
    
    .boutiques-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .boutique {
        max-width: 100%;
    }
}

/* Corrections pour l'Instagram feed */
@media screen and (max-width: 768px) {
    .instagram-feed {
        padding: 30px 15px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
    }
    
    .instagram-post {
        width: 100%;
        height: 150px;
    }
}

/* Corrections pour les options de livraison */
@media screen and (max-width: 768px) {
    .delivery-options {
        flex-direction: column;
        margin: 20px 15px;
        padding: 15px;
    }
    
    .delivery-option {
        margin-bottom: 15px;
    }
    
    .delivery-option:last-child {
        margin-bottom: 0;
    }
}

/* Corrections pour les engagements */
@media screen and (max-width: 768px) {
    .engagements {
        flex-direction: column;
        padding: 20px 15px;
        text-align: center;
        gap: 15px;
    }
}

/* Corrections pour la newsletter */
@media screen and (max-width: 768px) {
    .newsletter {
        padding: 30px 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Corrections pour le footer */
@media screen and (max-width: 768px) {
    footer {
        padding: 30px 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
        text-align: left;
    }
    
    .footer-column {
        max-width: 100%;
    }
    
    .footer-bottom .social-links {
        gap: 20px;
        margin-top: 20px;
    }
}

/* Corrections pour le modal d'authentification */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 90%;
        max-width: 350px;
        margin: 10% auto;
    }
}

/* Corrections pour le formulaire de contact */
@media screen and (max-width: 768px) {
    .contact-form-container {
        width: 90%;
        bottom: 10px;
        right: 5%;
        left: 5%;
    }
}

/* Corrections générales pour tous les textes sur mobile */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Correction pour éviter le défilement horizontal */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
}
/* ==========================================================================
   Page Pastries - Styles spécifiques (MODIFIÉ POUR VIDÉO)
   ========================================================================== */
.pastry-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.pastry-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    max-width: 600px;
    padding: 40px;
    text-align: center;
    color: white;
    width: 100%;
}

.pastry-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.pastry-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.pastry-filter {
    background-color: #f8f8f8;
    padding: 30px 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.filter-container h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 22px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background-color: #fff;
    border: 2px solid #d4e1c2;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 25px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #d4e1c2;
    color: #000;
}

.pastry-products {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.pastry-grid {
    margin-top: 40px;
}

.pastry-card {
    position: relative;
}

.pastry-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.pastry-badge.bestseller {
    background-color: #d4e1c2;
}

.pastry-badge.chef-choice {
    background-color: #83a272;
    color: #fff;
}

.pastry-badge.gift-box {
    background-color: #f39c12;
    color: #fff;
}

.pastry-badge.seasonal {
    background-color: #e74c3c;
    color: #fff;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 14px;
}

.artisan-section {
    background-color: #f8f8f8;
    padding: 60px 40px;
    text-align: center;
}

.artisan-content {
    max-width: 800px;
    margin: 0 auto;
}

.artisan-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.artisan-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #d4e1c2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #333;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   Page Cakes - Styles spécifiques
   ========================================================================== */
.cakes-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('pictures/cakes-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.cakes-hero-content {
    max-width: 700px;
    padding: 50px;
    background: rgba(0,0,0,0.1);
    border-radius: 15px;
}

.cakes-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
}

.cakes-hero p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cake-size-selector {
    background: linear-gradient(135deg, #f8f8f8, #fff);
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.size-container h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 22px;
}

.size-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.size-option {
    padding: 20px;
    background-color: #fff;
    border: 3px solid #d4e1c2;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 150px;
}

.size-option:hover,
.size-option.active {
    background-color: #d4e1c2;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.size-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: #83a272;
}

.size-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.size-description {
    font-size: 12px;
    color: #666;
}

.cake-products {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.cake-grid {
    margin-top: 50px;
}

.cake-card {
    position: relative;
}

.cake-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cake-badge.bestseller {
    background: linear-gradient(135deg, #d4e1c2, #83a272);
}

.cake-badge.classic {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.cake-badge.seasonal {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.cake-badge.fresh {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.cake-badge.italian {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.cake-features {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.feature-tag {
    background-color: #f8f8f8;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    color: #666;
    border: 1px solid #eee;
}

.custom-cakes-section {
    background: linear-gradient(135deg, #f8f8f8, #fff);
    padding: 80px 40px;
    text-align: center;
}

.custom-content {
    max-width: 900px;
    margin: 0 auto;
}

.custom-cakes-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 300;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.consultation-cta {
    margin-top: 50px;
}

.consultation-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d4e1c2, #83a272);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(131, 162, 114, 0.3);
}

.consultation-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(131, 162, 114, 0.4);
}

/* ==========================================================================
   Page Events - Styles spécifiques
   ========================================================================== */
.events-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('pictures/events-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 225, 194, 0.1), rgba(0,0,0,0.3));
}

.events-hero-content {
    max-width: 800px;
    padding: 60px;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.events-hero h1 {
    font-size: 56px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.events-hero p {
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.event-categories {
    background: linear-gradient(135deg, #f8f8f8, #fff);
    padding: 60px 40px;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s;
    position: relative;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.category-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.category-card:hover .category-image img {
    transform: scale(1.2);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 225, 194, 0.8), rgba(131, 162, 114, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-icon {
    font-size: 60px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-info {
    padding: 30px;
    text-align: center;
}

.category-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.category-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-badge {
    background: linear-gradient(135deg, #d4e1c2, #83a272);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.explore-btn {
    background: linear-gradient(135deg, #d4e1c2, #83a272);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(131, 162, 114, 0.3);
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131, 162, 114, 0.4);
}

.featured-packages {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.packages-grid {
    margin-top: 60px;
}

.package-card {
    position: relative;
}

.package-header {
    background: linear-gradient(135deg, #d4e1c2, #83a272);
    color: #fff;
    padding: 30px;
    text-align: center;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #83a272;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.package-badge.bestseller {
    background: #f39c12;
    color: #fff;
}

.package-badge.elegant {
    background: #9b59b6;
    color: #fff;
}

.package-badge.luxury {
    background: #e74c3c;
    color: #fff;
}

.package-badge.professional {
    background: #34495e;
    color: #fff;
}

.package-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

.package-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.package-price {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
}

.package-price-note {
    font-size: 12px;
    opacity: 0.8;
}

.package-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.package-list li {
    padding: 5px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-list li i {
    color: #83a272;
    font-size: 12px;
}

.planning-section {
    background: linear-gradient(135deg, #f8f8f8, #fff);
    padding: 80px 40px;
    text-align: center;
}

.planning-content {
    max-width: 1000px;
    margin: 0 auto;
}

.planning-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 300;
}

.planning-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.planning-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4e1c2, #83a272);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(131, 162, 114, 0.3);
}

.planning-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.planning-step p {
    color: #666;
    line-height: 1.7;
}

.contact-cta-section {
    background: linear-gradient(135deg, #83a272, #d4e1c2);
    padding: 60px 40px;
    text-align: center;
    color: #fff;
}

.contact-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-btn.primary {
    background: #fff;
    color: #83a272;
}

.contact-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.contact-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.contact-btn.secondary:hover {
    background: #fff;
    color: #83a272;
    transform: translateY(-5px);
}

/* ==========================================================================
   RESPONSIVE POUR LES NOUVELLES PAGES
   ========================================================================== */
@media screen and (max-width: 768px) {
    .pastry-hero h1,
    .cakes-hero h1 {
        font-size: 32px;
    }
    
    .events-hero h1 {
        font-size: 36px;
    }
    
    .pastry-hero-content,
    .cakes-hero-content,
    .events-hero-content {
        padding: 40px 20px;
    }
    
    .filter-buttons,
    .size-options {
        flex-direction: column;
        align-items: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .planning-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 250px;
    }
    
    .artisan-features,
    .custom-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   HERO SECTION AVEC VIDÉO POUR EVENTS.HTML - À AJOUTER dans styles.css
   ========================================================================== */

.events-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.events-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.events-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay sombre pour la lisibilité */
    z-index: 2;
}

.events-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.events-hero h1 {
    font-size: 56px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.events-hero p {
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Responsive pour mobile */
@media screen and (max-width: 768px) {
    .events-hero h1 {
        font-size: 36px;
        letter-spacing: 3px;
    }
    
    .events-hero p {
        font-size: 18px;
    }
    
    .events-hero-content {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .events-hero {
        height: 60vh;
    }
}

/* Pause vidéo au survol (optionnel) */
.events-hero:hover .events-hero-video {
    animation-play-state: paused;
}

/* Appliquer le même style au bouton checkout qu'aux autres boutons du formulaire */
.checkout-btn {
    /* Hérite des mêmes styles que les boutons de formulaire existants */
    background: linear-gradient(135deg, #d4e1c2 0%, #b8c9a0 100%);
    color: #2c3e2f;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 225, 194, 0.4);
    margin-top: 15px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #c8d9b6 0%, #a8b894 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 225, 194, 0.6);
}

/* Style pour le bouton "Voir détails" dans la colonne Details */
.details-btn {
    /* Même style que les autres boutons du site mais adapté à la colonne */
    background: linear-gradient(135deg, #d4e1c2 0%, #b8c9a0 100%);
    color: #2c3e2f;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 225, 194, 0.3);
    font-family: 'Roboto', sans-serif;
    
    /* Adaptation à la largeur de la colonne */
    width: 100%;
    max-width: 120px;
    white-space: nowrap;
    text-align: center;
}

.details-btn:hover {
    background: linear-gradient(135deg, #c8d9b6 0%, #a8b894 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 225, 194, 0.5);
}

.details-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(212, 225, 194, 0.4);
}
