.mw-box {
    border: 1px solid var(--mw-border-color);
    border-radius: 4px;
    background: #fff;
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 850px;
    margin-left: auto; margin-right: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Header */
.mw-box-header {
    background-color: var(--mw-primary);
    padding: 15px 20px;
    border-bottom: 1px solid var(--mw-primary);
}
.mw-box-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.65rem;
    margin: 0;
    line-height: 1.3;
}

/* Body */
.mw-box-body {
    display: flex;
    flex-wrap: wrap;
    padding: 25px;
    gap: 30px;
    align-items: center;
}
.mw-box-image {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
}
.mw-box-image img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
}
.mw-box-content {
    flex: 1;
    min-width: 280px;
}

/* Tags & Bullets */
.mw-box-tags { margin-bottom: 15px; }
.mw-tag {
    display: inline-block;
    background: var(--mw-tertiary);
    color: var(--mw-primary);
    font-size: 0.95rem;
    padding: 5px 12px;
    border-radius: 4px;
    margin-right: 6px; margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}
.mw-box-bullets {
    margin: 0;
    padding-left: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333;
}
.mw-box-bullets li { margin-bottom: 10px; }

/* FOOTER */
.mw-box-footer {
    padding: 20px 25px;
    background: #fff;
    border-top: 1px solid var(--mw-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center; /* ZENTRIERT ALLE 4 ELEMENTE VERTIKAL */
    flex-wrap: wrap;
    gap: 20px;
}

/* Linke Seite: Shops */
.mw-footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Kein flex: 1 hier, damit Shops kompakt links bleiben */
}
.mw-shop-label {
    font-size: 0.85rem;
    color: #777;
    font-weight: 600;
}
.mw-box-shops {
    display: flex;
    gap: 20px; /* Abstand zwischen Shop 1 und Shop 2 */
}

/* Shop Einheit */
.mw-shop-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 110px; 
}

/* Logos */
.mw-shop-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 3px;
    background: #fff;
    transition: border-color 0.2s;
}
.mw-shop-img-link:hover { border-color: var(--mw-tertiary); }
.mw-shop-img-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Text Link */
.mw-shop-text-link {
    font-size: 1.05rem;
    color: var(--mw-secondary);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}
.mw-shop-text-link:hover { text-decoration: underline; }


/* Rechte Seite: Preis & Button */
.mw-footer-right {
    display: flex;
    align-items: center;
    gap: 25px; /* Großzügiger Abstand zwischen Preis und Button */
    margin-left: auto; /* Drückt diesen Block ganz nach rechts */
}
.mw-price-wrapper {
    text-align: right;
    display: flex;
    align-items: baseline; /* Preis und 'ab' auf einer Linie */
    gap: 5px;
}
.mw-price-prefix {
    font-size: 1rem;
    color: #666;
}
.mw-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--mw-primary);
    white-space: nowrap;
    line-height: 1;
}
.mw-button {
    background: var(--mw-btn-color);
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.1s;
}
.mw-button:hover { opacity: 0.95; transform: scale(1.02); }

/* Disclaimer */
.mw-box-disclaimer {
    font-size: 0.75rem;
    color: #999;
    text-align: right;
    padding: 5px 25px 15px;
    font-style: italic;
}

/* Mobile Anpassung */
@media (max-width: 750px) {
    .mw-box-footer { flex-direction: column; align-items: center; }
    .mw-footer-left { width: 100%; align-items: center; }
    .mw-box-shops { justify-content: center; width: 100%; }
    .mw-shop-unit { width: 45%; max-width: 140px; } /* Shops teilen sich mobile Breite */
    
    .mw-footer-right { 
        width: 100%; 
        justify-content: space-between;
        margin-left: 0;
        margin-top: 20px;
        border-top: 1px dashed #eee;
        padding-top: 20px;
    }
}