:root {
    --primary: #FFCF00;
    --primary-color: #FFCF00;
    --secondary: #D01012;
    --secondary-color: #D01012;
    --dark: #1a1a1a;
    --text-color: #333;
    --text-light: #666;
    --gray: #6c757d;
    --light: #f8f9fa;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #f44336;
    --info: #2196F3;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}
.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 100%;
    overflow: hidden;
}
@media (max-width: 768px) {
    .product-main {
        grid-template-columns: 1fr;
    }
}
.product-images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    overflow: hidden;
}
.main-image-container {
    position: relative;
    width: 94%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 22px auto;
}
.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.main-image:hover {
    transform: scale(1.05);
}
.image-gallery {
    margin-top: 1rem;
}
.gallery-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px 50px;
    border: 2px solid #e9ecef;
    max-width: 100%;
    overflow: hidden;
}
.gallery-track {
    display: flex;
    gap: 12px;
    transition: transform 0.4s ease;
    width: calc(6 * 90px + 5 * 12px);
    max-width: 100%;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: normal;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gallery-nav:hover {
    background: var(--primary);
    color: #333;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(250, 204, 0, 0.4);
}

.gallery-nav.prev {
    left: 5px;
}

.gallery-nav.next {
    right: 5px;
}

.gallery-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-nav:disabled:hover {
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.image-gallery img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.image-gallery img:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.image-gallery img.active {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(250, 204, 0, 0.3);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .image-gallery img {
        aspect-ratio: 1;
    }
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Ancien style product-meta - Remplacé par product-info-cards
.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-badge {
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
*/

.short-description-section {
    background: var(--light);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary);
}

.short-description-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.price-section {
    background: linear-gradient(135deg, var(--primary), var(--warning));
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark);
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-history {
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.8;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 16, 18, 0.3);
}

.widget-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin: 2rem 0;
}

.affilizz-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(255, 207, 0, 0.15);
    border: 2px solid var(--primary);
}

.affilizz-section h2 {
    text-align: center;
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.affilizz-widget-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 100%;
    overflow-x: auto;
}

.content-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-section h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.content-section h3 {
    color: var(--dark);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333;
}

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

.feature-item {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
}

.feature-icon {
    color: var(--success);
    font-size: 1.5rem;
    line-height: 1;
}

.specs-table {
    width: 100%;
    margin-top: 1.5rem;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.specs-table th {
    background: var(--light);
    font-weight: 600;
    color: var(--dark);
    width: 40%;
}

.similar-products {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-card {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: var(--dark);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    object-fit: cover;
}

.product-card-content {
    padding: 1rem;
}

.product-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-card-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary);
}

.product-card-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.rating {
    display: flex;
    gap: 0.2rem;
    margin: 0.5rem 0;
}

.star {
    color: var(--warning);
    font-size: 1.2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-color);
}

/* Header avec fond jaune LEGO */
.header-wrapper {
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
}
a.logo:hover {
    color: #ffffff;
}
.logo::before {
    content: "🧱";
    font-size: 1.8rem;
}

/* Navigation principale */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 5px;
}

.main-nav a:hover,
.main-nav a.active {
    color: white;
    background: var(--secondary-color);
}

/* Hero Section avec dégradé */
.hero {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 50%, #D01012 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/brick-pattern.svg') repeat;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero h1::before {
    content: "🎯 ";
    font-size: 2.5rem;
    vertical-align: middle;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Barre de recherche Hero */
.search-hero {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.search-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.search-hero input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1.1rem;
    outline: none;
    color: var(--text-color);
}

.search-hero input::placeholder {
    color: #999;
}

.search-hero button {
    padding: 18px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-hero button:hover {
    background: #B00E10;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
}

.section-title::before {
    content: "🔥 ";
    font-size: 1.8rem;
    vertical-align: middle;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -30px;
    margin-bottom: 40px;
}

/* Grille de produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

/* Images pour la page d'accueil et catégories */
.home-product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ddd;
    border-radius: 12px 12px 0 0;
}

/* Images pour la page produit principale */
.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

/* Images pour les thumbnails */
.product-thumb-image {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.product-thumb-image:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.product-thumb-image.active {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(250, 204, 0, 0.3);
}

.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ancien style product-meta - Remplacé par product-info-cards
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-meta span {
    background: var(--light);
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}
*/

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: auto;
    margin-bottom: 12px;
}

.product-actions {
    padding: 0 24px 24px;
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-color);
    flex: 1;
}

