    /* ----------------------------------------
   RESET DE BASE ET TYPOGRAPHIE
----------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f8f9fa;
    padding-bottom: 80px; /* Espace pour le panier flottant */
}

/* ----------------------------------------
   BARRE DE NAVIGATION
----------------------------------------- */
.category-navbar {
    position: sticky;
    top: 0;
    background: white;
    padding: 0.7rem 0.5rem;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-scroller {
    position: relative;
    display: flex;
    flex-wrap: nowrap;  /* Empêche le retour à la ligne */
    gap: 0.8rem;
    overflow-x: auto; /* Permet le défilement horizontal si nécessaire */
    padding-bottom: 2px; /* Espace pour l'indicateur */
    white-space: nowrap; /* Garde le texte sur une seule ligne */
}

.nav-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: background 0.4s cubic-bezier(0.4, 0.2, 0.2, 1), color 0.3s;
    padding: 0.7rem 1.2rem;
    background: #f5f5f5;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    flex-shrink: 0; /* Empêche la réduction de taille */
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(90deg, #2ecc71 0%, #25d366 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.4, 0.2, 0.2, 1), height 0.4s cubic-bezier(0.4, 0.2, 0.2, 1);
    opacity: 0.15;
}

.nav-item:hover::before,
.nav-item.active::before {
    width: 220%;
    height: 220%;
}

.nav-item:hover,
.nav-item.active {
    color: #2ecc71;
    background: transparent !important;
}

.nav-item .nav-underline {
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 8px;
    height: 3px;
    background: linear-gradient(90deg, #2ecc71 0%, #25d366 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
    z-index: 2;
}

.nav-item:hover .nav-underline,
.nav-item.active .nav-underline {
    transform: scaleX(1.08);
    animation: underlineBounce 0.38s cubic-bezier(0.4,0.2,0.2,1);
}

@keyframes underlineBounce {
    0%   { transform: scaleX(0.2); }
    60%  { transform: scaleX(1.12); }
    80%  { transform: scaleX(0.95); }
    100% { transform: scaleX(1.08); }
}

.active-indicator {
    position: absolute;
    bottom: -3px;
    height: 3px;
    background: #2ecc71;
    transition: all 0.3s ease;
}

/* ----------------------------------------
   CARTE PRODUIT
----------------------------------------- */
.product-card {
    background: white;
    border-radius: 15px;
    margin: 0.8rem 0.5rem;
    padding: 0.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    gap: 0.8rem;
    opacity: 1;
    transform: scale(1);
    transition: transform 0.35s cubic-bezier(0.4,0.2,0.2,1);
}

.product-card:hover {
    transform: scale(1.06);
    z-index: 2;
}

.product-card:hover .product-image {
 
    filter: brightness(1.08) saturate(1.2);
    transition: box-shadow 0.3s, filter 0.3s;
}

.product-image {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    background-size: cover;
    object-fit: cover;
}

.product-details {
    flex: 1;
    min-width: 0; /* Évite le débordement */
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2F4F4F;
}

.product-ingredients {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
}

.price-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-right: 10px;
}

.product-price {
    font-weight: 700;
    color: #2ecc71;
    font-size: 1.1rem;
}

/* Bouton "Ajouter au panier" */
.add-to-cart {
    background: #2ecc71;
    color: white;
    border: none;
    width: 50px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.18s cubic-bezier(0.4,0.2,0.2,1), box-shadow 0.18s;
}

.add-to-cart:hover {
    transform: scale(1.18) rotate(-8deg);
    box-shadow: 0 4px 16px #2ecc71aa;
    background: linear-gradient(90deg, #2ecc71 60%, #25d366 100%);
}

/* ----------------------------------------
   PANIER FLOTTANT
----------------------------------------- */
.cart-floating {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 15px 15px 0 0;
}

.checkout-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

/* ----------------------------------------
   NOTIFICATION "TOAST"
----------------------------------------- */
.cart-feedback {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    animation: slideUp 0.3s ease;
    z-index: 100;
    background: #2ecc71;
}

.cart-feedback.error {
    background: #e74c3c;
}

.cart-feedback.success {
    background: #2ecc71;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 50px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}
.checkout-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}
.checkout-btn i {
    font-size: 1.2rem;
    
}
/* Styles existants + ajouts */

/* Cart Notification Styles */
.cart-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: white;
    color: #333;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cart-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-notification.success {
    border-left: 4px solid #2ecc71;
}

.cart-notification.error {
    border-left: 4px solid #e74c3c;
}

.cart-notification i {
    font-size: 1.2rem;
}

.cart-notification.success i {
    color: #2ecc71;
}

.cart-notification.error i {
    color: #e74c3c;
}

/* Cart Container Styles */
.cart-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.cart-button, .checkout-btn {
    width: 70px;
    height: 40px;
    border-radius: 18px;
    font-size: 1.3rem;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.cart-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
    justify-content: center;
    position: relative;
}

.cart-button:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    opacity: 1;
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 8px 24px rgba(44, 204, 113, 0.25), 0 1.5px 6px rgba(0,0,0,0.10);
}

