/* =========================
   MW MODERN CART
========================= */

.mw-cart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mw-cart-head {
    display: grid;
    grid-template-columns: 1.8fr .6fr .7fr .6fr 60px;
    gap: 20px;
    padding: 18px 24px;
    background: #f6f8fb;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
}

.mw-cart-item {
    display: grid;
    grid-template-columns: 1.8fr .6fr .7fr .6fr 60px;
    gap: 20px;
    align-items: center;
    padding: 22px 24px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #edf1f5;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.mw-cart-product {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mw-cart-image img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #edf1f5;
    padding: 8px;
}

.mw-cart-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    color: #111;
    text-decoration: none;
}

.mw-cart-title:hover {
    color: #1678b8;
}

.mw-cart-sku {
    margin-top: 8px;
    font-size: 12px;
    color: #777;
}

.mw-cart-unit,
.mw-cart-total {
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

.mw-cart-total {
    font-size: 22px;
    font-weight: 800;
}

.mw-cart-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid #dfe6ee;
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
    background: #fff;
}

.mw-qty-btn {
    width: 40px;
    height: 40px;
    border: 0;
    background: #f3f6f9;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.mw-qty-btn:hover {
    background: #e8eef4;
}

.mw-qty-input {
    width: 54px;
    height: 40px;
    border: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    outline: none;
}

.mw-cart-actions {
    display: flex;
    justify-content: center;
}

.mw-cart-remove {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 0;
    background: #fff1f0;
    color: #d93025;
    cursor: pointer;
    transition: .2s ease;
}

.mw-cart-remove:hover {
    background: #ffe2df;
    transform: scale(1.05);
}

.basket-actions {
    margin-top: 24px !important;
    display: flex;
    gap: 14px;
}

.basket-actions .btn {
    height: 48px;
    border-radius: 12px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 800;
}

.basket-actions .btn-primary {
    background: linear-gradient(135deg,#1678b8,#55c0df);
    border: none;
}

@media(max-width: 991px){

    .mw-cart-head {
        display: none;
    }

    .mw-cart-item {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mw-cart-product {
        align-items: flex-start;
    }

    .mw-cart-unit,
    .mw-cart-total {
        font-size: 16px;
    }

    .mw-cart-total {
        font-size: 20px;
    }

    .mw-cart-actions {
        justify-content: flex-start;
    }
}


.mw-cart-image {
    display: block !important;
    width: 96px !important;
    min-width: 96px !important;
}

.mw-cart-image picture,
.mw-cart-image img {
    display: block !important;
    width: 92px !important;
    height: 92px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
}


.mw-cart-product {
    display: grid !important;
    grid-template-columns: 110px 1fr !important;
    align-items: center !important;
}

.mw-cart-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100px !important;
    min-width: 100px !important;
    height: 100px !important;
    overflow: visible !important;
}

.mw-cart-image img,
.mw-cart-image picture,
.mw-cart-image picture img {
    display: block !important;
    width: 86px !important;
    height: 86px !important;
    max-width: 86px !important;
    max-height: 86px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Warenkorb Öffnungsanimation */
.mw-cart-head {
    animation: mwCartFadeDown .45s ease both;
}

.mw-cart-item {
    opacity: 0;
    transform: translateY(18px) scale(.98);
    animation: mwCartItemIn .55s ease both;
}

.mw-cart-item:nth-child(2) { animation-delay: .05s; }
.mw-cart-item:nth-child(3) { animation-delay: .10s; }
.mw-cart-item:nth-child(4) { animation-delay: .15s; }
.mw-cart-item:nth-child(5) { animation-delay: .20s; }
.mw-cart-item:nth-child(6) { animation-delay: .25s; }
.mw-cart-item:nth-child(7) { animation-delay: .30s; }

@keyframes mwCartFadeDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mwCartItemIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.mw-qty-input::-webkit-outer-spin-button,
.mw-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mw-qty-input {
    -moz-appearance: textfield;
    appearance: textfield;
    width: 48px;
    height: 42px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    outline: none;
    box-shadow: none;
    padding: 0;
}

.mw-cart-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f4f7fb;
    border: 1px solid #dfe7f1;
    border-radius: 16px;
    padding: 6px 10px;
    width: fit-content;
}

.mw-qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 12px;
    background: white;
    color: #111;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.mw-qty-btn:hover {
    transform: translateY(-1px);
    background: #3ea6db;
    color: white;
}

