/* =========================================
   SHOP PAGE STYLES
   ========================================= */
.filters-bar {
    padding: 1rem 0;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.filter-link {
    white-space: nowrap;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.filter-link.active {
    color: var(--accent-primary);
    font-weight: 700;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 4px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.product-card {
    text-align: center;
}

.card-img-wrapper {
    width: 100%;
    height: 400px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}