 .product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        border-radius: 12px;
        overflow: hidden;
    }

    .product-title {
        text-transform: uppercase;
        font-weight: 600;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    }

    /* Ensures all images are the same height and look uniform */
    .img-container {
        height: 250px;
        overflow: hidden;
        background-color: #f8f9fa;
    }

    .img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Crops image to fill container without stretching */
    }

    .rating-stars {
        color: #ffc107;
        font-size: 0.9rem;
    }

    .price {
        font-weight: 700;
        font-size: 1.2rem;
        color: #212529;
    }

    .product-title {
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .product-card {
        border-radius: 12px;
        overflow: hidden;
        transition: 0.3s;
    }

    .product-card:hover {
        transform: translateY(-5px);
    }

    /* Discount Badge */
    .discount-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #ff3b3b;
        color: #fff;
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 6px;
        font-weight: 600;
    }

    /* Price Styling */
    .mrp {
        color: #000000;
        font-size: 15px;
        text-decoration: line-through;
        font-weight: 700;
    }

    .dp-price {
        color: #28a745;
        font-size: 18px;
        font-weight: 700;
    }