/* Product Card Styles */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.product-image-wrapper {
    position: relative; 
    overflow: hidden; 
}

.product-image {
    transition: transform 0.3s ease;
}

.product-card:hover .product-image { 
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: #ffffff;
    color: #222222;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quick-view-btn:hover {
    background: #f8f8f8;
}

.learn-more {
    color: #ff5e14;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.product-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.product-card:hover .learn-more i {
    transform: translateX(5px);
}

/* Product Grid Responsive Styles */
@media (max-width: 991px) {
    .product-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .quick-view-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}
