/* Estilos específicos para la página de catálogo */

/* Resetear cualquier override y usar los mismos estilos que index */
.catalog-page .site-header {
    /* Usar estilos base del index con position fixed FORZADO */
    background-color: transparent !important;
    padding: 1.5rem 2rem;
    width: 100%;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate3d(0, 0, 0) !important; /* Forzar hardware acceleration y posición fija */
}

/* Hero section del catálogo */
.catalog-hero-section {
    position: relative;
    color: white;
    height: 50vh;
    min-height: 400px;
    max-height: 600px;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
}

.catalog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.catalog-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.catalog-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.catalog-header p {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Sección del catálogo */
.catalog-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.catalog-info {
    margin-bottom: 2rem;
    text-align: center;
}

.results-count {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.7;
}

/* Grid de productos - Cambiado a 1 columna */
.product-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Tarjeta de producto - Layout horizontal más grande */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    min-height: 240px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.product-image {
    position: relative;
    width: 360px;
    height: 240px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.product-info p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-top: 0.8rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Remover estilos de precio ya que no se mostrará */
.product-price {
    display: none;
}

/* Sección de llamada a la acción */
.catalog-cta-section {
    padding: 5rem 0;
    background: #ffffff;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.catalog-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.catalog-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.catalog-cta-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Botón Book Now con efecto de pulso rojo */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: 20px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: redPulseGlow 2s ease-in-out infinite;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-book-now::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #e53e3e, #c53030, #e53e3e);
    border-radius: 50px;
    z-index: -1;
    animation: pulseRing 2s ease-in-out infinite;
    opacity: 0;
}

.btn-book-now:hover::before {
    left: 100%;
}

.btn-book-now:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 50px rgba(229, 62, 62, 0.6);
    animation-play-state: paused;
}

.btn-book-now:focus {
    outline: 3px solid rgba(229, 62, 62, 0.5);
    outline-offset: 2px;
}

.btn-book-now:active {
    transform: translateY(-2px) scale(1.05);
}

.btn-book-now i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-book-now:hover i {
    transform: translateX(8px);
}

/* Animaciones de pulso rojo más notables */
@keyframes redPulseGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(229, 62, 62, 0.7),
            0 0 40px rgba(229, 62, 62, 0.5),
            0 0 60px rgba(229, 62, 62, 0.3),
            0 0 80px rgba(229, 62, 62, 0.1);
        transform: scale(1.05);
    }
}

