.car-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.car-loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.car-loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: carSpin 1s linear infinite;
}

.car-loading-text {
    margin-top: 20px;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 500;
    text-align: center;
}

.loading-content {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.6);
}

/* Анимация крутилки */
@keyframes carSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Анимация карточек при загрузке */
.car_card.loading,
.mobile_car_card.loading {
    opacity: 0.7;
    transform: scale(0.98);
    transition: all 0.2s ease;
}

/* Добавьте это в глобальные стили сайта в Тильде */
.t123__descr, 
.t123__text, 
.t123__text-wrapper {
    max-width: none !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.tilda-courier-calculator {
    margin: 0 auto !important;
    display: block !important;
}
