:root {
            --primary-blue: #1D2B44;
            --primary-blue-dark: #162136;
            --secondary-teal: #2D5A5A;
            --accent-green: #25d366;
            --light-gray: #F5F4F2;
            --cream: #FEFDFB;
            --text-dark: #1F2937;
            --text-medium: #4B5563;
            --white: #FFFFFF;
            --success: #059669;
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --font-heading: 'Inter', sans-serif;
            --font-body: 'Source Sans Pro', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--cream);
        }

        /* Header - Same as other pages */
        .header {
            background: var(--white);
            box-shadow: var(--shadow-md);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--primary-blue);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.5rem;
        }

        .logo-text {
            margin-left: 0.5rem;
        }

        .logo-subtitle {
            display: block;
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--text-medium);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            background: var(--primary-blue);
            color: var(--white);
        }

        .whatsapp-header {
            background: var(--accent-green);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .whatsapp-header:hover {
            background: #128c7e;
            transform: translateY(-1px);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Main Content */
        .main {
            margin-top: 80px;
            min-height: calc(100vh - 80px);
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--white);
            padding: 1rem 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            list-style: none;
            font-size: 0.9rem;
        }

        .breadcrumb-link {
            color: var(--text-medium);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-link:hover {
            color: var(--primary-blue);
        }

        .breadcrumb-current {
            color: var(--primary-blue);
            font-weight: 600;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            color: var(--white);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '🥐';
            position: absolute;
            right: -2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12rem;
            opacity: 0.1;
        }

        .page-header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
        }

        .page-header h1 {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.95;
            line-height: 1.6;
        }

        .header-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .back-btn {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Products Section */
        .products-section {
            padding: 4rem 0;
        }

        .products-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--text-medium);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
/* ===== GRID DE PRODUCTOS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* ===== CARD DE PRODUCTO ===== */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 43, 68, 0.08);
    display: flex;
    flex-direction: column;
    height: auto;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

/* ===== HEADER DE LA CARD (IMAGEN O ICONO) ===== */
.product-header {
    height: 200px;
    overflow: hidden;
    position: relative;
    /* background: linear-gradient(135deg, #8B7355, #A0956B); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card img {
    width: 100%;
    max-height: 200px;
    height: auto;  /* ← Altura automática */
    object-fit: contain;
    display: block;
    /* background: linear-gradient(135deg, #8B7355, #A0956B); */
}

.product-icon {
    font-size: 4rem;
    color: var(--white);
    text-align: center;
    display: block;
}