.checkout-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    opacity: 1;
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.25), 0 1.5px 6px rgba(0,0,0,0.10);
}

.cart-count, .cart-total {
    font-weight: bold;
}

/* Styles pour le sélecteur de sauce */
.sauce-selector-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.sauce-selector-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sauce-selector {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.25s ease;
}

.sauce-selector-overlay.active .sauce-selector {
    transform: translateY(0);
}

.sauce-selector h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
    color: #333;
}

.sauce-options {
    margin-bottom: 20px;
}

.sauce-option {
    background-color: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.sauce-option:active {
    transform: scale(0.98);
    background-color: #e9f9e9;
}

.sauce-option span {
    flex: 1;
}

.sauce-option:hover {
    border-color: #2ecc71;
    background-color: #f9fff9;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.1);
}

.sauce-option.selected {
    border-color: #2ecc71;
    background-color: #f0fff3;
    position: relative;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.2);
}

.sauce-option.selected::after {
    content: '✓';
    position: absolute;
    right: 15px;
    color: #2ecc71;
    font-size: 18px;
    font-weight: bold;
}

.sauce-selector-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.sauce-cancel, .sauce-confirm {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sauce-cancel:active, .sauce-confirm:active:not(:disabled) {
    transform: scale(0.98);
}

.sauce-cancel {
    background-color: #f5f5f5;
    color: #666;
}

.sauce-cancel:hover {
    background-color: #eaeaea;
}

.sauce-confirm {
    background-color: #2ecc71;
    color: white;
}

.sauce-confirm:hover:not(:disabled) {
    background-color: #27ae60;
}

.sauce-confirm:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Amélioration de la responsivité globale */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Réduit l'espace en bas pour le panier flottant */
    }
    
    .product-card {
        margin: 0.6rem 0.4rem; /* Encore plus compact sur mobile */
        padding: 0.7rem;
    }
    
    .product-image {
        width: 75px;
        height: 75px;
    }
    
    .product-title {
        font-size: 1.1rem; /* Légèrement plus petit sur mobile */
    }
    
    .product-ingredients {
        font-size: 0.8rem; /* Plus petit sur mobile */
    }
    
    .add-to-cart {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

/* Pour les très petits écrans */
@media (max-width: 375px) {
    .product-card {
        margin: 0.5rem 0.3rem; /* Encore plus serré */
        padding: 0.6rem;
    }
    
    .product-image {
        width: 70px;
        height: 70px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-ingredients {
        font-size: 0.75rem;
        margin: 0.3rem 0;
    }
    
    .price-add {
        margin-top: 10px;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .add-to-cart {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* 5. Animation sur le séparateur vert */
.separator {
    position: relative;
    overflow: hidden;
}
.separator::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, #2ecc71 0%, #25d366 100%);
    animation: separatorSlide 2.2s linear infinite;
    opacity: 0.5;
}
@keyframes separatorSlide {
    0% { left: -60px; }
    100% { left: 100%; }
}

/* 6. Effet de rebond sur les titres de section au survol */
.category-header h2 {
    display: inline-block;
    transition: color 0.3s;
    cursor: pointer;
}
.category-header h2:hover {
    color: #2ecc71;
    animation: bounceTitle 0.7s;
}
@keyframes bounceTitle {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.18, 0.92); }
    50%  { transform: scale(0.96, 1.08); }
    70%  { transform: scale(1.04, 0.98); }
    100% { transform: scale(1); }
}

/* === PROMO CARD STYLES === */
.promo-card {
    margin: 24px auto 18px auto;
    max-width: 480px;
    background: linear-gradient(100deg, #fff 80%, #eafff2 100%);
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(46,204,113,0.13), 0 0 0 4px #2ecc7133;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.2s;
    z-index: 10;
    border: 2px solid #2ecc71;
    animation: promoGlow 2.5s infinite alternate;
}
.promo-card:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 0 40px 8px #b9f6ca, 0 0 0px 0px #fff;
    z-index: 10;
}
.promo-lights {
    position: absolute;
    top: 0; left: 0; right: 0; height: 8px;
    background: repeating-linear-gradient(90deg, #2ecc71, #25d366 20px, #fff 40px, #2ecc71 60px);
    background-size: 120px 8px;
    animation: promoLightsMove 2s linear infinite;
    opacity: 0.7;
}
@keyframes promoLightsMove {
    0% { background-position-x: 0; }
    100% { background-position-x: 120px; }
}
@keyframes promoGlow {
    0% {
        box-shadow: 0 0 16px 2px #2ecc71, 0 0 0px 0px #fff;
        border-color: #2ecc71;
    }
    100% {
        box-shadow: 0 0 32px 8px #b9f6ca, 0 0 0px 0px #fff;
        border-color: #19b46a;
    }
}
.promo-card {
    animation: promoGlow 2.5s infinite alternate;
}
.promo-content {
    padding: 28px 20px 18px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.promo-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 10px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.promo-sneak-peek {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    font-size: 1.08rem;
    color: #222;
    min-height: 28px;
    margin-bottom: 10px;
    overflow: hidden;
    height: 28px;
    position: relative;
}
.promo-sneak-peek span {
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    transition: opacity 0.5s, transform 0.5s;
    font-weight: 500;
    white-space: nowrap;
}
.promo-sneak-peek span.active {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
    color: #2ecc71;
    text-shadow: 0 2px 8px #2ecc7133;
}
.promo-cta {
    font-size: 1rem;
    color: #25d366;
    font-weight: 600;
    margin-top: 6px;
    letter-spacing: 0.5px;
    animation: promoFlash 1.2s infinite alternate;
}
@keyframes promoFlash {
    0% { opacity: 1; }
    100% { opacity: 0.7; }
}
/* === PROMO MODAL === */
.promo-modal-overlay {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}
.promo-modal-overlay.active {
    display: flex;
}
.promo-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 370px;
    width: 95vw;
    max-height: 570px;
    min-height: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    z-index: 1000;
    padding: 16px 8px 16px 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 24px 0;
}
.promo-modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #2ecc71;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s;
}
.promo-modal-close:hover {
    color: #e74c3c;
}
.promo-packs-list {
    flex: 1 1 auto;
    max-height: 465px; /* 3 packs at ~155px each */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}
.promo-pack {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px #2ecc7133;
    border: 1.5px solid #eafaf1;
    margin-bottom: 18px;
    padding: 18px 16px;
    min-height: 120px;
    max-width: 100%;
    transition: box-shadow 0.2s;
}
.promo-pack img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px #2ecc7111;
    background: #f8fff9;
    border: 2px solid #eafaf1;
    margin: 0;
}
.pack-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0 0 0 0;
}
.pack-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #19b46a;
    margin-bottom: 2px;
    margin-top: 0;
    letter-spacing: 0.2px;
    text-align: left;
}
.pack-desc {
    font-size: 1.01rem;
    color: #444;
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.3;
    text-align: left;
}
.pack-prices {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 0;
}
.price-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}
.old-price {
    font-size: 1.01rem;
    color: #e74c3c;
    text-decoration: line-through;
    font-weight: 500;
    opacity: 0.7;
}
.new-price {
    font-size: 1.22rem;
    font-weight: 700;
    color: #2ecc71;
    margin-right: 2px;
    letter-spacing: 0.2px;
}
.add-btn {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 2px 8px #2ecc7133;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2ecc71;
    color: #fff;
    border: none;
    transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
    outline: none;
    position: relative;
    top: 0;
}
.add-btn:active {
    background: #25d366;
    transform: scale(1.08);
}

