/* Shop Layout */
.shop-layout {
    padding: 2rem 0;
}

.shop-header {
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 2rem 0;
}

.shop-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.shop-description {
    color: #6c757d;
}

/* Filters */
.shop-filters {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-options a {
    color: #6c757d;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-options a:hover {
    background: #f8f9fa;
    color: #333;
}

.filter-options a.active {
    background: #007bff;
    color: #fff;
}

/* Products Grid */
.products-grid {
    margin: 0 -0.5rem;
}

.products-grid .col {
    padding: 0.5rem;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-title a {
    color: #333;
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.regular-price {
    color: #333;
    font-weight: bold;
}

.sale-price {
    color: #dc3545;
    font-weight: bold;
}

/* Pagination */
.shop-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.shop-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 0.25rem;
    border-radius: 4px;
    background: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-pagination .page-numbers.current {
    background: #007bff;
    color: #fff;
}

.shop-pagination .page-numbers:hover {
    background: #e9ecef;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 4rem 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 991.98px) {
    .shop-filters {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .products-grid {
        margin: 0 -0.25rem;
    }
    
    .products-grid .col {
        padding: 0.25rem;
    }
    
    .product-title {
        font-size: 0.875rem;
    }
}