@keyframes pulseRing {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* ========================================
   RESPONSIVE DESIGN FOR CATALOG
   ======================================== */

/* Large Desktop (1400px and down) */
@media (max-width: 1400px) {
    .catalog-hero-section {
        height: 65vh;
        min-height: 450px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

/* Desktop (1200px and down) */
@media (max-width: 1200px) {
    .catalog-header h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.8rem;
    }
    
    .section-container {
        padding: 0 2rem;
    }
}

/* Tablet (992px and down) */
@media (max-width: 992px) {
    .catalog-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .catalog-header h1 {
        font-size: clamp(2.2rem, 5vw, 3rem);
    }
    
    .catalog-header p {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .catalog-cta-section {
        padding: 4rem 0;
    }
    
    .catalog-cta-title {
        font-size: 2rem;
    }
}

/* Large Mobile (768px and down) - MODERNIZED DESIGN */
@media (max-width: 768px) {
    .catalog-hero-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .catalog-hero-content {
        padding: 0 1.5rem;
    }
    
    .catalog-header h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 0.75rem;
    }
    
    .catalog-header p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }
    
    .catalog-section {
        padding: 3rem 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }
    
    .section-container {
        padding: 0 1.5rem;
    }
    
    /* COMPLETELY REDESIGNED MOBILE PRODUCT GRID */
    .product-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
        max-width: 100%;
    }
    
    /* MODERN MOBILE CARD DESIGN - Vertical Layout with Clean Separation */
    .product-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.1),
            0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 1px solid rgba(0, 0, 0, 0.08);
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        min-height: auto !important;
        width: 100%;
        position: relative;
        transform: translateY(0);
    }
    
    .product-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 20px 45px rgba(0, 0, 0, 0.15),
            0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    /* IMAGE SECTION - Clean and prominent */
    .product-image {
        position: relative !important;
        width: 100% !important;
        height: 280px !important;
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
        border-radius: 0 !important;
    }
    
    .product-image img {
        max-width: 85% !important;
        max-height: 85% !important;
        object-fit: contain !important;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.08) !important;
    }
    
    /* CONTENT SECTION - Well-spaced and readable */
    .product-info {
        padding: 2rem 1.8rem 2.2rem !important;
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        text-align: center !important;
        background: #ffffff;
        position: relative;
    }
    
    /* MODERN TYPOGRAPHY */
    .product-name {
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        color: #1e293b !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: center;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }
    
    .product-name::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #ffd700 0%, #ff8c00 100%);
        border-radius: 2px;
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    }
    
    .product-info p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        color: #64748b !important;
        margin-top: 0.8rem !important;
        text-align: center !important;
        font-weight: 400;
        letter-spacing: 0.2px;
        max-width: none;
    }
    
    .catalog-cta-section {
        padding: 3rem 0;
    }
    
    .catalog-cta-content {
        padding: 0 1.5rem;
    }
    
    .catalog-cta-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-book-now {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile (576px and down) - ENHANCED MODERN DESIGN */
@media (max-width: 576px) {
    .catalog-hero-section {
        height: 45vh;
        min-height: 300px;
    }
    
    .catalog-hero-content {
        padding: 0 1rem;
    }
    
    .catalog-header h1 {
        font-size: clamp(1.75rem, 7vw, 2.2rem);
        letter-spacing: 0.05em;
    }
    
    .catalog-header p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
    
    .catalog-section {
        padding: 2.5rem 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    /* ENHANCED MOBILE CARDS - More compact but still modern */
    .product-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .product-card {
        border-radius: 18px;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.08),
            0 3px 12px rgba(0, 0, 0, 0.04);
    }
    
    .product-card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.12),
            0 6px 20px rgba(0, 0, 0, 0.08);
    }
    
    /* OPTIMIZED IMAGE SECTION */
    .product-image {
        height: 240px !important;
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
    }
    
    .product-image img {
        max-width: 80% !important;
        max-height: 80% !important;
        filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.08));
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.06) !important;
    }
    
    /* COMPACT BUT READABLE CONTENT */
    .product-info {
        padding: 1.5rem 1.5rem 1.8rem !important;
    }
    
    .product-name {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
        letter-spacing: 0.3px;
    }
    
    .product-name::after {
        width: 35px;
        height: 2.5px;
        bottom: -6px;
    }
    
    .product-info p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: #64748b !important;
        margin-top: 0.6rem !important;
    }
    
    .catalog-cta-section {
        padding: 2.5rem 0;
    }
    
    .catalog-cta-content {
        padding: 0 1rem;
    }
    
    .catalog-cta-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-book-now {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
}

/* Small Mobile (400px and down) - ULTRA COMPACT MODERN DESIGN */
@media (max-width: 400px) {
    .catalog-hero-section {
        min-height: 280px;
    }
    
    .catalog-header h1 {
        font-size: 1.5rem;
    }
    
    .catalog-header p {
        font-size: 0.85rem;
    }
    
    .section-container {
        padding: 0 0.8rem;
    }
    
    /* ULTRA COMPACT CARDS */
    .product-grid {
        gap: 1.2rem;
        margin-top: 1.2rem;
    }
    
    .product-card {
        border-radius: 16px;
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.06),
            0 2px 10px rgba(0, 0, 0, 0.03);
    }
    
    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 
            0 12px 30px rgba(0, 0, 0, 0.1),
            0 4px 15px rgba(0, 0, 0, 0.06);
    }
    
    /* COMPACT IMAGE */
    .product-image {
        height: 200px !important;
    }
    
    .product-image img {
        max-width: 75% !important;
        max-height: 75% !important;
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.04) !important;
    }
    
    /* MINIMAL BUT READABLE CONTENT */
    .product-info {
        padding: 1.2rem 1.2rem 1.4rem !important;
    }
    
    .product-name {
        font-size: 1.1rem !important;
        margin-bottom: 0.6rem !important;
        letter-spacing: 0.2px;
    }
    
    .product-name::after {
        width: 30px;
        height: 2px;
        bottom: -5px;
    }
    
    .product-info p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-top: 0.5rem !important;
    }
    
    .catalog-cta-title {
        font-size: 1.3rem;
    }
    
    .btn-book-now {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .catalog-hero-section {
        height: 80vh;
        min-height: 250px;
    }
    
    .catalog-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
}

