/* ===== CATALOG PREMIUM STYLES ===== */

/* ===== VARIABLES ESPECÍFICAS DEL CATÁLOGO ===== */
:root {
    /* Colores específicos del catálogo */
    --catalog-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --catalog-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --catalog-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --catalog-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --catalog-warning: linear-gradient(135deg, #fd746c 0%, #ff9068 100%);
    
    /* Grid del catálogo */
    --catalog-grid-gap: 2rem;
    --catalog-card-width: 320px;
    --catalog-card-height: 500px;
    
    /* Efectos específicos */
    --catalog-hover-scale: 1.05;
    --catalog-hover-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* ===== SEARCH BAR EXPANDIBLE ===== */
.search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.search-bar.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-container input {
    flex: 1;
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.search-container input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.search-container input::placeholder {
    color: var(--text-tertiary);
}

.search-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* ===== HEADER ACTIONS MEJORADO ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-toggle,
.cart-toggle {
    width: 45px;
    height: 45px;
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    position: relative;
}

.search-toggle:hover,
.cart-toggle:hover {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--error-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

/* ===== CATALOG HERO ===== */
.catalog-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 3rem;
}

.catalog-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.catalog-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.catalog-hero .hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.catalog-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FILTROS PREMIUM ===== */
.catalog-filters {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.filters-header h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 0.25rem;
    backdrop-filter: blur(10px);
}

.view-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-small);
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
    font-weight: var(--font-weight-medium);
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.filter-tab:hover::before {
    left: 100%;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.filter-tab i {
    font-size: 1.1rem;
}

.filter-tab .count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
}

.filter-tab.active .count {
    background: rgba(255, 255, 255, 0.3);
}

/* ===== PRODUCTOS ===== */
.catalog-products {
    padding: 4rem 0;
    position: relative;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
}

.results-info {
    color: var(--text-secondary);
    font-size: 1rem;
}

.results-info strong {
    color: var(--accent-color);
    font-weight: var(--font-weight-semibold);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-select {
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 0.8rem 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    font-size: 0.9rem;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

/* ===== GRID DE PRODUCTOS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--catalog-grid-gap);
    margin-bottom: 4rem;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    display: flex;
    height: 200px;
}

.products-grid.list-view .product-image {
    width: 300px;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

/* ===== TARJETAS DE PRODUCTO PREMIUM ===== */
.product-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    height: fit-content;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: var(--border-accent);
    box-shadow: var(--catalog-hover-shadow);
}

.product-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, var(--bg-glass) 0%, rgba(0, 242, 254, 0.05) 100%);
}

.product-card.enterprise {
    border: 2px solid #8b5cf6;
    background: linear-gradient(135deg, var(--bg-glass) 0%, rgba(139, 92, 246, 0.05) 100%);
}

/* ===== BADGES DE PRODUCTO ===== */
.card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s infinite;
}

.badge.featured {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
}

.badge.popular {
    background: var(--warning-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 144, 104, 0.4);
}

