.new_arrival_title{
    background: #FCF4E9;
}

.new_arrival_title h3{
    color: #CC8119;
    padding: 20px 0;
}

.category-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    background-color: #ffffff;
    padding: 6px 10px;
    border-radius: 0 0 10px 10px;
    font-size: 12px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 2;
    white-space: nowrap;
}

.new-category-label{
    position: absolute;
    bottom: 10px;
    left: 35%;
    color: #000;
    padding: 4px 12px;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
}

@media (max-width: 576px) {
    .category-label {
        font-size: 9px;
        padding: 3px 8px;
    }
    .category_Product_Image {
        height: 350px !important;
    }
    .mobile_margin_product{
        margin-top: 30px !important;
    }
}

.view_product_cart{
    color: #000;
    padding: 5px;
    background: #e8e8e8;
    font-size: 14px;
    border-radius: 5px;
}
.category_Product_Image{
    width: 100%;
    height: 550px;
    border-radius: 10px;
}
.view_product_cart:hover{
    color: #000;
    padding: 5px;
    background: #e8e8e8;
    font-size: 14px;
    border-radius: 5px;
}

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}


.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.category-link:hover .image-overlay {
    opacity: 1;
}

.overlay-text-content {
    padding: 20px;
}

.overlay-text {
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    left: 20px;
    bottom: 20px;
}
