/**
 * PLP Epic - Product Listing Page Styles
 * Estilos para las páginas de listado (canchas, resultados de búsqueda)
 */

/* Hero Section PLP */
.hero-section-plp {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section-plp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title-plp {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-title-plp .text-primary {
    color: #3b82f6 !important;
}

.hero-subtitle-plp {
    font-size: 1.25rem;
    color: #94a3b8;
    font-weight: 400;
}

/* Search Box PLP */
.search-box-plp {
    max-width: 700px;
    position: relative;
}

.search-box-plp form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-box-plp form:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.search-icon-plp {
    position: absolute;
    left: 1.5rem;
    color: #94a3b8;
    font-size: 1.25rem;
    pointer-events: none;
    z-index: 2;
}

.search-input-plp {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.search-input-plp::placeholder {
    color: #94a3b8;
}

.search-box-plp .btn-epic {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Featured Section - Reusando estilos del home */
.featured-section {
    background: #f8fafc;
    padding: 4rem 0;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section-plp {
        padding: 4rem 0 3rem;
    }
    
    .hero-title-plp {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-plp {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .hero-section-plp {
        padding: 3rem 0 2rem;
    }
    
    .hero-title-plp {
        font-size: 2rem;
    }
    
    .hero-subtitle-plp {
        font-size: 1rem;
    }
    
    .search-box-plp form {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .search-input-plp {
        padding: 1rem 1rem 1rem 2.5rem;
        width: 100%;
    }
    
    .search-icon-plp {
        left: 1.25rem;
    }
    
    .search-box-plp .btn-epic {
        width: 100%;
        justify-content: center;
    }
}
