/* 
 * CSS Variables based on user requirements 
 */
:root {
    /* Fonts */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Colors */
    --col-green: #00A03C;
    --col-dark-blue: #020637;
    --col-red: #EE1E23;
    --col-yellow: #FFD500;
    --col-light-yellow: #EAEAA5;
    --col-white: #ffffff;

    --col-bg: #f0f0f0;
    --col-header-bg: #ffffff;
    --col-product-bg: #ffffff;

    --col-title: #000000;
    --col-text: #333333;

    /* Layout Constraints */
    --container-width: 1210px;
    --product-gap: 20px;
    --border-radius: 15px;
    --transition-speed: 0.3s;
}

/* Global Resets */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--col-bg);
    color: var(--col-text);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--col-title);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Reusables */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: calc(100% - 40px);
    padding: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
}

.btn-primary {
    background-color: var(--col-dark-blue);
    color: #fff;
}

.btn-primary:hover {
    background-color: #010424;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #ccc;
    color: var(--col-text);
}

.btn-outline:hover {
    background-color: var(--col-bg);
}

.section-title {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title h2 {
    font-size: 22px;
}

.section-title a {
    font-size: 18px;
    font-family: var(--font-body);
    color: var(--col-text);
    text-decoration: underline;
    font-weight: 500;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--col-dark-blue);
    color: var(--col-white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: var(--col-white);
    margin-right: 15px;
    font-size: 14px;
}

.top-info {
    display: flex;
    gap: 20px;
}

.shipping-info i,
.phone-info i {
    margin-right: 5px;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background-color: var(--col-header-bg);
    padding: 15px 0 15px 0;
    border-bottom: 1px solid #eaeaea;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.logo img {
    height: 50px;
}

.text-logo {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.text-logo .super {
    color: var(--col-dark-blue);
}

.text-logo .market {
    color: var(--col-green);
}

.site-footer .text-logo .super {
    color: var(--col-white);
}

.search-bar {
    flex: 1;
    max-width: 600px;
    margin: 0 30px;
    display: flex;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    background-color: #f8f8f8;
}

.search-bar button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #555;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.login-icon i {
    font-size: 22px;
    color: var(--col-title);
}

.cart-icon {
    position: relative;
    font-size: 22px;
    color: var(--col-title);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--col-red);
    color: var(--col-white);
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--col-title);
}

/* ===== NAVIGATION ===== */
.mobile-only-break {
    display: none;
}

.mobile-arrow,
.mobile-only-li,
.sub-menu,
.mobile-nav-footer {
    display: none !important;
}

.main-nav {
    background-color: var(--col-header-bg);
    border-bottom: 1px solid #e0e0e0;
}

.nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-list a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--col-text);
}

.nav-list a:hover {
    color: var(--col-green);
}

.nav-list .has-dropdown i {
    font-size: 10px;
    margin-left: 5px;
    color: #888;
}

.nav-list a.ofertas-link {
    color: var(--col-red);
}

