.zwidgets-advanced-shop-banner .grey-container {
    background-color: transparent;
    /* Light grey container */
    width: 100%;
    /* min-height: 100vh;  <-- Removed to let Elementor control handle it */
    /* Removed max-width and border-radius/box-shadow for full screen experience */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    /* Prevent spillout */
}

/* Top Image Side */
.zwidgets-advanced-shop-banner .image-section {
    /* flex: 1;  Removed to prevent forced expansion */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    margin: 0;
    /* No margin to touch the edges */
    border-radius: 20px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    /* "Grey shadow inside image" - subtle inset shadow for depth */
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
}

.zwidgets-advanced-shop-banner .image-section img {
    width: 100%;
    height: auto;
    /* Let image define height */
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
    display: block;
}

/* Hover Overlay - Left Aligned with Title & Description */
.zwidgets-advanced-shop-banner .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* "Grey shadow" gradient for text readability */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Text at bottom */
    align-items: flex-start;
    /* Text at left */
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 20px;
    z-index: 2;
}

.zwidgets-advanced-shop-banner .hover-content {
    transform: translateY(30px);
    transition: transform 0.5s ease;
}

.zwidgets-advanced-shop-banner .hover-overlay h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

.zwidgets-advanced-shop-banner .hover-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0;
    max-width: 80%;
    font-family: 'Outfit', sans-serif;
}

.zwidgets-advanced-shop-banner .image-section:hover img {
    transform: scale(1.08);
}

.zwidgets-advanced-shop-banner .image-section:hover .hover-overlay {
    opacity: 1;
}

.zwidgets-advanced-shop-banner .image-section:hover .hover-content {
    transform: translateY(0);
}

/* Bottom Action Side */
.zwidgets-advanced-shop-banner .action-section {
    padding: 0.5rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zwidgets-advanced-shop-banner .long-btn {
    width: 100%;
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 1.5rem;
    padding: clamp(0.8rem, 3vw, 1.5rem);
    /* Responsive padding */
    font-size: 1.5rem;
    font-size: clamp(1rem, 4vw, 1.5rem);
    /* Responsive text */
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    /* Removed default box shadow so transparent works nicely */
    font-family: 'Outfit', sans-serif;
}

.zwidgets-advanced-shop-banner .long-btn:hover {
    transform: translateY(-3px);
    background-color: transparent;
    color: #fff;
}

.zwidgets-advanced-shop-banner .arrow-icon {
    background: #fff;
    color: #bf1f2c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zwidgets-advanced-shop-banner .btn-text {
    padding-left: 10px;
    white-space: nowrap;
}

/* Container Query for Responsive Layout inside Columns */
.zwidgets-advanced-shop-banner {
    container-type: inline-size;
    container-name: banner-container;
}

@container banner-container (max-width: 220px) {
    .zwidgets-advanced-shop-banner .btn-text {
        display: none;
    }

    .zwidgets-advanced-shop-banner .long-btn {
        justify-content: center;
        width: 60px;
        /* Compact width */
        height: 60px;
        padding: 0;
        border-radius: 50%;
        /* Circle button */
    }

    .zwidgets-advanced-shop-banner .action-section {
        justify-content: flex-end;
        /* Align to right usually looks better, or center */
    }
}