/* ============================================
   STYLES PAGE PRODUIT (DETAIL) - COMPLET
   ============================================ */

body {
    background-color: white;
}

.product-page-container {
    font-family: 'Inter-regular', sans-serif;
    margin-top: 30px;
}
.hea.product-header {
    background-color: #E7ECDD;
}
/* --- HERO SECTION --- */
.product-hero {
    display: flex;
    gap: 40px;
    padding: 0;
    margin-bottom: 30px;
}

/* --- GAUCHE : GALERIE --- */
.product-gallery {
    width: 100%; 
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
}

.main-image-container {
    width: 100%;
    height: 600px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.main-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}
.nav-arrow:hover { background-color: #f9f9f9; }
.prev-btn { left: -20px; }
.next-btn { right: -20px; }

.thumbnail-row {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumb {
    width: 70px;
    height: 70px;
    border: 2px solid transparent; 
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    padding: 2px;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.thumb.active-thumb, .thumb:hover {
    border-color: #020202;
}

/* --- DROITE : INFO PRODUIT --- */
.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
}
ul.about-list li br {
    display: none;
}
.deal-badge-container { margin-bottom: 12px; }
.deal-badge {
    background-color: #EB631E; 
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.product-info h1 {
    font-family: 'Inter-bold';
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #0F1111;
}

.product-subtitle {
    font-size: 14px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.7;
     font-family: Inter-semibold;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.stars {
    color: #FFD82D;
    font-size: 18px;
}
.review-count { font-size: 14px; color: #000000; cursor: pointer;  font-family: Inter-semibold; }
.review-count:hover { text-decoration: underline; color: #C7511F; }

.price-block {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.current-price {
    font-size: 30px;
    color: #0F1111;
    font-family: Inter-bold;
}
.original-price {
    text-decoration: line-through;
    color: #9B9B9B;
    font-size: 14px;
    font-family: 'Inter-semibold';
    letter-spacing: 0.3px;
}

.discount-tag { color: #85C400; font-size: 14px; font-weight: bold; }

.size-selector { margin-bottom: 25px; }
.size-label {
    font-size: 20px;
    color: #0F1111;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    font-family: 'Inter-semibold';
}
.size-options { display: flex; gap: 10px; }

.size-btn {
    padding: 10px 16px;
    border: 1px solid #D5D9D9;
    background-color: #EFEFEF;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #0F1111;
    box-shadow: 0 2px 5px rgba(213,217,219,0.5);
    transition: all 0.2s;
}
.size-btn.active {
    border: 2px solid #96DC02; 
    background-color: #F6FFE4; 
    font-weight: bold;
    box-shadow: none;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    width: 90%;
}
.btn-outline {
    flex: 1;
    padding: 15px 0px;
    border: 2px solid #D5D9D9;
    background: transparent;
    border-radius: 100vh; 
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(213,217,219,0.5);
}
.btn-outline:hover { background-color: #F7FAFA; }

.btn-filled {
    flex: 1;
    padding: 20px 0px;
    border: none;
    background: #96DC02;
    border-radius: 100vh;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn-filled:hover { background-color: #8AD000; }

.whatsapp-btn {
    width: 90%;
    padding: 18px 0px;
    background-color: #43A047; 
    color: white;
    border: none;
    border-radius: 100vh;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}
.whatsapp-btn:hover { background-color: #388E3C; }

/* --- SECTION ABOUT --- */
.about-item-section {
    padding: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    border-radius: 10px;
}
.about-item-section h2 {
    margin-bottom: 15px;
    font-size: 24px;
    font-family: Inter-bold;
}
.about-list { padding-left: 20px; }
.about-list li { margin-bottom: 8px; font-size: 14px; color: #000; line-height: 1.5;font-weight: bold; }

.lightbox-modal {
    display: none; /* Caché par défaut */
    position: fixed; 
    z-index: 99999; /* Très haut pour passer au-dessus de tout (menu, panier) */
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    background-color: rgba(0, 0, 0, 0.92); /* Fond noir très opaque */
    
    /* Flexbox pour centrer l'image parfaitement */
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* L'image en grand à l'intérieur */
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh; /* 85% de la hauteur de l'écran max */
    object-fit: contain; /* Assure que l'image entière est visible sans déformation */
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s; /* Petite animation d'apparition */
}

/* Le bouton de fermeture (X) */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #96DC02; /* Votre couleur verte au survol */
    text-decoration: none;
    cursor: pointer;
}

/* Animation de zoom simple */
@keyframes zoomIn {
  from {transform:scale(0.9); opacity: 0;}
  to {transform:scale(1); opacity: 1;}
}

/* Petit ajout pour montrer que l'image principale est cliquable */
.main-image-container img {
    cursor: zoom-in;
}
/* --- FORMULAIRE D'AVIS --- */
.review-form-container {
    background-color: #FAFAFA;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    animation: slideDown 0.3s ease-out;
}

.review-form-container h3 {
    font-family: 'Inter-bold';
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Inter-semibold';
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-family: 'Inter-regular';
    font-size: 14px;
}

.star-rating-input {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.star-input {
    font-size: 24px;
    color: #DDD; /* Gris par défaut */
    transition: color 0.2s;
}

.star-input.active {
    color: #FFC107; /* Jaune activé */
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.submit-review-btn {
    background-color: #96DC02;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Inter-bold';
    cursor: pointer;
}

.cancel-review-btn {
    background-color: transparent;
    border: 1px solid #DDD;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Inter-semibold';
    cursor: pointer;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- SECTION FEATURES (FULL WIDTH) --- */
.features-full-width-wrapper {
    width: 100%;
    background-color: #F6FFE4; 
    padding: 60px 0;
    margin-bottom: 50px;
    border-radius: 40px;
}
.features-inner-content {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: 17%;
}
.feature-icon-circle {
    width: 120px;
    height: 120px;
    background-color: #C4EA75;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.feature-icon-circle img { height: 50px; width: 50px; }
.feature-text { font-size: 16px; font-weight: bold; line-height: 1.4;font-family: Inter-bold; }


/* --- RECENT PRODUCTS --- */
.recent-section { margin-bottom: 50px; }
.recent-title {
    text-align: center;
    font-family: 'Inter-bold';
    font-size: 40px;
    margin-bottom: 30px;
    color: #000;
}

/* ============================================
   SECTION REVIEWS (DESIGN EXACT IMAGE)
   ============================================ */
.reviews-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    /* Ombre légère pour détacher si fond gris, ou border */
    /* border: 1px solid #eee; */
}
/* Header: Note à gauche, Barres à droite */
.reviews-header {
    display: flex;
    gap: 40px; /* Espace entre résumé et barres */
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #F0F0F0;
}

.reviews-summary {
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #f1f1f1;
    padding-right: 40px;
}
.score-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.stars-big {
    color: #FFC107; /* Jaune exact */
    font-size: 20px;
    letter-spacing: 2px;
}

.score-text {
    font-family: 'Inter-bold';
    font-size: 18px;
    color: #0F1111;
}

.based-on {
    color: #000;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'Inter-semibold';
}

/* Bouton Write Review : Fond vert très pâle, bord vert, texte noir */
.write-review-btn {
    background-color: #F6FFE4; 
    border: 1px solid #96DC02;
    color: #0F1111;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    font-family: 'Inter-semiregular';
    transition: all 0.2s;
}
.write-review-btn:hover {
    background-color: #eefdd0;
}

/* Barres de progression */
.reviews-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #0F1111;
}

.star-icons {
    color: #FFC107;
    width: 90px; /* Largeur fixe pour alignement étoiles */
    font-size: 14px;
    letter-spacing: 1px;
}

.progress-track {
    flex: 1;
    height: 6px; /* Barre fine comme sur l'image */
    background-color: #F0F0F0; /* Gris très clair */
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #8FD102; /* Vert de l'image (environ) */
    border-radius: 3px;
}

.count {
    width: 30px;
    text-align: right;
    color: #0F1111;
    font-weight: 800;
    font-family: Inter-bold;
}

/* Liste des avis */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 0; /* Pas d'espace, c'est géré par le border-bottom de chaque item */
}

.review-item {
    background: #fff;
    padding: 24px 20px;
    border: 1px solid #F0F0F0;
    margin-top: 20px;
    border-radius: 8px;
}
/* Dernier élément sans bordure */


.reviewer-name {
    font-size: 20px;
    font-family: 'Inter-bold';
    color: #0F1111;
    margin-bottom: 5px;
    display: block;
}

.reviewer-rating {
    color: #FFC107;
    font-size: 20px;
    margin-bottom: 5px;
}

.review-date {
    font-size: 14px;
    color: #999; /* Gris clair */
    margin-bottom: 5px;
    font-family: 'Inter-regular';
}

.review-product-name {
    font-size: 15px;
    font-family: 'Inter-bold'; /* Gras comme sur l'image */
    margin-bottom: 8px;
    color: #0F1111;
}

.review-text {
    font-size: 15px;
    line-height: 1.5;
    color: #000; /* Gris foncé */
    font-family: 'Inter-regular';
}

/* Bouton View All */
.reviews-footer {
    margin-top: 20px;
}
.view-all-btn {
    background: #fff;
    border: 1px solid #D5D9D9;
    border-radius: 20px;
    padding: 10px 40px;
    cursor: pointer;
    font-weight: 600;
    color: #0F1111;
    font-family: 'Inter-semiregular';
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(213,217,219,0.3);
}
.view-all-btn:hover {
    background: #F7FAFA;
}

.div-bottom{
        margin: 0px 80px;
    }
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .product-page-container, .features-inner-content { margin: 30px 40px; }
    .product-hero { flex-direction: column; }
    .product-gallery { max-width: 100%; width: 100%; }
    .main-image-container { height: 450px; }
    .div-bottom{
        margin: 0px 20px !important;
    }
    .aa{
        margin: 0px 20px !important;
    }
}

@media (max-width: 600px) {
    .product-page-container, .features-inner-content { margin: 20px 15px; }
    
    .product-hero { flex-direction: column; gap: 20px; }
    .product-gallery, .main-image-wrapper { width: 100%; max-width: 100%; }
    .main-image-container { height: 350px; border: none; }
    .nav-arrow { width: 32px; height: 32px; font-size: 14px; }
    .prev-btn { left: 0; } .next-btn { right: 0; }
    .thumbnail-row { justify-content: center; flex-wrap: wrap; }
    .thumb { width: 60px; height: 60px; }
    
    .product-info h1 { font-size: 18px; }
    .current-price { font-size: 24px; }
    .action-buttons {  gap: 10px; }
    
    .features-inner-content { gap: 20px; }
    .feature-item { width: 40%; }

    /* Reviews Mobile : Stack vertical */
    .reviews-header { flex-direction: column; gap: 20px; padding-bottom: 20px; }
    .reviews-summary { width: 100%; }
    .write-review-btn { max-width: 100%; }
    .reviews-container { padding: 20px; }
}


/* ============================================
   STYLES DU PANIER (CART SIDEBAR)
   ============================================ */

/* Fond sombre semi-transparent */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* La barre latérale */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px; /* Caché à droite */
    width: 450px;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    font-family: 'Inter-regular', sans-serif;
}

.cart-sidebar.active {
    right: 0;
}

/* Header du panier */
.cart-header {
    padding: 2px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.cart-header h2 {
    font-family: 'Inter-bold';
    font-size: 18px;
    margin: 0;
}

.close-cart {
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

/* Liste des items (Scrollable) */
.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Style d'un item dans le panier */
.cart-item {
    display: flex;
    gap: 15px;
    background: #fff;
    height: 130px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-title {
    font-family: 'Inter-bold';
    font-size: 16px;
    margin-bottom: 2px;
    color: #000;
    line-height: 1.5;
}
.cart-item-price-row {
    margin-bottom: 3px;
    font-size: 18px;
    font-family: 'Inter-bold';
}

.cart-price-current { font-weight: bold; color: #000; }
.cart-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 17px;
    margin-left: 5px;
    font-family: 'Inter-semiregular';
}
.cart-price-off {
    color: #85C400;
    font-size: 13px;
    margin-left: 5px;
    font-weight: bold;
    background-color: #F3FFDA;
    padding: 4px 6px;
    border-radius: 6px;
}

.cart-item-size {
    font-size: 15px;
    color: #555;
    margin-bottom: 7px;
}

/* Contrôles (Quantité + Delete + Wishlist) */
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-selector-cart {
    display: flex;
    align-items: center;
    background-color: #F6FFE4;
    border: 2px solid #96DC02;
    border-radius: 6px;
    padding: 2px 5px;
    height: 32px;
    min-width: 130px;
    justify-content: space-between;
}
.qty-btn {
    background: transparent;
    border: none;
    font-size: 23px;
    cursor: pointer;
    padding: 0 10px;
    color: #000;
}

.qty-value {
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    font-size: 18px;
}

.cart-action-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.cart-action-icon:hover { background-color: #e0e0e0; }
.cart-action-icon img { width: 16px; height: 16px; opacity: 0.6; }

/* Footer du panier */
.cart-footer {
    padding: 20px 30px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter-bold';
    font-size: 18px;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    background-color: #96DC02;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-family: 'Inter-bold';
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.checkout-btn:hover { background-color: #85C402; }

/* Responsive Mobile */
@media (max-width: 600px) {
    .cart-sidebar { width: 100%; right: -100%; }
}

@media (max-width:450px){
    .features-inner-content{
        flex-direction: column;
        align-items: center;
    }

}

/* ============================================
   ANIMATIONS SCROLL (HOMEPAGE)
   ============================================ */

/* 1. Apparition du bas (Fade In Up) - Pour les produits, titres, footer */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

/* 2. Apparition de la GAUCHE - Pour le texte du Hero */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

/* 3. Apparition de la DROITE - Pour l'image du Hero */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

/* État Final (Visible) */
.reveal.active, 
.reveal-left.active, 
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
    visibility: visible;
}

/* Délais pour l'effet "Cascade" (ex: grille produits) */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }



/* my css start */
.all-reviews-sec{
    background-color:#F5F5F5;
    padding: 40px 0px;
}
.taste-the-essence{
    padding-top: 50px;
    padding-bottom: 40px;
}





@media (min-width:1024px) and (max-width:1199.98px){
.taste-the-essence {
    padding: 50px 40px 40px;
}
main.product-page-container {
    margin: 30px 40px 0px;
}
.about-item-section {
    padding: 0;
}
.aa {
    margin: 0 40px !important;
}
.product-page-container {
    margin: 30px 40px 0;
}
.all-reviews-sec {
    padding: 40px 40px 1px;
}

}

@media (min-width: 768px) and (max-width: 1023.98px) {
.about-item-section {
    padding: 0;
}
.aa {
    margin: 0px 20px !important;
}
.features-full-width-wrapper {
    padding: 30px 20px;
}
.features-inner-content {
    gap: 30px;
}
.product-page-container {
    margin: 0 30px;
}
.all-reviews-sec {
    padding: 40px 30px;
}
.taste-the-essence {
    padding: 50px 30px 40px;
}
.reviews-container {
    margin-bottom: 0px;
}
.feature-item {
    flex-basis: 30%;
}
}



@media (max-width:767px){
    .cart-sidebar {
    width: 80%;
}
.hea .header {
    margin: 0 0px !important;
}
.taste-the-essence {
    padding: 30px 15px 30px;
}
main.product-page-container {
    margin: 30px 0px 0px;
}
.product-page-container, .features-inner-content {
    padding: 0 15px;
}
.aa {
    margin: 0px 15px !important;
}
.product-page-container, .features-inner-content {
    margin: 0px 0px;
}
.all-reviews-sec {
    padding: 40px 15px;
}
.navbar {
    gap: 8px;
}
.link {
    font-size: 15px;
}
.product-info h1 {
    font-size: 20px;
}
.about-item-section {
    padding: 0;
}
.features-full-width-wrapper {
    padding: 21px 10px 2px;
}
.feature-icon-circle {
    width: 80px;
    height: 80px;
}
.feature-text {
    font-size: 13px;
    font-family: Inter-regular;
    min-height: 58px;
}
.features-inner-content {
    flex-direction: row;
    align-items: center;
    gap: 6px !important;
    padding: 0;
    justify-content: center;
}
.feature-item {
    flex-basis: 32%;
}
.recent-title {
    font-size: 24px;
    margin-bottom: 24px;
}
.cart-item-img {
    width: 100px;
    height: 100px;
}
.cart-item {
    height: auto;
}
.cart-header {
    padding: 1px 30px 1px 20px;
}
.cart-item-title {
    font-size: 15px;
    margin-bottom: 4px;
}
.cart-price-current {
    font-family: 'Inter-bold';
    font-size: 16px;
}
.cart-price-old {
    font-size: 15px;
}
.cart-item-size {
    font-size: 15px;
}
.qty-selector-cart {
    height: 28px;
    min-width: 130px;
}
.cart-action-icon {
    width: 28px;
    height: 28px;
}
.cart-items {
    padding: 10px;
}
.cart-price-off {
    font-size: 13px;
    padding: 5px 6px;
}
.qty-value {
    font-size: 15px;
}
.current-price {
    font-size: 20px;
}
.product-subtitle, .rating-row, .price-block {
    margin-bottom: 10px;
}
.btn-filled {
    padding: 17px 0px;
}
.whatsapp-btn {
    padding: 13px 0px;
}
.reviews-container {
    margin-bottom: 0px;
}
.bottom-green-button {
    width: 130px;
    font-size: 14px;
    height: 40px;
}
}

@media (max-width:575px){
    /* .cart-item{
        display:block
    } */
    .cart-item-img {
    width: 80px;
    height: 80px;
}
.cart-item {
    gap: 10px;
    height: auto;
}
.cart-item-title {
    font-size: 14px;
    margin-bottom: 2px;
}
.qty-selector-cart {
    height: 26px;
    min-width: 106px;
}
.cart-sidebar {
    width: 90%;
}
}