﻿.new-products-section {
    background: #f8f9fa;
}

/* Card */
.product-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,.15);
    }

/* Image */
.img-wrapper {
    position: relative;
    overflow: hidden;
}

    .img-wrapper img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform .4s ease;
    }

.product-card:hover img {
    transform: scale(1.08);
}

/* NEW badge */
.badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff2f2f, #ff9800);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    animation: pulse 1.8s infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,47,47,0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255,47,47,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,47,47,0);
    }
}

/* Text */
.product-title {
    font-size: 14px;
    font-weight: 600;
    min-height: 40px;
}

.price {
    font-size: 16px;
    font-weight: 700;
    color: #dc3545;
}