/* Header Responsiveness */
@media (max-width: 992px) {

    /* MOBILE NAV DRAWER */
    .main-header {
        position: relative;
        z-index: 10000;
        background-color: var(--col-white);
    }

    .main-header .text-logo {
        font-size: 30px;
    }

    .main-header .logo img {
        height: 30px;
    }

    .main-nav {
        position: fixed;
        top: 116px;
        left: -100vw;
        width: 100vw;
        height: calc(100vh - 110px);
        background-color: var(--col-white);
        z-index: 9999;
        transition: left 0.3s ease;
        display: flex;
        flex-direction: column;
        border-bottom: none;
    }

    .main-nav.open {
        left: 0;
    }

    .container.nav-inner {
        padding: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        position: relative;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        width: 100%;
        margin: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f9f9f9;
        position: static;
    }

    .desktop-arrow {
        display: none !important;
    }

    .mobile-arrow,
    .mobile-only-li {
        display: inline-block !important;
    }

    .nav-list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        font-size: 15px;
        font-weight: 500;
        font-family: var(--font-body);
    }

    /* Submenu Drawer */
    .sub-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
        width: 100%;
        min-height: 100%;
        background-color: var(--col-white);
        z-index: 10;
        transition: left 0.3s ease;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .sub-menu.active {
        left: 0;
    }

    .sub-menu-header {
        display: flex;
        align-items: center;
        background-color: #f7f7f7;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .sub-menu-header .back-btn {
        background: none;
        border: none;
        font-size: 14px;
        font-weight: 600;
        color: var(--col-text);
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .sub-menu-title {
        margin-left: auto;
        font-weight: 700;
        font-size: 14px;
        color: var(--col-green);
    }

    /* Mobile Nav Footer */
    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        background-color: #f9f9f9;
        padding: 20px;
        border-top: 1px solid #eee;
    }

    .nav-footer-promo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--col-title);
    }

    .nav-login-link {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--col-title);
        margin-top: 10px;
        margin-bottom: 25px;
        text-decoration: none;
    }

    .nav-socials {
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
    }

    .nav-socials a {
        color: var(--col-title);
        font-size: 18px;
    }

    .nav-whatsapp-float {
        position: absolute;
        right: 0;
        bottom: -5px;
        background-color: #25D366;
        color: white !important;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px !important;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    }

    .mobile-menu-btn {
        display: block;
    }

    .search-bar {
        display: none;
    }
}