.btn-primary:hover {
    background: #FFD700;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    flex: 1;
}

.btn-secondary:hover {
    background: #B00E10;
    transform: translateY(-1px);
}

/* Message Aucun produit */
.no-products {
    text-align: center;
    padding: 80px 20px;
}

.no-products-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.no-products p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.feature {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #D01012 0%, #FF5722 50%, #FF9800 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/brick-pattern.svg') repeat;
    opacity: 0.05;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.newsletter-section h2::before {
    content: "📨 ";
    vertical-align: middle;
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.1);
}

.newsletter-btn {
    padding: 15px 40px;
    background: white;
    color: var(--secondary-color);
    border: 2px solid white;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #b3b3b3;  /* Meilleur contraste que #999 */
    padding: 50px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FFD700;  /* Jaune plus clair pour meilleur contraste sur fond noir (ratio 12.6:1) */
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #b3b3b3;  /* Meilleur contraste (ratio 7.5:1) */
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;  /* Jaune plus clair au hover */
}

/* Footer Disclaimer */
.footer-disclaimer {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #9a9a9a;  /* Meilleur contraste (ratio 5.5:1) */
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #9a9a9a;  /* Meilleur contraste (ratio 5.5:1) */
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.lang-current:hover {
    background: rgba(255,255,255,0.3);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-top: 10px;
    min-width: 150px;
    display: none;
    overflow: hidden;
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-color);
    transition: background 0.3s;
}

