/* product card style */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}
.product-img-container {
    width: 100%;
    height: 220px; /* Fixed height for consistent design */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #f8f9fa; */
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures proper image cropping */
}
.product-info {
    padding: 20px;
    text-align: center;
}
.product-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}
.product-info p {
    font-size: 1rem;
    color: #555;
}
.btn-buy {
    background: #007bff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    color: white;
    transition: 0.3s ease;
}
.btn-buy:hover {
    background: #0056b3;
}
/* Second row styling */
.row:nth-child(2) .col-md-3, 
.row:nth-child(2) .col-sm-6 {
    background: rgba(0, 123, 255, 0.05);
    /* border-radius: 12px; */
    padding: 15px;
}
/* product card style */