/* MODERN MOBILE ANIMATIONS AND PERFORMANCE OPTIMIZATIONS */
@media (max-width: 768px) {
    .product-card {
        /* Performance optimizations for mobile */
        will-change: transform, box-shadow;
        backface-visibility: hidden;
        transform: translateZ(0);
        /* Modern card entrance animation */
        opacity: 0;
        animation: modernCardFadeIn 0.6s ease-out forwards;
    }
    
    .product-card:nth-child(1) { animation-delay: 0.1s; }
    .product-card:nth-child(2) { animation-delay: 0.2s; }
    .product-card:nth-child(3) { animation-delay: 0.3s; }
    .product-card:nth-child(4) { animation-delay: 0.4s; }
    .product-card:nth-child(5) { animation-delay: 0.5s; }
    .product-card:nth-child(6) { animation-delay: 0.6s; }
    .product-card:nth-child(7) { animation-delay: 0.7s; }
    .product-card:nth-child(8) { animation-delay: 0.8s; }
    .product-card:nth-child(9) { animation-delay: 0.9s; }
    .product-card:nth-child(10) { animation-delay: 1.0s; }
    .product-card:nth-child(11) { animation-delay: 1.1s; }
    .product-card:nth-child(12) { animation-delay: 1.2s; }
    
    /* Enhanced image loading */
    .product-image img {
        will-change: transform;
        backface-visibility: hidden;
        transform: translateZ(0);
    }
    
    /* Smooth text animations */
    .product-name,
    .product-info p {
        opacity: 0;
        animation: textSlideUp 0.5s ease-out forwards;
    }
    
    .product-name {
        animation-delay: 0.3s;
    }
    
    .product-info p {
        animation-delay: 0.4s;
    }
    
    /* Touch-friendly improvements */
    .product-card {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        cursor: pointer;
    }
    
    /* Improved hover states for touch devices */
    .product-card:active {
        transform: translateY(-4px) scale(0.98);
        transition: transform 0.1s ease-out;
    }
    
    /* Better text selection */
    .product-name,
    .product-info p {
        -webkit-user-select: text;
        user-select: text;
    }
    
    /* Smooth scrolling for the catalog */
    .catalog-section {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Modern keyframe animations */
@keyframes modernCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes textSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced focus states for accessibility */
.product-card:focus-within {
    outline: 3px solid rgba(255, 215, 0, 0.5);
    outline-offset: 4px;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* Landscape Mobile Optimization - CONTINUED */
@media (max-height: 500px) and (orientation: landscape) {
    .catalog-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .catalog-header p {
        font-size: 0.95rem;
    }
}

/* Mejoras para pantallas muy grandes */
@media (min-width: 1400px) {
    .product-grid {
        max-width: 1200px;
        gap: 3.5rem;
    }
    
    .product-image {
        width: 400px;
        height: 280px;
    }
    
    .product-info {
        padding: 3rem;
    }
    
    .product-name {
        font-size: 1.7rem;
    }
    
    .product-info p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

/* Mejoras para las imágenes */
.product-image {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-image img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Efecto de carga para las imágenes */
.product-image img {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-image img.loaded {
    opacity: 1;
}

/* Mejora de accesibilidad */
.product-card:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Optimización para mejor performance en animaciones */
.product-card {
    will-change: transform, box-shadow;
}

.product-image img {
    will-change: transform;
}

/* Animaciones de entrada */
.product-card {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }
.product-card:nth-child(9) { animation-delay: 0.9s; }
.product-card:nth-child(10) { animation-delay: 1.0s; }
.product-card:nth-child(11) { animation-delay: 1.1s; }
.product-card:nth-child(12) { animation-delay: 1.2s; }
.product-card:nth-child(13) { animation-delay: 1.3s; }
.product-card:nth-child(14) { animation-delay: 1.4s; }
.product-card:nth-child(15) { animation-delay: 1.5s; }
.product-card:nth-child(16) { animation-delay: 1.6s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animación para la sección CTA */
.catalog-cta-section {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards 2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SOLUCIÓN PARA EL DOBLE SCROLL
   ======================================== */

/* Asegurar que no haya scroll doble */
html, body {
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow-y: auto;
}

/* Arreglar el contenedor principal */
.page-content-wrapper {
    overflow: visible !important;
    min-height: auto !important;
    height: auto !important;
    width: 100%;
}

/* Eliminar cualquier height fijo que cause problemas */
main {
    min-height: auto;
    height: auto;
    overflow: visible;
}

/* Asegurar que las secciones no causen overflow */
.catalog-section {
    overflow: visible;
    min-height: auto;
    height: auto;
}

.section-container {
    overflow: visible;
    width: 100%;
    max-width: 1200px;
}

/* Asegurar que el grid sea responsive sin causar overflow */
.product-grid {
    overflow: visible;
    width: 100%;
}