.lang-dropdown a:hover {
    background: var(--bg-light);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 10px;
    }
    
    .main-nav a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
    }
    
    /* Hero responsive */
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h1::before {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .search-hero {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .search-hero input,
    .search-hero button {
        width: 100%;
        border-radius: 8px;
    }
    
    /* Sections responsive */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Grid responsive */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Newsletter responsive */
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Coming Soon Page Styles */
.coming-soon-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.coming-soon-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    border-radius: 20px;
    margin-bottom: 40px;
}

.coming-soon-icon {
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

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

.coming-soon-title {
    font-size: 3em;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--text-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-soon-subtitle {
    font-size: 1.8em;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.coming-soon-message {
    font-size: 1.15em;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.features-preview {
    margin: 50px 0;
}

.features-preview h3 {
    font-size: 2em;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.features-preview h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #ffd700 100%);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.feature-item:hover:before {
    transform: translateY(0);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fff4d4 0%, #fff9e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 207, 0, 0.2);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-item h4 {
    color: var(--text-color);
    font-size: 1.3em;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.6;
}

.newsletter-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #ffd700 100%);
    padding: 50px 40px;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 207, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-cta:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.newsletter-cta h3 {
    font-size: 1.8em;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
}

.newsletter-cta p {
    font-size: 1.15em;
    color: #444;
    position: relative;
}

.btn-back-home {
    display: inline-block;
    padding: 18px 50px;
    background: var(--text-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.btn-back-home:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn-back-home:hover {
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-back-home:hover:before {
    width: 300px;
    height: 300px;
}

.btn-back-home span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.2em;
    }
    
    .coming-soon-subtitle {
        font-size: 1.4em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-cta {
        padding: 35px 25px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-btn {
        width: 100%;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Overlay pour mobile menu */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: var(--success);
    color: white;
}

.notification-error {
    background: var(--danger);
    color: white;
}

/* Error states for forms */
input.error,
textarea.error,
select.error {
    border-color: var(--danger) !important;
    animation: shake 0.5s;
}

.error-message {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* Product Info Cards - Carrés d'informations */
.product-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid var(--primary);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.info-card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.info-card-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-card-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark);
}

@media (max-width: 768px) {
    .product-info-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .info-card {
        display: flex;
        align-items: center;
        padding: 15px;
        text-align: left;
        gap: 15px;
    }
    
    .info-card-icon {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .info-card-label {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .info-card-value {
        font-size: 1.4rem;
    }
    
    .info-card > div:last-child {
        flex: 1;
    }
}

/* Section des prix (anciennement affilizz-section) */
.les-prices-section {
    background: white;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* Section contenu détaillé */
.description-content-section {
    padding: 3rem 0;
}

.description-content-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.8;
    color: var(--text-color);
}

.description-content-wrapper h2 {
    color: var(--dark);
    margin: 2.5rem 0 1.5rem 0;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.description-content-wrapper h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.description-content-wrapper h3 {
    color: var(--secondary);
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
    position: relative;
    padding-left: 25px;
}

.description-content-wrapper h3:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.6rem;
    line-height: 1.2;
}

.description-content-wrapper p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.description-content-wrapper ul,
.description-content-wrapper ol {
    margin: 1rem 0 1.5rem 2rem;
}

.description-content-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Style des tableaux dans ai-content */
.description-content-wrapper table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.description-content-wrapper table thead {
    background: linear-gradient(135deg, var(--primary), #FFD633);
}

.description-content-wrapper table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-content-wrapper table td {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.description-content-wrapper table tbody tr {
    transition: background-color 0.2s ease;
}

.description-content-wrapper table tbody tr:hover {
    background-color: #fafafa;
}

.description-content-wrapper table tbody tr:last-child td {
    border-bottom: none;
}

.description-content-wrapper table tbody tr td:first-child {
    font-weight: 600;
    color: var(--dark);
}

/* Responsive tables */
@media (max-width: 768px) {
    .description-content-wrapper table {
        font-size: 0.9rem;
    }
    
    .description-content-wrapper table th,
    description-content-wrapper table td {
        padding: 10px 12px;
    }
    
    .description-content-wrapper table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .description-content-wrapper {
        padding: 2rem 0;
    }
    
    .description-content-wrapper {
        padding: 1.5rem;
    }
}

/* Les Prices Section */
.les-prices-section {
    margin-top: 3rem;
    position: relative;
    max-width: 100%;
}

.les-prices-section h2 {
    background: linear-gradient(135deg, #D01012, #E51E20);
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    text-align: left;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px 10px 0 0;
}

/* Price Comparison Table */
.price-comparison-table {
    margin: -1px 0 0 0;
    padding: 0;
    overflow: hidden;
    background: white;
    position: relative;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.price-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
}

.price-comparison-table thead {
    background: linear-gradient(135deg, #333333, #1a1a1a);
    border-bottom: 2px solid #000000;
}

.price-comparison-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.price-comparison-table th:first-child {
    width: 45%;
}

.price-comparison-table th:nth-child(2) {
    text-align: left;
    padding-left: 2rem;
    width: 25%;
}

.price-comparison-table th:last-child {
    width: 30%;
    text-align: right;
    padding-right: 2rem;
}

.price-comparison-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f3f5;
}

.price-comparison-table tbody tr:hover {
    background-color: #fafbfc;
}

.price-comparison-table tbody tr:first-child td {
    background: inherit;
}

.price-comparison-table tbody tr:first-child td:first-child {
    border-top-left-radius: 10px;
    overflow: hidden;
}

.price-comparison-table tbody tr:first-child td:last-child {
    border-top-right-radius: 10px;
    overflow: hidden;
}

.price-comparison-table tbody tr.best-price {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.08), transparent);
    position: relative;
}

.price-comparison-table tbody tr.best-price td:first-child {
    padding-left: 1.75rem;
}

.price-comparison-table tbody tr.hidden-price {
    display: none;
}

.price-comparison-table td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
}

.price-comparison-table td:last-child {
    text-align: right;
    padding-right: 2rem;
}

/* Merchant Cell */
.merchant-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.merchant-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    padding: 6px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.merchant-name {
    font-weight: 500;
    color: #495057;
    font-size: 0.95rem;
}

/* Price Cell */
.price-cell {
    text-align: left;
    font-weight: bold;
    position: relative;
    min-width: 140px;
    padding-left: 2rem !important;
}

.current-price {
    color: #212529;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-block;
    min-width: 90px;
}

.best-price .current-price {
    color: #d01012;
    font-size: 1.35rem;
    font-weight: 800;
}

.best-price-badge {
    display: inline-block;
    background: #FFD700;
    color: #000000;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.75rem;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(255, 207, 0, 0.3);
}

/* Action Cell */
.btn-view-offer {
    display: inline-block;
    background: linear-gradient(135deg, #00A651, #00C853);
    color: white;
    padding: 0.5rem 1.3rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3);
}

.btn-view-offer:hover {
    background: linear-gradient(135deg, #00C853, #00A651);
    transform: translateX(3px);
    color: white;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(0, 166, 81, 0.4);
}

/* Show All Button */
.show-all-container {
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.btn-show-all {
    background: linear-gradient(135deg, #D01012, #FF1F1F);
    border: none;
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(208, 16, 18, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-show-all:hover {
    background: linear-gradient(135deg, #FF1F1F, #D01012);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 16, 18, 0.4);
    color: white;
}

/* Responsive Price Table */
@media (max-width: 768px) {
    .les-prices-section h2 {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
    }
    
    .price-comparison-table {
        font-size: 0.85rem;
    }
    
    .price-comparison-table th {
        padding: 0.8rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .price-comparison-table td {
        padding: 0.75rem;
    }
    
    .merchant-cell {
        min-width: 150px;
        gap: 0.5rem;
    }
    
    .merchant-logo {
        width: 28px;
        height: 28px;
        padding: 4px;
    }
    
    .merchant-name {
        font-size: 0.85rem;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .best-price .current-price {
        font-size: 1.2rem;
    }
    
    .btn-view-offer {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .best-price-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }
    
    .btn-show-all {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Breadcrumb amélioré */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 2rem;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.breadcrumb a:hover {
    background: rgba(0, 102, 204, 0.1);
    color: #0052a3;
    text-decoration: none;
}

.breadcrumb a:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

.breadcrumb > .container > span {
    color: #495057;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
}

/* Séparateurs */
.breadcrumb .container > *:not(:last-child)::after {
    content: '›';
    color: #6c757d;
    margin: 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
        margin-bottom: 1.5rem;
    }
    
    .breadcrumb .container {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .breadcrumb a {
        padding: 0.2rem 0.4rem;
    }
}

/* Section des accessoires */
.accessories-section {
    background: white;
    padding: 2.5rem 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accessories-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.accessory-item {
    position: relative;
    text-align: center;
}

.accessory-link {
    display: block;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.accessory-link:hover {
    transform: translateY(-5px);
}

.accessory-discount {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
}

.accessory-image-wrapper {
    width: 240px;
    height: 240px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff9500;
    background: white;
    position: relative;
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.3);
    transition: all 0.3s ease;
}

.accessory-link:hover .accessory-image-wrapper {
    border-color: #ffcf00;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 207, 0, 0.4);
}

.accessory-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accessory-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    font-size: 3rem;
}

.accessory-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    line-height: 1.3;
    padding: 0 10px;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessory-link:hover .accessory-name {
    color: #0066cc;
}

/* Responsive */
@media (max-width: 768px) {
    .accessories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .accessory-image-wrapper {
        width: 140px;
        height: 140px;
        border-width: 3px;
    }
    
    .accessory-name {
        font-size: 0.85rem;
    }
    
    .accessories-section {
        padding: 1.5rem 1rem;
    }
    
    .accessories-section h2 {
        font-size: 1.5rem;
    }
    
    .accessory-discount {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* FAQ Accordion */
.faq-section {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ffcf00;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 20px;
}

.faq-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ffcf00;
    box-shadow: 0 4px 12px rgba(255, 207, 0, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(to right, #fffbf0, #fff4cc);
}

.faq-question-text {
    flex: 1;
    padding-right: 1rem;
    color: #D01012;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffcf00, #ffc107);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(255, 207, 0, 0.3);
}

.faq-question:hover .faq-toggle {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(255, 207, 0, 0.5);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 1.5rem;
    color: #555;
    line-height: 1.8;
    border-top: 1px solid #e9ecef;
}

/* Animation pour le toggle */
.faq-answer.active + .faq-toggle {
    transform: rotate(45deg);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 1.5rem 1rem;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
    
    .faq-answer-content {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Nouveau design des product-card */
.product-card-image-link {
    display: block;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
}

.product-card-bottom {
    display: flex;
    align-items: stretch;
    margin-top: auto;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    height: 50px;
}

.product-card-price {
    flex: 1;
    background: linear-gradient(135deg, #D01012, #E51E20);
    color: white;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 0 0 0 16px;
}

.product-card-price .price-amount {
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.product-card-view {
    background: linear-gradient(135deg, #FFCF00, #FFB500);
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0 0 16px 0;
    text-decoration: none;
    min-width: 50px;
}

.product-card-view:hover {
    background: linear-gradient(135deg, #FFB500, #FF9500);
}

.product-card-view svg {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* Ajustement pour le titre cliquable */
.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-title a:hover {
    color: var(--primary);
}

/* Supprimer l'ancien bouton */
.product-card .product-actions {
    display: none;
}

/* Affichage du meilleur prix sur la page produit */
.product-best-price-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 1rem;
    border-left: 4px solid var(--primary);
}

.best-price-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.best-price-label {
    color: var(--text-color);
    font-weight: 600;
}

.best-price-value {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.5rem;
}

.price-per-piece {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-light);
}

.per-piece-label {
    font-weight: 500;
}

.per-piece-value {
    color: var(--text-color);
    font-weight: 600;
}

/* Section des avis clients */
.reviews-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.reviews-section h2 {
    color: var(--dark);
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.reviews-summary {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.average-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.rating-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #ddd;
    font-size: 1.5rem;
}

.star.filled {
    color: var(--primary);
}

.review-count {
    color: var(--text-light);
    font-size: 1rem;
}

/* Liste des avis */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.review-author {
    font-weight: 600;
    color: var(--dark);
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    gap: 0.1rem;
    margin-bottom: 1rem;
}

.review-comment {
    color: var(--text-color);
    line-height: 1.6;
}

.review-photos {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.review-photo-thumb {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.review-photo-thumb:hover {
    transform: scale(1.05);
}

/* Formulaire d'avis */
.review-form-container {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.review-form-container h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Input étoiles */
.rating-input {
    display: flex;
    gap: 0.5rem;
}

.rating-input input {
    display: none;
}

.star-label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.star-label:hover,
.star-label.hover {
    color: var(--primary);
}

.star-label.selected {
    color: var(--primary);
}

.rating-input input:checked ~ .star-label {
    color: var(--primary);
}

/* Bouton submit */
.btn-submit-review {
    background: linear-gradient(135deg, var(--secondary), #E51E20);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 16, 18, 0.3);
}

.btn-submit-review:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Messages */
.form-message {
    margin-top: 1rem;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Modal photo */
.photo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.photo-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

.no-reviews {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    font-style: italic;
}

/* Social Share Buttons */
.social-share-buttons {
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.share-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.share-btn svg {
    width: 30px;
    height: 30px;
}

.share-btn.facebook {
    color: #1877f2;
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    color: #1da1f2;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-btn.pinterest {
    color: #bd081c;
}

.share-btn.pinterest:hover {
    background: #bd081c;
    color: white;
}

.share-btn.reddit {
    color: #ff4500;
}

.share-btn.reddit:hover {
    background: #ff4500;
    color: white;
}

.share-btn.whatsapp {
    color: #25d366;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    color: white;
}

.share-btn.email {
    color: #6c757d;
}

.share-btn.email:hover {
    background: #6c757d;
    color: white;
}

@media (max-width: 768px) {
    .social-share-buttons {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .share-buttons {
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Download instructions link */
.download-instructions-link {
    color: #FF6900;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.download-instructions-link:hover {
    color: #FCB900;
    text-decoration: underline;
}

/* Language selector flag styles */
.language-selector svg,
.lang-current svg,
.lang-dropdown svg,
.lang-option svg,
.mobile-lang-option svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    border: 1px solid #ddd;
    border-radius: 2px;
}

/* Accessories description styles */
.accessories-description {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left: 4px solid #FF6900;
    border-radius: 8px;
    color: #5D4037;
    font-size: 1.05rem;
    line-height: 1.6;
}

.accessories-section .accessories-description {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
