
    /* SCOPED WRAPPER */
    .wm-promo-plugin-wrapper {
        /* --- COLOR VARIABLES --- */
        --wm-outer-bg: #000000;       /* Outer Background */
        --wm-inner-bg: #ffffff;       /* Inner Card Background */
        --wm-text-main: #1a1a1a;      /* Dark Text */
        --wm-text-muted: #555555;     /* Gray Text */
        --wm-pink: #e73d79;           /* Brand Color */
        --wm-pink-hover: #c82a61;
        --wm-border: #e5e5e5;         /* Light Border */
        
        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;
    }

    /* Reset box-sizing */
    .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: 500px; /* Fixed Height */
        box-shadow: 0 10px 30px rgba(255,255,255,0.05);
    }

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

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

    /* Subtitle */
    .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;
    }

    /* List */
    .wm-perks-list {
        display: flex;
        flex-direction: column;
        gap: 10px; /* Increased gap slightly for cleaner look */
        margin-bottom: 25px;
        padding: 0;
        list-style: none;
    }

    .wm-perk-item {
        font-size: 0.95rem;
        color: var(--wm-text-muted);
        font-weight: 500;
        display: flex;
        align-items: center;
        line-height: 1.4;
    }
    
    /* THE TINY RECTANGLE */
    .wm-rect-bullet {
        display: inline-block;
        width: 6px;
        height: 6px;
        background-color: var(--wm-pink);
        margin-right: 12px;
        flex-shrink: 0; /* Prevents it from squishing */
    }

    /* Button */
    .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: IMAGE --- */
    .wm-image-side {
        flex: 1;
        background-color: #ffffff;
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    /* The Image */
    .wm-banner-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }

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

        .wm-image-side {
            width: 100%;
            height: 300px;
        }
        
        .wm-promo-heading {
            font-size: 2rem;
        }
    }
