/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Regla general para todos los botones - Fuente Poppins */
button, .btn, input[type="button"], input[type="submit"] {
    font-family: 'Poppins', sans-serif !important;
}

:root {
    /* Nueva paleta de colores */
    --olive-green: #5A6F1E; /* Verde oliva - color principal/base */
    --beige: #F5E6D3; /* Beige - fondos */
    --white: #FFFFFF; /* Blanco - espacios, textos y secciones claras */
    --burnt-orange: #E85C0D; /* Naranja quemado - botones y llamados a la acción */
    --burnt-orange-hover: #C44A0A; /* Naranja más oscuro para hover */
    --light-gray: #F8F8F8;
    --text-dark: #5A6F1E; /* Verde oliva para textos principales */
    --text-light: #8B9A3A; /* Verde oliva claro para textos secundarios */
    
    /* Tipografías */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Courgette', cursive;
    --font-condensed: 'Fira Sans Extra Condensed', sans-serif;
    --font-display: 'Chewy', cursive;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--olive-green), #6B7F2A);
    --gradient-warm: linear-gradient(135deg, var(--beige), #F9F0E6);
    --gradient-orange: linear-gradient(135deg, var(--burnt-orange), var(--burnt-orange-hover));
    
    /* Sombras con tonos de la nueva paleta */
    --shadow-light: 0 2px 10px rgba(90, 111, 30, 0.1);
    --shadow-medium: 0 5px 20px rgba(90, 111, 30, 0.15);
    --shadow-heavy: 0 10px 30px rgba(90, 111, 30, 0.2);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px; /* Base font size for better mobile scaling */
}

/* Typography Scale - Mobile First */
h1, .h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--olive-green);
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: var(--olive-green);
}

h3, .h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    color: var(--olive-green);
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--olive-green);
}

h5, .h5 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    color: var(--olive-green);
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.3rem;
    color: var(--olive-green);
}

p, .p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Responsive Typography */
@media (min-width: 768px) {
    h1, .h1 { font-size: 3rem; }
    h2, .h2 { font-size: 2.5rem; }
    h3, .h3 { font-size: 1.75rem; }
    h4, .h4 { font-size: 1.5rem; }
    h5, .h5 { font-size: 1.25rem; }
    h6, .h6 { font-size: 1.1rem; }
    p, .p { font-size: 1.1rem; }
}

@media (min-width: 1024px) {
    h1, .h1 { font-size: 3.5rem; }
    h2, .h2 { font-size: 3rem; }
    h3, .h3 { font-size: 2rem; }
    h4, .h4 { font-size: 1.75rem; }
    h5, .h5 { font-size: 1.5rem; }
    h6, .h6 { font-size: 1.25rem; }
    p, .p { font-size: 1.2rem; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Spacing System - Mobile First */
.section {
    padding: 3rem 0;
}

.section-sm {
    padding: 2rem 0;
}

.section-lg {
    padding: 4rem 0;
}

.section-xl {
    padding: 6rem 0;
}

/* Responsive Spacing */
@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-sm {
        padding: 3rem 0;
    }
    
    .section-lg {
        padding: 6rem 0;
    }
    
    .section-xl {
        padding: 8rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 5rem 0;
    }
    
    .section-sm {
        padding: 4rem 0;
    }
    
    .section-lg {
        padding: 8rem 0;
    }
    
    .section-xl {
        padding: 10rem 0;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease-in-out;
}

.navbar {
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo a:hover {
    background: var(--burnt-orange-hover);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--olive-green);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--burnt-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Menú hamburguesa — móvil / tablet (≤991px); escritorio sin cambios */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span,
.hamburger .hamburger-line {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--olive-green);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1),
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3),
.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991px) {
    .header,
    .navbar {
        overflow: visible;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 10060;
        touch-action: manipulation;
    }

    .nav-container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0.35rem !important;
        padding: 0.4rem 12px !important;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo a {
        width: 64px !important;
        height: 64px !important;
    }

    .logo-image {
        height: 42px !important;
        max-width: 52px !important;
    }

    .header-actions {
        margin-left: auto !important;
        margin-right: 0 !important;
        transform: none !important;
        gap: 0.35rem !important;
        flex-shrink: 0;
    }

    .language-selector select {
        max-width: 118px;
        font-size: 0.78rem !important;
        padding: 0.35rem 1.75rem 0.35rem 0.45rem !important;
    }

    .nav-menu {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        top: 76px !important;
        bottom: auto !important;
        max-height: calc(100vh - 76px - env(safe-area-inset-bottom, 0px)) !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0.25rem 0 1rem !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        background: var(--white) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        z-index: 998 !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        list-style: none !important;
        text-align: left !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-6px);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    .nav-menu.active {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0);
        z-index: 10058 !important;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(90, 111, 30, 0.12);
    }

    .nav-menu a {
        white-space: normal !important;
        padding: 0.95rem 1rem !important;
        font-size: 1rem !important;
        display: block !important;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu a::after {
        display: none !important;
    }

    html {
        overflow-x: hidden;
    }
}

@media (min-width: 992px) {
    .hamburger {
        display: none !important;
    }

    .nav-menu {
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        flex-direction: row !important;
        width: auto !important;
        max-height: none !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
        padding: 0 !important;
        gap: 2rem !important;
    }

    .nav-menu li {
        border-bottom: none !important;
        width: auto !important;
    }

    .nav-menu a {
        width: auto !important;
        padding: 0.5rem 0 !important;
        font-size: inherit !important;
        white-space: nowrap !important;
    }
}

/* Hero Section */
.hero {
    margin-top: 100px;
    height: 80vh;
    position: relative;
    overflow: hidden;
    background: var(--olive-green);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 18px;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 30px;
}

