
    /* SCOPED WRAPPER */
    .wm-promo-plugin-wrapper {
        /* --- COLOR VARIABLES --- */
        --wm-outer-bg: #000000;
        --wm-inner-bg: #ffffff;
        --wm-text-main: #1a1a1a;
        --wm-text-muted: #555555;
        --wm-pink: #e73d79;
        --wm-pink-hover: #c82a61;
        --wm-border: #e5e5e5;
        
        width: 100%;
        display: flex;
        justify-content: center;
        background-color: var(--wm-outer-bg);
        padding: 40px 20px;
        font-family: 'Outfit', sans-serif;
        box-sizing: border-box;
    }

    .wm-promo-plugin-wrapper *, 
    .wm-promo-plugin-wrapper *::before, 
    .wm-promo-plugin-wrapper *::after {
        box-sizing: border-box;
    }

    /* Main Card Container */
    .wm-promo-card {
        width: 100%;
        max-width: 1400px;
        background-color: var(--wm-inner-bg);
        border: 1px solid var(--wm-border);
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        height: 600px; /* Taller height to accommodate 2 stacked images */
        box-shadow: 0 10px 30px rgba(255,255,255,0.05);
    }

    /* --- LEFT SIDE: TEXT CONTENT --- */
    .wm-content-side {
        flex: 0 0 35%; /* 35% Width */
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-right: 1px solid var(--wm-border);
        text-align: left;
        z-index: 2;
        background: #fff;
    }

    .wm-promo-heading {
        font-size: 2.2rem;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 1;
        margin: 0 0 5px 0;
        color: var(--wm-text-main);
    }

    .wm-promo-subheading {
        font-size: 0.9rem;
        color: var(--wm-pink);
        font-weight: 700;
        margin: 0 0 20px 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .wm-perks-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 25px;
        padding: 0;
        list-style: none;
    }

    .wm-perk-item {
        font-size: 0.9rem;
        color: var(--wm-text-muted);
        font-weight: 500;
        display: flex;
        align-items: center;
        line-height: 1.3;
    }
    
    /* Rectangle Bullet */
    .wm-rect-bullet {
        display: inline-block;
        width: 6px;
        height: 6px;
        background-color: var(--wm-pink);
        margin-right: 10px;
        flex-shrink: 0;
    }

    .wm-shop-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 14px;
        background-color: var(--wm-pink);
        color: #fff !important;
        text-decoration: none !important;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 6px;
        transition: background-color 0.3s ease;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
    }

    .wm-shop-btn:hover {
        background-color: var(--wm-pink-hover);
    }

    /* --- RIGHT SIDE: IMAGES COLUMN --- */
    .wm-images-column {
        flex: 1; /* Takes remaining 65% space */
        display: flex;
        flex-direction: column; /* VERTICAL STACK */
    }

    .wm-banner-box {
        flex: 1; /* Each image takes 50% height */
        position: relative;
        background-color: #fff;
        overflow: hidden;
        width: 100%;
        /* Border between top and bottom image */
        border-bottom: 1px solid var(--wm-border);
    }

    /* Remove border from the very last image */
    .wm-banner-box:last-child {
        border-bottom: none;
    }

    .wm-banner-img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Whole picture visible */
        object-position: center;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .wm-banner-box:hover .wm-banner-img {
        transform: scale(1.02);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
        .wm-promo-card {
            flex-direction: column; /* Stack everything */
            height: auto;
        }
        
        .wm-content-side {
            flex: none;
            width: 100%;
            border-right: none;
            border-bottom: 1px solid var(--wm-border);
        }

        .wm-images-column {
            flex: none;
            width: 100%;
            height: auto;
        }

        .wm-banner-box {
            height: 250px; /* Fixed height for mobile images */
        }
    }
