:root {
    --brand-red: #E73951;
    --brand-navy: #172D3C;
    --bg-light: #F8FAFC;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--brand-navy);
    scroll-behavior: smooth;
}

.btnHoverBrand:hover{
    background-color: var(--brand-red);
    transition: all 0.4s;
}

.bg-brand-red {
    background-color: var(--brand-red);
}

.text-brand-red {
    color: var(--brand-red);
}

.bg-brand-navy {
    background-color: var(--brand-navy);
}

.text-brand-navy {
    color: var(--brand-navy);
}

.border-brand-red {
    border-color: var(--brand-red);
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--brand-red);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Personalización de barra de desplazamiento */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-navy);
    border-radius: 4px;
}

.bg-modal {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Cart Button (from original style.css) */
.pf-btnCart {
    position: fixed !important;
    bottom: 25px;
    right: 15px;
    z-index: 99;
    border: 1px solid #fff;
}

/* Shared UI Components */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-gradient {
    background: linear-gradient(rgba(23, 45, 60, 0.6), rgba(23, 45, 60, 0.6)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
}

.category-pill {
    transition: all 0.2s;
    cursor: pointer;
}

.category-pill.active {
    background-color: var(--brand-red);
    color: white;
    border-color: var(--brand-red);
}

/* Mobile Menu Styles */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
    z-index: 100;
}

#mobile-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 90;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .responsive-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}

/* Horizontal Scroll for Categories */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}



.pfSeccionCategorias button:hover{
    background-color: var(--brand-red) !important;
    color: #fff !important;
}


/* Estilos adicionales para manejar el estado del menú sin depender solo de clases dinámicas si se desea */
.drawer-overlay {
    transition: opacity 0.3s ease-in-out;
}
.drawer-content {
    transition: transform 0.3s ease-in-out;
}


.pieModalDetalleCarta{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    left: 0;
}