/* Products Section Styles */
.ISPTemplateV1-products-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product-card {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #f6c23e, #e74a3b);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    max-height: 160px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #4e73df;
}

.product-price {
    margin-bottom: 15px;
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
    font-size: 16px;
}

.current-price {
    color: #4e73df;
    font-weight: bold;
}

.product-btn {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    background-color: #4e73df;
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-btn:hover {
    background-color: #2e59d9;
    transform: scale(1.05);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .ISPTemplateV1-products-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .ISPTemplateV1-products-section {
        padding: 40px 0;
    }
    .product-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .product-img {
        height: 180px;
    }
    .product-title {
        font-size: 16px;
    }
    .product-price {
        font-size: 16px;
    }
    .old-price {
        font-size: 14px;
    }
} 