.product-list {
    padding: 60px 0;
}

/* Filters */
.product-filters ul li {
    cursor: pointer;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
}
.product-filters ul li.filter-active,
.product-filters ul li:hover {
    background: #0d6efd;
    color: #fff;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease-in-out;
}
.product-card:hover {
    transform: translateY(-6px);
}

/* Image */
.product-image {
    position: relative;
    overflow: hidden;
}
.product-image img {
    transition: 0.4s ease;
}
.product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.product-card:hover .hover-img {
    opacity: 1;
}
.product-card:hover .main-img {
    opacity: 0;
}

/* Badge */
.product-image .badge {
    background: #ff4444;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
}

/* Overlay */
.product-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    padding: 12px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.product-card:hover .product-overlay {
    opacity: 1;
    bottom: 0;
}

.btn-cart {
    background: #0d6efd;
    color: #fff;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 14px;
    display: inline-block;
}

.product-actions {
    margin-top: 10px;
}
.product-actions .action-btn {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
}

/* Info */
.product-info {
    padding: 18px;
}
.product-title a {
    font-size: 16px;
    font-weight: 600;
}
.product-price {
    margin: 8px 0;
}
.product-price .current-price {
    font-size: 18px;
    font-weight: 700;
    color: #0d6efd;
}
.product-price .old-price {
    text-decoration: line-through;
    margin-left: 8px;
    color: #777;
}

/* Rating */
.product-rating i {
    color: #ffc107;
    font-size: 14px;
}
.product-rating span {
    margin-left: 5px;
    font-size: 14px;
}

/* View All Button */
.view-all-btn {
    background: #0d6efd;
    color: #fff;
    padding: 10px 26px;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s;
}
.view-all-btn:hover {
    background: #084298;
}