/* --- Responsive: Only size, not structure --- */
@media (max-width: 600px) {
    .promo-pack {
        padding: 12px 6px;
        border-radius: 14px;
        gap: 10px;
        min-height: 90px;
    }
    .promo-pack img {
        width: 54px;
        height: 54px;
        border-radius: 8px;
    }
    .pack-title {
        font-size: 1.01rem;
    }
    .pack-desc {
        font-size: 0.92rem;
    }
    .add-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .new-price {
        font-size: 1.05rem;
    }
    .old-price {
        font-size: 0.9rem;
    }
}
@media (max-width: 400px) {
    .promo-pack {
        padding: 8px 2px;
        border-radius: 10px;
        gap: 6px;
        min-height: 70px;
    }
    .promo-pack img {
        width: 38px;
        height: 38px;
        border-radius: 6px;
    }
    .pack-title {
        font-size: 0.93rem;
    }
    .pack-desc {
        font-size: 0.8rem;
    }
    .add-btn {
        width: 28px;
        height: 28px;
        font-size: 0.95rem;
    }
    .new-price {
        font-size: 0.92rem;
    }
    .old-price {
        font-size: 0.8rem;
    }
}

@keyframes promoPackFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
  }
  80% {
    transform: translateY(2px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.promo-pack {
  animation: promoPackFadeIn 0.7s both;
}
.promo-pack:nth-child(1) { animation-delay: 0.05s; }
.promo-pack:nth-child(2) { animation-delay: 0.12s; }
.promo-pack:nth-child(3) { animation-delay: 0.19s; }
.promo-pack:nth-child(4) { animation-delay: 0.26s; }
.promo-pack:nth-child(5) { animation-delay: 0.33s; }
.promo-pack:nth-child(6) { animation-delay: 0.40s; }

@media (max-width: 768px) {
  .promo-card {
    margin: 18px auto;
    max-width: 95vw;
    width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 8px 16px 8px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(46,204,113,0.10);
    border: 2px solid #2ecc71;
    background: #fff;
    text-align: center;
  }
  .promo-card h2, .promo-card h3, .promo-card p {
    width: 100%;
    text-align: center;
  }
  .promo-modal {
    max-height: 630px;
  }
  .promo-packs-list {
    max-height: 525px; /* 3 packs at ~175px each */
  }
  .promo-pack {
    min-height: 170px;
    padding: 28px 18px;
  }
  .promo-pack img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 16px;
    display: block;
    aspect-ratio: 1 / 1;
    background: #f6f6f6;
  }
 
}