@media (max-width: 767px) {
    .waren_parent .container,
    .basket-custom {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .mw-cart-head {
        display: none !important;
    }

    .mw-cart-item {
        grid-template-columns: 92px 1fr !important;
        gap: 14px !important;
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .mw-cart-product {
        grid-column: 1 / 3;
        display: grid !important;
        grid-template-columns: 92px 1fr !important;
        gap: 14px !important;
        align-items: center !important;
    }

    .mw-cart-image {
        width: 84px !important;
        min-width: 84px !important;
        height: 84px !important;
    }

    .mw-cart-image img,
    .mw-cart-image picture img {
        width: 74px !important;
        height: 74px !important;
    }

    .mw-cart-title {
        font-size: 15px !important;
        line-height: 1.35 !important;
    }

    .mw-cart-sku {
        font-size: 11px !important;
    }

    .mw-cart-unit {
        grid-column: 1 / 2;
        font-size: 15px !important;
    }

    .mw-cart-qty {
        grid-column: 2 / 3;
        justify-self: start;
    }

    .mw-cart-total {
        grid-column: 1 / 2;
        font-size: 18px !important;
    }

    .mw-cart-actions {
        grid-column: 2 / 3;
        justify-self: end;
    }

    .basket-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .basket-actions .btn {
        width: 100%;
    }
}@media (max-width: 767px) {

    .mw-cart-unit::before {
        content: "Stückpreis";
        display: block;
        font-size: 11px;
        font-weight: 600;
        color: #8a94a6;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .mw-cart-total::before {
        content: "Gesamt";
        display: block;
        font-size: 11px;
        font-weight: 600;
        color: #8a94a6;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .mw-cart-unit,
    .mw-cart-total {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
}.basket-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.basket-actions .btn {
    min-width: 240px;
    height: 56px;
    border-radius: 18px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    padding: 0 28px;
}

.basket-actions .btn-primary {
    background: linear-gradient(135deg,#2d8cff,#49b3e8);
    border: none;
    box-shadow: 0 10px 25px rgba(45,140,255,.22);
}

.basket-actions .btn-outline-primary {
    background: #fff;
    border: 2px solid #2d8cff;
    color: #1a1a1a;
}

@media (max-width: 767px) {

    .basket-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .basket-actions .btn {
        width: 100%;
        min-width: 100%;
    }
}


/* ==========================================================
   AG Electronics Checkout FINAL
========================================================== */

/* leere linke Theme-Spalte entfernen */
.waren_parent > .container > .row:not(.logo-tpheds) > .col-md-12.col-lg-3.col-3 {
    display: none !important;
}

/* Hauptbereich volle Breite */
.waren_parent > .container > .row:not(.logo-tpheds) > .col-md-12.col-lg-9 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Checkout Layout */
.mw-modern-checkout {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 30px 70px;
}

.mw-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 557px;
    gap: 42px;
    align-items: flex-start;
}

/* linke Seite modern, aber nicht verschieben */
.mw-checkout-left {
    background: #fff;
    border: 1px solid #e6eef5;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 24px 60px rgba(20,38,54,.06);
    animation: mwCheckoutLeftIn .65s cubic-bezier(.22,1,.36,1) both;
}

/* Inputs modern */
.mw-checkout-left input,
.mw-checkout-left select,
.mw-checkout-left textarea {
    min-height: 52px !important;
    border-radius: 15px !important;
    border: 1px solid #d7e3ec !important;
    background: #f8fbfd !important;
    padding: 0 16px !important;
    box-shadow: none !important;
}

.mw-checkout-left input:focus,
.mw-checkout-left select:focus,
.mw-checkout-left textarea:focus {
    background: #fff !important;
    border-color: #2375AC !important;
    box-shadow: 0 0 0 4px rgba(35,117,172,.13) !important;
    outline: none !important;
}

/* Button */
.mw-checkout-left .btn-primary,
.mw-checkout-left button[type="submit"],
.mw-checkout-left input[type="submit"] {
    min-height: 58px !important;
    border-radius: 18px !important;
    border: 0 !important;
    background: linear-gradient(135deg,#2375AC,#55BCDD) !important;
    color: #fff !important;
    font-weight: 800 !important;
    box-shadow: 0 16px 35px rgba(35,117,172,.22);
}

/* rechte Bestellübersicht */
.mw-checkout-right {
    position: sticky;
    top: 24px;
    animation: mwCheckoutRightIn .75s cubic-bezier(.22,1,.36,1) .08s both;
}

.mw-checkout-sidebar {
    background: #f4f8fc;
    border: 1px solid #e3edf6;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 28px 70px rgba(20,38,54,.10);
}

.mw-sidebar-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.mw-sidebar-head h2 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
}

.mw-products-count {
    font-size: 17px;
    font-weight: 800;
}

.mw-edit-basket {
    color: #2375AC;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

/* Produktbereich rechts */
.mw-sidebar-products {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mw-sidebar-products img {
    width: 84px !important;
    height: 84px !important;
    max-width: 84px !important;
    max-height: 84px !important;
    object-fit: contain !important;
    background: #fff !important;
    border-radius: 16px !important;
    padding: 6px !important;
    border: 1px solid #edf2f6 !important;
}

/* Animationen */
@keyframes mwCheckoutLeftIn {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes mwCheckoutRightIn {
    from {
        opacity: 0;
        transform: translateX(28px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* Mobile */
@media(max-width:991px) {
    .mw-modern-checkout {
        padding: 14px 16px 50px;
    }

    .mw-checkout-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mw-checkout-right {
        position: relative;
        top: auto;
    }

    .mw-checkout-left,
    .mw-checkout-sidebar {
        padding: 24px;
        border-radius: 24px;
    }
}.mw-modern-checkout {
    max-width: 1520px;
    margin: 0 auto;
    padding: 20px 30px 80px;
}

.mw-checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 0 0 38px;
}

.mw-step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9aa3ad;
    white-space: nowrap;
    font-weight: 800;
}

.mw-step span {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #eef3f7;
    color: #607080;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mw-step.active {
    color: #0D4E86;
}

.mw-step.active span {
    color: #fff;
    background: linear-gradient(25.64deg,#2375AC 5.67%,#55BCDD 85.35%);
    box-shadow: 0 12px 28px rgba(35,117,172,.25);
}

.mw-line {
    width: 90px;
    height: 2px;
    background: #e5ebf0;
}

.mw-benefits-wide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0 0 34px;
}

.mw-benefit {
    background: #fff;
    border-radius: 20px;
    padding: 18px 20px;
    border: 1px solid #edf1f5;
    box-shadow: 0 8px 24px rgba(20,38,54,.04);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mw-benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #f5f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
}

.mw-benefit-icon img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain !important;
}

.mw-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 557px;
    gap: 42px;
    align-items: flex-start;
}

.mw-checkout-right {
    position: sticky;
    top: 24px;
}

.mw-checkout-sidebar {
    background: #f4f8fc;
    border: 1px solid #e3edf6;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(20,38,54,.08);
}

.mw-sidebar-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.mw-sidebar-head h2 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
}

.mw-products-count {
    font-size: 16px;
    font-weight: 800;
}

.mw-edit-basket {
    color: #2375AC;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.mw-sidebar-products img {
    width: 82px !important;
    height: 82px !important;
    max-width: 82px !important;
    max-height: 82px !important;
    object-fit: contain !important;
}

@media(max-width:991px) {
    .mw-checkout-layout,
    .mw-benefits-wide {
        grid-template-columns: 1fr;
    }

    .mw-checkout-right {
        position: relative;
        top: auto;
    }

    .mw-checkout-progress {
        justify-content: flex-start;
        overflow-x: auto;
    }
}/* größere Bestellübersicht */
.mw-checkout-sidebar {
    padding: 34px !important;
}

/* Produktkarten schöner */
.mw-sidebar-products .cart-item,
.mw-sidebar-products .item,
.mw-sidebar-products > div {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 16px;
    border: 1px solid #e8eef4;
}

/* Produktbilder */
.mw-sidebar-products img {
    width: 95px !important;
    height: 95px !important;
    max-width: 95px !important;
    max-height: 95px !important;
    border-radius: 18px !important;
    background: #fff !important;
    padding: 8px !important;
}

/* Preise rechts */
.mw-sidebar-products .price,
.mw-sidebar-products .item-price {
    font-size: 26px !important;
    font-weight: 900 !important;
    color: #111 !important;
}

/* Produkttitel */
.mw-sidebar-products a,
.mw-sidebar-products .title {
    font-size: 18px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
    color: #111 !important;
}

/* Gesamtbereich */
.mw-sidebar-products .total,
.mw-sidebar-products .summe,
.mw-sidebar-products .subtotal {
    font-size: 30px !important;
    font-weight: 900 !important;
}.checkout-items-item .checkout-items-item-quantity {
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: center;
    height: auto;
    background: #ffffff;
    color: #333;
    margin-left: 0;
    padding: 5px;
}.checkout-confirmation-billing-address .card-body, .checkout-confirmation-shipping .card-body {
    background: #ffffff;
}.modal-backdrop.fade.show {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* Versandarten als echte auswählbare Buttons */
.checkout-shipping-form .custom-control,
.checkout-shipping-form .form-check,
.checkout-shipping-options .custom-control,
.checkout-shipping-options .form-check,
.shipping-method,
.checkout-shipping-method {
    cursor: pointer !important;
}

.checkout-shipping-form label,
.checkout-shipping-options label,
.shipping-method label,
.checkout-shipping-method label {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    width: 100% !important;

    background: #f6f8fb !important;
    border: 2px solid transparent !important;
    border-radius: 18px !important;
    padding: 20px 24px !important;

    cursor: pointer !important;
    transition: .22s ease !important;
}

.checkout-shipping-form label:hover,
.checkout-shipping-options label:hover,
.shipping-method label:hover,
.checkout-shipping-method label:hover {
    background: #fff !important;
    border-color: #55BCDD !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(20,38,54,.08);
}

/* Ausgewählte Versandart */
.checkout-shipping-form input[type="radio"]:checked + label,
.checkout-shipping-options input[type="radio"]:checked + label,
.shipping-method input[type="radio"]:checked + label,
.checkout-shipping-method input[type="radio"]:checked + label {
    background: #f1f8fc !important;
    border-color: #2375AC !important;
    box-shadow: 0 0 0 4px rgba(35,117,172,.12);
}

/* Radio sichtbar schöner */
.checkout-shipping-form input[type="radio"],
.checkout-shipping-options input[type="radio"],
.shipping-method input[type="radio"],
.checkout-shipping-method input[type="radio"] {
    accent-color: #2375AC;
    cursor: pointer;
}/* Versandarten breiter & sauber */
.checkout-shipping-form label,
.checkout-shipping-options label,
.shipping-method label,
.checkout-shipping-method label {
    min-height: 120px !important;
    padding: 26px 30px !important;
}

/* Inhalt nebeneinander */
.checkout-shipping-form label > span,
.checkout-shipping-options label > span,
.shipping-method label > span,
.checkout-shipping-method label > span {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px !important;
}

/* Versandtitel */
.checkout-shipping-form strong,
.checkout-shipping-options strong,
.shipping-method strong,
.checkout-shipping-method strong {
    font-size: 20px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    color: #111 !important;
    white-space: normal !important;
    word-break: normal !important;
}

/* Preis rechts */
.checkout-shipping-form .price,
.checkout-shipping-options .price,
.shipping-method .price,
.checkout-shipping-method .price {
    font-size: 28px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    color: #111 !important;
    margin-left: auto !important;
}

/* Mobile */
@media (max-width: 768px){

    .checkout-shipping-form label,
    .checkout-shipping-options label,
    .shipping-method label,
    .checkout-shipping-method label{
        padding:20px !important;
    }

    .checkout-shipping-form label > span,
    .checkout-shipping-options label > span,
    .shipping-method label > span,
    .checkout-shipping-method label > span{
        flex-direction:column !important;
        align-items:flex-start !important;
        gap:12px !important;
    }

    .checkout-shipping-form .price,
    .checkout-shipping-options .price,
    .shipping-method .price,
    .checkout-shipping-method .price{
        font-size:22px !important;
    }
}/* Versandarten: interne Spalten aufheben */
.mw-checkout-left .checkout-shipping-form .row,
.mw-checkout-left .checkout-shipping-options .row {
    display: flex !important;
    align-items: stretch !important;
}

.mw-checkout-left .checkout-shipping-form .row > [class*="col"],
.mw-checkout-left .checkout-shipping-options .row > [class*="col"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Versandoption als breite Karte */
.mw-checkout-left .checkout-shipping-form label,
.mw-checkout-left .checkout-shipping-options label {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 86px !important;
    padding: 22px 28px !important;
    border-radius: 18px !important;
    background: #f6f8fb !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
}

/* Text darf nicht mehr hässlich umbrechen */
.mw-checkout-left .checkout-shipping-form label *,
.mw-checkout-left .checkout-shipping-options label * {
    white-space: normal !important;
    word-break: normal !important;
}

/* Preis rechts */
.mw-checkout-left .checkout-shipping-form label .price,
.mw-checkout-left .checkout-shipping-options label .price,
.mw-checkout-left .checkout-shipping-form label strong:last-child,
.mw-checkout-left .checkout-shipping-options label strong:last-child {
    white-space: nowrap !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    text-align: right !important;
}

/* Aktiv */
.mw-checkout-left .checkout-shipping-form input[type="radio"]:checked + label,
.mw-checkout-left .checkout-shipping-options input[type="radio"]:checked + label {
    background: #eef8fd !important;
    border-color: #2375AC !important;
    box-shadow: 0 0 0 4px rgba(35,117,172,.12) !important;
}/* Hersteller-Filter links ausblenden */
#sidebox135 {
    display: none !important;
}/* Warenkorb-Button volle Restbreite */
.mw-box-cart-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
	padding:10px;
}

.mw-box-cart-btn {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    height: 42px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Mengenbox kompakt halten */
.mw-box-qty {
    flex: 0 0 auto !important;
}

/* Minus / Plus schöner */
.mw-box-qty .btn {
    width: 36px !important;
    height: 42px !important;
    border-radius: 8px !important;
}


.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    padding-bottom: 28px;
}


/* Produktbox: Menge breiter, Warenkorb-Button schmaler */
.mw-box-cart-row {
    display: grid !important;
    grid-template-columns: 155px 1fr !important;
    gap: 10px !important;
    align-items: center !important;
}

.mw-box-qty {
    width: 155px !important;
    min-width: 155px !important;
}

.mw-box-qty-input {
    width: 58px !important;
    min-width: 58px !important;
    text-align: center !important;
}

.mw-box-cart-btn {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 190px !important;
    justify-self: stretch !important;
}

/* Buttons links/rechts gleichmäßig */
.mw-box-qty-btn {
    width: 42px !important;
    min-width: 42px !important;
}/* Pfeile bei number input entfernen */
.mw-box-qty-input::-webkit-outer-spin-button,
.mw-box-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mw-box-qty-input {
    -moz-appearance: textfield;
    appearance: textfield;
}.mw-box-qty {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    height: 42px;
}


.productlist-item-detail {
    word-break: break-word;
    white-space: normal;
    width: 450px!important;
}/* Bundle: Preis nicht mehr in den Titel schieben */
#form_bundles .productbox-options,
#form_bundles .item-list-price,
#form_bundles .price {
    position: static !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    float: none !important;
}

#form_bundles .item-list-price {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 12px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    clear: both !important;
}

#form_bundles .item-list-price .price,
#form_bundles .price {
    display: block !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    color: #111 !important;
    white-space: nowrap !important;
}

/* Titel bekommt mehr Abstand zum Preis */
#form_bundles .productbox-title,
#form_bundles .productbox-title a,
#form_bundles .mw-product-info {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    margin-bottom: 8px !important;
    padding-right: 0 !important;
    overflow: visible !important;
}

/* Bundle-Karten sauber stapeln */
#form_bundles .productbox-inner {
    display: flex !important;
    flex-direction: column !important;
}

