/* =========================================================
   MARKETPLACC – EGYEDI KOSÁRBA GOMBOK
   ========================================================= */

/* ---------------------------------------------------------
   ALAP KOSÁRBA / BŐVEBBEN GOMB
   --------------------------------------------------------- */

.mp-cart-button {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;

    box-sizing: border-box;
    min-height: 56px;
    padding: 0 22px;

    background: #ffffff !important;
    color: #214b91 !important;

    border: 1px solid #cddcf5 !important;
    border-radius: 12px !important;

    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;

    cursor: pointer;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

.mp-cart-button:hover {
    background: #f7faff !important;
    border-color: #a9c4ef !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}

.mp-cart-button:active {
    transform: translateY(1px);
}

/* Kosár ikon */
.mp-cart-button .mp-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    color: #214b91;
}

.mp-cart-button .mp-cart-icon svg {
    width: 21px;
    height: 21px;
    display: block;
}

/* Szöveg */
.mp-cart-button .mp-cart-text {
    white-space: nowrap;
}

/* ---------------------------------------------------------
   TERMÉKLISTÁKON – KOMPAKT GOMB (TÖRÖLVE ÉS ÚJRASZABVA)
   --------------------------------------------------------- */

.mp-cart-button.mp-list-button {
    width: auto !important;
    max-width: 100%;
    min-width: 0 !important;
}

/* ---------------------------------------------------------
   TERMÉKOLDALI GOMB
   --------------------------------------------------------- */

.mp-cart-button.mp-detail-button {
    width: 100%;
    min-height: 54px;
    font-size: 15px !important;
}

.mp-cart-button.mp-detail-button::before {
    content: none !important;
    display: none !important;
}

/* ---------------------------------------------------------
   BŐVEBBEN / VÁLASZTÁST IGÉNYLŐ TERMÉK
   --------------------------------------------------------- */

.mp-cart-button.mp-needs-selection {
    color: #214b91 !important;
    background: #ffffff !important;
}

/* ---------------------------------------------------------
   KOSÁRBA KERÜLT ÁLLAPOT
   --------------------------------------------------------- */

.mp-cart-button.mp-in-cart {
    background: #eef7ff !important;
    border-color: #a9c8ef !important;
    color: #214b91 !important;
}

.mp-cart-button.mp-in-cart .mp-cart-icon {
    color: #214b91;
}

.mp-cart-button .mp-cart-quantity {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 24px;
    height: 24px;

    padding: 0 6px;

    margin-left: 2px;

    border-radius: 12px;

    background: #214b91;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

/* ---------------------------------------------------------
   DARABSZÁM VÁLASZTÓ – FINOMABB, EGYSÉGES MEGJELENÉS
   --------------------------------------------------------- */

.mp-quantity-wrapper {
    display: inline-flex !important;
    align-items: stretch;

    height: 54px;

    border: 1px solid #cddcf5;
    border-radius: 12px;

    overflow: hidden;

    background: #ffffff;
}

.mp-quantity-wrapper button,
.mp-quantity-wrapper input {
    height: 100%;
    box-sizing: border-box;
}

.mp-quantity-wrapper button {
    width: 48px;

    border: 0 !important;
    background: #ffffff !important;
    color: #214b91 !important;

    font-size: 20px !important;
    font-weight: 600 !important;

    cursor: pointer;
}

.mp-quantity-wrapper button:hover {
    background: #f5f9ff !important;
}

.mp-quantity-wrapper input {
    width: 54px;

    border: 0 !important;
    border-left: 1px solid #e2e8f2 !important;
    border-right: 1px solid #e2e8f2 !important;

    background: #ffffff !important;

    text-align: center;

    font-size: 16px !important;
    font-weight: 600 !important;
    color: #222 !important;
}

/* ---------------------------------------------------------
   VÁLTOZATVÁLASZTÓ HIBAÁLLAPOT
   --------------------------------------------------------- */

.mp-selection-error {
    border: 2px solid #e53935 !important;
    border-radius: 8px !important;

    box-shadow:
        0 0 0 3px rgba(229, 57, 53, 0.10),
        0 0 12px rgba(229, 57, 53, 0.18) !important;

    animation: mp-selection-pulse 0.9s ease-in-out infinite;
}

@keyframes mp-selection-pulse {
    0%,
    100% {
        box-shadow:
            0 0 0 3px rgba(229, 57, 53, 0.08),
            0 0 8px rgba(229, 57, 53, 0.12);
    }

    50% {
        box-shadow:
            0 0 0 5px rgba(229, 57, 53, 0.16),
            0 0 18px rgba(229, 57, 53, 0.28);
    }
}

/* ---------------------------------------------------------
   FELUGRÓ ÜZENET
   --------------------------------------------------------- */

.mp-cart-message {
    position: fixed;
    z-index: 999999;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    box-sizing: border-box;

    width: min(420px, calc(100vw - 30px));

    padding: 15px 20px;

    background: #ffffff;

    border: 1px solid #d8e0ec;
    border-radius: 14px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.14);

    color: #222;

    font-size: 16px;
    font-weight: 700;

    text-align: center;

    opacity: 0;

    animation: mp-message-in 0.22s ease forwards;
}

.mp-cart-message.mp-message-error {
    border-color: #f0b5b3;
}

@keyframes mp-message-in {
    from {
        opacity: 0;
        transform: translate(-50%, 15px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ---------------------------------------------------------
   MOBIL
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .mp-cart-button {
        min-height: 52px;
        padding: 0 16px;

        font-size: 15px !important;
        border-radius: 11px !important;
    }

    .mp-cart-button .mp-cart-icon {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .mp-cart-button .mp-cart-icon svg {
        width: 19px;
        height: 19px;
    }

    .mp-cart-message {
        bottom: 20px;

        width: calc(100vw - 24px);

        padding: 14px 16px;

        font-size: 15px;
    }
}

/* ---------------------------------------------------------
   OPCIONÁLIS FELÁR – TÁJÉKOZTATÓ ÜZENET
   --------------------------------------------------------- */

.mp-cart-message:not(.mp-message-error) {
    border-color: #cddcf5;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(33, 75, 145, 0.04);
}

/* ---------------------------------------------------------
   VÁLTOZAT / FELÁR KIJELÖLÉS – JÓL LÁTHATÓ KERET
   --------------------------------------------------------- */

.p-variants-block.mp-selection-error {
    position: relative;
    border-radius: 10px !important;
    box-shadow:
        0 0 0 2px #e53935,
        0 0 0 5px rgba(229, 57, 53, 0.10),
        0 0 16px rgba(229, 57, 53, 0.22) !important;
    animation: mp-selection-pulse 0.9s ease-in-out infinite;
}

@media (max-width: 767px) {
    .p-variants-block.mp-selection-error {
        box-shadow:
            0 0 0 2px #e53935,
            0 0 0 4px rgba(229, 57, 53, 0.10),
            0 0 14px rgba(229, 57, 53, 0.20) !important;
    }
}

/* =========================================================
   🛒 TERMÉKKÁRTYÁS KOSÁRBA RAKOM GOMB – VÉGLEGES KOMPAKT MÉRET
   ========================================================= */

.p-to-cart-block .add-to-cart-wrapper .add-to-cart .mp-cart-button.mp-list-button {
    display: inline-flex !important;

    flex: 0 0 auto !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    flex-basis: auto !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;

    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;

    padding: 0 10px !important;

    margin: 0 !important;

    gap: 4px !important;

    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    border-radius: 6px !important;

    box-sizing: border-box !important;
    text-transform: none !important;
}

/* KOSÁR IKON – KISEBB */
.p-to-cart-block .add-to-cart-wrapper .add-to-cart .mp-cart-button.mp-list-button .mp-cart-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 14px !important;
    height: 14px !important;

    min-width: 14px !important;
    max-width: 14px !important;

    flex: 0 0 14px !important;
}

.p-to-cart-block .add-to-cart-wrapper .add-to-cart .mp-cart-button.mp-list-button .mp-cart-icon svg {
    display: block !important;

    width: 14px !important;
    height: 14px !important;
}

/* KOSÁRBA RAKOM SZÖVEG – KISEBB */
.p-to-cart-block .add-to-cart-wrapper .add-to-cart .mp-cart-button.mp-list-button .mp-cart-text {
    display: inline-block !important;

    width: max-content !important;
    min-width: 0 !important;
    max-width: max-content !important;

    margin: 0 !important;
    padding: 0 !important;

    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    white-space: nowrap !important;
}

/* =========================================================
   ⚠️ VÉGSŐ FELÜLÍRÁS – MINDENT ÁTÍR
   ========================================================= */

button.mp-cart-button.mp-list-button.add-to-cart-button,
a.mp-cart-button.mp-list-button,
.mp-cart-button.mp-list-button,
.p-to-cart-block .add-to-cart-wrapper .add-to-cart .mp-cart-button.mp-list-button {
    all: unset !important;
    
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    
    padding: 0 8px !important;
    margin: 0 !important;
    
    gap: 4px !important;
    
    background: #ffffff !important;
    color: #214b91 !important;
    border: 1px solid #cddcf5 !important;
    border-radius: 6px !important;
    
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-transform: none !important;
    
    cursor: pointer !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;
    
    flex: 0 0 auto !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
}

button.mp-cart-button.mp-list-button.add-to-cart-button .mp-cart-icon,
a.mp-cart-button.mp-list-button .mp-cart-icon,
.mp-cart-button.mp-list-button .mp-cart-icon,
.p-to-cart-block .add-to-cart-wrapper .add-to-cart .mp-cart-button.mp-list-button .mp-cart-icon {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    max-width: 12px !important;
    flex: 0 0 12px !important;
}

button.mp-cart-button.mp-list-button.add-to-cart-button .mp-cart-icon svg,
a.mp-cart-button.mp-list-button .mp-cart-icon svg,
.mp-cart-button.mp-list-button .mp-cart-icon svg,
.p-to-cart-block .add-to-cart-wrapper .add-to-cart .mp-cart-button.mp-list-button .mp-cart-icon svg {
    width: 12px !important;
    height: 12px !important;
}

button.mp-cart-button.mp-list-button.add-to-cart-button .mp-cart-text,
a.mp-cart-button.mp-list-button .mp-cart-text,
.mp-cart-button.mp-list-button .mp-cart-text,
.p-to-cart-block .add-to-cart-wrapper .add-to-cart .mp-cart-button.mp-list-button .mp-cart-text {
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