.carousel-nav.next {
    right: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: white;
    border-color: white;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Banner Overlay for Carousel */
.banner-overlay {
    position: absolute;
    top: 60%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.banner-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 80px;
    color: white;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
    top: 55%;
    left: 120px;
    transform: translateY(-50%);
    text-align: left;
}

.hero-cta {
    position: absolute;
    bottom: 50px;
    left: 19%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}


/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: white;
    border: 2px solid white;
    transform: scale(1.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* Hacer el hero estático - ocultar todos los slides excepto el primero */
.carousel-slide:not(.active) {
    display: none;
}

.slide-content {
    flex: 1;
    max-width: 500px;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.category-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.animated-icon {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: bounceSnack 2s ease-in-out infinite;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* Slide backgrounds */
.snacks-slide {
    background: linear-gradient(135deg, rgba(90, 111, 30, 0.9), rgba(90, 111, 30, 0.7)), url('mapa horizontal.png');
    background-size: cover;
    background-position: center;
}

.candys-slide {
    background: linear-gradient(135deg, rgba(90, 111, 30, 0.9), rgba(90, 111, 30, 0.7)), url('mapa horizontal.png');
    background-size: cover;
    background-position: center;
}

.condiments-slide {
    background: linear-gradient(135deg, rgba(90, 111, 30, 0.9), rgba(90, 111, 30, 0.7)), url('mapa horizontal.png');
    background-size: cover;
    background-position: center;
}

.cookies-slide {
    background: linear-gradient(135deg, rgba(90, 111, 30, 0.9), rgba(90, 111, 30, 0.7)), url('mapa horizontal.png');
    background-size: cover;
    background-position: center;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Oculto para hacer el hero estático */
    align-items: center;
    gap: 20px;
    z-index: 100;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

@keyframes bounceSnack {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    10% {
        transform: translateY(-10px) rotate(-5deg);
    }
    30% {
        transform: translateY(-5px) rotate(3deg);
    }
    60% {
        transform: translateY(-3px) rotate(-2deg);
    }
}

.animated-icon-candy {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: swingCandy 2s ease-in-out infinite;
}

@keyframes swingCandy {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(15deg) scale(1.1);
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    75% {
        transform: rotate(-15deg) scale(1.1);
    }
}

.animated-icon-spice {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulseSpice 2s ease-in-out infinite;
}

@keyframes pulseSpice {
    0%, 100% {
        transform: scale(1);
        filter: hue-rotate(0deg);
    }
    50% {
        transform: scale(1.2);
        filter: hue-rotate(20deg);
    }
}

.animated-icon-cake {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: bounceCake 2s ease-in-out infinite;
}

@keyframes bounceCake {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    10% {
        transform: translateY(-15px) scale(1.1);
    }
    30% {
        transform: translateY(-8px) scale(1.05);
    }
    60% {
        transform: translateY(-4px) scale(1.02);
    }
}

/* Our Products Section */
.our-products {
    padding: 60px 0;
    background: var(--white);
    width: 100%;
}

@media (max-width: 768px) {
    .our-products {
        padding: 80px 0 !important;
    }
}

@media (max-width: 480px) {
    .our-products {
        padding: 60px 0 !important;
    }
}

.our-products .container {
    max-width: none;
    width: 100%;
    padding: 0;
}

/* Products Showcase Grid */
.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 2rem;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.product-showcase-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: none;
    border: 1px solid #e0e0e0;
}

/* .product-showcase-card:hover eliminado */

.product-showcase-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
    min-height: 0;
}

.product-showcase-card .card-text-content {
    flex: 1;
    margin-top: 1rem;
    width: 100%;
}


.product-showcase-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}


/* .product-showcase-image - regla duplicada eliminada */

/* .product-showcase-card:hover .product-showcase-image eliminado */


.our-products .container {
    max-width: none;
    padding: 0;
}

.our-products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--olive-green);
    margin-bottom: 2rem;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: 700;
    line-height: 1.2;
}

/* Responsive title for our-products */
@media (min-width: 768px) {
    .our-products h2 {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .our-products h2 {
        font-size: 3.5rem;
        margin-bottom: 3rem;
    }
}

/* Responsive padding for our-products section */
@media (max-width: 768px) {
    .our-products {
        padding: 50px 0 !important;
    }
    
    .our-products h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .our-products {
        padding: 40px 0 !important;
    }
    
    .our-products h2 {
        font-size: 1.65rem;
        margin-bottom: 1.2rem;
        margin-left: 12px;
        margin-right: 12px;
        padding: 0 4px;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .category-card {
        padding: 1.2rem;
        border-radius: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .category-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(90, 111, 30, 0.15);
    }
    
    .category-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .category-card {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }
    
    .category-card h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .category-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid var(--beige);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--beige), var(--olive-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--olive-green);
}

.category-card .category-icon {
    margin-bottom: 1rem;
}

.category-card .category-icon i {
    font-size: 3rem;
    color: var(--olive-green);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon i {
    color: var(--burnt-orange);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.3rem;
    color: var(--olive-green);
    margin-bottom: 0;
    font-weight: 600;
}

/* Estilos para el carrusel de productos destacados */
.product-carousel-section {
    padding: 42px 0;
    background: var(--white);
}

.carousel-header {
    text-align: center;
    margin-bottom: 2rem;
}

.carousel-header h2 {
    font-size: 2rem;
    color: var(--olive-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.product-carousel {
    overflow: hidden;
    margin: 0 50px;
    width: calc(100% - 100px);
    display: flex;
    justify-content: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 1368px; /* 9 productos × 152px cada uno */
}

.carousel-product {
    flex: 0 0 auto;
    width: 144px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 4px;
}

.product-carousel-image {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0.6rem;
    transition: transform 0.3s ease;
}

.carousel-product:hover .product-carousel-image {
    transform: scale(1.1);
}

.product-carousel-label {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--olive-green);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.2;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--burnt-orange);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav-btn:hover {
    color: var(--burnt-orange-hover);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
    transition: transform 0.1s ease;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 768px) {
    .carousel-product {
        flex: 0 0 calc(100% / 3);
    }
    
    .product-carousel {
        margin: 0 30px;
    }
    
    .carousel-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .carousel-product {
        flex: 0 0 calc(100% / 2);
    }
    
    .product-carousel {
        margin: 0 25px;
    }
}


.product-showcase-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-medium);
    transition: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--beige);
}

/* .product-showcase-card:hover eliminado */

.card-content {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    gap: 1rem;
}

.card-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-showcase-card h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.1;
    color: var(--olive-green);
    text-transform: uppercase;
}

.product-showcase-card p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.go-button {
    background: var(--burnt-orange);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
    width: 150px;
}

.go-button:hover {
    background: var(--burnt-orange-hover);
    transform: translateY(-2px);
}

.product-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 0;
}

/* .product-showcase-image - regla duplicada eliminada */

/* .product-showcase-card:hover .product-showcase-image eliminado */




.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dots .dot {
    width: 1px;
    height: 8px;
    border-radius: 50%;
    background: var(--beige);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--olive-green);
}