/* ===== CONTENIDO DE LA CARD ===== */
.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-brand {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-description {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ===== ACCIONES DE LA CARD ===== */
.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.product-btn {
    flex: 1;
    background: var(--accent-green);
    color: var(--white);
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.product-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

.product-btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
}

.product-btn-secondary:hover {
    background: var(--primary-blue-dark);
}

/* ===== RESPONSIVE: TABLETS ===== */
@media (max-width: 1024px) and (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .product-header {
        height: 180px;
    }
    
    .product-card img {
        height: 180px;
        object-fit: contain;  /* ← Cambiar aquí también */
    }
    
    .product-icon {
        font-size: 3.5rem;
    }
    
    .product-content {
        padding: 1.25rem;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
}

/* ===== RESPONSIVE: MÓVILES ===== */
@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .product-header {
        height: 160px;
    }
    
    .product-card img {
        height: 160px;
    }
    
    .product-icon {
        font-size: 3rem;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-btn {
        width: 100%;
    }
}

        /* Featured Section */
        .featured {
            background: var(--light-gray);
            padding: 3rem 0;
        }

        .featured-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .featured-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .featured-description {
            color: var(--text-medium);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .featured-brands {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .brand-tag {
            background: var(--white);
            color: var(--primary-blue);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            box-shadow: var(--shadow-md);
        }

        .contact-cta {
            background: var(--accent-green);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .contact-cta:hover {
            background: #128c7e;
            transform: translateY(-2px);
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--accent-green);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #128c7e;
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 2rem 0 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer p {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 1rem;
                box-shadow: var(--shadow-lg);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .whatsapp-header {
                margin-top: 1rem;
                text-align: center;
            }

            .nav-container {
                padding: 1rem;
            }

            .page-header-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .products-container {
                padding: 0 1rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .featured-brands {
                flex-direction: column;
                gap: 1rem;
            }

            .page-header::before {
                display: none;
            }
        }
        .product-image-small {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}
/* Search Section */
.search-section {
    background: var(--white);
    
    border-bottom: 1px solid var(--light-gray);
}

.search-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    
    text-align: center;
}

.search-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.search-form {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.2rem 4rem 1.2rem 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(29, 43, 68, 0.1);
    transform: scale(1.02);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.search-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-50%) scale(1.05);
}

.search-description {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

/* Estados de búsqueda */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.no-results-description {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.no-results-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.no-results-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
}

/* Animación suave para los productos */
.product-card {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive para búsqueda */
@media (max-width: 768px) {
    .search-container {
        padding: 0 1rem;
    }
    
    .search-input {
        padding: 1rem 3.5rem 1rem 1rem;
        font-size: 1rem;
    }
    
    .search-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .search-section {
        padding: 2rem 0;
    }
}

/* Animación suave para los productos */
.product-card {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BUSCADOR CSS COMPLETO - SIN DUPLICADOS ===== */

/* BASE - Formulario y Input */
.search-form {
    position: relative;
    max-width: 580px;
    margin: 0 auto 1.5rem;
}

.search-input {
    width: 100%;
    padding: 1.2rem 6rem 1.2rem 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    height: 58px;
    display: flex;
    align-items: center;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(29, 43, 68, 0.1);
}

.search-controls {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.3rem;
    align-items: center;
    z-index: 20;
    height: 50px;
}

/* Botón X del INPUT */
.search-clear-btn {
    background: #6b7280;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 25;
    position: relative;
}

.search-clear-btn.visible {
    display: flex;
}

.search-clear-btn:hover {
    background: #4b5563;
    transform: scale(1.1);
}

/* Botón lupa */
.search-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 22;
    position: relative;
}

.search-btn:hover {
    background: var(--primary-blue-dark);
    transform: scale(1.05);
}

/* Dropdown base */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-height: 350px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-dropdown.active {
    display: block;
}

/* Header del dropdown */
.dropdown-header-mobile {
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: block;
}

/* Botón X del DROPDOWN - oculto por defecto */
.dropdown-close-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.dropdown-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Items del dropdown */
.dropdown-item {
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
}

.dropdown-item:hover {
    background: #f8f9fa;
    border-left: 3px solid var(--primary-blue);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dropdown-content {
    flex: 1;
    min-width: 0;
}

.dropdown-name {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-brand {
    font-size: 0.85rem;
    color: var(--text-medium);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-arrow {
    color: var(--primary-blue);
    font-weight: bold;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.dropdown-item:hover .dropdown-arrow {
    opacity: 1;
}

/* Footer del dropdown */
.dropdown-footer {
    padding: 0.6rem 1rem;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    border-radius: 0 0 16px 16px;
}

.ver-todos-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.ver-todos-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
}

/* DESKTOP - Específico */
@media (min-width: 769px) {
    .search-input {
        height: 58px !important;
    }
    
    .search-controls {
        height: 50px !important;
    }
    
    .search-btn {
        width: 50px !important;
        height: 50px !important;
    }
    
    /* Dropdown más estrecho en desktop */
    .search-dropdown {
        left: 10% !important;
        right: 10% !important;
        width: 80% !important;
        max-width: 480px !important;
        margin: 0 auto !important;
    }
    
    /* Header con botón cerrar en desktop */
    .dropdown-header-mobile {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    /* Botón X VISIBLE en desktop */
    .dropdown-close-btn {
        display: flex !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 0.9rem !important;
    }
    
    /* Items más compactos en desktop */
    .dropdown-item {
        padding: 0.7rem 1rem !important;
        min-height: 50px !important;
    }
    
    .dropdown-icon {
        font-size: 1.3rem !important;
    }
    
    .dropdown-name {
        font-size: 0.9rem !important;
    }
    
    .dropdown-brand {
        font-size: 0.8rem !important;
    }
}

/* MÓVIL - Específico */
@media (max-width: 768px) {
    /* Input móvil */
    .search-input {
        font-size: 16px !important;
        padding: 1rem 4.5rem 1rem 1.2rem !important;
        height: 48px !important;
    }
    
    /* Controles móvil */
    .search-controls {
        gap: 0.2rem !important;
        right: 6px !important;
        height: 40px !important;
    }
    
    /* Botones móvil más pequeños */
    .search-clear-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.85rem !important;
    }
    
    .search-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
    }
    
    /* MODAL móvil */
    .search-dropdown.active {
        position: fixed !important;
        top: 15% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 2rem) !important;
        max-width: 400px !important;
        max-height: 70vh !important;
        border-radius: 16px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
        z-index: 999999 !important;
        background: white !important;
        border: none !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        contain: layout style paint !important;
    }
    
    /* Backdrop móvil */
    .search-dropdown.active::before {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.08) !important;
        z-index: 999998 !important;
        pointer-events: none !important;
    }
    
    /* Header móvil */
    .dropdown-header-mobile {
        padding: 1rem !important;
        background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal)) !important;
        color: white !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        text-align: center !important;
        border-radius: 16px 16px 0 0 !important;
        border-bottom: none !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1000001 !important;
    }
    
    /* Botón X móvil */
    .dropdown-close-btn {
        display: flex !important;
        width: 28px !important;
        height: 28px !important;
        font-size: 1rem !important;
        z-index: 1000002 !important;
    }
    
    /* Área scrolleable móvil */
    .dropdown-scroll-area {
        flex: 1 !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch !important;
        max-height: calc(70vh - 140px) !important;
        position: relative !important;
        z-index: 1000000 !important;
        overscroll-behavior: contain !important;
        overflow: auto !important;
        scroll-behavior: smooth !important;
    }
    
    /* Items móvil */
    .dropdown-item {
        padding: 1rem !important;
        min-height: 60px !important;
        touch-action: pan-y !important;
        user-select: none !important;
        -webkit-tap-highlight-color: transparent !important;
        position: relative !important;
        z-index: 1000000 !important;
    }
    
    .dropdown-item:hover,
    .dropdown-item:active {
        background: #f0f7ff !important;
        border-left: 3px solid var(--primary-blue) !important;
    }
    
    /* Footer móvil */
    .dropdown-footer {
        padding: 1rem !important;
        background: #f8f9fa !important;
        border-top: 1px solid #e0e0e0 !important;
        text-align: center !important;
        flex-shrink: 0 !important;
        border-radius: 0 0 16px 16px !important;
        position: sticky !important;
        bottom: 0 !important;
        z-index: 1000001 !important;
    }
    
    .ver-todos-btn {
        background: var(--primary-blue) !important;
        color: white !important;
        border: none !important;
        padding: 0.75rem 1.5rem !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        transition: all 0.2s ease !important;
        z-index: 1000002 !important;
    }
    
    .ver-todos-btn:active {
        background: var(--primary-blue-dark) !important;
        transform: scale(0.98) !important;
    }
}

