/* --- SHOP LAYOUT --- */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
}

/* --- SIDEBAR --- */
.shop-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    height: fit-content;
}

.shop-sidebar h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #b33939;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: #444;
    font-size: 1rem;
    display: block;
    transition: 0.3s;
}

.category-list a.active, 
.category-list a:hover {
    color: #e67e22;
    padding-left: 8px;
    font-weight: 600;
}

/* --- MAIN CONTENT --- */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.product-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #b33939;
    margin-bottom: 15px;
}

.empty-state {
    text-align: center;
    padding: 100px 20px;
    background: #fdfdfd;
    border: 2px dashed #eee;
    grid-column: 1 / -1;
}