/* Category Header for subpages */
.category-header {
    padding: 120px 0 100px 0;
    background: var(--olive-green);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('mapa horizontal.png') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.category-header .container {
    position: relative;
    z-index: 2;
}

.category-breadcrumb {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.category-breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.category-breadcrumb a:hover {
    opacity: 1;
}

.category-breadcrumb span {
    margin: 0 10px;
    opacity: 0.6;
}

.category-title {
    max-width: 600px;
    margin: 0 auto;
}

.category-title .category-icon {
    margin-bottom: 1.5rem;
}

.category-title .category-icon i {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.category-title h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.category-title p {
    font-size: 1.6rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    margin: 0 auto;
}

.back-to-home {
    margin-top: 3rem;
}

.back-to-home .back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.back-to-home .back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Product Detail Page */
.product-detail {
    padding: 180px 0 80px 0;
    background: var(--white);
    min-height: 100vh;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image-section {
    position: sticky;
    top: 120px;
}

.product-large-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-info-section {
    padding: 2rem 0;
}

.product-breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.product-breadcrumb a {
    color: var(--olive-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: var(--burnt-orange);
}

.product-breadcrumb span {
    margin: 0 8px;
    color: #999;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--olive-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.product-specs {
    margin-bottom: 2rem;
}

.product-specs h3 {
    font-size: 1.3rem;
    color: var(--olive-green);
    margin-bottom: 1rem;
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.product-specs li:last-child {
    border-bottom: none;
}

.quantity-selector {
    margin-bottom: 2rem;
}

.quantity-selector label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--olive-green);
    margin-bottom: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--beige);
    background: var(--white);
    color: var(--olive-green);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.qty-btn:hover {
    background: var(--beige);
    color: var(--olive-green);
}

#quantity {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--olive-green);
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.add-to-cart-main-btn {
    background: var(--burnt-orange);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.add-to-cart-main-btn:hover {
    background: var(--burnt-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.back-to-category-btn {
    background: transparent;
    color: var(--olive-green);
    border: 2px solid var(--olive-green);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.back-to-category-btn:hover {
    background: var(--olive-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-section {
        position: static;
    }
    
    .product-large-image {
        height: 300px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart-main-btn,
    .back-to-category-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Virtual Store Section */
.virtual-store {
    padding: 80px 0;
    background: var(--white);
    min-height: 100vh;
}

.store-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.back-button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--beige);
    color: var(--olive-green);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-button:hover {
    background: var(--olive-green);
    color: var(--white);
    transform: translateY(-50%) translateX(-5px);
}

.store-header h2 {
    font-size: 3rem;
    color: var(--olive-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.store-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.store-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--beige);
    border-radius: 15px;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--olive-green);
}

.filter-group select {
    padding: 8px 15px;
    border: 2px solid var(--beige);
    border-radius: 8px;
    background: white;
    color: var(--olive-green);
    font-size: 1rem;
}

.filter-group input[type="text"] {
    padding: 6px 15px;
    border: 2px solid var(--beige);
    border-radius: 8px;
    background: white;
    color: var(--olive-green);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    width: 63%;
    min-width: 126px;
    transition: all 0.3s ease;
}

.filter-group input[type="text"]:focus {
    outline: none;
    border-color: var(--olive-green);
    box-shadow: 0 0 0 3px rgba(90, 111, 30, 0.1);
}

.filter-group input[type="text"]::placeholder {
    color: var(--olive-green);
    opacity: 0.7;
    font-family: 'Poppins', sans-serif;
}

.filter-group input[type="range"] {
    width: 150px;
    margin: 0 10px;
}

#price-display {
    font-weight: 600;
    color: var(--olive-green);
    min-width: 100px;
}

.products-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .products-store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .store-product-card {
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .store-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .store-product-image {
        height: 200px;
    }
    
    .store-product-info {
        padding: 1rem;
    }
    
    .store-product-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .store-product-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .add-to-cart-btn,
    .view-details-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
        font-weight: 600;
    }
    
    /* Store filters tablet optimization */
    .store-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
        padding: 1.5rem;
    }
    
    .filter-group {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .filter-group label {
        font-size: 1rem;
        min-width: 120px;
    }
    
    .filter-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .products-store-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .store-product-card {
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }
    
    .store-product-image {
        height: 180px;
    }
    
    .store-product-info {
        padding: 0.8rem;
    }
    
    .store-product-info h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .store-product-actions {
        gap: 0.6rem;
    }
    
    .add-to-cart-btn,
    .view-details-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    /* Store filters mobile optimization */
    .store-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .filter-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .filter-group select {
        padding: 0.7rem;
        font-size: 0.9rem;
        border-radius: 6px;
        width: 100%;
    }
    
    /* Pagination mobile optimization */
    .store-pagination {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .pagination-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 20px;
        width: 100%;
        justify-content: center;
    }
    
    .pagination-info {
        font-size: 1rem;
        text-align: center;
        order: -1;
    }
}

.store-product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.store-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--olive-green);
}

.store-product-image {
    height: 280px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.store-product-image:hover {
    transform: scale(1.02);
}

.store-product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    width: auto;
    height: auto;
}

.store-product-card:hover .store-product-image img {
    transform: scale(1.05);
}

/* Asegurar que las imágenes de grain.html tengan el mismo tamaño que cookies.html */
.store-product-image {
    height: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.store-product-image img {
    max-width: 90% !important;
    max-height: 90% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    background: var(--white) !important;
}

.store-product-info {
    padding: 1.5rem;
}

.store-product-info h3 {
    font-size: 1.3rem;
    color: var(--olive-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.store-product-info h3:hover {
    color: var(--burnt-orange);
}

.store-product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.store-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burnt-orange);
    margin-bottom: 1rem;
}

.store-product-actions {
    display: flex;
    gap: 1rem;
}

.add-to-cart-btn {
    flex: 1;
    background: var(--burnt-orange);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: var(--burnt-orange-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.view-details-btn {
    background: transparent;
    color: var(--olive-green);
    border: 2px solid var(--beige);
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: var(--beige);
    color: var(--olive-green);
}

.store-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.pagination-btn {
    background: var(--beige);
    color: var(--olive-green);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--olive-green);
    color: var(--white);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    font-weight: 600;
    color: var(--olive-green);
    font-size: 1.1rem;
}

/* Section Divider */
.section-divider {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="30" cy="5" r="0.5" fill="%23e9ecef" opacity="0.2"/><circle cx="50" cy="15" r="0.8" fill="%23e9ecef" opacity="0.25"/><circle cx="70" cy="8" r="0.6" fill="%23e9ecef" opacity="0.2"/><circle cx="90" cy="12" r="0.4" fill="%23e9ecef" opacity="0.3"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--light-earth), var(--bright-earth), var(--light-earth), transparent);
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(210, 180, 140, 0.3), rgba(205, 133, 63, 0.3), rgba(210, 180, 140, 0.3), transparent);
    border-radius: 2px;
}

.divider-icon {
    margin: 0 2rem;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--light-earth);
    position: relative;
    animation: floatDivider 3s ease-in-out infinite;
}

.divider-icon i {
    font-size: 1.8rem;
    color: var(--dark-earth);
}

.divider-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--light-earth), var(--bright-earth), var(--light-earth));
    border-radius: 50%;
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
}

