/* === PROFALAT STICKY CART BAR === */

.profalat-sticky-bar {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999998; /* Modal alatt */
    font-family: inherit;
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 42, 58, 0.06);
}

.profalat-sticky-bar.is-visible {
    bottom: 0;
}

.profalat-sticky-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.profalat-sticky-bar__text {
    font-size: 17px;
    font-weight: 700;
    color: #02293a;
    line-height: 1.3;
    text-align: right;
    flex: 1;
}

.profalat-sticky-bar__text span {
    font-weight: 400;
    color: #02293a;
    opacity: 0.7;
    font-size: 14px;
    display: block;
    margin-top: 3px;
}

.profalat-sticky-bar__action {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.profalat-sticky-bar__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
    min-width: 110px;
}

.profalat-sticky-bar__price-total {
    font-size: 22px;
    font-weight: 800;
    color: #f8353d;
    white-space: nowrap;
}

.profalat-sticky-bar__price-detail {
    font-size: 11px;
    font-weight: 500;
    color: #02293a;
    opacity: 0.7;
    white-space: nowrap;
    margin-top: 2px;
}

.profalat-sticky-bar__btn,
.profalat-sticky-bar button.profalat-sticky-bar__btn {
    background-color: #f73338 !important;
    color: #ffffff !important;
    border: none !important;
    height: 48px !important;
    padding: 0 28px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 6px rgba(247, 51, 56, 0.3) !important;
    box-sizing: border-box !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.profalat-sticky-bar__btn:hover,
.profalat-sticky-bar button.profalat-sticky-bar__btn:hover {
    background-color: #db2a2e !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 15px rgba(247, 51, 56, 0.4) !important;
}

.profalat-sticky-bar__btn:disabled,
.profalat-sticky-bar button.profalat-sticky-bar__btn:disabled {
    opacity: 0.6 !important;
    cursor: wait !important;
}

/* === UNIVERZÁLIS QUANTITY VÁLASZTÓ +/- gombokkal === */
.profalat-qty-selector {
    display: inline-flex;
    align-items: stretch;
    border: 2px solid #02293a;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    height: 48px;
}

.profalat-qty-btn,
button.profalat-qty-btn {
    background: transparent !important;
    border: none !important;
    color: #02293a !important;
    cursor: pointer !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    width: 36px !important;
    height: 100% !important;
    padding: 0 !important;
    transition: background 0.15s !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
}

.profalat-qty-btn:hover,
button.profalat-qty-btn:hover {
    background: #f8353d !important;
    color: #ffffff !important;
}

.profalat-qty-input {
    width: 50px !important;
    border: none !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #02293a !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    -moz-appearance: textfield !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

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

.profalat-qty-input:focus {
    outline: none !important;
}

/* === MOBIL === */
@media (max-width: 768px) {
    .profalat-sticky-bar__inner {
        flex-direction: column;
        padding: 12px 15px;
        gap: 10px;
    }
    .profalat-sticky-bar__text {
        font-size: 14px;
        text-align: center;
        line-height: 1.2;
    }
    .profalat-sticky-bar__text span {
        display: none;
    }
    .profalat-sticky-bar__action {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    .profalat-sticky-bar__price {
        min-width: 70px;
        align-items: flex-start;
    }
    .profalat-sticky-bar__price-total {
        font-size: 18px;
    }
    .profalat-sticky-bar__price-detail {
        font-size: 10px;
    }
    .profalat-sticky-bar__qty {
        height: 42px;
    }
    .profalat-qty-btn,
    button.profalat-qty-btn {
        width: 30px !important;
        font-size: 18px !important;
    }
    .profalat-qty-input {
        width: 38px !important;
        font-size: 14px !important;
    }
    .profalat-sticky-bar__btn,
    .profalat-sticky-bar button.profalat-sticky-bar__btn {
        height: 42px !important;
        padding: 0 16px !important;
        font-size: 13.5px !important;
        flex: 1 !important;
    }
}
