.main_offers .banner {
    width: 100%;
}

.banner.clickable {
    cursor: pointer;
}

@media (max-width: 991px) {

    /* Mobile styles if needed */
    .banner-desktop-wrapper {
        margin-top: -80px;
        border: none;
        margin-bottom: -7px;
    }
}

@media (min-width: 992px) {
    /* Desktop styles */

    .banner-desktop-wrapper {
        width: fit-content;
        margin: 60px auto 0;
        border-radius: 3px;

        /* Metal Texture (Top Surface) */
        padding: 0;
        background: url('../img/metallic-texture.avif');
        background-size: cover;
        background-repeat: no-repeat;

        /* Metallic Border */
        border: 0;

        position: relative;
        z-index: 1;
        margin-bottom: 60px;
        /* Increased for thickness */
        perspective: 800px;
        box-shadow: 20px 15px 30px 11px rgba(0, 0, 0, 0.5);
        transition: transform 0.2s ease, box-shadow 0.1s ease;
    }

    .banner-desktop-wrapper:hover {
        transform: scale(1.05);
        box-shadow: 25px 20px 40px 15px rgba(0, 0, 0, 0.6);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Right Edge (Thickness) */
    .banner-desktop-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        right: -10px;
        /* Thickness */
        width: 10px;
        height: 100%;
        background: url("../img/metallic-texture.avif");
        background-size: cover;
        filter: blur(0.3px) brightness(1.2);
        /* Darker for side */
        transform: skewY(45deg) translateY(5px);
        /* Match perspective */
        z-index: -2;
    }

    /* Side Edge (Thickness) */
    .banner-desktop-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px;
        /* Thickness */
        height: 10px;
        background: url("../img/metallic-texture.avif") repeat-y;
        background-size: 100% 460%;
        filter: blur(0.3px) brightness(0.6);
        /* Shadowed edge */
        transform: skewX(45deg) translateX(5px);
        /* 3D Tilt */
        z-index: -1;
        box-shadow: 0 30px 30px rgba(0, 0, 0, 0.5);
        /* Drop shadow from the edge */
    }

    .main_offers .banner_desktop {
        height: 750px;
        /* Cropped height */
        width: auto;
        display: block;

        /* Cropping via object-fit */
        object-fit: cover;
        object-position: center 0px;
        /* Crop 10px from top */

        /* Image Shadow Removed */
        /* box-shadow:
            0 8px 30px rgba(0, 0, 0, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.3); */

        margin: 0;
        position: relative;
        z-index: 2;
        padding: 2px;
    }
}