/* Shop Page Styles */
.shop-page {
    padding: 80px 0 40px 0;
    background: white;
}

.shop-page .section-title {
    margin-bottom: 2rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* Left Side - Filters */
.shop-filters {
    background: white;
    padding: 20px;
    border: 1px solid #E5E5E5;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2B2B2B;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-option:hover span {
    color: #F88C44;
}

.clear-filters {
    width: 100%;
    padding: 10px;
    background: white;
    border: 1px solid #E5E5E5;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.clear-filters:hover {
    background: #F88C44;
    color: white;
    border-color: #F88C44;
}

/* Right Side - Products */
.shop-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
}

.product-count {
    color: #666;
    font-size: 0.95rem;
}

.sort-dropdown {
    padding: 8px 15px;
    border: 1px solid #E5E5E5;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Product Grid - 3 columns */
.shop-products .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .shop-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shop-filters {
        position: static;
    }
    
    .shop-products .product-grid {
        grid-template-columns: 1fr;
    }
}