/* ============================
   NEW PRODUCT BADGE
   ============================ */

.product-img {
    position: relative;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #FFD20A;
    color: #1A1A1A;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    z-index: 10;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ============================
   NEW PRODUCTS HOMEPAGE SECTION
   ============================ */

.new-products-section {
    width: 85%;
    height: auto;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.new-products-section>h1 {
    font-size: 30px;
    font-weight: 500;
    color: #1A1A1A;
    text-align: center;
}

.new-products-container {
    width: 100%;
    height: auto;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.new-products-container .product-items {
    width: 250px;
    height: auto;
    margin: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.new-products-container .product-items:hover {
    transform: translateY(-5px);
}

.new-products-container .product-img {
    width: 250px;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.new-products-container .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.new-products-container .product-name {
    width: 100%;
    height: 55px;
    background-color: #FFD20A;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 4px solid #1A1A1A;
    padding: 8px;
    font-size: 15px;
    font-weight: bold;
    color: #1A1A1A;
    text-align: center;
    line-height: 20px;
}

.new-products-container .product-items:hover .product-name {
    background-color: #1A1A1A;
    border-top: 4px solid #FFD20A;
    color: #FFD20A;
}

@media only screen and (max-width: 768px) {
    .new-products-container .product-items {
        width: 45%;
    }

    .new-products-container .product-img {
        width: 100%;
        height: auto;
    }
}
