/* Product Components */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-img {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1rem;
    }
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.product-img {
    height: 300px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--color-blue);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

/* Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-lg);
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
}

.filters h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--color-black);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-option {
    display: block;
    padding: 8px 0;
    color: #555;
    cursor: pointer;
}

.filter-option:hover,
.filter-option.active {
    color: var(--color-blue);
    font-weight: 600;
}

/* Page Header */
.page-header {
    background: var(--color-light-gray);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}