.shop-section {
    background: #f8f9fa;
}

.filter-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.filter-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.filter-list {
    list-style: none;
    padding: 0;
}

.filter-list li {
    margin-bottom: 8px;
}

.filter-list a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.filter-list a:hover {
    color: #ffc107;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

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

.product-image {
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 100%;
    width: auto;
}

.product-body {
    padding: 15px;
}

.product-title {
    font-size: 14px;
    height: 40px;
    overflow: hidden;
}

.product-price {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}