 :root {
            --primary: #000000;
            --secondary: #333333;
            --accent: #ae8e24e0;
            --light: #FFFFFF;
            --dark: #583310;
            --success: #364f1e;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color: #f8f9fa;
            overflow-x: hidden;
        }

        .page-3d {
            width: 100vw;
            height: 100vh;
            transform: rotateY(85deg);
            scale: (0.95);
            transform-origin: center;
        }

        /* Header */
        header {
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .top-bar {
            background-color: var(--primary);
            color: var(--accent);
            padding: 8px 0;
            text-align: center;
            font-size: 14px;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            cursor: pointer;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 15px;
        }

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

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

        .nav-icons {
            display: flex;
            align-items: center;
        }

        .nav-icons div {
            margin-left: 20px;
            cursor: pointer;
            font-size: 18px;
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: var(--accent);
            color: var(--primary);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
        }

        .search-container {
            position: relative;
            margin-right: 20px;
        }

        .search-container input {
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid #ddd;
            width: 200px;
            font-size: 14px;
        }

        .search-container i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 24px;
        }

        /* Floating buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: row;
            gap: 15px;
            z-index: 999;
        }

        .floating-btn {
            position: relative;
            width: 60px;
            height: 60px;
            background-color: var(--accent);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.3s;
        }

        .floating-btn:hover {
            transform: scale(1.1);
        }

        .floating-cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--primary);
            color: var(--accent);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background-color: var(--success);
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            opacity: 0;
            visibility: hidden;
        }

        .notification.show {
            transform: translateX(0);
            opacity: 1;
            visibility: visible;
        }

        /* Page container */
        .page-container {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .page-container.active {
            display: block;
        }

        /* Hero Carousel */
        .carousel {
            position: relative;
            height: 450px;
            overflow: hidden;
        }

        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .carousel-item {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-caption {
            position: absolute;
            bottom: 50%;
            transform: translateY(50%);
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            padding: 0 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .carousel-caption h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .carousel-caption p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .carousel-btn {
            display: inline-block;
            background-color: var(--accent);
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
            animation: pulse 1s infinite;
        }

        .carousel-btn:hover {
            background-color: var(--primary);
            color: var(--accent);
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            }

            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: background-color 0.3s;
        }

        .carousel-control:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .carousel-control.prev {
            left: 20px;
        }

        .carousel-control.next {
            right: 20px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carousel-indicator.active {
            background-color: var(--accent);
        }

        /* Categories */
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: var(--primary);
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 0 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-card {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s;
            box-shadow: 0 5px 15px #9d8e1ac3;
        }

        .category-card:hover {
            transform: translateY(-10px);
        }

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

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

        .category-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px;
            text-align: center;
            font-weight: 600;
        }

        /* Products */
        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            padding: 0 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px #9d8e1ac3;
        }

        .product-img {
            height: 250px;
            /* Augmenté pour mieux afficher les images */
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
            /* Empêche la réduction de la hauteur */
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* Changé de 'cover' à 'contain' pour voir l'image entière */
            transition: transform 0.5s;
            background-color: #f8f8f8;
            /* Fond pour les images avec transparence */
            padding: 10px;
            /* Espace autour de l'image */
        }

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

        .product-info {
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            /* Prend l'espace disponible */
        }

        .product-name {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .product-price {
            color: var(--accent);
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .product-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            /* Pousse les actions vers le bas */
        }

        .add-to-cart {
            width: 100%;
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .add-to-cart:hover {
            background-color: var(--accent);
            color: var(--primary);
        }

        .wishlist {
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }

        .wishlist:hover,
        .wishlist.active {
            color: #e74c3c;
        }

        /* Share button styles */
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            margin-left: 10px;
        }

        .share-btn:hover {
            background-color: var(--accent);
            color: var(--primary);
        }

        .share-product {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            padding: 10px;
            background-color: #f5f5f5;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .share-product:hover {
            background-color: var(--accent);
            color: var(--primary);
        }

        .share-product i {
            margin-right: 10px;
        }

        /* Share modal */
        .share-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1003;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .share-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .share-modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            position: relative;
        }

        .close-share {
            position: absolute;
            top: 15px;
            right: 15px;
            cursor: pointer;
            font-size: 20px;
        }

        .share-link-container {
            display: flex;
            margin: 20px 0;
        }

        .share-link-input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px 0 0 5px;
            font-family: 'Montserrat', sans-serif;
        }

        .copy-link-btn {
            padding: 10px 15px;
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: 600;
        }

        .social-share {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .social-share a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            transition: transform 0.3s;
        }

        .social-share a:hover {
            transform: scale(1.1);
        }

        .social-share .facebook {
            background-color: #3b5998;
        }

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

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

        /* Filters */
        .filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0;
            padding: 0 5%;
        }

        .filter-btn {
            padding: 8px 20px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            color: var(--dark);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* Mobile Search */
        .mobile-search {
            display: none;
            padding: 0 5%;
            margin-bottom: 20px;
        }

        .mobile-search-container {
            position: relative;
            width: 100%;
        }

        .mobile-search-container input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 20px;
            border: 1px solid #ddd;
            font-size: 16px;
            /* Empêche le zoom sur iOS */
        }

        .mobile-search-container i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary);
        }

        /* Product Detail Page */
        .product-detail {
            display: flex;
            flex-wrap: wrap;
            padding: 60px 5%;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
            position: relative;
        }

        .close-detail {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }

        .product-gallery {
            flex: 1;
            min-width: 300px;
        }

        .main-image {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: zoom-in;
            position: relative;
        }

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

        .main-image.zoomed {
            cursor: zoom-out;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1002;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-image.zoomed img {
            width: auto;
            height: auto;
            max-width: 90%;
            max-height: 90%;
            transform: scale(1.5);
        }

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

        .thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .thumbnail:hover,
        .thumbnail.active {
            opacity: 1;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info-detail {
            flex: 1;
            min-width: 300px;
        }

        .product-info-detail h1 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            text-align: center;
            margin-bottom: 15px;
        }

        .product-price-detail {
            color: var(--accent);
            text-align: center;
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .product-description {
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.6;
        }

        .product-options {
            margin-bottom: 30px;
        }

        .option-group {
            margin-bottom: 15px;
        }

        .option-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            background-color: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
            color: var(--dark);
        }

        .quantity-input {
            width: 60px;
            text-align: center;
            margin: 0 10px;
            border: 1px solid #eee;
            border-radius: 5px;
            padding: 10px;
            font-size: 16px;
            color: var(--dark);
        }

        .add-to-cart-detail {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-bottom: 20px;
        }

        .add-to-cart-detail:hover {
            background-color: var(--primary);
            color: var(--light);
        }

        .wishlist-detail {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            cursor: pointer;
        }

        .wishlist-detail i {
            margin-right: 10px;
        }

        /* Mobile menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100vh;
            background-color: white;
            z-index: 1002;
            padding: 20px;
            transition: left 0.3s ease-in-out;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.open {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .mobile-menu-links {
            list-style: none;
        }

        .mobile-menu-links li {
            margin-bottom: 15px;
        }

        .mobile-menu-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 18px;
            display: block;
            padding: 10px 0;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* Newsletter */
        .newsletter {
            background-color: var(--primary);
            color: white;
            padding: 80px 5%;
            text-align: center;
            margin-top: 80px;
        }

        .newsletter h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
        }

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

        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 16px;
            /* Empêche le zoom sur iOS */
        }

        .newsletter-form button {
            padding: 0 30px;
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            text-align: center;
            color: white;
            padding: 60px 5% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            /* Ajouté pour centrer le texte */
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Centre le contenu horizontalement */
            text-align: center;
            /* Centre le texte */
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--accent);
            text-align: center;
            /* Centre le titre */
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            /* Centre la ligne décorative */
            transform: translateX(-50%);
            /* Centre la ligne décorative */
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Centre les éléments de liste */
        }

        .footer-column ul li {
            margin-bottom: 10px;
            text-align: center;
            /* Centre le texte des éléments de liste */
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--accent);
        }

        .footer-column p {
            text-align: center;
            /* Centre les paragraphes */
            max-width: 400px;
            /* Limite la largeur pour une meilleure lisibilité */
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
            /* Centre les icônes sociales */
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--accent);
        }

        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Cart Modal */
        .cart-modal {
            position: fixed;
            top: 0;
            right: -400px;
            width: 380px;
            height: 100vh;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: right 0.4s ease-in-out;
            overflow-y: auto;
        }

        .cart-modal.open {
            right: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #eee;
        }

        .cart-header h2 {
            font-size: 24px;
            margin: 0;
        }

        .close-cart {
            cursor: pointer;
            font-size: 20px;
        }

        .cart-items {
            padding: 20px;
        }

        .cart-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .cart-item-img {
            width: 80px;
            height: 80px;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 15px;
        }

        .cart-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: var(--accent);
            font-weight: 700;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }

        .cart-quantity-btn {
            width: 25px;
            height: 25px;
            border: 1px solid #ddd;
            border-radius: 50%;
            cursor: pointer;
            color: var(--dark);
        }

        .cart-quantity-input {
            width: 40px;
            text-align: center;
            margin: 0 10px;
            border: 1px solid #eee;
            border-radius: 5px;
            padding: 5px;
            color: var(--dark);
        }

        .remove-item {
            color: #999;
            cursor: pointer;
            margin-left: 15px;
        }

        .cart-total {
            padding: 20px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .cart-total-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            align-items: center;
        }

        .cart-total-label {
            font-weight: 600;
        }

        .cart-total-amount {
            font-weight: 700;
            color: var(--accent);
        }

        .checkout-btn {
            display: block;
            width: 100%;
            padding: 15px;
            margin-top: 20px;
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .checkout-btn:hover {
            background-color: var(--primary);
            color: var(--light);
        }

        /* Checkout Form */
        .checkout-form {
            padding: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            /* Empêche le zoom sur iOS */
        }

        /* About Page */
        .about-header {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('src/img/lunette 1.jpg');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 60px;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            padding: 0 5%;
            max-width: 1200px;
            margin: 0 auto 60px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .values {
            padding: 0 5%;
            max-width: 1200px;
            margin: 0 auto 60px;
        }

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

        .value-item {
            text-align: center;
            padding: 30px;
            background-color: white;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(160, 138, 43, 0.648);
            transition: transform 0.3s;
        }

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

        .value-item i {
            font-size: 48px;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .value-item h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .value-item p {
            color: var(--secondary);
            line-height: 1.6;
        }

        /* Contact Page */
        .contact-header {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('src/img/lunette 1.jpg');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 60px;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            padding: 0 5%;
            max-width: 1200px;
            margin: 0 auto 60px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-item i {
            font-size: 20px;
            color: var(--accent);
            margin-right: 15px;
            margin-top: 5px;
        }

        .contact-item p {
            line-height: 1.6;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .contact-form h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .map {
            height: 400px;
            padding: 0 5%;
            max-width: 1200px;
            margin: 0 auto 60px;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Responsive */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .carousel-caption h2 {
                font-size: 36px;
            }

            .categories {
                grid-template-columns: repeat(2, 1fr);
            }

            .products {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .carousel {
                height: 500px;
            }

            .category-card {
                height: 250px;
            }

            .products {
                grid-template-columns: repeat(2, 1fr);
            }

            .cart-modal {
                width: 100%;
                right: -100%;
            }

            .nav-icons div:not(.cart-icon) {
                display: none;
            }

            .search-container {
                display: none;
            }

            .mobile-search {
                display: block;
            }

            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .about-content,
            .contact-container {
                flex-direction: column;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .carousel-caption h2 {
                font-size: 28px;
            }

            .carousel-caption p {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .categories {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .category-card {
                height: 200px;
            }

            .products {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                padding: 0 3%;
            }

            .product-card {
                margin-bottom: 15px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: 30px;
                margin-bottom: 10px;
            }

            .newsletter-form button {
                border-radius: 30px;
                padding: 15px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .filter-btn {
                color: var(--dark);
            }
        }