/**
 * Loco Toolkit — Order Popup styles
 * Тільки текстовий блок [loco_order_heading].
 * CSS кастомного селекта — в модулі cfb_init (cfb-init.css).
 */

.loco-order-heading .is-hidden,
.loco-order-heading [hidden],
.popup-cont-fields .is-hidden,
.popup-cont-fields [hidden] {
    display: none !important;
}

.loco-order-heading {
    font-family: 'Gilroy', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: inherit;
    margin: 0 0 16px;
}

.loco-order__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff!important;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    max-width: 100%;
    animation: locoOrderFadeIn 0.3s ease-out;
}
.loco-order__badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.loco-order__badge-label { opacity: 0.75; }
.loco-order__badge-value { font-weight: 600; }

.loco-order__title {
    font-size: 26px!important;
    font-weight: 600!important;
    line-height: 1.15!important;
    margin: 0 0 8px!important;
    letter-spacing: -0.01em!important;
    color: #fff!important;
}
.loco-order__subtitle {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
    line-height: 1.5;
    color: #fff;
}

.loco-order-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 14px 20px;
    background: linear-gradient(90deg, #034DCF 0%, #3074F9 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(3, 77, 207, 0.35);
    z-index: 100000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
    max-width: calc(100vw - 40px);
    font-family: 'Gilroy', 'Manrope', -apple-system, sans-serif;
}
.loco-order-toast.is-visible { opacity: 1; transform: translateY(0); }

@keyframes locoOrderFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .loco-order__title { font-size: 22px; }
}