.badge.new {
    background: var(--success-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(56, 239, 125, 0.4);
}

.badge.trending {
    background: var(--secondary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.badge.enterprise {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.badge.professional {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* ===== IMAGEN DE PRODUCTO ===== */
.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    backdrop-filter: blur(5px);
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.8rem 1.5rem;
    color: white;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-view-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* ===== INFORMACIÓN DE PRODUCTO ===== */
.product-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-category {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-count {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature i {
    color: var(--success-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ===== PRECIOS ===== */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.8rem;
    font-weight: var(--font-weight-black);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-original {
    font-size: 1rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== ACCIONES DE PRODUCTO ===== */
.product-actions {
    display: flex;
    gap: 0.8rem;
}

.btn-primary {
    flex: 1;
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem;
    color: white;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* ===== PAGINACIÓN ===== */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-primary);
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    font-weight: var(--font-weight-medium);
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.page-btn.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-dots {
    color: var(--text-tertiary);
    padding: 0 0.5rem;
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== CTA BOTTOM ===== */
.catalog-cta {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.catalog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 242, 254, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.catalog-cta .cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.catalog-cta h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.catalog-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-cta .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PROMOCIONES ESPECÍFICAS DEL CATÁLOGO ===== */
.promo-toggle.catalog {
    background: var(--catalog-primary);
    animation: catalogPulse 4s infinite;
}

.deal-countdown.flash {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 144, 104, 0.1));
    border: 2px solid var(--warning-color);
}

.deal-countdown.flash h4 {
    color: var(--warning-color);
    animation: flashText 1s infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .catalog-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .catalog-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filters-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .filter-tabs {
        gap: 0.5rem;
    }
    
    .filter-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .products-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-container {
        padding: 1rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .catalog-hero .hero-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tab {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-secondary {
        width: 100%;
    }
}

/* ===== ANIMACIONES ESPECÍFICAS ===== */
@keyframes catalogPulse {
    0%, 100% { 
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3); 
    }
    50% { 
        box-shadow: 0 5px 40px rgba(102, 126, 234, 0.6); 
    }
}

@keyframes flashText {
    0%, 100% { 
        color: var(--warning-color); 
    }
    50% { 
        color: var(--error-color); 
    }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

/* ===== ESTADOS DE FILTRADO ===== */
.product-card.filtered-out {
    display: none !important;
}

.product-card.filtered-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== LOADING STATES ===== */
.products-grid.loading {
    opacity: 0.6;
    pointer-events: none;
}

.product-card.loading {
    background: linear-gradient(90deg, var(--bg-glass), var(--bg-tertiary), var(--bg-glass));
    background-size: 200% 100%;
    animation: shimmerLoad 1.5s infinite;
}

@keyframes shimmerLoad {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ===== UTILIDADES ESPECÍFICAS ===== */
.text-catalog-primary {
    background: var(--catalog-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-catalog-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
}

.border-catalog-accent {
    border-color: var(--accent-color);
}

.shadow-catalog {
    box-shadow: var(--catalog-hover-shadow);
}

/* ===== EFECTOS VISUALES HERO MEJORADOS ===== */

/* Logos flotantes de streaming */
.floating-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.streaming-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--bg-glass);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    opacity: 0.3;
    animation: float 15s infinite linear;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.streaming-logo.netflix {
    background: linear-gradient(135deg, #e50914, #b81d24);
    animation-delay: 0s;
    top: 20%;
    left: 10%;
}

.streaming-logo.disney {
    background: linear-gradient(135deg, #113ccf, #1e40af);
    animation-delay: 3s;
    top: 60%;
    left: 85%;
}

.streaming-logo.hbo {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    animation-delay: 6s;
    top: 30%;
    right: 15%;
}

.streaming-logo.prime {
    background: linear-gradient(135deg, #00a8e1, #0284c7);
    animation-delay: 9s;
    top: 70%;
    left: 20%;
}

.streaming-logo.spotify {
    background: linear-gradient(135deg, #1db954, #16a34a);
    animation-delay: 12s;
    top: 40%;
    right: 25%;
}

.streaming-logo.youtube {
    background: linear-gradient(135deg, #ff0000, #dc2626);
    animation-delay: 15s;
    top: 80%;
    right: 10%;
}

.streaming-logo.apple {
    background: linear-gradient(135deg, #007aff, #2563eb);
    animation-delay: 18s;
    top: 15%;
    right: 35%;
}

.streaming-logo.paramount {
    background: linear-gradient(135deg, #0064ff, #1d4ed8);
    animation-delay: 21s;
    top: 50%;
    left: 5%;
}

/* Elementos tech flotantes */
.tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.tech-element {
    position: absolute;
    opacity: 0.1;
    animation: techFloat 20s infinite ease-in-out;
}

.tech-satellite {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 25%;
    left: 15%;
    animation-delay: 0s;
    box-shadow: 
        0 0 20px var(--accent-color),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.tech-satellite::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 2px;
}

.tech-satellite::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 2px;
}

.tech-signal {
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 60%;
    right: 20%;
    animation-delay: 5s;
    position: relative;
}

.tech-signal::before,
.tech-signal::after {
    content: '';
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.tech-signal::before {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
}

.tech-signal::after {
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    animation-delay: 0.5s;
}

.tech-stream {
    width: 60px;
    height: 60px;
    top: 35%;
    left: 70%;
    animation-delay: 10s;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    position: relative;
    transform: rotate(45deg);
}

.tech-stream::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Ondas de datos */
.data-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.data-wave {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.2;
    animation: waveMove 8s infinite linear;
}

.data-wave:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
}

.data-wave:nth-child(2) {
    top: 40%;
    animation-delay: 2s;
}

.data-wave:nth-child(3) {
    top: 60%;
    animation-delay: 4s;
}

.data-wave:nth-child(4) {
    top: 80%;
    animation-delay: 6s;
}

/* Puntos de conexión */
.connection-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.connection-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: dotPulse 3s infinite ease-in-out;
}

.connection-dot:nth-child(1) { top: 15%; left: 25%; animation-delay: 0s; }
.connection-dot:nth-child(2) { top: 30%; left: 60%; animation-delay: 0.5s; }
.connection-dot:nth-child(3) { top: 55%; left: 35%; animation-delay: 1s; }
.connection-dot:nth-child(4) { top: 75%; left: 70%; animation-delay: 1.5s; }
.connection-dot:nth-child(5) { top: 25%; left: 80%; animation-delay: 2s; }
.connection-dot:nth-child(6) { top: 65%; left: 15%; animation-delay: 2.5s; }

/* Líneas de conexión animadas */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    animation: lineGlow 4s infinite ease-in-out;
}

.connection-line.horizontal {
    width: 30%;
    animation: lineHorizontal 6s infinite ease-in-out;
}

.connection-line.vertical {
    width: 1px;
    height: 30%;
    animation: lineVertical 6s infinite ease-in-out;
}

.connection-line:nth-child(1) { top: 25%; left: 20%; animation-delay: 0s; }
.connection-line:nth-child(2) { top: 50%; left: 60%; animation-delay: 1s; }
.connection-line:nth-child(3) { top: 75%; left: 30%; animation-delay: 2s; }

/* ===== ANIMACIONES ===== */
@keyframes float {
    0% {
        transform: translateY(100vh) rotateZ(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translateY(50vh) rotateZ(180deg);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotateZ(360deg);
        opacity: 0;
    }
}

@keyframes techFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-20px) rotateZ(90deg);
    }
    50% {
        transform: translateY(0px) rotateZ(180deg);
    }
    75% {
        transform: translateY(20px) rotateZ(270deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

@keyframes waveMove {
    0% {
        left: -200px;
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.5);
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.1;
        box-shadow: 0 0 5px var(--primary-color);
    }
    50% {
        opacity: 0.4;
        box-shadow: 0 0 15px var(--primary-color);
    }
}

@keyframes lineHorizontal {
    0% {
        width: 0;
        left: 20%;
    }
    50% {
        width: 30%;
        left: 20%;
    }
    100% {
        width: 0;
        left: 50%;
    }
}

@keyframes lineVertical {
    0% {
        height: 0;
        top: 20%;
    }
    50% {
        height: 30%;
        top: 20%;
    }
    100% {
        height: 0;
        top: 50%;
    }
}
/* ===== ANIMACIONES PARA VISTA RÁPIDA ===== */
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes priceGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Responsive para vista rápida */
@media (max-width: 768px) {
    .quick-view-content-premium {
        margin: 1rem !important;
    }
    
    .quick-view-content-premium > div:nth-child(2) > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}
/* ===== CTA BOTTOM PREMIUM MEJORADO ===== */
.catalog-cta {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efectos de fondo */
.cta-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Orbes gradientes animados */
.cta-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation: ctaOrbFloat 8s ease-in-out infinite;
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.3) 0%, transparent 70%);
    top: 50%;
    right: -80px;
    animation-delay: 2s;
}

.cta-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.4) 0%, transparent 70%);
    bottom: -50px;
    left: 30%;
    animation-delay: 4s;
}

/* Partículas flotantes */
.cta-floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: ctaParticleFloat 6s linear infinite;
}

.cta-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.cta-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.cta-particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.cta-particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.cta-particle:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 5s;
}

.cta-particle:nth-child(6) {
    top: 70%;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 8s;
}

/* Grid pattern de fondo */
.cta-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: ctaGridMove 20s linear infinite;
}

/* Contenido CTA */
.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.3);
    animation: ctaIconPulse 3s ease-in-out infinite;
}

.cta-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.catalog-cta h2 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.catalog-cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Botones CTA Premium */
.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
    min-width: 250px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-cta.primary {
    background: var(--success-gradient);
    color: white;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-cta.primary:hover {
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.6);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.3);
}

/* Efectos de brillo en botones */
.btn-shine {
    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-cta:hover .btn-shine {
    left: 100%;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-cta:active .btn-glow {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: all 0.1s ease;
}

/* Indicadores de confianza */
.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
}

.trust-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* ===== ANIMACIONES CTA ===== */
@keyframes ctaOrbFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes ctaParticleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes ctaGridMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(50px) translateY(50px);
    }
}

@keyframes ctaIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 242, 254, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 20px 45px rgba(0, 242, 254, 0.5);
    }
}

/* ===== RESPONSIVE CTA ===== */
@media (max-width: 768px) {
    .catalog-cta {
        padding: 4rem 0;
    }
    
    .cta-content {
        padding: 3rem 2rem;
    }
    
    .catalog-cta h2 {
        font-size: 2.2rem;
    }
    
    .catalog-cta p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 350px;
    }
    
    .cta-trust-indicators {
        gap: 2rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .catalog-cta h2 {
        font-size: 1.8rem;
    }
}
/* ===== RESPONSIVE GRID MÓVIL - 2 PRODUCTOS POR FILA ===== */

/* Para pantallas móviles medianas (768px - 480px) */
@media (max-width: 768px) and (min-width: 481px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .product-card {
        min-width: unset;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-title {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .product-features {
        gap: 0.3rem;
    }
    
    .feature {
        font-size: 0.8rem;
    }
    
    .price-current {
        font-size: 1.4rem;
    }
    
    .btn-primary {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .btn-primary span {
        display: none; /* Ocultar texto, solo mostrar icono */
    }
    
    .btn-secondary {
        width: 40px;
        padding: 0.8rem;
    }
}

/* Para pantallas móviles pequeñas (480px y menos) */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem;
    }
    
    .product-card {
        min-width: unset;
    }
    
    .product-image {
        height: 140px; /* Reducir altura de imagen */
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .product-rating {
        margin-bottom: 0.5rem;
    }
    
    .stars i {
        font-size: 0.7rem;
    }
    
    .rating-count {
        font-size: 0.7rem;
    }
    
    .product-features {
        gap: 0.2rem;
        margin-bottom: 1rem;
    }
    
    .feature {
        font-size: 0.75rem;
    }
    
    .feature i {
        font-size: 0.7rem;
    }
    
    .price-current {
        font-size: 1.2rem;
    }
    
    .price-original {
        font-size: 0.8rem;
    }
    
    .price-period {
        font-size: 0.7rem;
    }
    
    .product-actions {
        gap: 0.5rem;
    }
    
    .btn-primary {
        padding: 0.7rem;
        font-size: 0.75rem;
        gap: 0.3rem;
    }
    
    .btn-primary i {
        font-size: 0.9rem;
    }
    
    .btn-primary span {
        display: none; /* Solo mostrar icono en móviles muy pequeños */
    }
    
    .btn-secondary {
        width: 35px;
        padding: 0.7rem;
    }
    
    /* Ajustar badges para móvil */
    .card-badges {
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }
}

/* Para pantallas extra pequeñas (360px y menos) */
@media (max-width: 360px) {
    .products-grid {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .product-title {
        font-size: 0.8rem;
    }
    
    .price-current {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.6rem;
        font-size: 0.7rem;
    }
    
    .btn-secondary {
        width: 30px;
        padding: 0.6rem;
    }
}

/* Ajustar vista de lista en móvil */
@media (max-width: 768px) {
    .products-grid.list-view {
        grid-template-columns: 1fr !important; /* En vista lista, solo 1 columna en móvil */
    }
    
    .products-grid.list-view .product-card {
        display: block; /* Cambiar a layout vertical en móvil */
        height: auto;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        height: 180px;
    }
    
    .products-grid.list-view .product-info {
        padding: 1.5rem;
    }
}

/* Ajustar filtros en móvil para mejor UX */
@media (max-width: 768px) {
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .filter-tabs::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
}
/* ===== OCULTAR FILTROS EN MÓVIL - SOLO BOTONES DE VISTA ===== */

/* Ocultar filtros de categorías en móvil */
@media (max-width: 768px) {
    /* Ocultar las pestañas de filtros */
    .filter-tabs {
        display: none !important;
    }
    
    /* Reorganizar header de filtros */
    .filters-header {
        justify-content: center !important;
        margin-bottom: 1rem;
    }
    
    .filters-header h3 {
        display: none; /* Ocultar título también */
    }
    
    /* Hacer los botones de vista más prominentes */
    .view-toggle {
        background: var(--bg-glass);
        border: 2px solid var(--border-accent);
        border-radius: var(--radius-full);
        padding: 0.4rem;
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .view-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .view-btn.active {
        background: var(--primary-gradient);
        color: white;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        transform: scale(1.1);
    }
    
    .view-btn:not(.active) {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-secondary);
    }
    
    .view-btn:not(.active):hover {
        background: rgba(255, 255, 255, 0.2);
        color: var(--text-primary);
        transform: scale(1.05);
    }
    
    /* Ajustar padding de la sección de filtros */
    .catalog-filters {
        padding: 1.5rem 0;
        position: sticky;
        top: 70px; /* Ajustar para móvil */
        z-index: 100;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-primary);
    }
    
    /* Centrar perfectamente el contenedor */
    .filters-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
    }
    
    /* Agregar un indicador de vista activa */
    .view-toggle::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: var(--accent-gradient);
        border-radius: 2px;
        opacity: 0.7;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .catalog-filters {
        padding: 1rem 0;
    }
    
    .view-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .view-toggle {
        padding: 0.3rem;
    }
}

/* Agregar un indicador visual de "todas las categorías" */
@media (max-width: 768px) {
    .products-header::before {
        content: '📂 Todas las Categorías';
        display: block;
        color: var(--accent-color);
        font-size: 0.9rem;
        font-weight: var(--font-weight-semibold);
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    /* Ajustar el header de productos */
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .results-info {
        order: -1; /* Mover contador arriba */
    }
    
    .sort-controls {
        width: 100%;
        justify-content: flex-end;
    }
    
    .sort-select {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 160px;
    }
}

/* Efecto de pulsación para los botones de vista */
@media (max-width: 768px) {
    .view-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .view-btn.active:active {
        transform: scale(1.05);
    }
}

/* Mejorar la experiencia visual cuando cambia la vista */
@media (max-width: 768px) {
    .products-grid {
        transition: all 0.3s ease;
    }
    
    .products-grid.list-view {
        animation: viewChange 0.4s ease;
    }
    
    @keyframes viewChange {
        from {
            opacity: 0.7;
            transform: scale(0.98);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
}

/* Opcional: Agregar un botón flotante para filtros avanzados */
@media (max-width: 768px) {
    .mobile-filter-toggle {
        position: fixed;
        bottom: 100px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: var(--accent-gradient);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
        z-index: 1000;
        transition: all 0.3s ease;
        display: none; /* Oculto por defecto, puedes activarlo si quieres */
    }
    
    .mobile-filter-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 35px rgba(0, 242, 254, 0.6);
    }
}
/* ===== ESTILOS MEJORADOS PARA PROMOCIONES REALES ===== */

/* Oferta individual destacada */
.deal-card.single-offer {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(229, 9, 20, 0.3);
}

.deal-single-app {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.app-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Características compactas */
.deal-features.compact {
    margin: 1rem 0;
}

.deal-features.compact li {
    font-size: 0.85rem;
    padding: 0.3rem 0;
}

/* Iconos de apps actualizados */
.app-icon.iptv {
    background: linear-gradient(135deg, #667eea, #764ba2);
    font-size: 1.2rem;
}

/* Botón destacado */
.deal-btn.featured {
    background: linear-gradient(135deg, #229A16, #25D366);
    animation: pulseGreen 2s infinite;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulseGreen {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
        transform: translateY(-2px);
    }
}

/* Footer del contador */
.countdown-footer {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-footer p {
    color: var(--warning-color);
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    margin: 0;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

/* Precios más llamativos */
.deal-price .current-price {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #25D366, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.deal-price .savings {
    background: var(--warning-gradient);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Badges más atractivos */
.deal-badge.new {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    animation: shake 3s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Efectos hover para las cards */
.deal-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Responsive para las promociones */
@media (max-width: 768px) {
    .deal-apps {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .app-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .app-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .deal-price .current-price {
        font-size: 1.5rem;
    }
    
    .deal-features li {
        font-size: 0.8rem;
    }
}
/* ===== BANNER DESLIZANTE - POSICIONAMIENTO CORREGIDO ===== */
.sliding-banner.premium-banner {
    position: relative;
    z-index: 150; /* ✅ Mayor que filtros (100) y header (999) */
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    overflow: hidden;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Ajustar z-index de filtros */
.catalog-filters {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    z-index: 100; /* ✅ Menor que banner */
    backdrop-filter: blur(20px);
}

/* Track del banner */
.banner-track {
    display: flex;
    width: 100%;
    animation: bannerSlide 25s linear infinite;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    white-space: nowrap;
    min-width: 100%;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.banner-item:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.banner-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.banner-item:hover i {
    color: white;
}

/* Animación del banner */
@keyframes bannerSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive del banner */
@media (max-width: 768px) {
    .sliding-banner.premium-banner {
        padding: 0.8rem 0;
    }
    
    .banner-content {
        gap: 2rem;
    }
    
    .banner-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        gap: 0.5rem;
    }
    
    .banner-item i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-content {
        gap: 1.5rem;
    }
    
    .banner-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Efecto de duplicación para scroll continuo */
.banner-track::after {
    content: '';
    display: flex;
    align-items: center;
    gap: 4rem;
    white-space: nowrap;
    min-width: 100%;
}

.banner-track::after {
    display: none; /* Lo activaremos con JS si es necesario */
}
/* ===== TESTIMONIOS PREMIUM - VERSIÓN CORREGIDA ===== */
.testimonials.premium-testimonials {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card.premium {
    background: var(--bg-glass);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card.premium:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.2);
}

/* ===== AUTOR CON IMAGEN PEQUEÑA ===== */
.testimonial-author {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
    width: auto !important; /* ✅ QUITAR WIDTH FIJO */
}

.author-avatar-large {
    width: 60px !important; /* ✅ TAMAÑO PEQUEÑO */
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid var(--accent-color) !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.author-info {
    flex: 1 !important;
}

.author-info strong {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: var(--font-weight-bold) !important;
    color: var(--text-primary) !important;
    margin-bottom: 0.5rem !important;
}

.author-info span {
    color: var(--text-secondary) !important;
    font-size: 0.9rem !important;
}

/* ===== TEXTO DEL TESTIMONIO ===== */
.testimonial-text {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: var(--text-primary) !important;
    margin-bottom: 2rem !important;
    font-style: italic !important;
}

/* ===== RATING ===== */
.testimonial-rating {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

.testimonial-rating .stars {
    display: flex !important;
    gap: 0.2rem !important;
}

.testimonial-rating .stars i {
    color: #ffd700 !important;
    font-size: 0.9rem !important;
}

.testimonial-rating span {
    color: var(--text-secondary) !important;
    font-size: 0.8rem !important;
}

/* ===== RESPONSIVE TESTIMONIOS ===== */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .testimonial-card.premium {
        padding: 2rem !important;
    }
    
    .author-avatar-large {
        width: 50px !important;
        height: 50px !important;
    }
    
    .author-info strong {
        font-size: 1rem !important;
    }
    
    .testimonial-text {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .testimonial-author {
        gap: 1rem !important;
    }
    
    .author-avatar-large {
        width: 55px !important;
        height: 55px !important;
    }
    
    .author-info strong {
        font-size: 0.95rem !important;
    }
    
    .testimonial-text {
        font-size: 0.9rem !important;
    }
}