/* ==========================================================================
   1. ESTRUCTURA PRINCIPAL Y GRILLAS (Layout)
   ========================================================================== */
.app-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    margin-top: 0; 
    padding: var(--spacing-xl) var(--spacing-md);
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

@media (min-width: 768px) {
    .grid-container { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-container { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 1rem; 
    }
}

/* ==========================================================================
   2. TÍTULOS Y SUBTÍTULOS GLOBALES
   ========================================================================== */
.section-header {
    text-align: center;
    margin-top: 1rem; 
    margin-bottom: 2rem; 
}

.section-header h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem); 
    font-weight: 900; 
    text-transform: uppercase;
    color: var(--text-global);
    letter-spacing: -1px; 
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.section-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--bg-btn-primary);
    border-radius: 3px;
}

.section-header .text-muted {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-global); 
    margin-top: 10px;
}

.section-footer {
    text-align: center;
    margin: 1.5rem 0 1.5rem 0; 
}

/* ==========================================================================
   3. HEADER Y BARRA SUPERIOR
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background-color: var(--bg-header, #111827); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); 
    display: flex; flex-direction: column;
}

.top-bar {
    background-color: var(--bg-surface, #1f2937); 
    color: var(--text-topbar, #ffffff);
    text-align: center;
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px;
}

.top-bar-text {
    color: var(--text-topbar);
    font-weight: bold; 
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* --- Base Móvil / Hamburguesa (hasta 991.98px) --- */
.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto; 
    grid-template-rows: auto auto;
    align-items: center;
    padding: 10px 16px;
    gap: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.brand-logo-container {
    grid-column: 1 / 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand-logo, .footer-logo { flex: 0 0 auto; width: max-content; display: inline-flex; }

.brand-logo {
    font-family: 'Impact', 'Arial Black', sans-serif;
    color: var(--text-logo); letter-spacing: -1px;
    text-transform: uppercase; text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
    font-size: 1.4rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-logo:hover { transform: scale(1.02); }

.header-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.brand-logo:hover .header-logo {
    animation: logoWiggle 0.6s ease-in-out forwards;
    box-shadow: 0 8px 20px rgba(37, 137, 237, 0.55);
}

@keyframes logoWiggle {
    0%   { transform: scale(1) rotate(0deg); }
    30%  { transform: scale(1.18) rotate(-12deg); }
    60%  { transform: scale(1.12) rotate(10deg); }
    100% { transform: scale(1.12) rotate(0deg); }
}

/* --- ACCIONES DEL HEADER (CARRITO) --- */
.header-actions {
    grid-column: 2 / 3;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.action-btn {
    display: flex; align-items: center; gap: var(--spacing-xs);
    color: var(--text-header-icons); font-size: 0.85rem; font-weight: 600;
    position: relative; background: none; border: none; cursor: pointer;
    text-decoration: none; transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.action-btn.cart-toggle {
    background-color: rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 25px;
    gap: 8px;
    display: inline-flex;
    align-items: center;
}

.action-btn:hover { color: var(--text-header-icons-hover); transform: scale(1.05); }
.action-btn .icon { width: 24px; height: 24px; transition: fill 0.3s ease; }

.header-actions .action-text,
.header-actions .cart-total-preview {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 800;
}

.action-btn .cart-total-preview,
.action-btn:hover .cart-total-preview {
    color: var(--bg-btn-primary);
    font-weight: 800; 
}

.cart-badge {
    position: absolute; top: -5px; right: -8px;
    background-color: var(--bg-btn-primary); color: var(--text-btn-primary);
    font-size: 0.7rem; font-weight: 700; height: 18px; min-width: 18px;
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    padding: 0 4px; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.mobile-menu-toggle {
    grid-column: 3 / 4;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--border-radius-sm);
    color: #ffffff;
    cursor: pointer;
    justify-self: end;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover { background: rgba(255,255,255,0.1); }
.mobile-menu-toggle svg { width: 24px; height: 24px; }

/* Menú Desplegable Móvil */
.category-nav {
    grid-column: 1 / 4;
    grid-row: 2;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: max-height 0.35s ease-in-out, margin 0.35s ease-in-out;
}

.category-nav.mobile-open {
    max-height: 400px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; font-weight: 900; letter-spacing: 0.3px;
    color: #ffffff; white-space: nowrap; text-transform: uppercase;
    text-decoration: none; border-radius: 8px; 
    background-color: rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 10px 16px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover { 
    background-color: var(--bg-nav-link-hover); color: var(--text-nav-link-hover); 
    box-shadow: 0 4px 12px rgba(40, 138, 236, 0.4); transform: translateY(-2px); 
}

/* ==========================================================================
   ESTRUCTURA DEL HEADER EN ESCRITORIO Y NOTEBOOKS
   ========================================================================== */

/* --- Reglas base para pantallas mayores a 992px --- */
@media (min-width: 992px) {
    .header-container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        min-height: 64px;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-menu-toggle { display: none; }

    .brand-logo-container { 
        flex: 0 0 auto; 
        justify-content: flex-start; 
    }

    .category-nav {
        order: 2; 
        flex: 1 1 auto; 
        min-width: 0; 
        max-height: none; 
        display: flex; 
        justify-content: center;
        margin-top: 0; 
        padding-top: 0;
        border-top: none;
    }

    .nav-list { 
        flex-direction: row; 
        flex-wrap: nowrap; /* Mantiene las categorías en 1 sola fila rígida */
        justify-content: center; 
        align-items: center;
        gap: clamp(6px, 1.2vw, 16px); 
        padding-bottom: 0; 
    }

    .nav-link { 
        width: auto; 
        background-color: transparent; 
        text-align: center; 
        padding: 6px 10px;
        font-size: 0.8rem; 
        white-space: nowrap;
    }

    .header-actions {
        order: 3; 
        flex: 0 0 auto;
        justify-content: flex-end;
        width: auto;
        margin-left: auto;
    }

    .action-btn.cart-toggle { 
        background-color: transparent; 
        padding: 0; 
        border-radius: 0; 
    }
}

/* ==========================================================================
   [FASE 5 - HEADER FIX] MODO "HAMBURGUESA" TAMBIÉN EN ESCRITORIO
   Se activa SOLO cuando header.html (Fase 4) agrega la clase "nav-overflow"
   al <header> — es decir, cuando hay más de 7 categorías principales.
   Con 7 o menos (como ahora), esa clase nunca aparece: el bloque de arriba
   (@media min-width:992px) sigue aplicando exactamente igual que hoy, sin
   ningún cambio visual. Este bloque es 100% aditivo, no reemplaza nada.
   El JS que abre/cierra el menú ya funciona por id (#btn-toggle-menu /
   #category-nav, ver cart.js), así que no hace falta tocar nada de JS:
   acá solo reusamos, para escritorio, el mismo patrón visual que ya
   existe para celular en la sección "3. HEADER Y BARRA SUPERIOR" de
   este mismo archivo.
   ========================================================================== */
@media (min-width: 992px) {
    .main-header.nav-overflow .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 0 10px;
    }

    /* Reaparece el botón hamburguesa (oculto por defecto en escritorio) */
    .main-header.nav-overflow .mobile-menu-toggle {
        display: flex;
    }

    /* El menú de categorías vuelve a comportarse como el desplegable móvil */
    .main-header.nav-overflow .category-nav {
        grid-column: 1 / 4;
        grid-row: 2;
        order: initial;
        flex: none;
        display: block;
        max-height: 0;
        overflow: hidden;
        justify-content: initial;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        width: 100%;
    }

    .main-header.nav-overflow .category-nav.mobile-open {
        /* Un poco más alto que en celular y con scroll propio, por si en el
           futuro se cargan muchas categorías: nunca corta la lista a la mitad. */
        max-height: 70vh;
        overflow-y: auto;
        margin-top: 12px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .main-header.nav-overflow .nav-list {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 8px;
        padding-bottom: 10px;
    }

    /* !important necesario acá porque el bloque de "NOTEBOOKS" más abajo en
       este archivo (992px a 1320.98px) fuerza font-size/padding de .nav-link
       con !important sin importar el modo. Sin esto, entre esos anchos el
       menú vertical se vería apretado en vez de como celular. */
    .main-header.nav-overflow .nav-link {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.08);
        text-align: center;
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
        white-space: normal;
    }

    /* El carrito vuelve a la posición central de la grilla, como en celular */
    .main-header.nav-overflow .header-actions {
        grid-column: 2 / 3;
        grid-row: 1;
        order: initial;
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }

    .main-header.nav-overflow .action-btn.cart-toggle {
        background-color: rgba(255, 255, 255, 0.12);
        padding: 8px 16px;
        border-radius: 25px;
    }
}

/* --- NOTEBOOKS / PANTALLAS MEDIANAS (992px a 1249.98px) ---
   ACÁ ESTÁ EL CAMBIO CLAVE: Ocultamos 'MI CARRITO' inmediatamente 
   para liberar espacio y mantener el menú en 1 sola línea limpia */
@media (min-width: 992px) and (max-width: 1320.98px) {
    .header-container {
        padding: 10px 15px; 
        gap: 8px;
    }

    /* OCULTAMOS LA PALABRA "MI CARRITO" EN NOTEBOOKS */
    .header-actions .action-text,
    .header-actions .action-text.hide-mobile {
        display: none !important;
    }

    /* Mantenemos visible el Precio ($0) y el Ícono */
    .header-actions .cart-total-preview {
        display: inline-block !important;
        font-size: 0.85rem !important;
        margin-right: 4px !important;
        color: var(--bg-btn-primary) !important;
    }

    /* Ajustamos levemente el tamaño del logo y enlaces para máxima armonía */
    .brand-logo { font-size: 1.25rem; gap: 6px; }
    .header-logo { width: 55px; height: 55px; }
    .nav-link { font-size: 0.76rem !important; padding: 4px 6px !important; }
}

/* --- MONITORES ANCHOS (1250px en adelante) ---
   Acá hay espacio de sobra, se muestra 'MI CARRITO $0 [ícono]' desplegado --- */
@media (min-width: 1250px) {
    .header-container { padding: 10px 40px; }
    .brand-logo { font-size: 1.8rem; }
    .header-logo { width: var(--header-logo-size, 70px); height: var(--header-logo-size, 70px); }
    .nav-link { font-size: 0.85rem; padding: 8px 14px; }
    
    .header-actions .action-text {
        display: inline-block !important;
    }
}

/* --- MÓVILES Y TABLETS CHICAS (< 991.98px) --- */
@media (max-width: 991.98px) {
    .brand-logo { font-size: 1.3rem; }
    .header-logo { width: 50px; height: 50px; }

    .header-actions .action-text.hide-mobile {
        display: none !important; 
    }

    .header-actions .cart-total-preview.hide-mobile {
        display: inline-block !important; 
        font-size: 0.85rem !important;
        font-weight: 800 !important;
        color: var(--bg-btn-primary) !important; 
        margin-right: 4px !important;
    }

    .action-btn.cart-toggle {
        padding: 6px 14px !important;
        border-radius: 20px !important; 
        width: auto !important;
        height: 38px !important;
        background-color: rgba(255, 255, 255, 0.12) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .action-btn .icon {
        width: 20px !important;
        height: 20px !important;
        margin: 0 !important;
        display: block !important;
    }
}

/* ==========================================================================
   4. BANNERS Y FONDOS DE SECCIONES (Index)
   ========================================================================== */

.contenedor-fondo-destacados {
    width: 100%;
    background-image: 
        linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 45%, var(--bg-global) 95%),
        url("../assets/img/Destacados.24f9b1eaf5c5.png"); 
    background-size: cover;
    background-position: top center; 
    background-repeat: no-repeat; 
    background-color: var(--bg-global); 
    background-attachment: scroll;
}

.contenedor-fondo-destacados .main-content { padding-top: 1.5rem; padding-bottom: 0.5rem; }

.seccion-fiambres-bg {
    width: 100%;
    background-image: 
        linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 45%, var(--bg-global) 95%),
        url("../assets/img/Fiambres.36800c154a5c.png"); 
    background-size: cover;
    background-position: top center; 
    background-repeat: no-repeat; 
    background-color: var(--bg-global); 
    background-attachment: scroll;
    padding-top: 1.5rem; padding-bottom: 0.5rem;
}

.delivery-banner {
    position: relative; 
    padding: 4rem 1rem; 
    background-color: var(--bg-global); 
    background-image: url("../assets/img/Zonas.7e71b5dcb176.png"); 
    background-size: cover;
    background-position: center; 
    background-attachment: scroll;
}

.delivery-content {
    max-width: 900px; 
    margin: 0 auto;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); 
    border-radius: 24px; 
    padding: 3rem 2rem; 
    text-align: center; 
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(15, 32, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 1.5rem; }
.delivery-header h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; letter-spacing: 2px; margin: 0; text-shadow: 1px 2px 4px rgba(0,0,0,0.3); color: #ffffff; }
.delivery-cta { background-color: #ffffff; color: #333333; display: inline-block; padding: 15px 30px; border-radius: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.free-shipping { display: block; color: var(--bg-btn-primary, #288aec); font-weight: 900; font-size: 1.3rem; margin-bottom: 5px; text-transform: uppercase; }
.order-text { font-size: 1.05rem; font-weight: 600; color: #333333; }
.delivery-phone { color: #000000; font-size: 1.2rem; font-weight: 900; text-decoration: none; transition: color 0.3s ease; }
.delivery-phone:hover { color: var(--bg-btn-primary, #288aec); }

@media (max-width: 767px) {
    .delivery-banner { padding: 2rem 0.5rem; }
    .delivery-content { padding: 1.8rem 1rem; border-radius: 16px; }
    .delivery-header h2 { font-size: 1.4rem; }
    .delivery-cta { padding: 12px 20px; width: 100%; box-sizing: border-box; }
    .free-shipping { font-size: 1.1rem; }
    .delivery-phone { font-size: 1.05rem; display: block; margin-top: 4px; }
}

/* ==========================================================================
   5. FOOTER PREMIUM (Identidad Cachita)
   ========================================================================== */
.premium-footer {
    background-color: var(--bg-footer); 
    color: var(--text-footer-heading);
    padding-top: var(--spacing-xl);
    border-top: 4px solid var(--bg-btn-primary); 
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 var(--spacing-md) var(--spacing-xl) var(--spacing-md);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@media (min-width: 992px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1.2fr 1.5fr; gap: 3rem; }
}

.brand-col { display: flex; flex-direction: column; align-items: flex-start; }

.footer-logo { margin-bottom: 15px; display: block; }
.footer-logo img { width: 90px; height: 90px; object-fit: cover; }

.footer-description {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-heading {
    color: var(--text-footer-heading);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-left: 12px;
    border-left: 3px solid var(--bg-btn-primary); 
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }

.clean-list a {
    color: var(--text-footer-link); 
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clean-list .chevron {
    color: var(--bg-btn-primary);
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 0.5;
    transition: transform 0.3s ease;
}

.clean-list a:hover { color: var(--bg-btn-primary); }
.clean-list a:hover .chevron { transform: translateX(5px); }

.contact-link {
    color: var(--text-footer-link); 
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-link svg { width: 18px; height: 18px; fill: var(--bg-btn-primary); transition: transform 0.3s ease; }
.contact-link:hover { color: #ffffff; }
.contact-link:hover svg { transform: scale(1.15); }

.social-links { display: flex; gap: 15px; }
.social-links a svg { width: 26px; height: 26px; fill: #6b7280; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.social-links a:hover svg { fill: var(--bg-btn-primary); transform: translateY(-4px); }

.footer-bottom {
    background-color: var(--bg-footer-bottom);
    border-top: 1px solid #1f2937;
    padding: 1.5rem var(--spacing-md);
    text-align: center;
    color: #6b7280;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   6. ELEMENTOS FLOTANTES
   ========================================================================== */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px;
    background-color: var(--bg-btn-whatsapp); color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1) rotate(-5deg); background-color: var(--bg-btn-whatsapp-hover); }
.whatsapp-float svg { width: 35px; height: 35px; fill: currentColor; }

/* ==========================================================================
   7. ESTRUCTURAS RESPONSIVAS GENERALES (Mobile-first)
   ========================================================================== */
.flex-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .flex-row {
        flex-direction: row;
        gap: 20px;
    }
    .flex-row .input-group {
        flex: 1; 
    }
}

/* ==========================================================================
   8. AJUSTES FINOS Y PULIDO MOBILE (Menor a 767px - Celulares)
   ========================================================================== */

@media (max-width: 767px) {
    
    /* 1. CARRUSEL MÁS GRANDE Y VISIBLE */
    .carousel-image {
        height: 270px !important; 
        object-fit: cover !important;
        object-position: center !important;
    }

    /* 2. SELECTOR DE OPCIONES/UNIDADES: Protección de la flechita */
    .unit-selector {
        font-size: 0.75rem !important;
        padding: 6px 1.8rem 6px 8px !important; 
        margin-bottom: 8px !important;
        text-overflow: ellipsis !important; 
        white-space: nowrap !important;
        overflow: hidden !important;
        background-position: right 0.5rem center !important; 
    }

    /* 3. TÍTULOS Y GRILLA DE 2 COLUMNAS */
    .section-header h1 {
        font-size: 1.4rem !important;
        margin-bottom: 5px !important;
        padding-bottom: 10px !important;
    }
    
    .section-header .text-muted {
        font-size: 0.85rem !important;
    }

    .grid-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px !important;
    }

    .product-content { padding: 10px !important; }
    .product-title { font-size: 0.85rem !important; }
    .product-price { font-size: 1.05rem !important; }
    .btn-primary.btn-add-cart { font-size: 0.75rem !important; padding: 8px 4px !important; }
}