*,
*::before,
*::after {
    
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f3f4f6;
    color: #111827;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    box-sizing: border-box;
}

.site-header {
    background-color: #ffffff;
    padding: 12px 0;
    color: #111827;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.oz-center-image {
    height: 200px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px !important;
    width: auto !important;
    max-width: none;
    object-fit: contain;
}

/* Bouton hamburger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #111827;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Menu latéral pour desktop - activé via hamburger */
@media (min-width: 769px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        overflow-y: auto;
        display: flex;
    }

    .nav.active {
        right: 0;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    .nav a {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        padding: 16px 24px !important;
        width: 100% !important;
        border-bottom: 1px solid #e5e7eb;
        text-align: left;
        display: block !important;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .nav a:hover {
        background-color: #f9fafb;
        text-decoration: none;
        color: #f97316;
    }

    .nav .lang-switcher {
        margin-left: 0 !important;
        padding: 16px 24px !important;
        border-top: 1px solid #e5e7eb;
        border-left: none !important;
        border-bottom: none;
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .nav .lang-switcher a {
        display: inline-block !important;
        padding: 8px 16px !important;
        margin: 0 !important;
        border: none !important;
        border-bottom: none !important;
        border-radius: 4px;
        background-color: transparent;
        color: #111827 !important;
        text-decoration: none !important;
        font-weight: 500;
        transition: all 0.2s;
        width: auto !important;
        text-align: center;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav .lang-switcher a:hover {
        background-color: rgba(0, 0, 0, 0.05) !important;
        text-decoration: none !important;
    }

    .nav .lang-switcher a.active {
        background-color: #f97316 !important;
        color: #fff !important;
        font-weight: 700;
    }

    .nav .lang-switcher span {
        color: rgba(0, 0, 0, 0.3) !important;
        margin: 0 4px !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.nav a {
    color: #111827;
    text-decoration: none;
    margin-left: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.nav a:hover {
    text-decoration: underline;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-switcher a {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.lang-switcher a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.lang-switcher a.active {
    background-color: #f97316;
    color: #fff;
    font-weight: 700;
}

.lang-switcher span {
    color: rgba(0, 0, 0, 0.3);
}

.site-main {
    padding: 32px 0 48px;
    width: 100%;
    box-sizing: border-box;
}

.site-footer {
    background-color: #f9fafb;
    color: #6b7280;
    padding: 40px 0 20px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #e5e7eb;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3 {
    color: #111827;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.footer-section p {
    margin: 8px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.phone-button,
.email-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin: 8px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #111827;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.phone-button:hover,
.email-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.phone-button:active,
.email-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.phone-icon,
.email-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.phone-text,
.email-text {
    direction: ltr;
    unicode-bidi: embed;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    color: #9ca3af;
    font-size: 0.85rem;
}

.phone-button,
.email-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin: 8px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #111827;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.phone-button:hover,
.email-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.phone-button:active,
.email-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.phone-icon,
.email-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.phone-text,
.email-text {
    direction: ltr;
    unicode-bidi: embed;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    background: radial-gradient(circle at top left, #dbeafe 0, #bfdbfe 40%, #eff6ff 100%);
    color: #0f172a;
    border-radius: 24px;
    padding: 40px 32px;
    margin-bottom: 40px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.5);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    margin-top: 0;
    font-size: 2.6rem;
    letter-spacing: 0.04em;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-content .badge {
    align-self: flex-start;
}

.hero-content h1 {
    margin-bottom: 8px;
}

.hero-content p {
    margin: 0;
    line-height: 1.7;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 250, 252, 0.2), transparent);
    filter: blur(4px);
}

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px 22px;
    max-width: 260px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.6);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.hero-card-title {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
    font-size: 1rem;
}

.hero-card-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.4);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.85rem;
    opacity: 0.9;
    white-space: nowrap;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 0.9rem;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-primary,
.btn-secondary,
.btn-link {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: #f97316;
    color: #fff;
}

.btn-primary:hover {
    background-color: #ea580c;
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #111827;
}

.btn-link {
    background: none;
    color: #6b7280;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.product-card-link {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.product-card-link:hover {
    text-decoration: none;
}

.product-card a {
    color: inherit;
    text-decoration: none;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-image {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background-color: #f9fafb;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: opacity 0.3s ease;
}

/* Sélecteur de couleur rapide sur les cartes */
.product-colors-quick {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.product-colors-quick {
    pointer-events: none;
}

.product-card:hover .product-colors-quick {
    opacity: 1;
    pointer-events: all;
}

.color-pill-quick {
    position: relative;
    z-index: 10;
    pointer-events: all;
}

.color-pills-quick {
    display: flex;
    gap: 6px;
    align-items: center;
}

.color-pill-quick {
    background: none;
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 0;
    position: relative;
    z-index: 10;
    pointer-events: all;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    z-index: 11;
    pointer-events: all;
}

.color-pill-quick:hover {
    transform: scale(1.15);
    border-color: rgba(0, 0, 0, 0.2);
}

.color-pill-quick.active {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.color-ball-quick {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.placeholder-image {
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 2 / 3;
    color: #4b5563;
    font-weight: 600;
}

.product-info {
    padding: 10px 12px 12px;
}

.product-info-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
}

.product-info-header h2 {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
}

.product-category-badge {
    padding: 4px 10px;
    border-radius: 12px;
    background-color: #eff6ff;
    color: #1d4ed8;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.2;
}

.product-image {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background-color: #f9fafb;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.price {
    color: #f97316;
    font-weight: 700;
    margin-top: 4px;
    margin-bottom: 4px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.price-original {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.9em;
    font-weight: 500;
}

.price-discounted {
    color: #f97316;
    font-weight: 700;
    font-size: 1.1em;
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.section {
    margin-top: 32px;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 1.4rem;
    margin: 0;
}

.section-subtitle {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.category-tabs-section {
    padding: 20px 0;
    margin-bottom: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-tabs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
    padding: 3px;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.9);
    width: fit-content;
}

.category-tabs a {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #e5e7eb;
    opacity: 0.8;
}

.category-tabs a.active {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #111827;
    opacity: 1;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.benefit-card {
    background: #ffffff;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.benefit-card h3 {
    margin-top: 0;
    margin-bottom: 6px;
}

.benefit-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.benefit-card h3 {
    font-weight: 700;
}

/* Animations keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
    }
}

.product-detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.product-detail-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f9fafb;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-detail-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.product-detail-image:hover::before {
    opacity: 1;
}

.product-detail-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    position: relative;
    z-index: 0;
}

.product-detail-image:hover img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.product-meta {
    margin-bottom: 20px;
    margin-top: 0;
    padding: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: scaleIn 0.6s ease-out 0.5s both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-meta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-meta:hover::before {
    left: 100%;
}

.product-meta:hover {
    border-color: #f97316;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.product-meta > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-sizes {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 4px 0;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    pointer-events: none;
    margin-top: 4px;
    font-size: 0.85rem;
    font-size: 0.85rem;
    color: #2563eb;
}

.option-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    margin-top: 8px;
}

.pill {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.pill input[type="checkbox"],
.pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid #d1d5db;
    background-color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    min-width: 44px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Effet hover pour les pills génériques (tailles) uniquement */
.pill:not(.color-pill) span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.pill:not(.color-pill):hover span::before {
    width: 300px;
    height: 300px;
}

/* Hover pour les pills génériques (tailles) - gardent le bleu */
.pill:not(.color-pill):hover span {
    border-color: #2563eb;
    background-color: #eff6ff;
}

/* Styles pour les pills génériques (tailles) - gardent le bleu */
.pill:not(.color-pill) input[type="checkbox"]:checked + span,
.pill:not(.color-pill) input[type="radio"]:checked + span {
    border-color: #2563eb;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transform: scale(1.05);
    animation: pulse 2s infinite;
}

/* Styles pour les color-pill - gardent la couleur originale */
/* Cibler uniquement .color-label, pas .color-ball */
.color-pill input[type="checkbox"]:checked ~ .color-label,
.color-pill input[type="radio"]:checked ~ .color-label {
    color: #111827 !important;
    font-weight: 700;
    transform: scale(1.05);
}

/* Le .color-ball garde sa couleur originale définie dans le style inline */
/* Ne pas appliquer de background-color sur .color-ball */

/* S'assurer que .color-ball garde sa couleur originale même quand sélectionné */
/* Le background-color est défini dans le style inline et a la priorité */

/* Empêcher les styles .pill génériques de s'appliquer aux color-pill */
.color-pill span::before {
    display: none !important;
}

.color-pills {
    gap: 10px;
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.color-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row;
    min-width: auto;
    padding: 8px 12px;
    border-radius: 20px;
    border: 2px solid #d1d5db;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.color-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.color-pill:hover::before {
    left: 100%;
}

.color-pill .color-ball {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.2s ease;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.color-pill:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background-color: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.color-pill:has(input:checked) {
    border-color: rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.color-pill input:checked ~ .color-ball {
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2), 0 0 0 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
    border-width: 3px;
}

.color-pill input:checked ~ .color-label {
    color: #111827;
    font-weight: 700;
    transform: scale(1.05);
}

.color-pill .color-label {
    font-size: 0.85rem;
    color: #374151;
    margin: 0;
    white-space: nowrap;
}

.color-pill span:not(.color-ball):not(.color-label) {
    display: none;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-detail-info h1 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.75rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.product-detail-info .price-container {
    margin: 0;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-detail-info .price-discounted {
    font-size: 1.5rem;
    color: #f97316;
    font-weight: 700;
}

.product-detail-info .price-original {
    font-size: 1.2rem;
}

.product-detail-info .discount-badge {
    font-size: 0.85rem;
    padding: 6px 12px;
}

.product-detail-info .price-container::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 2px;
    animation: scaleIn 0.5s ease-out 0.5s both;
    transform-origin: left;
}

.product-detail-info p {
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.product-header {
    margin-bottom: 16px;
}

.product-description {
    margin-bottom: 24px;
    margin-top: 0;
    padding: 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #f97316;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    width: 100%;
}

.add-to-cart-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.add-to-cart-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.add-to-cart-form input[type="number"] {
    max-width: 120px;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-to-cart-form input[type="number"]:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    transform: scale(1.02);
}

.add-to-cart-form .btn-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 8px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.add-to-cart-form .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart-form .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

.add-to-cart-form .btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.add-to-cart-form .btn-primary::after {
    content: '🛒';
    margin-left: 8px;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Formulaire de commande intégré sur la page produit */
.order-form-section {
    margin-top: 32px;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out 0.7s both;
    transition: all 0.3s ease;
}

.order-form-section:hover {
    border-color: #f97316;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
}

.order-form-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin: 0 0 16px 0;
    color: #111827;
    font-weight: 700;
}

.order-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge-delivery-small,
.badge-payment-small {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-delivery-small {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #059669;
    border: 1px solid #6ee7b7;
}

.badge-payment-small {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    border: 1px solid #93c5fd;
}

.customer-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.customer-form-fields .form-group {
    margin-bottom: 0;
    animation: fadeInUp 0.4s ease-out;
}

.customer-form-fields .form-group:nth-child(1) { animation-delay: 0.1s; }
.customer-form-fields .form-group:nth-child(2) { animation-delay: 0.2s; }
.customer-form-fields .form-group:nth-child(3) { animation-delay: 0.3s; }
.customer-form-fields .form-group:nth-child(4) { animation-delay: 0.4s; }

input[type="number"],
input[type="text"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-family: inherit;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.cart-table th,
.cart-table td {
    padding: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.cart-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cart-summary {
    margin-top: 16px;
}

.cart-total {
    font-size: 1.1rem;
}

/* Header Checkout */
.checkout-header {
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out;
}

.checkout-header h1 {
    font-size: 2.5rem;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-delivery,
.badge-payment {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.badge-delivery {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #059669;
    border: 2px solid #6ee7b7;
}

.badge-payment {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    border: 2px solid #93c5fd;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.checkout-form {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.checkout-form:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: #f97316;
}

.form-section {
    margin-bottom: 32px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin: 0 0 24px 0;
    color: #111827;
    font-weight: 700;
}

.form-icon {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

.form-group {
    margin-bottom: 24px;
    animation: fadeInUp 0.4s ease-out;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }

.form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.label-text {
    display: inline-block;
}

.label-required {
    color: #f97316;
    font-weight: 700;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
    color: #111827;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
    background-color: #ffffff;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
    opacity: 0.7;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e5e7eb;
}

.btn-checkout {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-checkout:hover::before {
    width: 400px;
    height: 400px;
}

.btn-checkout:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

.btn-checkout:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-icon {
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.form-note {
    margin-top: 16px;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

.checkout-summary {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    position: sticky;
    top: 20px;
    height: fit-content;
    animation: fadeInRight 0.6s ease-out 0.4s both;
    transition: all 0.3s ease;
}

.checkout-summary:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.checkout-summary h2 {
    margin: 0 0 20px 0;
    font-size: 1.5rem;
    color: #111827;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.checkout-summary ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px 0;
}

.checkout-summary li {
    margin-bottom: 12px;
    padding: 12px;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #f97316;
    transition: all 0.2s ease;
}

.checkout-summary li:hover {
    background-color: #f3f4f6;
    transform: translateX(4px);
}

.full-width {
    width: 100%;
}

.order-success {
    background-color: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: 12px;
    padding: 20px 18px;
}

.admin-form {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-section h2 {
    margin-top: 0;
}

.color-picker {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.color-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.color-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 20px;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    transition: all 0.2s ease;
}

.color-pill:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background-color: #f9fafb;
}

.color-pill input[type="checkbox"] {
    display: none;
}

.color-pill input[type="checkbox"]:checked + .color-ball {
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2), 0 0 0 6px rgba(0, 0, 0, 0.1);
    border-width: 3px;
}

.color-ball {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.2s ease;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.color-name {
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
}

.color-pill input[type="checkbox"]:checked ~ .color-name {
    color: #111827;
    font-weight: 600;
}

#colors-input {
    margin-top: 4px;
}

/* Styles responsive pour le menu hamburger avec contenu vertical */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Afficher le bouton hamburger */
    }

    .header-inner {
        flex-direction: row;
        gap: 8px;
        position: relative;
    }

    .header-center-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .oz-center-image {
        height: 160px;
        max-width: 300px;
    }

    .category-tabs-section {
        padding: 16px 0;
    }

    .category-tabs {
        gap: 4px;
        padding: 2px;
    }

    .category-tabs a {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column !important; /* Force le contenu vertical */
        align-items: stretch !important; /* Étire les éléments sur toute la largeur */
        padding: 80px 0 24px 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    /* Overlay sombre quand le menu est ouvert */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    .nav a {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        padding: 16px 24px !important;
        width: 100% !important;
        border-bottom: 1px solid #e5e7eb;
        font-size: 16px;
        display: block !important; /* Force l'affichage vertical */
        text-align: left;
        box-sizing: border-box;
    }

    /* RTL pour le menu mobile */
    [dir="rtl"] .nav a {
        text-align: right;
    }

    .nav a:last-of-type {
        border-bottom: none;
    }

    .nav a:hover {
        text-decoration: none;
        color: #f97316;
        background-color: #f9fafb;
    }

    .lang-switcher {
        margin-left: 0 !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        border-left: none !important;
        border-top: 1px solid #e5e7eb;
        padding-top: 16px;
        margin-top: 8px;
        width: 100% !important;
        box-sizing: border-box;
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .lang-switcher a {
        display: inline-block !important;
        padding: 8px 16px !important;
        margin: 0 !important;
        border: none !important;
        border-bottom: none !important;
        width: auto !important;
        text-align: center;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .lang-switcher span {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .product-detail,
    .checkout-layout,
    .hero {
        grid-template-columns: 1fr;
    }


    /* Checkout Mobile */
    .checkout-header h1 {
        font-size: 2rem;
    }

    .checkout-badges {
        flex-direction: column;
    }

    .checkout-form {
        padding: 24px 20px;
    }

    .form-section-title {
        font-size: 1.3rem;
    }

    .form-input,
    .form-textarea {
        padding: 12px 16px;
        font-size: 16px; /* Évite le zoom sur iOS */
    }

    .btn-checkout {
        padding: 16px 20px;
        font-size: 1.1rem;
    }

    .checkout-summary {
        position: relative;
        top: 0;
        margin-top: 24px;
    }

    /* Page produit mobile - meilleure organisation */
    .product-detail {
        gap: 20px;
    }
    
    .product-detail-image {
        max-width: 100%;
    }
    
    .product-description {
        max-width: 100%;
    }
    
    .product-detail-info {
        max-width: 100%;
    }

    .product-detail-info h1 {
        font-size: 1.5rem;
    }

    .product-detail-info .price-discounted {
        font-size: 1.3rem;
    }

    .product-detail-info .price-original {
        font-size: 1rem;
    }

    .product-detail-info .discount-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .product-meta {
        padding: 16px;
        gap: 16px;
    }

    .form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .option-pills {
        gap: 8px;
    }

    .pill span {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    .color-pills {
        gap: 8px;
        justify-content: flex-start;
    }

    .color-pill {
        padding: 6px 10px;
        gap: 6px;
    }

    .color-pill .color-ball {
        width: 20px;
        height: 20px;
    }

    .color-pill .color-label {
        font-size: 0.8rem;
    }

    .add-to-cart-form {
        gap: 16px;
    }

    .add-to-cart-form .btn-primary {
        padding: 12px 20px;
    }

    /* Formulaire de commande mobile */
    .order-form-section {
        padding: 20px 16px;
        margin-top: 24px;
    }

    .order-form-title {
        font-size: 1.2rem;
    }

    .order-badges {
        flex-direction: column;
        gap: 8px;
    }

    .customer-form-fields {
        gap: 16px;
    }

    .customer-form-fields .form-input,
    .customer-form-fields .form-textarea {
        font-size: 16px; /* Évite le zoom sur iOS */
    }

    /* Hero mobile - meilleure organisation */
    .hero {
        padding: 24px 20px;
        gap: 20px;
        text-align: center;
    }

    .hero-content {
        order: 1;
        gap: 14px;
    }

    .hero-visual {
        order: 2;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .hero p {
        line-height: 1.7;
        margin-bottom: 0;
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 12px;
    }

    .hero-note {
        text-align: center;
        margin-top: 4px;
        font-size: 0.8rem;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 16px;
        text-align: left;
    }

    .hero-highlights li {
        width: 100%;
        padding: 6px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
    }

    .hero-card {
        margin: 0 auto;
        max-width: 100%;
        padding: 18px 20px;
    }

    .badge {
        margin-bottom: 8px;
    }

    /* 2 articles par ligne sur tablette et mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 32px;
        width: 100%;
        box-sizing: border-box;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Sélecteur de couleur toujours visible sur mobile */
    .product-colors-quick {
        opacity: 1 !important;
        pointer-events: all !important;
        bottom: 8px;
        padding: 6px 10px;
        background-color: rgba(255, 255, 255, 0.98);
    }

    .color-pill-quick {
        width: 24px;
        height: 24px;
    }

    .color-ball-quick {
        width: 18px;
        height: 18px;
    }

    .color-pills-quick {
        gap: 4px;
    }
}

/* Bannière Promotions */
.promo-banner {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    padding: 24px 16px;
    margin-bottom: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.promo-content {
    max-width: 1100px;
    margin: 0 auto;
}

.promo-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-desc {
    font-size: 16px;
    margin: 0;
    opacity: 0.95;
}

.products-first {
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Popup WhatsApp */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    pointer-events: none;
    border: 2px solid #25D366;
}

.whatsapp-popup.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.whatsapp-popup-content {
    padding: 20px;
    position: relative;
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.whatsapp-popup-close:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.whatsapp-popup-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.whatsapp-popup-header svg {
    flex-shrink: 0;
}

.whatsapp-popup-header h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.whatsapp-popup-header p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.whatsapp-popup-button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #25D366;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-popup-button:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Bouton WhatsApp flottant */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

/* Responsive pour le popup WhatsApp */
@media (max-width: 768px) {
    .whatsapp-popup {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 90px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }

    .phone-button,
    .email-button {
        padding: 8px 14px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .promo-title {
        font-size: 22px;
    }

    .promo-desc {
        font-size: 14px;
    }
}

/* Section Produits Similaires */
.similar-products-section {
    margin-top: 60px;
    padding: 40px 0;
    background-color: #f9fafb;
}

.similar-products-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 32px;
    color: #111827;
    font-weight: 700;
}

.similar-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.similar-products-section .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.similar-products-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.similar-products-section .product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.similar-products-section .product-image {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #f3f4f6;
    position: relative;
}

.similar-products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.similar-products-section .product-info {
    padding: 16px;
}

.similar-products-section .product-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #111827;
    font-weight: 600;
}

.similar-products-section .price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.similar-products-section .price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.9rem;
}

.similar-products-section .price-discounted {
    color: #f97316;
    font-weight: 700;
    font-size: 1.2rem;
}

.similar-products-section .discount-badge {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .similar-products-section {
        padding: 24px 0;
        margin-top: 40px;
    }
    
    .similar-products-section h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    
    .similar-products-section .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
}