#form_bundles .productbox-options {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: auto !important;
}

/* Warenkorb-Zeile unten halten */
#form_bundles .item-list-basket-details,
#form_bundles .productbox-actions,
#form_bundles .form-basket {
    position: relative !important;
    z-index: 5 !important;
    clear: both !important;
}/* Bundle Produktkarten: Preis sauber unter Titel setzen */
.mw-product-bundle-section .productbox-options,
.mw-product-bundle-section .item-list-price,
.mw-product-bundle-section .price {
    position: static !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    float: none !important;
}

.mw-product-bundle-section .item-list-price {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 12px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    clear: both !important;
}

.mw-product-bundle-section .item-list-price .price,
.mw-product-bundle-section .price {
    display: block !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    color: #111 !important;
    white-space: nowrap !important;
}

/* Titelbereich freihalten */
.mw-product-bundle-section .productbox-title,
.mw-product-bundle-section .productbox-title a,
.mw-product-bundle-section .mw-product-info {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    margin-bottom: 8px !important;
    padding-right: 0 !important;
    overflow: visible !important;
}

/* Bundle-Produktbox sauber stapeln */
.mw-product-bundle-section .productbox-inner {
    display: flex !important;
    flex-direction: column !important;
}

.mw-product-bundle-section .productbox-options {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: auto !important;
}

