 
        :root {
            --primary: #ff4d6d;
            --primary-dark: #d90429;
            --secondary: #7209b7;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --gray-dark: #e0e0e0;
            --success: #38b000;
            --gold: #D4AF37;
            --warning: #ffc107;
            --danger: #dc3545;
            --info: #17a2b8;

        }
        .page-link {
            margin-left: 5px;
            margin-right: 6px;
        }
        .pagination .page-link {
        color: #1a1a2e;
        border-radius: 4px;
        }
        .pagination .page-item.active .page-link {
        background-color: #ff4d6d;
        border-color: #ff4d6d;
        color: white;
        }
        .float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 60px;
        right: 40px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 39px;
        box-shadow: 2px 2px 3px #999;
        z-index: 99900;
        padding-top: 1px;
        }
        .plus {
            background: #75b02d !important;
            color: white !important;
        }
        .min {
            background: #d31c1c !important;
            color: white !important;
        }
           
        .swal2-title{
            font-size: 17px !important;
            margin-top: -35px !important;
          }
          .swal2-popup{
            width: 300px !important;
          height: 200px !important;
          }
          .swal2-icon {
            font-size: 13px !important;
            margin-bottom: 0px !important;
          }
          div:where(.swal2-icon).swal2-warning {
            font-size: 10px !important;
            margin-bottom: 31px !important;
            margin-top: 14px !important;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.6;
            color: var(--dark);
        }
      /* About Sections */
        .about-section {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 80px;
        }

    
        .section-title h2 {
            font-size: 25px;
            margin-bottom: 20px;
            text-transform: uppercase !important;
        }

        .about-text p {
            margin-bottom: 20px;
            color: #555;
            text-align: justify;
        }

        /*****header page****/
        .hed-hero {
            background: linear-gradient(to right, #FF4D6D, #AC3B56, #A63954), url('/images/contact-bg.jpg') no-repeat center center/cover;
            min-height: 120px;
            color: white;
            display: flex;
            align-items: center;
            margin-bottom: 23px;
        }
        /* Breadcrumb */

        .breadcrumb {
            padding-top: 20px;
            background-color: #f6f9fb;
            margin-bottom: 40px;
        }

        .breadcrumb ul {
            display: flex;
        }

        .breadcrumb li {
            margin-right: 15px;
            position: relative;
            color: #777;
        }

        .breadcrumb li:not(:last-child)::after {
            content: '/';
            position: revert !important;
            right: -10px;
        }

        .breadcrumb li a:hover {
            color: var(--primary);
        }

        .breadcrumb li.active {
            color: #181717;
            font-weight: 500;
        }
        .page-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-title h1 {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .page-title p {
            color: #777;
            max-width: 700px;
            margin: 0 auto;
        }
        /* Header Premium */
        .header {
            background-color: white;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            height: 80px;
        }
        

        .logo  {
            z-index: 999999;
        }
        .logo a {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            letter-spacing: 1px;
        }

        .logo a span {
            color: var(--primary);
        }

        .logo img {
            height: 65px;
            margin-right: 10px;
        }

        /* Navigation Premium */
        .navbar {
            display: flex;
            align-items: center;
        }
        .navbar ul {
            list-style: none !important;
        }


        .navbar > ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar > ul > li {
            position: relative;
            margin: 0 5px;
        }

        .navbar > ul > li > a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            padding: 30px 15px;
            display: block;
            position: relative;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .navbar > ul > li > a:hover {
            color: var(--primary);
        }

        .navbar > ul > li > a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .navbar > ul > li:hover > a:after {
            width: 100%;
        }

        /* Sous-menus Premium */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            width: 220px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 8px 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s;
            z-index: 1000;
            padding: 10px 0;
        }

        .navbar > ul > li:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu li {
            position: relative;
        }

        .submenu li a {
            padding: 12px 25px;
            color: var(--gray);
            display: block;
            transition: all 0.3s;
            font-size: 13px;
            border-left: 3px solid transparent;
        }

        .submenu li a:hover {
            background: #fff5f7;
            color: var(--primary);
            border-left: 3px solid var(--primary);
            padding-left: 22px;
        }

        /* Sous-sous-menus Premium */
        .sub-submenu {
            position: absolute;
            left: 100%;
            top: -10px;
            background: white;
            width: 220px;
            box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 0 8px 8px 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(20px);
            transition: all 0.3s;
            padding: 10px 0;
        }

        .submenu li:hover .sub-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        /* Icônes Header */
        .header-icons {
            display: flex;
            align-items: center;
        }

        .header-icons a {
            margin-left: 20px;
            color: var(--dark);
            font-size: 18px;
            position: relative;
            text-decoration: none;
            transition: all 0.3s;
        }

        .header-icons a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Menu Burger Premium (Mobile) */
        .menu-toggle {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            margin-left: 20px;
            position: relative;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--dark);
            transition: all 0.3s ease-in-out;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Slider Premium */
        .hero-slider {
            position: relative;
            overflow: hidden;
            height: 700px;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-content {
            background: rgba(0, 0, 0, 0.21);
            padding: 50px;
            border-radius: 10px;
            max-width: 800px;
            margin: 0 auto;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-content h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .btn-hero {
            background: var(--primary);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: 2px solid var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
        }

        .btn-hero:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Contrôles du slider premium */
        .slider-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .slider-control:hover {
            background: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-prev {
            left: 30px;
        }

        .slider-next {
            right: 30px;
        }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .slider-dot.active {
            background: var(--primary);
            transform: scale(1.3);
            border-color: white;
        }

        /* Sections communes */
        
        .section-title {
            text-align: center;  
        }
        
        .section-title h2 {
            color: var(--dark);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            text-align: center;
            margin-bottom: 40px;
            margin-top: 40px;
            
            
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }

        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 15px auto 0;
        }

        /* Catégories */
        .categories {
            /*padding: 80px 0;*/
            background: white;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .category-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            position: relative;
        }

        .category-card:before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
            z-index: 1;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .category-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
            border-radius: 10px;
        }

        .category-card:hover img {
            transform: scale(1.05);
        }

        .category-card h3 {
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            color: white;
            font-size: 15px;
            z-index: 2;
            padding: 0 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Produits */
        .products{
            margin-bottom: 35px;
        }
        .label-product-category {
            font-size: 0.85rem;
            font-weight: 500;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
          }
          
        .card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            position: relative;
          }
      
          .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
          }
      
          .product-image-wrapper {
            aspect-ratio: 4 / 3;
            width: 100%;
            overflow: hidden;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
          }
      
          .product-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
      
          .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #d72243;
            color: white;
            padding: 5px 12px;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
          }
      
          .badge-new {
            background: #38b000;
          }
      
          .badge-sale {
            background: ff4d6d;
          }
      
          .badge-top {
            background: #ffc107;
            color: black;
          }
      
          .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
          }
      
        .card-price {
            font-size: 1rem;
            font-weight: bold;
            direction: rtl;
            text-align: center;
        }
     
        .card-price .old-price {
            text-decoration: line-through;
            color: #999;
            margin-left: 10px; /* espace entre les prix */
            font-size: 12px;
        }

        .card-price .promo-price {
            color: #e60000; /* rouge ou autre pour promo */
        }

      
        .btn-cart {
            background-color: #1a1a2e;
            color: #fff;
            transition: all 0.3s ease;
            font-size: 13px;
            
          }
      
          .btn-cart:hover {
            background-color: #ff4d6d;
            color: #fff;
            transform: translateY(-2px);
          }
        /* Newsletter */
        .newsletter {
            padding: 80px 0;
            background: var(--primary);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .newsletter .container {
            position: relative;
            z-index: 1;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            
        }

        .newsletter p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .newsletter-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            height: 60px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0 25px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }

        .newsletter-form button {
            background: var(--dark);
            color: white;
            border: none;
            padding: 0 40px;
            border-radius: 0 30px 30px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .newsletter-form button:hover {
            background: #111;
            letter-spacing: 2px;
        }

        /* Footer Professionnel */
       
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 20px;
            position: relative;
        }
        .footer-column h2 {
            font-size:19px;
        }    
       /*
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        */

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-column p {
            margin-bottom: 25px;
            color: #ddd;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }

        .social-links a:hover {
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
            padding-left: 0px;
        }

        .footer-links li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }

        .footer-links li:before {
            /*content: '→';*/
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 14px;
            opacity: 0;
            transition: all 0.3s;
        }

        .footer-links li:hover:before {
            opacity: 1;
            left: -5px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            font-size: 14px;
        }

        .footer-links a:hover {
            padding-left: 10px;
        }

        .contact-info p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .contact-info i {
            margin-right: 15px;
            color: var(--primary);
            margin-top: 3px;
            font-size: 18px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: #aaa;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom a:hover {
            color: var(--primary);
        }

        .container-contact {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .footer-column h3:dir(ltr)::after {
            left: 0;
            right: auto;
            }
        
            .footer-column h3:dir(rtl)::after {
            right: 0;
            left: auto;
            }
        /* Contact section  */
        .contact-layout {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
        }

        .contact-form {
            flex: 1;
        }

        .contact-info {
            flex: 1;
        }

        /* Form Styles */
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--gray-dark);
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        .btn-submit {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Contact Info */
        .info-card-contact {
            /*background-color: #dee1e34a;*/
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .info-card-contact h3 {
            font-size: 17px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .info-card-contact h3 i {
            margin-right: 15px;
            color: #646573;
            font-size: 28px;
        }

        .info-item {
            display: flex;
            margin-bottom: 15px;
        }

        .info-item i {
            margin-right: 15px;
            color: #646573;
            font-size: 20px;
            margin-top: 3px;
            margin-left: 15px;
        }

        .info-content-contact h4 {
            font-weight: 500;
            margin-bottom: 5px;
            font-size: 16px;
        }

        .info-content-contact p, .info-content-contact a {
            color: #777;
        }

        .info-content-contact a:hover {
            color: var(--primary);
        }

        /* Map */
        /*
        .map-container {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        */
        /*  CSS contact */
        /* css FAQ Section */
        .faq-section {
            margin-top: 60px;
            max-width: 600px;
            margin: auto;
        }

        .faq-title {
            font-size: 28px;
            text-align: center;
            margin-bottom: 30px;
        }

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--gray-dark);
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            background-color: #f4f7f9;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background-color: #eee;
        }

        .faq-question i {
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-item.active .faq-question {
            background-color: var(--primary);
            color: white;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 20px;
        }

        /* Responsive  contact*/
        @media (max-width: 768px) {
            .contact-layout {
                flex-direction: column;
            }
            
            .info-card-contact {
                padding: 20px;
            }
        }
        /*********end section contact*****************/
        /* Responsive */
        @media (max-width: 1200px) {
            
            .hero-content h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }
                
            .hero-slider {
                height: 600px;
            }
            
            .hero-content {
                padding: 40px;
            }
            
            .hero-content h2 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .navbar > ul > li > a {
                padding: 25px 12px;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                position: fixed;
                top: 0;
                left: -100%;
                width: 300px;
                height: 100vh;
                background: white;
                box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
                transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                padding-top: 100px;
                z-index: 1000;
            }

            .navbar.active {
                left: 0;
            }

            .navbar ul {
                flex-direction: column;
                padding: 0 30px;
                width: 100%;
                /****abdo****/
               /* margin-top:-494px;*/
            }

            .navbar ul li {
                margin: 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            .navbar ul li a {
                padding: 15px 0 !important;
                /***abdo**/
                text-align: center;
            }

            .submenu, .sub-submenu {
                position: static !important;
                width: 100% !important;
                box-shadow: none !important;
                display: none;
                margin-left: 0 !important;
                padding: 0 !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                border-top: 1px solid rgba(0, 0, 0, 0.05);
            }

            .submenu li a, .sub-submenu li a {
                padding-left: 30px !important;
            }

            .sub-submenu {
                border-left: 3px solid rgba(0, 0, 0, 0.05);
            }

            .menu-toggle {
                display: flex;
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-slider {
                height: 500px;
            }
            
            .hero-content {
                padding: 30px;
                width: 90%;
            }
            
            .hero-content h2 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .slider-control {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .slider-prev {
                left: 15px;
            }
            
            .slider-next {
                right: 15px;
            }
            
            .newsletter-form {
                flex-direction: column;
                height: auto;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                border-radius: 30px !important;
                width: 100%;
                height: 50px;
            }
            
            .newsletter-form button {
                margin-top: 15px;
                padding: 0 !important;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

       @media (min-width: 0px) and (max-width: 576px) {
            .card-title {
                font-size: 12px !important;
                font-weight: 600;
            }    
            .card-price {
                font-size: 12px;
              }
              .old-price {
                font-size: 10px;
              }
            .category-grid {
                grid-template-columns: 1fr;
                width: 85%;
                margin: auto;
            }
            
            .hero-slider {
                height: 400px;
            }
            
            .hero-content h2 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 24px !important;
                margin-bottom: 21px !important;
                margin-top: 21px !important;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .header-container {
                height: 70px;
            }
        }

        /*********my cart******/
                /* Header */
                .page-title-cart {
                    margin: clamp(20px, 4vw, 30px) 0;
                    padding-bottom: clamp(10px, 2vw, 15px);
                    text-align: center;
                }
            
                .page-title-cart h1 {
                    font-size: clamp(24px, 5vw, 28px);
                    font-weight: 700;
                    color: #2d3436;
                    margin: 0;
                }
            
                /* Layout principal */
                .cart-layout {
                    display: flex;
                    flex-direction: column;
                    gap: clamp(20px, 4vw, 30px);
                    margin-bottom: clamp(40px, 6vw, 60px);
                }
            
                @media (min-width: 992px) {
                    .cart-layout {
                        flex-direction: row;
                    }
                }
            
                /* Section articles */
                .cart-items {
                    flex: 2;
                }
            
                /* Tableau desktop */
                .cart-table {
                    width: 100%;
                    border-collapse: separate;
                    border-spacing: 0;
                    background: white;
                    border-radius: clamp(10px, 2vw, 14px);
                    overflow: hidden;
                    box-shadow: 0 clamp(3px, 0.6vw, 5px) clamp(10px, 2vw, 15px) rgba(0,0,0,0.05);
                }
            
                .cart-table thead {
                    background-color: #f8f9fa;
                }
            
                .cart-table th {
                    padding: clamp(15px, 2vw, 18px) clamp(10px, 1.5vw, 15px);
                    text-align: center;
                    font-weight: 600;
                    color: #636e72;
                    border-bottom: 2px solid #eee;
                    font-size: clamp(14px, 1.8vw, 16px);
                }
            
                .cart-table td {
                    padding: clamp(15px, 2vw, 20px) clamp(10px, 1.5vw, 15px);
                    /*border-bottom: 1px solid #f1f2f6;*/
                    vertical-align: middle;
                    transition: background 0.3s;
                    font-size: clamp(14px, 1.8vw, 16px);
                }
            
                .cart-table tr:hover td {
                    background: #fbfcfd;
                }
            
                .cart-item-img {
                    width: clamp(70px, 12vw, 90px);
                    height: clamp(70px, 12vw, 90px);
                    object-fit: cover;
                    border-radius: clamp(6px, 1vw, 8px);
                    border: 1px solid #f1f2f6;
                }
            
                .cart-item-title {
                    font-weight: 600;
                    margin-bottom: clamp(3px, 0.6vw, 5px);
                    color: #2d3436;
                    font-size: clamp(14px, 2vw, 16px);
                }
            
                /* Contrôle quantité */
                .quantity-selector {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
            
                .quantity-btn {
                    width: clamp(28px, 5vw, 34px);
                    height: clamp(28px, 5vw, 34px);
                    background-color: #f8f9fa;
                    border: none;
                    cursor: pointer;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: clamp(14px, 2vw, 16px);
                    border-radius: clamp(6px, 1vw, 8px);
                    transition: all 0.2s;
                    color: #2d3436;
                }
            
                .quantity-btn:hover {
                    background: var(--primary);
                    color: white;
                }
            
                .quantity-input {
                    width: clamp(40px, 7vw, 50px);
                    height: clamp(28px, 5vw, 34px);
                    text-align: center;
                    border: 1px solid #dfe6e9;
                    border-radius: clamp(6px, 1vw, 8px);
                    margin: 0 clamp(5px, 1vw, 8px);
                    font-weight: 500;
                }
            
                /* Bouton suppression */
                .remove-item {
                    background: #ffecee;
                    width: clamp(30px, 5vw, 36px);
                    height: clamp(30px, 5vw, 36px);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #ff4757;
                    font-size: clamp(14px, 2vw, 16px);
                    transition: all 0.2s;
                    border: none;
                    cursor: pointer;
                }
            
                .remove-item:hover {
                    background: #ff4757;
                    color: white;
                    transform: scale(1.1);
                }
            
                /* Section résumé */
                .cart-summary {
                    flex: 1;
                }
            
                .cart-summary-card {
                    background-color: #f8f9fa;
                    padding: clamp(20px, 3vw, 25px);
                    border-radius: clamp(10px, 2vw, 14px);
                    position: sticky;
                    top: clamp(20px, 4vw, 30px);
                    /*box-shadow: 0 clamp(3px, 0.6vw, 5px) clamp(10px, 2vw, 15px) rgba(0,0,0,0.05);*/
                }
            
                .cart-summary-title {
                    font-size: clamp(20px, 3.5vw, 22px);
                    font-weight: 700;
                    margin-bottom: clamp(15px, 2.5vw, 20px);
                    padding-bottom: clamp(10px, 1.8vw, 15px);
                    border-bottom: 1px solid #eee;
                    color: #2d3436;
                }
            
                .summary-row {
                    display: flex;
                    justify-content: space-between;
                    margin-bottom: clamp(10px, 1.5vw, 12px);
                    font-size: clamp(14px, 1.8vw, 15px);
                }
            
                .summary-total {
                    font-weight: 700;
                    font-size: clamp(16px, 2.5vw, 18px);
                    margin: clamp(15px, 3vw, 25px) 0;
                    padding-top: clamp(10px, 1.8vw, 15px);
                    border-top: 1px solid #eee;
                }
            
                .summary-total .amount {
                    color: var(--primary);
                    font-size: clamp(18px, 3vw, 22px);
                }
            
                .btn-checkout {
                    display: block;
                    width: 100%;
                    padding: clamp(14px, 2vw, 16px);
                    background-color: var(--primary);
                    color: white;
                    border: none;
                    border-radius: clamp(8px, 1.2vw, 10px);
                    font-size: clamp(15px, 2vw, 16px);
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s;
                    text-align: center;
                    box-shadow: 0 clamp(3px, 0.8vw, 4px) clamp(8px, 1.8vw, 12px) rgba(0,0,0,0.1);
                    margin-top: clamp(15px, 3vw, 20px);
                }
            
                .btn-checkout:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 clamp(4px, 1vw, 6px) clamp(12px, 2vw, 16px) rgba(0,0,0,0.15);
                }
            
                /* Panier vide */
                .empty-cart {
                    text-align: center;
                    padding: clamp(50px, 8vw, 80px) clamp(15px, 3vw, 20px);
                    background: white;
                    border-radius: clamp(10px, 2vw, 14px);
                    box-shadow: 0 clamp(3px, 0.6vw, 5px) clamp(10px, 2vw, 15px) rgba(0,0,0,0.05);
                    margin: clamp(15px, 3vw, 20px) 0;
                }
            
                .empty-cart-icon {
                    font-size: clamp(50px, 10vw, 72px);
                    color: #dfe6e9;
                    margin-bottom: clamp(15px, 3vw, 25px);
                }
            
                .empty-cart h2 {
                    font-size: clamp(22px, 4.5vw, 28px);
                    margin-bottom: clamp(10px, 2vw, 15px);
                    color: #2d3436;
                    font-weight: 700;
                }
            
                .empty-cart p {
                    color: #636e72;
                    margin-bottom: clamp(20px, 4vw, 30px);
                    max-width: 500px;
                    margin-left: auto;
                    margin-right: auto;
                    line-height: 1.6;
                    font-size: clamp(14px, 2vw, 16px);
                }
            
                .btn-primary {
                    display: inline-block;
                    padding: clamp(12px, 2vw, 14px) clamp(25px, 4vw, 32px);
                    background-color: var(--primary);
                    color: white;
                    border-radius: clamp(8px, 1.2vw, 10px);
                    font-weight: 600;
                    text-decoration: none;
                    transition: all 0.3s;
                    box-shadow: 0 clamp(3px, 0.8vw, 4px) clamp(8px, 1.8vw, 12px) rgba(0,0,0,0.1);
                }
            
                .btn-primary:hover {
                    background-color: var(--primary-dark);
                    transform: translateY(-2px);
                    box-shadow: 0 clamp(4px, 1vw, 6px) clamp(12px, 2vw, 16px) rgba(0,0,0,0.15);
                }
            
                /* ========== VERSION MOBILE OPTIMISÉE ========== */
                @media (max-width: 991px) {
                    .cart-table {
                        display: block;
                        background: transparent;
                        box-shadow: none;
                        border-radius: 0;
                    }
            
                    .cart-table thead {
                        display: none;
                    }
            
                    .cart-table tbody,
                    .cart-table tr,
                    .cart-table td {
                        display: block;
                        width: 100%;
                    }
            
                    .cart-table tr {
                        display: grid;
                        grid-template:
                            "image title delete" auto
                            "price quantity total" auto / minmax(60px, 80px) 1fr minmax(40px, 50px);
                        gap: clamp(8px, 2vw, 12px) clamp(6px, 1.5vw, 10px);
                        padding: clamp(12px, 3vw, 18px);
                        margin-bottom: clamp(12px, 3vw, 16px);
                        background: #fbfafa;
                        border-radius: clamp(10px, 2vw, 14px);
                        box-shadow: 0 clamp(3px, 0.8vw, 4px) clamp(8px, 2vw, 12px) rgba(0,0,0,0.08);
                        transition: all 0.3s;
                    }
            
                    .cart-table tr:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 clamp(4px, 1vw, 6px) clamp(10px, 2.5vw, 16px) rgba(0,0,0,0.12);
                    }
            
                    /* Ligne supérieure */
                    .cart-table td:first-child {
                        grid-area: image/title/delete/delete;
                        display: flex;
                        align-items: center;
                        gap: clamp(8px, 2vw, 12px);
                        padding: 0;
                        border: none;
                    }
            
                    /* Image */
                    .cart-item-img {
                        grid-area: image;
                        width: 100%;
                        height: auto;
                        aspect-ratio: 1/1;
                        max-width: 80px;
                        min-width: 60px;
                    }
            
                    /* Titre */
                    .cart-item-title {
                        grid-area: title;
                        font-size: clamp(14px, 3.8vw, 16px);
                        margin: 0;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }
            
                    /* Bouton suppression */
                    .remove-item {
                        grid-area: delete;
                        align-self: start;
                        justify-self: end;
                        width: clamp(28px, 7vw, 32px);
                        height: clamp(28px, 7vw, 32px);
                        font-size: clamp(14px, 3.8vw, 15px);
                    }
            
                    /* Ligne inférieure */
                    .cart-table td:not(:first-child) {
                        display: flex;
                        flex-direction: column;
                        padding: 0;
                        justify-content: center;
                    }
            
                    /* Labels */
                    .cart-table td::before {
                        content: attr(data-label);
                        font-size: clamp(11px, 3vw, 12px);
                        color: #636e72;
                        margin-bottom: clamp(4px, 1vw, 6px);
                        font-weight: 500;
                        letter-spacing: 0.3px;
                    }
            
                    /* Colonne Prix */
                    .cart-table td:nth-child(2) {
                        grid-area: price;
                        color: #2d3436;
                        font-weight: 600;
                    }
            
                    /* Colonne Quantité */
                    .cart-table td:nth-child(3) {
                        grid-area: quantity;
                    }
            
                    .quantity-selector {
                        justify-content: flex-start;
                    }
            
                    .quantity-btn {
                        width: clamp(26px, 6.5vw, 30px);
                        height: clamp(26px, 6.5vw, 30px);
                        font-size: clamp(13px, 3vw, 14px);
                    }
            
                    .quantity-input {
                        width: clamp(36px, 9vw, 42px);
                        height: clamp(26px, 6.5vw, 30px);
                        font-size: clamp(13px, 3vw, 14px);
                    }
            
                    /* Colonne Total */
                    .cart-table td:nth-child(4) {
                        grid-area: total;
                        align-items: flex-end;
                    }
            
                    .cart-table td:nth-child(4) span {
                        font-weight: 700;
                        color: var(--primary);
                        font-size: clamp(14px, 4vw, 16px);
                    }
            
                    /* Résumé mobile */
                    .cart-summary-card {
                        position: static;
                        margin-top: clamp(10px, 2vw, 15px);
                    }
                }
            
                /* Optimisation pour très petits écrans */
                @media (max-width: 360px) {
                    .cart-table tr {
                        grid-template-columns: minmax(50px, 60px) 1fr minmax(30px, 40px);
                        padding: clamp(10px, 2vw, 12px);
                        gap: clamp(4px, 1vw, 6px) clamp(3px, 1vw, 4px);
                    }
            
                    .cart-item-title {
                        max-width: 90px;
                    }
            
                    .quantity-input {
                        width: clamp(30px, 8vw, 36px);
                    }
                }
            
                /* Animations */
                @keyframes fadeIn {
                    from { opacity: 0; transform: translateY(10px); }
                    to { opacity: 1; transform: translateY(0); }
                }
            
                .cart-table tr {
                    animation: fadeIn 0.4s ease-out forwards;
                }
            
                .cart-table tr:nth-child(1) { animation-delay: 0.1s; }
                .cart-table tr:nth-child(2) { animation-delay: 0.2s; }
                .cart-table tr:nth-child(3) { animation-delay: 0.3s; }