@media (max-width: 576px) {
    .top-info {
        display: none;
        /* Hide top info on very small screens */
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hero-slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    background-color: var(--col-light-yellow);
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: 600px 300px;
    background-position: right center;
    background-repeat: no-repeat;
    display: none;
    align-items: center;
}

.hero-slide.active {
    display: flex;
}

.hero-slide::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 620px;
    height: 300px;
    background-color: transparent;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-badge {
    background-color: var(--col-red);
    color: var(--col-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 1.2px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 900;
}

.hero-content h1 span {
    color: var(--col-green);
    font-style: italic;
    font-weight: 900;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333333;
}

.hero-btn {
    border-radius: 25px;
    display: inline-flex;
    gap: 10px;
    font-size: 14px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--col-white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: var(--col-text);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    color: var(--col-green);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-dots {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 7px;
}

.slider-dots .dot {
    width: 25px;
    height: 5px;
    border-radius: 5px;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--col-dark-blue);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform var(--transition-speed);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== CATEGORY THUMBNAILS ===== */
.category-thumbs {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 0px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.category-thumbs::-webkit-scrollbar {
    display: none;
}

.thumb-item {
    flex: 0 0 190px;
    height: auto;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform var(--transition-speed);
    gap: 15px;
}

.thumb-item:hover {
    transform: translateY(-5px);
}

.thumb-item:hover span {
    background-color: var(--col-red);
}

.thumb-img {
    width: 190px;
    height: 150px;
    border-radius: 15px 15px 0 0;
    background-color: var(--col-white);
    padding: 0;
    box-shadow: none;
    margin-bottom: 0px;
    transition: all var(--transition-speed);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.thumb-img img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item span {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: var(--col-white);
    background-color: var(--col-green);
    padding: 0 10px;
    border-radius: 0 0 15px 15px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero-slider {
        height: 440px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content {
        padding-left: 20px;
    }

    .category-thumbs {
        justify-content: flex-start;
    }
}

/* ===== PRODUCT SECTIONS & CAROUSELS ===== */
.product-section {
    margin-bottom: 40px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-track {
    display: flex;
    gap: var(--product-gap);
    overflow-x: hidden;
    /* JavaScript will handle scroll */
    flex: 1;
    scroll-behavior: smooth;
    padding: 10px 0;
    max-width: 1180px;
    margin: 0 auto;
}

.carousel-arrow {
    background-color: var(--col-white);
    border: 1px solid var(--col-white);
    color: var(--col-green);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    z-index: 5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all var(--transition-speed);
}

.carousel-arrow:hover {
    background-color: var(--col-dark-blue);
    border-color: var(--col-dark-blue);
}

.carousel-arrow.prev-btn {
    left: -3px;
}

.carousel-arrow.next-btn {
    right: -3px;
}

/* Product Card */
.product-card {
    background-color: var(--col-product-bg);
    border-radius: var(--border-radius);
    padding: 15px;
    width: 220px;
    height: 420px;
    flex-shrink: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    transition: transform var(--transition-speed);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #F8E688;
    color: var(--col-title);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 25px;
    z-index: 2;
}

.product-img {
    height: 200px;
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-brand {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    font-weight: 500;
    height: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-name {
    font-size: 14px;
    color: var(--col-title);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-prices {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 15px;
    margin-top: auto;
}

.price-tier {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 5px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid #D9D9D9;
}

.price-tier.outline-tier {
    background-color: var(--col-white);
}

.tier-label {
    font-size: 10px;
    color: #666;
    margin-bottom: 2px;
}

.tier-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--col-red);
}

.add-cart-btn {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    gap: 8px;
    border-radius: 25px;
    /* slightly squarish in sketch */
}

/* Highlight Block Sections */
.highlight-wrapper {
    display: flex;
    gap: var(--product-gap);
}

.highlight-card {
    flex: 0 0 233px;
    height: 420px;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
    position: relative;
    overflow: hidden;
}

/* Linear Cart SVG stroke */
.fa-cart-shopping {
    -webkit-text-stroke: 1.5px currentColor;
    -webkit-text-fill-color: transparent;
}

.bg-salsas {
    margin-top: 10px;
    background-image: url('imagenes/banner_img_salsas.png');
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-color: var(--col-light-yellow);
}

.bg-frutas {
    margin-top: 10px;
    background-image: url('imagenes/banner_img_frutas.png');
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-color: var(--col-light-yellow);
}

.bg-lacteos {
    margin-top: 10px;
    background-image: url('imagenes/banner_img_lacteos.png');
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-color: var(--col-light-yellow);
}

.highlight-badge {
    background-color: var(--col-red);
    color: var(--col-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.highlight-card h3 span {
    color: var(--col-green);
    font-style: italic;
}

.highlight-card p {
    font-size: 14px;
    color: #555;
}

.highlight-carousel {
    flex: 1;
    min-width: 0;
}

/* Adjust card width inside highlight section (4 cards) */
.highlight-carousel .product-card {
    min-width: calc((100% - (3 * var(--product-gap))) / 4);
}

/* ===== PROMO BANNERS ===== */
.banner-section {
    margin-bottom: 40px;
}

.promo-banner {
    border-radius: 15px;
    padding: 0 80px;
    height: 130px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--col-white);
    background-size: cover;
    background-position: center;
}

.bg-blue {
    background-color: var(--col-dark-blue);
    background-image: url('imagenes/banner_promo_lineas.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    align-items: center;
}

.banner-highlight {
    padding: 5px 0;
    font-style: italic;
}

.banner-highlight h2 {
    color: var(--col-white);
    margin: 0;
    font-size: 40px;
    /* display: inline-flex; */
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}

.promo-despacho {
    font-size: 40px;
    background-color: var(--col-green);
    padding: 8px 10px 7px 15px;
}

.bg-red-pill {
    background-color: var(--col-red) !important;
    color: var(--col-yellow) !important;
    padding: 3px 15px 1px 15px;
    font-style: normal;
    display: inline-block;
}

.banner-left p {
    font-size: 12px;
    max-width: 350px;
    margin: 0;
}

.banner-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.banner-center p {
    font-size: 30px;
    line-height: 1.1;
    margin: 0;
    text-align: center;
}

.banner-center span {
    color: var(--col-yellow);
    font-style: italic;
    font-weight: 700;
}

.banner-right {
    display: flex;
    align-items: center;
}

.btn-banner {
    border-radius: 25px;
    font-size: 16px;
    padding: 10px 30px;
    color: var(--col-title);
    font-weight: 700;
}

.btn-yellow {
    background-color: var(--col-yellow);
}

.btn-yellow:hover {
    background-color: #ffd000;
    transform: scale(1.05);
}

/* Responsiveness */
@media (max-width: 1200px) {
    .product-card {
        min-width: calc((100% - (3 * var(--product-gap))) / 4);
    }

    .highlight-carousel .product-card {
        min-width: calc((100% - (2 * var(--product-gap))) / 3);
    }
}

@media (max-width: 992px) {
    .promo-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        height: auto;
        padding: 30px;
    }

    .banner-left,
    .banner-center,
    .banner-right {
        flex-direction: column;
        text-align: center;
    }

    .banner-highlight {
        transform: none;
    }

    .banner-highlight h2 {
        transform: none;
    }
}

@media (max-width: 768px) {
    .highlight-wrapper {
        flex-direction: column;
    }

    .highlight-card {
        flex: 1;
        text-align: left;
        align-items: left;
        background-size: 150px;
        background-position: center 20px;
        padding-top: 150px;
    }

    .product-card {
        min-width: calc((100% - var(--product-gap)) / 2);
    }

    .highlight-carousel .product-card {
        min-width: calc((100% - var(--product-gap)) / 2);
    }
}

@media (max-width: 480px) {
    .product-card {
        min-width: calc((100% - var(--product-gap)) / 2);
    }

    .highlight-carousel .product-card {
        min-width: calc((100% - var(--product-gap)) / 2);
    }
}

/* ===== INFO CARDS ===== */
.info-cards-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.info-card {
    background-color: var(--col-white);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--col-green);
    background-color: rgba(0, 160, 60, 0.1);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 15px;
    color: #333333;
}

/* ===== ABOUT US ===== */
.about-us-section {
    margin-bottom: 50px;
}

.about-card {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.solid-bg-blue {
    background-color: #030823;
    padding: 30px 40px;
    color: var(--col-white);
    flex: 0 0 55%;
    box-sizing: border-box;
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: top;
}

.about-badge {
    background-color: var(--col-red);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 32px;
    color: var(--col-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--col-yellow);
}

.about-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 90%;
}

.about-btns {
    display: flex;
    gap: 15px;
}

.btn-red {
    background-color: var(--col-red);
    color: var(--col-white);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-red:hover {
    background-color: #c81318;
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid var(--col-white);
    color: var(--col-white);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-white i {
    margin-left: 8px;
    font-size: 18px;
}

/* ===== LOCATIONS ===== */
.locations-section {
    margin-bottom: 40px;
}

.section-title-center {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.section-title-center span {
    color: var(--col-red);
}

.locations-wrapper {
    display: flex;
    gap: 20px;
}

.locations-list {
    flex: 0 0 470px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-item {
    display: flex;
    gap: 15px;
    background-color: var(--col-white);
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-speed);
}

.location-item:hover {
    transform: translateY(-2px);
}

.loc-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.loc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loc-info h4 {
    font-size: 16px;
    color: var(--col-title);
    margin-bottom: 3px;
    font-weight: 700;
}

.loc-info p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
}

.loc-contact {
    display: flex;
    gap: 20px;
    font-size: 12px;
    font-weight: 500;
}

.loc-phone,
.loc-email {
    color: var(--col-red);
    display: flex;
    align-items: flex-start;
    word-break: break-all;
}

.loc-contact i {
    width: 14px;
    margin-right: 6px;
    flex-shrink: 0;
    margin-top: 2px;
}

.loc-phone i {
    color: var(--col-dark-blue);
}

.loc-email i {
    color: var(--col-dark-blue);
}

.locations-map {
    flex: auto;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--col-dark-blue);
    color: var(--col-white);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.site-footer .text-logo {
    font-size: 36px;
    margin-bottom: 30px;
}

.footer-slogan {
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
}

.footer-widget h4 {
    color: var(--col-yellow);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-widget ul {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #ffffff;
}

.footer-widget ul a {
    color: #ffffff;
}

.footer-widget ul a:hover {
    color: var(--col-yellow);
}

.footer-widget p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}

.footer-widget i {
    margin-right: 8px;
    color: var(--col-white);
}

.footer-bottom {
    background-color: transparent;
    padding: 15px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-img {
    height: 28px;
    object-fit: contain;
}

.payment-sep {
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--col-yellow);
}

.footer-socials a:hover {
    background-color: var(--col-yellow);
    color: var(--col-dark-blue);
}

.copyright {
    font-size: 12px;
    color: var(--col-white);
    text-align: center;
}

.copyright a {
    color: var(--col-white);
    text-decoration: underline;
}

.copyright a:hover {
    color: var(--col-yellow);
}

/* Responsiveness for remaining sections */
@media (max-width: 992px) {
    .info-cards-section {
        flex-direction: column;
    }

    .locations-wrapper {
        flex-direction: column;
    }

    .locations-map {
        min-height: 500px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-only-break {
        display: block;
    }

    .footer-bottom-inner {
        flex-direction: column;
        border-top: none;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-socials {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .payment-img {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-card {
        flex-direction: column;
    }

    .solid-bg-blue {
        padding: 40px 20px;
        flex: none;
    }

    .about-image {
        min-height: 250px;
        flex: none;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-btns {
        flex-direction: column;
    }

    /* Container padding */
    .container {
        padding: 0 0px;
    }

    /* Header tweaks */
    .social-icons,
    .phone-info {
        display: none;
    }

    .top-bar-inner {
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        justify-content: flex-start;
    }

    .shipping-info {
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
    }

    .shipping-info span {
        display: inline-block;
        animation: marquee 15s linear infinite;
    }

    @keyframes marquee {

        0%,
        15% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .header-inner {
        position: relative;
    }

    .mobile-menu-btn {
        position: absolute;
        left: 10px;
    }

    .logo {
        margin-left: 50px;
        margin-right: auto;
    }

    /* Hero Slide text below image */
    .slider-arrow {
        display: none;
    }

    .hero-slide {
        flex-direction: column;
        align-items: flex-start;
        background-position: top center;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: var(--col-light-yellow);
    }

    .hero-content {
        height: auto;
        padding-top: 180px;
        padding-bottom: 20px;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .category-thumbs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        overflow-x: visible;
        margin-bottom: 30px;
        padding-bottom: 0px;
    }

    .thumb-item {
        flex: none;
        width: 100%;
        margin-bottom: 5px;
    }

    .thumb-img {
        width: 100%;
        height: 120px;
    }

    /* Locations tweaks */
    .loc-contact {
        flex-direction: column;
        gap: 5px;
    }

    .locations-map {
        height: 300px !important;
        min-height: 300px !important;
    }

    /* Promo Banners Mobile Specific */
    .promo-banner {
        background-color: var(--col-dark-blue) !important;
        background-image: none !important;
        margin-top: 20px;
    }

    .promo-despacho,
    .bg-red-pill {
        font-size: 24px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .banner-center p {
        font-size: 20px;
        gap: 30px;
    }

    /* Footer Accordion & Spacing */
    .footer-brand {
        margin-bottom: 25px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-brand img {
        margin: 0 auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding: 40px 10px;
    }

    .footer-widget ul,
    .footer-widget p {
        display: none;
    }

    .footer-widget.open ul,
    .footer-widget.open p {
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }

    .footer-widget h4 {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-widget h4::after {
        content: '\f067';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 14px;
        transition: transform 0.3s;
    }

    .footer-widget.open h4::after {
        content: '\f068';
    }
}

/* ===== CART DRAWER ===== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background-color: var(--col-white);
    z-index: 10001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-header h2 {
    font-size: 20px;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.close-cart:hover {
    color: var(--col-red);
}

.cart-shipping-bar {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.shipping-progress-bg {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    position: relative;
    margin-bottom: 10px;
}

.shipping-progress-fill {
    height: 100%;
    width: 0%;
    background-color: var(--col-green);
    border-radius: 4px;
    transition: width 0.3s;
}

.shipping-progress-bg i {
    position: absolute;
    top: -6px;
    left: 0%;
    color: var(--col-green);
    font-size: 20px;
    transform: translateX(-50%);
    transition: left 0.3s;
}

.shipping-text {
    font-size: 13px;
    margin: 0;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.empty-cart-msg {
    color: #888;
    text-align: center;
    margin-top: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.item-price {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.item-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 2px 10px;
    gap: 10px;
}

.item-quantity button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
}

.item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
}

.item-remove:hover {
    color: var(--col-red);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #fafafa;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cart-tax-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.cart-buttons {
    display: flex;
    gap: 10px;
}

.cart-buttons .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}