/* UrbanNutMix - Full Width Promo Banner Component CSS */

.unm-full-banner-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    box-sizing: border-box;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

.unm-full-banner-wrap {
    width: 100%;
    aspect-ratio: 2100 / 715; /* Exact ratio of the honey dry fruits banner image */
    display: block;
}

.unm-full-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* ===================================
   RESPONSIVE OVERRIDES
   =================================== */

@media (max-width: 1024px) {
    .unm-full-banner-wrap {
        aspect-ratio: 16 / 6.5;
    }
}

@media (max-width: 768px) {
    .unm-full-banner-wrap {
        aspect-ratio: 16 / 7.5;
    }
}

/* Flipkart-style full uncropped layout on mobile devices */
@media (max-width: 580px) {
    .unm-full-banner-wrap {
        aspect-ratio: 2100 / 715;
    }
    .unm-full-banner-img {
        object-fit: contain;
    }
}