@keyframes floatDivider {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-button {
    background: var(--burnt-orange);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    background: var(--burnt-orange-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
}

.product-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-bg {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.snacks-bg {
    background: linear-gradient(45deg, rgba(210, 180, 140, 0.8), rgba(205, 133, 63, 0.8)), url('colombia-map.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: normal;
}

.conservas-bg {
    background: linear-gradient(45deg, #45B7D1, #96CEB4);
}

.especias-bg {
    background: linear-gradient(45deg, #FECA57, #FF9FF3);
}

.dulces-bg {
    background: linear-gradient(45deg, rgba(210, 180, 140, 0.4), rgba(205, 133, 63, 0.4)), url('dulces.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: normal;
}

.product-item h3 {
    color: var(--dark-earth);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Single image container for snacks */
.single-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 600px;
}

.snacks-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease;
}

.snacks-main-image:hover {
    transform: scale(1.05);
}

.candys-main-image,
.cookies-main-image,
.condiments-main-image,
.grain-main-image,
.venezuelan-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease;
}

.candys-main-image:hover,
.cookies-main-image:hover,
.condiments-main-image:hover,
.grain-main-image:hover,
.venezuelan-main-image:hover {
    transform: scale(1.05);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Oculto para hacer el hero estático */
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--white);
    color: var(--dark-earth);
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Producto Destacado - Banner La Payanca */
.producto-destacado {
    padding: 80px 0;
    background: var(--white);
}

.producto-destacado .container {
    max-width: none;
    padding: 0;
}

/* Hero section styles - removed duplicate styles that conflicted with carousel */

/* Responsive hero background for mobile */
    @media (max-width: 768px) {
        body {
            margin-top: 250px;
        }
        .hero {
            height: 400px;
        }
        
        .hero-banner-image {
            content: url('bannermovil.jpg');
        }
        
        .banner-overlay {
            top: 70%;
            left: 70%;
        }
        
        .banner-title {
            font-size: 80px;
            letter-spacing: 2px;
        }
        
        
        .carousel-dots {
            bottom: 10px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
        }
    
    .hero-content {
        top: 35%;
        left: 0px;
        text-align: left;
    }
    
    /* Category content alignment for tablets */
    .category-content {
        right: 20px !important;
        left: auto !important;
        text-align: right !important;
        top: calc(35% + 20px) !important;
    }
    
    .main-content {
        left: 0px !important;
        text-align: left !important;
    }
    
    .category-cta {
        right: 80px !important;
        left: auto !important;
        transform: none !important;
    }
    
    .main-cta {
        left: 15% !important;
        transform: translateX(-50%) !important;
    }
    
    /* Mobile Carousel Navigation */
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-nav.prev {
        left: 15px;
    }
    
    .carousel-nav.next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.1;
        max-width: 90%;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta {
        left: 15%;
        bottom: 30px;
    }
    
    .hero .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

    @media (max-width: 480px) {
        body {
            margin-top: 250px;
        }
        .hero {
            height: 300px;
        }
        
        .hero-banner-image {
            content: url('bannermovil.jpg');
        }
        
        .banner-overlay {
            top: 70%;
            left: 70%;
        }
        
        .banner-title {
            font-size: 60px;
            letter-spacing: 1px;
        }
        
        
        .carousel-dots {
            bottom: 5px;
        }
        
        .dot {
            width: 8px;
            height: 8px;
        }
    
    .hero-content {
        top: 30%;
        left: 15px;
        text-align: left;
    }
    
    /* Category content alignment for small mobile */
    .category-content {
        right: 15px !important;
        left: auto !important;
        text-align: right !important;
        top: calc(30% + 20px) !important;
    }
    
    .main-content {
        left: 15px !important;
        text-align: left !important;
    }
    
    .category-cta {
        right: 60px !important;
        left: auto !important;
        transform: none !important;
    }
    
    .main-cta {
        left: 10% !important;
        transform: translateX(-50%) !important;
    }
    
    /* Small Mobile Carousel Navigation */
    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 10px;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .hero-content h1 {
        font-size: 1.2rem;
        line-height: 1.0;
        max-width: 95%;
    }
    
    .hero-content p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-cta {
        left: 10%;
        bottom: 20px;
    }
    
    .hero .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

.hero-cta {
    position: absolute;
    bottom: 50px;
    left: 19%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.hero .cta-button {
    background: var(--burnt-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.hero .cta-button:hover {
    background: var(--burnt-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: absolute;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
    top: 55%;
    left: 120px;
    transform: translateY(-50%);
    text-align: left;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.hero .cta-button {
    background: var(--burnt-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .cta-button:hover {
    background: var(--burnt-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Category banners - content aligned to the right */
.category-content {
    left: auto !important;
    right: 120px !important;
    text-align: right !important;
    top: calc(55% + 20px) !important;
}

/* Main banner keeps left alignment */
.main-content {
    left: 160px !important;
    text-align: left !important;
}

/* Category CTA buttons aligned to the right */
.category-cta {
    left: auto !important;
    right: 140px !important;
    transform: none !important;
    text-align: right !important;
}

/* Main CTA keeps center-left alignment */
.main-cta {
    left: 19% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
}

.payanca-banner {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    height: 460px; /* Ajustado para coincidir con la altura de la imagen */
    margin: 0 20px;
}

/* Sección izquierda (30%) - Texto promocional */
.payanca-text-section {
    flex: 0 0 30%;
    background: var(--beige);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.payanca-subtitle {
    font-size: 1.1rem;
    color: var(--olive-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--font-primary);
    line-height: 1.3;
}

.payanca-title {
    font-size: 2rem;
    color: var(--burnt-orange);
    margin-bottom: 0.6rem;
    font-weight: 400;
    font-family: var(--font-secondary);
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.payanca-description {
    font-size: 0.95rem;
    color: var(--olive-green);
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 300px;
    font-family: var(--font-primary);
}

.payanca-buy-button {
    background: var(--burnt-orange);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
    width: 160px;
    box-shadow: 0 3px 12px rgba(232, 92, 13, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.payanca-buy-button:hover {
    background: var(--burnt-orange-hover);
    transform: translateY(-2px);
}

/* Sección derecha (70%) - Imagen del producto */
.payanca-image-section {
    flex: 0 0 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    height: 460px; /* Altura fija que coincide con la imagen */
}

.payanca-product-image {
    width: 100%;
    height: 460px; /* Aumentado 15% de 400px */
    object-fit: cover;
    border-radius: 0 15px 15px 0;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.payanca-product-image:hover {
    box-shadow: var(--shadow-heavy);
}


/* Responsive Design */
@media (max-width: 768px) {
    .payanca-banner {
        flex-direction: column;
        min-height: auto;
    }
    
    .payanca-text-section,
    .payanca-image-section {
        flex: 1;
        width: 100%;
    }
    
    .payanca-text-section {
        padding: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .payanca-title {
        font-size: 2.2rem;
    }
    
    .payanca-subtitle {
        font-size: 1rem;
    }
    
    .payanca-description {
        max-width: none;
        text-align: center;
        font-size: 0.9rem;
    }
    
    .payanca-buy-button {
        width: 140px;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .payanca-image-section {
        padding: 0;
    }
    
    .payanca-product-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .payanca-text-section {
        padding: 1.5rem;
    }
    
    .payanca-title {
        font-size: 1.8rem;
    }
    
    .payanca-subtitle {
        font-size: 0.9rem;
    }
    
    .payanca-description {
        font-size: 0.85rem;
    }
    
    .payanca-buy-button {
        width: 120px;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .payanca-product-image {
        height: 200px;
    }
}

/* Company History */
.company-history {
    padding: 180px 0 100px 0;
    background: var(--white);
}

.history-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.history-text {
    text-align: center;
    width: 100%;
}

.history-text h2 {
    font-size: 2.5rem;
    color: var(--olive-green);
    margin-bottom: 2rem;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--burnt-orange);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
}

.counter {
    transition: all 0.3s ease;
}

.counter.animating {
    transform: scale(1.1);
    color: var(--burnt-orange);
}

.history-image {
    position: relative;
}

.history-bg {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.history-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Quiénes Somos Section */
.quienes-somos {
    padding: 80px 0;
    background: var(--olive-green);
}

.quienes-somos-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.quienes-somos-text {
    text-align: center;
    width: 100%;
}

.quienes-somos-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
}

.quienes-somos-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* Qué Hacemos Section */
.que-hacemos {
    padding: 80px 0;
    background: var(--white);
}

.que-hacemos-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.que-hacemos-text {
    text-align: center;
    width: 100%;
}

.que-hacemos-text h2 {
    font-size: 2.5rem;
    color: var(--olive-green);
    margin-bottom: 2rem;
}

.que-hacemos-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
}

.productos-lista {
    margin: 2rem 0;
}

.productos-lista ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    text-align: left;
}

.productos-lista li {
    font-size: 1.1rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 0.8rem 1.2rem;
    background: var(--olive-green);
    border-radius: 8px;
    border-right: 4px solid var(--burnt-orange);
    transition: transform 0.2s ease;
}

.productos-lista li:hover {
    transform: translateX(5px);
}

.payanca-destacado {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: white !important;
    background: var(--burnt-orange) !important;
    padding: 1.5rem 2rem !important;
    border-radius: 12px !important;
    border: 2px solid var(--burnt-orange) !important;
    margin: 2rem auto !important;
    max-width: 900px !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
}

/* Por Qué Nosotros Section */
.por-que-nosotros {
    padding: 80px 0;
    background: var(--burnt-orange);
}

.por-que-nosotros-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.por-que-nosotros-text {
    text-align: center;
    width: 100%;
}

.por-que-nosotros-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ventajas-lista {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.ventajas-lista li {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.ventajas-lista .check {
    margin-right: 0.5rem;
}

.ventaja-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ventaja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ventaja-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--olive-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ventaja-icon i {
    font-size: 1.8rem;
    color: white;
}

.ventaja-content {
    flex: 1;
}

.ventaja-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.ventaja-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

/* El Valor de lo Colombiano Section */
.valor-colombiano {
    padding: 80px 0;
    background: var(--white);
}

.valor-colombiano-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.valor-colombiano-text {
    text-align: center;
    width: 100%;
}

.valor-colombiano-text h2 {
    font-size: 2.5rem;
    color: var(--olive-green);
    margin-bottom: 2rem;
}

.valor-colombiano-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
}

.valor-destacado {
    margin-top: 3rem;
    padding: 2rem 3rem;
    background: var(--olive-green);
    border-radius: 15px;
    border: 2px solid var(--burnt-orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.valor-destacado p {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    margin: 0;
    text-align: center;
}

.valor-destacado::before {
    content: '"';
    font-size: 4rem;
    color: white;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    opacity: 0.3;
}

.valor-destacado::after {
    content: '"';
    font-size: 4rem;
    color: white;
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-family: serif;
    opacity: 0.3;
}

/* Locations */
.locations {
    padding: 100px 0;
    background: var(--white);
}

.map-container {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    display: block;
    border-radius: 12px;
}

.location-type {
    color: var(--olive-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-address {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.location-phone {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.locations h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--olive-green);
    margin-bottom: 3rem;
}

.locations-content {
    display: grid;
    gap: 4rem;
}

.current-locations h3,
.upcoming-locations h3 {
    font-size: 2rem;
    color: var(--olive-green);
    margin-bottom: 2rem;
    text-align: center;
}

.location-cards,
.upcoming-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card,
.upcoming-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--beige);
}

.location-card:hover,
.upcoming-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--olive-green);
}

.location-icon,
.upcoming-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.location-card h4,
.upcoming-card h4 {
    color: var(--olive-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Contact */
/* Contact Section Styles */
.contact {
    padding: 120px 0 80px;
    background: var(--light-gray);
}

.contact-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Left Section: Get In Touch */
.get-in-touch-section {
    padding-right: 2rem;
}

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--burnt-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-detail-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.follow-us-section {
    margin-top: 2rem;
}

.follow-us-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-media-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--burnt-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--burnt-orange-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Right Section: Send a Message */
.send-message-section {
    display: flex;
    justify-content: flex-end;
}

.message-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    width: 100%;
    max-width: 500px;
}

.message-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: var(--font-primary);
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.message-form input,
.message-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.message-form input:focus,
.message-form textarea:focus {
    outline: none;
    border-color: var(--burnt-orange);
}

.message-form textarea {
    resize: vertical;
    min-height: 120px;
}

.privacy-statement {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-top: 0.5rem;
}

.submit-button {
    background: var(--burnt-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--burnt-orange-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Map Section */
.map-section {
    margin-top: 4rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Leaflet Map Styles */
#map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Custom marker styles */
.custom-marker {
    background: transparent !important;
    border: none !important;
    z-index: 1000 !important;
    pointer-events: auto !important;
}

.custom-marker div {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 1000 !important;
}

/* Custom popup styles */
.leaflet-popup-content-wrapper {
    background: transparent;
    box-shadow: none;
    border-radius: 10px;
}

.leaflet-popup-content {
    margin: 0;
    padding: 0;
}

.leaflet-popup-tip {
    background: white;
    border: 1px solid #E85C0D;
}

/* Leaflet controls styling */
.leaflet-control-zoom a {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--beige);
    box-shadow: var(--shadow-light);
}

.leaflet-control-zoom a:hover {
    background: var(--burnt-orange);
    color: var(--white);
}

.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-light);
    font-size: 11px;
}

/* Estilos para el botón de ubicación exacta */
.leaflet-popup-content div[onclick="openGoogleMaps()"]:hover {
    background: var(--burnt-orange) !important;
    color: var(--white) !important;
}

.leaflet-popup-content div[onclick="openGoogleMaps()"]:hover p {
    color: var(--white) !important;
}

/* Location and Contact Section */
.location-contact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.location-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section {
    padding-right: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    margin-left: -160px;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--burnt-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-detail-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.contact-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-button {
    background: var(--burnt-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.contact-button:hover {
    background: var(--burnt-orange-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-link {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--burnt-orange);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.contact-link:hover {
    background: var(--burnt-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.map-section {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-top: 20px;
}

#location-map {
    width: 100%;
    height: 375px;
    border-radius: 20px;
}

/* Testimonials Carousel Section */
.testimonials-section {
    padding: 80px 0 160px 0;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    padding: 0 15px;
    width: calc(100% + 200px);
}

.testimonial-card {
    width: 500px;
    height: 250px;
    flex-shrink: 0;
}

.testimonial-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--beige);
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--burnt-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
    overflow: visible;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.author-info h4 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.author-info span {
    font-size: 0.65rem;
    color: var(--text-light);
}

.rating {
    display: flex;
    gap: 0.1rem;
}

.rating i {
    color: var(--burnt-orange);
    font-size: 0.65rem;
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    background: var(--burnt-orange);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.testimonial-nav-btn:hover {
    background: var(--burnt-orange-hover);
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}


/* Footer */
.footer {
    background: var(--olive-green);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
}

.footer-content::after {
    content: '';
    position: absolute;
    left: calc(66.66% + 1.5rem - 160px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--beige);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-section ul li a:hover {
    color: var(--beige);
    text-decoration: underline;
}

.products-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section:first-child h4 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-left: 10px;
    transform: translateX(-100px);
}

.footer-section:first-child .products-columns {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--olive-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-content::after {
        display: none;
    }
    
    .footer-section:first-child {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section:first-child .products-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
    }
    
    /* Navegación móvil: menú hamburguesa (reglas globales max-width 991px arriba) */
    
    .slide-content h2 {
        font-size: 3rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    /* Tablet Spacing Optimizations */
    .hero {
        margin-top: 90px;
        height: 75vh;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-lg {
        padding: 4rem 0;
    }
    
    .section-xl {
        padding: 5rem 0;
    }
    
    /* Typography spacing for tablet */
    h1, .h1 {
        margin-bottom: 0.9rem;
    }
    
    h2, .h2 {
        margin-bottom: 0.7rem;
    }
    
    h3, .h3 {
        margin-bottom: 0.6rem;
    }
    
    p, .p {
        margin-bottom: 0.9rem;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .history-content,
    .contact-content,
    .quienes-somos-content,
    .que-hacemos-content,
    .por-que-nosotros-content,
    .valor-colombiano-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .history-stats {
        grid-template-columns: 1fr;
    }
    
    .location-cards,
    .upcoming-cards {
        grid-template-columns: 1fr;
    }
    
    .carousel-controls {
        bottom: 20px;
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    /* Mobile Spacing Optimizations */
    .hero {
        margin-top: 80px;
        height: 300px;
    }
    
    .hero-content {
        top: 40%;
        left: 0px;
        padding: 0 10px;
        text-align: left;
    }
    
    /* Category content alignment for mobile */
    .category-content {
        right: 10px !important;
        left: auto !important;
        text-align: right !important;
        padding: 0 10px;
        top: calc(40% + 20px) !important;
    }
    
    .main-content {
        left: 0px !important;
        text-align: left !important;
        padding: 0 10px;
    }
    
    .category-cta {
        right: 50px !important;
        left: auto !important;
        transform: none !important;
    }
    
    .main-cta {
        left: 10% !important;
        transform: translateX(-50%) !important;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        max-width: none;
        width: 100%;
        line-height: 1.35;
        padding-right: 0.5rem;
        box-sizing: border-box;
    }
    
    .hero-cta {
        bottom: 10px;
    }
    
    .hero .cta-button {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-lg {
        padding: 3rem 0;
    }
    
    .section-xl {
        padding: 4rem 0;
    }
    
    /* Typography spacing adjustments */
    h1, .h1 {
        margin-bottom: 0.8rem;
    }
    
    h2, .h2 {
        margin-bottom: 0.6rem;
    }
    
    h3, .h3 {
        margin-bottom: 0.5rem;
    }
    
    p, .p {
        margin-bottom: 0.8rem;
    }
}

/* Typography Utilities */
.text-xs {
    font-size: 0.75rem;
    line-height: 1.4;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-base {
    font-size: 1rem;
    line-height: 1.6;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.5;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 1.4;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 1.3;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 1.2;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1.1;
}

/* Font Weight Utilities */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Line Height Utilities */
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Text Color Utilities */
.text-primary { color: var(--olive-green); }
.text-secondary { color: var(--text-light); }
.text-accent { color: var(--burnt-orange); }
.text-white { color: var(--white); }
.text-dark { color: var(--text-dark); }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Responsive Text Utilities */
@media (min-width: 768px) {
    .md\:text-xs { font-size: 0.75rem; }
    .md\:text-sm { font-size: 0.875rem; }
    .md\:text-base { font-size: 1rem; }
    .md\:text-lg { font-size: 1.125rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .lg\:text-xs { font-size: 0.75rem; }
    .lg\:text-sm { font-size: 0.875rem; }
    .lg\:text-base { font-size: 1rem; }
    .lg\:text-lg { font-size: 1.125rem; }
    .lg\:text-xl { font-size: 1.25rem; }
    .lg\:text-2xl { font-size: 1.5rem; }
    .lg\:text-3xl { font-size: 1.875rem; }
    .lg\:text-4xl { font-size: 2.25rem; }
    .lg\:text-5xl { font-size: 3rem; }
}
    
    .featured-products h2,
    .history-text h2,
    .quienes-somos-text h2,
    .que-hacemos-text h2,
    .por-que-nosotros-text h2,
    .valor-colombiano-text h2,
    .locations h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .productos-lista ul {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .productos-lista li {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .payanca-destacado {
        font-size: 1.1rem !important;
        padding: 1rem 1.5rem !important;
        max-width: 100% !important;
        margin: 1.5rem 0 !important;
    }
    
    .ventajas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ventaja-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .ventaja-icon {
        width: 50px;
        height: 50px;
    }
    
    .ventaja-icon i {
        font-size: 1.5rem;
    }
    
    .ventaja-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .ventaja-content p {
        font-size: 0.9rem;
    }
    
    .valor-destacado {
        padding: 1.5rem 2rem;
        margin-top: 2rem;
    }
    
    .valor-destacado p {
        font-size: 1.1rem;
    }
    
    .valor-destacado::before,
    .valor-destacado::after {
        font-size: 3rem;
    }
    
    .map-container iframe {
        height: 150px;
    }
    
    .location-card {
        padding: 1rem;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-subtext {
        font-size: 0.5rem;
    }


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for product images */
.product-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Contact Banner Section */
.contact-banner {
    background: var(--burnt-orange);
    padding: 20px 0;
    border-bottom: 2px solid var(--burnt-orange-hover);
}

.contact-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-logo {
    flex: 0 0 auto;
}

.contact-logo-image {
    height: 84px; /* Aumentado 30% de 65px */
    width: auto;
    filter: brightness(0) invert(1); /* Hace el logo blanco */
}

.contact-info-banner {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.contact-item-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.contact-item-banner i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item-banner span {
    font-size: 1rem;
    white-space: nowrap;
}

.social-media-banner {
    display: flex;
    gap: 15px;
    flex: 0 0 auto;
}

.social-icon-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-banner:hover {
    background: white;
    color: var(--burnt-orange);
    transform: scale(1.1);
}

.social-icon-banner i {
    font-size: 1.1rem;
}

/* Responsive adjustments for contact banner */
@media (max-width: 768px) {
    .contact-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contact-info-banner {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item-banner {
        justify-content: center;
    }
    
    .social-media-banner {
        gap: 10px;
    }
    
    .social-icon-banner {
        width: 35px;
        height: 35px;
    }
    
    .social-icon-banner i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        padding: 15px 0;
    }
    
    .contact-logo-image {
        height: 68px; /* Aumentado 30% de 52px */
    }
    
    .contact-item-banner span {
        font-size: 0.9rem;
    }
    
    .social-icon-banner {
        width: 32px;
        height: 32px;
    }
    
    .hero-content {
        top: 58%;
        left: 30px;
        padding: 0 15px;
        text-align: left;
    }
    
    /* Category content alignment for very small screens */
    .category-content {
        right: 15px !important;
        left: auto !important;
        text-align: right !important;
        padding: 0 15px;
        top: calc(58% + 20px) !important;
    }
    
    .main-content {
        left: 30px !important;
        text-align: left !important;
        padding: 0 15px;
    }
    
    .category-cta {
        right: calc(35% + 20px) !important;
        left: auto !important;
        transform: translateX(50%) !important;
    }
    
    .main-cta {
        left: 25% !important;
        transform: translateX(-50%) !important;
    }
    
    .hero-content h1 {
        font-size: 20px;
        max-width: 250px;
    }
    
    .hero-content p {
        font-size: 10px;
        max-width: 200px;
        line-height: 1.2;
    }
    
    .hero-cta {
        bottom: 40px;
        left: 25%;
        transform: translateX(-50%);
    }
    
    .hero .cta-button {
        font-size: 10px;
        padding: 0.6rem 1.2rem;
    }
    
    .products-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        align-items: stretch;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .product-showcase-card .card-content {
        padding: 1rem;
    }
    
    .product-showcase-card h3 {
        font-size: 0.9rem;
        line-height: 0.6;
        padding-top: 30px;
        letter-spacing: 0px;
    }
    
    /* .product-showcase-image - regla responsive duplicada eliminada */
}

@media (max-width: 768px) {
    .products-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        align-items: stretch;
        gap: 0.5rem;
        padding: 0 5px;
        width: 100%;
    }
    
    .product-showcase-card .card-content {
        flex-direction: row !important;
        display: flex !important;
    }
    
    .card-text-section {
        flex: 0 0 55% !important;
        min-width: 0 !important;
        padding: 5px !important;
        text-align: left !important;
        position: relative;
        z-index: 2;
    }
    
    .card-image-section {
        flex: 0 0 45% !important;
        max-width: 45% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 80px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        z-index: 1;
    }

    .products-showcase-grid .card-image-section {
        height: 100% !important;
        align-self: stretch !important;
        min-height: 100px !important;
    }

    .products-showcase-grid .product-showcase-card .card-content {
        align-items: stretch !important;
    }
    
    .product-showcase-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        max-height: 100%;
        max-width: 100%;
    }
    
    .product-showcase-card {
        height: auto;
        border-radius: 8px;
    }
    
    .product-showcase-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
    
    .product-showcase-card p {
        font-size: 0.85rem;
        height: auto;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .product-tag {
        top: 15px;
        left: 15px;
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .card-text-section {
        padding: 56px 15px 15px 15px;
    }
    
    .explore-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .products-showcase-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        align-items: stretch;
        gap: 0.8rem;
        padding: 0 5px;
        width: 100%;
    }
    
    .product-showcase-card .card-content {
        flex-direction: row !important;
        display: flex !important;
    }
    
    .card-text-section {
        flex: 0 0 55% !important;
        padding: 6px !important;
        text-align: left !important;
    }
    
    .card-image-section {
        flex: 0 0 45% !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .products-showcase-grid .card-image-section {
        height: 100% !important;
        align-self: stretch !important;
        min-height: 96px !important;
    }

    .products-showcase-grid .product-showcase-card .card-content {
        align-items: stretch !important;
    }
    
    .product-showcase-card {
        height: auto;
        border-radius: 8px;
    }
    
    .card-text-section {
        flex: 0 0 60%;
        padding: 15px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .card-image-section {
        flex: 0 0 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .product-showcase-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        line-height: 1.15;
        padding-top: 60px;
        letter-spacing: 0px;
    }
    
    .product-showcase-card p {
        font-size: 0.6rem;
        height: auto;
        line-height: 1.1;
        margin-bottom: 3px;
    }
    
    .product-tag {
        top: 12px;
        left: 12px;
        padding: 5px 8px;
        font-size: 0.65rem;
    }
    
    .card-text-section {
        padding: 52px 12px 12px 12px;
    }
    
    .explore-button {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

/* Estilos para el botón "Load More" */
.show-more-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 0 20px;
}

.load-more-link {
    color: var(--olive-green);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--beige);
    border: 2px solid var(--olive-green);
    padding: 12px 24px;
    border-radius: 25px;
    font-family: var(--font-primary);
    box-shadow: 0 2px 8px rgba(90, 111, 30, 0.2);
}

.load-more-link:hover {
    color: var(--white);
    background: var(--olive-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 111, 30, 0.3);
}

/* Animación para mostrar productos ocultos */
.hidden-product {
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.hidden-product.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Product Showcase Cards - Clean and Responsive */
.product-tag {
    position: absolute;
    top: 20px;
    left: 40px;
    background: var(--olive-green);
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
    box-shadow: 0 2px 8px rgba(90, 111, 30, 0.3);
}

.product-showcase-card {
    position: relative;
    background: #FFF8E1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: auto;
    margin-bottom: 1rem;
}

/* Misma altura por fila en el grid de categorías */
.products-showcase-grid > .product-showcase-card {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.product-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* .product-showcase-card:hover eliminado */

.product-showcase-card .card-content {
    display: flex;
    flex: 1;
    min-height: 0;
    height: 100%;
    padding: 0;
    flex-direction: row;
    align-items: stretch;
    min-width: 0;
}

.card-text-section {
    flex: 1 1 62%;
    min-width: 0;
    max-width: 62%;
    position: relative;
    z-index: 2;
    /* Espacio superior para que el badge .product-tag (absolute) no cubra el título */
    padding: 80px 16px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.65rem;
    background: #FFF8E1;
    text-align: left;
}

.card-text-section > a:last-child {
    margin-top: auto;
    align-self: flex-start;
    flex-shrink: 0;
}

.card-image-section {
    flex: 0 0 38%;
    max-width: 38%;
    min-width: 0;
    min-height: 0;
    align-self: stretch;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.product-showcase-card h3 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.2;
    font-family: var(--font-condensed);
    text-align: left;
    text-transform: uppercase;
}

.product-showcase-card p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.45;
    margin: 0;
    flex: 0 1 auto;
    font-family: var(--font-condensed);
    font-weight: 500;
    text-align: left;
    min-height: 0;
    overflow: visible;
    display: block;
}

.explore-button {
    background: var(--burnt-orange);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(232, 92, 13, 0.3);
}

.explore-button:hover {
    background: var(--burnt-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.product-showcase-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center right;
    filter: brightness(1.1);
    transition: none;
    transform: translateY(0) translateX(0);
    display: block;
}

/* Imágenes un poco más grandes, contenidas en la columna (sin invadir el texto) */
.product-showcase-card img[alt="Alpina Products"],
.product-showcase-card img[alt="Cookies and Cakes"],
.product-showcase-card img[alt="Grain and Coffee"],
.product-showcase-card img[alt="Venezuelan Products"],
.product-showcase-card img[alt="Frozen Products"],
.product-showcase-card img[alt="Zenu Products"],
.product-showcase-card img[alt="Beverages"],
.product-showcase-card img[alt="Soaps"],
.product-showcase-card img[alt="Artesanías & Juegos"],
.product-showcase-card img[alt="Cafés, chocolates y panela"],
.product-showcase-card img[alt="Granos y despensa"],
.product-showcase-card img[alt="Salsas"],
.product-showcase-card img[src*="fotoalpina"],
.product-showcase-card img[src*="fotocookies"],
.product-showcase-card img[src*="fotocoffe"],
.product-showcase-card img[src*="fotovenezuelan"],
.product-showcase-card img[src*="fotofrozen"],
.product-showcase-card img[src*="fotozenu"],
.product-showcase-card img[src*="fotobeverages"],
.product-showcase-card img[src*="fotosoaps"],
.product-showcase-card img[src*="fotoothers"],
.product-showcase-card img[src*="arroces"],
.product-showcase-card img[src*="salsas.png"] {
    transform: scale(1.22);
    transform-origin: center right;
}

/* Responsive para el botón */
@media (max-width: 768px) {
    .show-more-container {
        margin-top: 2rem;
    }
    
    .load-more-link {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .product-showcase-card .card-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .card-text-section {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
        padding: 48px 15px 15px 15px;
        text-align: left;
        position: relative;
        z-index: 2;
    }
    
    .card-image-section {
        order: 2;
        flex: 0 0 48%;
        max-width: 48%;
        min-width: 0;
        height: auto;
        min-height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .product-showcase-card h3 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .load-more-link {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .card-text-section {
        flex: 0 0 65%;
        padding: 48px 1rem 1rem 1rem;
        text-align: left;
    }
    
    .card-image-section {
        flex: 0 0 35%;
    }
    
    .product-showcase-card h3 {
        font-size: 40px;
    }
    
    .product-showcase-card p {
        font-size: 0.9rem;
        height: auto;
        min-height: 0;
        line-height: 1.35;
    }
}

/* Clases de utilidad para las nuevas tipografías */
.font-condensed {
    font-family: var(--font-condensed);
}

.font-display {
    font-family: var(--font-display);
}

.font-secondary {
    font-family: var(--font-secondary);
}

/* Aplicar tipografías específicas a elementos */
.product-tag {
    font-family: var(--font-display);
    font-weight: 400;
}

.product-showcase-card h3 {
    font-family: var(--font-condensed);
    font-weight: 700;
}

.product-showcase-card p {
    font-family: var(--font-condensed);
    font-weight: 500;
}

.section-subtitle {
    font-family: var(--font-secondary);
}

.explore-button {
    font-family: var(--font-primary);
    font-weight: 600;
}

/* ===== SELECTOR DE CANTIDAD ===== */

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.quantity-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.quantity-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: white;
    transition: border-color 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* ===== CARRITO DE COMPRAS ===== */

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Carrito en el header */
.header-cart {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-selector select {
    background: var(--white);
    border: 2px solid var(--beige);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%235A6F1E' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 2.5rem;
    min-width: 120px;
}

.language-selector select:hover {
    border-color: var(--burnt-orange);
    box-shadow: var(--shadow-light);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--burnt-orange);
    box-shadow: 0 0 0 3px rgba(232, 92, 13, 0.1);
}

.cart-button-header {
    background: transparent;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: none;
}

.cart-button-header:hover {
    background: transparent;
    transform: scale(1.1);
    box-shadow: none;
}

.cart-button-header i {
    font-size: 18px;
}

.cart-button-header img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    min-width: 20px;
    border: 2px solid white;
}

/* Overlay del carrito */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

/* Contenedor del carrito - Desplegable lateral */
.cart-container {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: right 0.3s ease;
    z-index: 2001;
}

.cart-overlay.active .cart-container {
    right: 0;
}

/* Header del carrito */
.cart-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.close-cart-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.close-cart-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Contenido del carrito */
.cart-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: 400px;
}

/* Item del carrito */
.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: #f5f5f5;
}

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

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

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

.quantity-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: var(--secondary-color);
}

.quantity-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cart-item-quantity {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-item-btn {
    background: #e74c3c;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.3s ease;
}

.remove-item-btn:hover {
    background: #c0392b;
}

/* Footer del carrito */
.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-total {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

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

.clear-cart-btn,
.checkout-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-cart-btn {
    background: #e67e22;
    color: white;
}

.clear-cart-btn:hover {
    background: #d35400;
}


.checkout-btn {
    background: #5A6F1E;
    color: white;
}

.checkout-btn:hover {
    background: #4A5F0E;
}

/* Carrito vacío */
.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

.cart-empty h4 {
    margin-bottom: 10px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-container {
        width: 100%;
        right: -100%;
    }
    
    .header-actions {
        gap: 0.5rem;
        position: relative;
        z-index: 1002;
        margin-right: 0;
        transform: none;
    }
    
    .language-selector {
        position: relative;
    }
    
    .language-selector select {
        min-width: 100px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        padding-right: 2rem;
        border: 2px solid var(--olive-green);
        border-radius: 6px;
        background: var(--white);
        color: var(--olive-green);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .language-selector select:focus {
        outline: none;
        border-color: var(--burnt-orange);
        box-shadow: 0 0 0 3px rgba(232, 92, 13, 0.1);
    }
    
    .header-cart {
        margin-left: 10px;
    }
    
    .cart-button-header {
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: var(--white);
        border: 2px solid var(--olive-green);
    }
    
    .cart-button-header:hover {
        background: var(--olive-green);
        transform: scale(1.05);
    }
    
    .cart-button-header:hover img {
        filter: brightness(0) invert(1);
    }
    
    .cart-count {
        background: var(--burnt-orange);
        color: var(--white);
        font-weight: 600;
        min-width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
    }
    
    .nav-menu a {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .cart-button-header i {
        font-size: 16px;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cart-item-controls {
        align-self: flex-end;
    }
    
    .cart-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cart-container {
        width: 100%;
        right: -100%;
    }
    
    .header-actions {
        gap: 0.3rem;
        flex-wrap: nowrap;
        margin-right: 0;
        transform: none;
    }
    
    .language-selector select {
        min-width: 80px;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        padding-right: 1.5rem;
        border: 1px solid var(--olive-green);
    }
    
    .header-cart {
        margin-left: 5px;
    }
    
    .cart-button-header {
        padding: 0.4rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .cart-button-header img {
        width: 18px;
        height: 18px;
    }
    
    .cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 0.6rem;
        top: -5px;
        right: -5px;
    }
    
    .cart-button-header i {
        font-size: 14px;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -5px;
        right: -5px;
    }
}

/* Responsive styles for new contact section */
@media (max-width: 768px) {
    .contact-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .get-in-touch-section {
        padding-right: 0;
    }
    
    .contact-main-title {
        font-size: 2rem;
    }
    
    .message-form-container {
        max-width: 100%;
        padding: 2rem;
    }
    
    .message-form-title {
        font-size: 1.8rem;
    }
    
    .contact-detail-item {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .social-media-icons {
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 100px 0 60px;
    }
    
    .contact-main-content {
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .contact-main-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .message-form-container {
        padding: 1.5rem;
    }
    
    .message-form-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .message-form {
        gap: 1.2rem;
    }
    
    .message-form input,
    .message-form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-detail-item {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-detail-content h4 {
        font-size: 1rem;
    }
    
    .contact-detail-content p {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    #map {
        height: 300px;
    }
    
    /* Responsive styles for location-contact section */
    .location-contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-section {
        padding-right: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-button,
    .contact-link {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .location-contact-section {
        padding: 60px 0;
    }
    
    .location-contact-content {
        gap: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-detail-item {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-button,
    .contact-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    #location-map {
        height: 375px;
    }
    
    /* Responsive styles for testimonials section */
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
    
    .rating i {
        font-size: 0.9rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-card {
        min-width: calc(100% - 30px);
    }
    
    .testimonials-track {
        gap: 20px;
        padding: 0 10px;
    }
}

/* Language Selection Popup */
.language-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.language-popup-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    max-width: 500px;
    width: 90%;
    animation: popupSlideIn 0.5s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.language-popup-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.language-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.language-btn {
    background: var(--white);
    border: 3px solid var(--beige);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 150px;
    box-shadow: var(--shadow-light);
}

.language-btn:hover {
    border-color: var(--burnt-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.spanish-btn:hover {
    background: var(--beige);
}

.english-btn:hover {
    background: var(--beige);
}

.flag {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.language-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive for language popup */
@media (max-width: 768px) {
    .language-popup-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .language-popup-header h3 {
        font-size: 1.5rem;
    }
    
    .language-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .language-btn {
        min-width: 200px;
        padding: 1.2rem 1.5rem;
    }
}

/* ===== Botón flotante verde (mensajería), debajo del botón IA — #lp-fab-wa ===== */
#lp-fab-wa.lp-fab-wa {
    position: fixed !important;
    right: 30px !important;
    left: auto !important;
    bottom: 22px !important;
    z-index: 10045 !important;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 50% !important;
    background: #25d366 !important;
    background-color: #25d366 !important;
    color: #fff !important;
    line-height: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    font: inherit !important;
}

#lp-fab-wa.lp-fab-wa:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6) !important;
    background: #20bd5a !important;
    background-color: #20bd5a !important;
}

#lp-fab-wa.lp-fab-wa:focus-visible {
    outline: 3px solid var(--burnt-orange, #e85c0d);
    outline-offset: 3px;
}

#lp-fab-wa.lp-fab-wa .lp-fab-wa__icon,
#lp-fab-wa.lp-fab-wa svg {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    display: block !important;
    flex-shrink: 0 !important;
    fill: #ffffff !important;
    color: #fff !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    #lp-fab-wa.lp-fab-wa {
        right: 20px !important;
        bottom: 16px !important;
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        min-height: 54px !important;
        max-width: 54px !important;
        max-height: 54px !important;
    }

    #lp-fab-wa.lp-fab-wa .lp-fab-wa__icon,
    #lp-fab-wa.lp-fab-wa svg {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
    }
}