.mw-product-bundle-section .item-list-basket-details,
.mw-product-bundle-section .productbox-actions,
.mw-product-bundle-section .form-basket {
    position: relative !important;
    z-index: 5 !important;
    clear: both !important;
}.mw-schnellkauf-readmore.mw-open .mw-schnellkauf-fadebox {
    max-height: 10000px;
}


.ls_prdticons {
    margin-top: 50px!important;
    width: 1522px;
    margin: 41px auto;
}














/* ==========================================================
   FIX Produkt Bundle / Schnellkauf-Liste:
   Preis sauber unter Titel, nicht im Titel
========================================================== */

#schnellkauf-list .productbox-title,
#schnellkauf-list .productbox-title a,
#schnellkauf-list .text-clamp-2 {
    display: block !important;
    width: 100% !important;
    min-height: auto !important;
    max-height: none !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    padding-right: 0 !important;
    line-height: 1.35 !important;
    overflow: visible !important;
    white-space: normal !important;
    position: relative !important;
    z-index: 2 !important;
}

#schnellkauf-list .productbox-options,
#schnellkauf-list .productbox-options[itemprop="offers"] {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    clear: both !important;
    float: none !important;
    transform: none !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
}

#schnellkauf-list .price.productbox-price,
#schnellkauf-list .productbox-price,
#schnellkauf-list .price {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    clear: both !important;
    float: none !important;
    margin: 8px 0 8px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    transform: none !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 1 !important;
    color: #111 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

#schnellkauf-list .price-note {
    display: none !important;
}

#schnellkauf-list .productbox-inner {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: visible !important;
}

#schnellkauf-list .productbox-onhover,
#schnellkauf-list .productbox-actions,
#schnellkauf-list .item-list-basket-details,
#schnellkauf-list .minicart,
#schnellkauf-list .form-basket {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
    margin-top: 8px !important;
    z-index: 5 !important;
}


@media (max-width: 767px) {
    .slick-initialized .slick-slide {
        display: block;
        padding-bottom: 28px;
    }
}