/* =====================================================
   ESTILOS ESPECÍFICOS - ACADEMIA & TIENDA
   ===================================================== */

.store-body {
    background: var(--bg-primary);
    color: white;
}

.store-hero {
    padding: 160px 0 80px;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.15), transparent 60%);
    text-align: center;
}

.store-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.store-filters {
    padding: 40px 0;
    position: sticky;
    top: 70px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.categories {
    display: flex;
    gap: 12px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-500);
    color: black;
    border-color: var(--primary-500);
}

.search-box {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 45px 10px 20px;
    border-radius: 12px;
    color: white;
    outline: none;
    transition: all 0.3s;
}

.search-box input:focus {
    border-color: var(--primary-500);
    background: rgba(34, 197, 94, 0.05);
}

.search-box svg {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
}

/* Product Grid */
.store-main {
    padding: 60px 0 100px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-500);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 197, 94, 0.1);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-500);
    color: black;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: white;
}

.product-info p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    margin-bottom: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-400);
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.star {
    color: #F59E0B;
}

.w-full {
    width: 100%;
}

/* Redesponsivo */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
    }

    .categories {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 5px;
    }

    .search-box {
        max-width: 100%;
    }
}