/* Подключение локальных шрифтов Montserrat */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* SMS Block Styles (заменяет модальное окно) */
.sms-block {
    display: none;
    width: 100%;
}

.sms-block.show {
    display: block;
}

.sms-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    font-family: 'Manrope', sans-serif;
    text-align: center;
}

.sms-description {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    margin: 0 0 16px 0;
    text-align: left;
}

.sms-code-input-container {
    position: relative;
    /* margin-bottom: 24px; */
}

.sms-code-input {
    width: 100%;
    padding: 8px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    background: #f6f5f5;
    border: 2px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 4px;
    box-sizing: border-box;
}

.sms-code-input.valid {
    border-color: #4CAF50;
    background: #fff;
}

.sms-check-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sms-code-input.valid+.sms-check-icon {
    opacity: 1;
}

.sms-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.sms-confirm-btn {
    width: 100%;
    padding: 16px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #F97316;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.sms-confirm-btn:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.sms-confirm-btn:active {
    transform: translateY(0);
}

.sms-confirm-btn:disabled {
    background: #D1D5DB;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.sms-resend-btn {
    width: 100%;
    padding: 16px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    background: #f6f5f5;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.sms-resend-btn:hover:not(:disabled) {
    background: #E5E7EB;
    color: #374151;
}

.sms-resend-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.sms-resend-btn .resend-text {
    display: none;
}

.sms-resend-btn:not(:disabled) .resend-text {
    display: inline;
}

.sms-resend-btn:not(:disabled) .countdown-text {
    display: none;
}

.sms-info {
    font-size: 12px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

@media (max-width: 411px) {
	h3.region-title {
	    max-width: 227px;
	}
}

/* Адаптивность для SMS блока */
@media (max-width: 768px) {
    .sms-content {
        padding: 24px 16px;
    }

    .sms-code-input {
        font-size: 16px;
        padding: 14px 40px 14px 14px;
        letter-spacing: 3px;
    }

    .sms-confirm-btn,
    .sms-resend-btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    .sms-info {
        font-size: 11px;
    }
}

/* Мобильная шапка */
.mobile-header {
    display: none;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
}

.mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo img {
    max-width: 190px;
    height: auto;
}

.mobile-city-selector {
    position: relative;
}

.mobile-city-selector-content {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    background-color: #F9FAFB;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #1F2937;
    white-space: nowrap;
    gap: 6px;
}

.mobile-city-selector-content:hover {
    background-color: #F3F4F6;
}

.mobile-city-name {
    font-weight: 500;
}

.mobile-map-icon,
.mobile-chevron-icon {
    flex-shrink: 0;
}

.mobile-city-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    z-index: 2000;
    max-height: 468px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-city-dropdown.show {
    display: flex;
}

.mobile-city-dropdown h3 {
    margin: 0 0 16px 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: #1F2937;
    text-align: left;
}

/* Поле поиска города */
.mobile-city-search {
    margin-bottom: 16px;
}

.mobile-city-search input {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 400;
    background-color: #f6f5f5;
    color: #000;
    box-sizing: border-box;
}

.mobile-city-search input::placeholder {
    color: #9CA3AF;
}

.mobile-city-search input:focus {
    outline: none;
    border-color: #FF6B35;
    background-color: #FFFFFF;
}

/* Контейнер для вертикального списка */
.mobile-cities-horizontal-container {
    flex: 1;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}

.mobile-cities-horizontal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: calc(7 * 48px + 6 * 12px);
    /* 7 элементов по 48px высотой + 6 отступов по 12px */
    padding-right: 8px;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #E5E7EB #F9FAFB;
    /* Firefox */
}

.mobile-cities-horizontal::-webkit-scrollbar {
    width: 6px;
}

.mobile-cities-horizontal::-webkit-scrollbar-track {
    background: #F9FAFB;
    border-radius: 3px;
}

.mobile-cities-horizontal::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 3px;
}

.mobile-cities-horizontal::-webkit-scrollbar-thumb:hover {
    background: #D1D5DB;
}

.mobile-city-option {
    border: none;
    cursor: pointer;
    font-weight: 400;
    padding: 10px 16px;
    font-size: 17px;
    line-height: 120%;
    color: #000;
    transition: all 0.2s ease;
    background: none;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}



.mobile-city-option.active {
    font-weight: 600;
}

.mobile-city-dropdown-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    color: #6B7280;
    transition: all 0.2s ease;
    z-index: 2001;
}

.mobile-city-dropdown-close:hover {
    background-color: #F3F4F6;
    color: #374151;
}

.mobile-city-dropdown-close svg {
    display: block;
}

/* Показываем мобильную шапку и скрываем основную на мобильных устройствах */
@media (max-width: 768px) {
    .header {
        display: none;
    }

    .mobile-header {
        display: block;
		width: 100%;
    }
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    /* Убираем горизонтальный скролл */
}

/* Предотвращение дергания при открытии модальных окон */
body.modal-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 0);
}

/* Фиксация шапки при открытии модального окна */
body.modal-open .header {
    padding-right: var(--scrollbar-width, 0);
}

.container {
    max-width: 1544px;
    padding: 0 50px;
    margin: 0 auto;
}

/* Стили шапки */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    min-width: 280px;
    overflow-x: hidden;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1880px;
    margin: 0 auto;
    padding: 0 20px;
    min-width: 280px;
}

.services-left {
    max-width: 660px;
}

.services-left--sticky {
    position: sticky;
    top: var(--services-left-top-offset, 104px);
    align-self: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
    position: relative;
}
.logo a {
    display: flex;
    gap: 8px;
    align-items: center;
}
.logo_l, .logo_m {
    transition: opacity 0.5s ease-in-out, transform 1s ease-in-out;
}

.logo_m {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; /* Изначально скрыта */
    pointer-events: none; /* Не мешает кликам */
}

.logo:hover .logo_l {
    opacity: 0; /* Скрываем первую картинку */
    transform: rotate(360deg);
}

.logo:hover .logo_m {
    opacity: 1; /* Показываем вторую картинку */
    transform: rotate(360deg); /* Вращаем на 360° */
}
/*.logo a img:first-child {*/
/*    transition: transform 1s ease-in-out;*/
/*    transform-origin: center;*/
/*}*/

/*.logo:hover a img:first-child {*/
/*    transform: rotate(360deg);*/
/*}*/
.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.city-selector {
    position: relative;
}

.city-selector-content {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px 6px 12px;
    background-color: #F7F7F7;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-selector-content:hover {
    background-color: #EEEEEE;
}

.city-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.city-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: #232528;
    white-space: nowrap;
}

.chevron-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.city-selector.active .chevron-icon {
    transform: rotate(180deg);
}

/* Базовые стили для city-dropdown (как modal) */
.city-dropdown, .no_delivery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.city-dropdown.show,
.no_delivery-modal.show {
    display: flex;
}

.city-dropdown::before,
.no_delivery-modal::before {
    display: none;
}

.city-dropdown-content,
.no_delivery-modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    overflow: hidden;
    width: 420px;
    max-width: 90vw;
    height: 470px;
    max-height: 80vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.city-dropdown h3,
.no_delivery-modal h3,
.city-search {
    position: relative;
    z-index: 1;
}
.city-options {
    position: relative;
}

.city-dropdown-close,
.no_delivery-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
}

/* Мобильные стили */
@media (max-width: 768px) {
    .city-dropdown-content,
    .no_delivery-modal-content {
        padding: 24px;
        width: 100%;
        max-width: 400px;
    }

    .city-dropdown-close,
    .no_delivery-modal-close {
        top: 16px;
        right: 16px;
    }
}


.city-dropdown::before,
.no_delivery-modal::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 60px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.05);
}

.city-dropdown h3,
.no_delivery-modal h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.41;
    color: #000000;
    margin: 0 0 16px 0;
}

.city-search {
    margin-bottom: 16px;
}

.city-search-input {
    width: 100%;
    padding: 16px;
    background-color: #F6F5F5;
    border: none;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.41;
    letter-spacing: -0.02em;
    color: #757575;
    outline: none;
    transition: background-color 0.3s ease;
}

.city-search-input:focus {
    background-color: #EEEEEE;
}

.city-search-input::placeholder {
    color: #757575;
}

.city-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 350px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    padding-right: 8px;
}

.city-options::-webkit-scrollbar {
    width: 8px;
}

.city-options::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
    margin: 4px 0;
}

.city-options::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
    border: 1px solid #f8f9fa;
}

.city-options::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}


.city-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    color: #000000;
    border: none;
    margin-bottom: 0;
    min-height: 42px;
    white-space: nowrap;
    width: 100%;
}

.city-option:hover {
    background-color: #F8F9FA;
}

.city-option.selected {
    font-weight: 600;
}

.city-option:last-child {
    margin-bottom: 0;
}

.city-dropdown-close,
.no_delivery-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.3s ease;
}

.city-dropdown-close:hover,
.no_delivery-modal-close:hover {
    color: #000;
}

.city-dropdown-close svg,
.no_delivery-modal-close svg {
    width: 16px;
    height: 16px;
}

.no_delivery-modal-body {
    display: flex;
    gap: 10px;
    margin-bottom: 1em;
}
.no_delivery-modal-body span {
    line-height: 1.5;
}
.no_delivery-modal-body-select-another-city {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 16px;
    background: #F37021;
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.714;
}
.no_delivery-modal-body-select-another-city span {
    flex: 1;
}



/* Основной контент */
.main-content {
    margin-top: 0px;
}

/* Убираем отступ для мобильной версии */
@media (max-width: 768px) {
    .main-content {
        margin-top: 0px;
        /* Уменьшенный отступ для мобильной шапки */
    }
}

/* Баннер секция */
.banner-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
}



.banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner-slide.active {
    opacity: 1;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 48px;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    max-width: 665px;
}

/* Позиционирование плашки с контентом для ПК версии */
@media (min-width: 1200px) {
    .banner-slide {
        padding-left: calc((100vw - 1444px) / 2);
        padding-right: calc((100vw - 1444px) / 2);
    }

    .banner-content {
        margin-left: 0;
        margin-right: auto;
    }

    .video-overlay {
        padding-left: calc((100vw - 1444px) / 2);
        padding-right: calc((100vw - 1444px) / 2);
        justify-content: flex-start;
    }
}

/* Информационная иконка в баннере */
.banner-info-icon {
    position: absolute;
    bottom: 58px;
    z-index: 3;
    cursor: pointer;
    display: flex;
    gap: 10px;
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
    align-items: center;
}

.banner-info-icon:hover {
    opacity: 0.8;
}

/* Адаптивные стили для иконки на планшетах */
@media (max-width: 1199px) and (min-width: 769px) {
    .banner-info-icon {
        bottom: 32px;
        left: 32px;
    }
    .banner-info-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Адаптивные стили для иконки на мобильных устройствах */
@media (max-width: 768px) {
    .banner-info-icon {
        bottom: 20px;
        left: 20px;
    }

    .banner-info-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Позиционирование иконки для средних экранов */
@media (min-width: 1200px) and (max-width: 1535px) {
    .banner-info-icon {
        left: 32px;
    }
}

/* Позиционирование иконки для больших экранов */
@media (min-width: 1536px) {
    .banner-info-icon {
        left: calc((100vw - 1820px) / 2);
    }
}

/* Всплывающее окно с информацией о рекламодателе */
.advertiser-tooltip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.advertiser-tooltip.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.advertiser-tooltip-content {
    position: relative;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 14px;
    padding: 24px 16px;
    max-width: 412px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.advertiser-tooltip-text {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.41;
    margin: 0;
    text-align: left;
}

.advertiser-tooltip-arrow {
    position: absolute;
    left: -16px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 16px solid #000000;
}

/* Backdrop для мобильных устройств */
.advertiser-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0006;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.advertiser-backdrop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Адаптивные стили для всплывающего окна */
@media (max-width: 768px) {
    .advertiser-tooltip {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        transform: translateY(100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .advertiser-tooltip.show {
        transform: translateY(0);
    }

    .advertiser-tooltip-content {
        max-width: none;
        width: 100%;
        padding: 24px 20px;
        border-radius: 20px 20px 0 0;
        margin: 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }

    .advertiser-tooltip-text {
        font-size: 16px;
        text-align: center;
    }

    .advertiser-tooltip-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .advertiser-tooltip-content {
        padding: 20px 16px;
    }

    .advertiser-tooltip-text {
        font-size: 15px;
    }
}

.banner-text {
    margin-bottom: 40px;
}

.toggle-info--top {
    display: flex;
    justify-content: space-between;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-button {
    padding: 16px;
    background: #F37021;
    color: white;
    font-weight: 700;
    font-size: 14px;
    line-height: 171%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    width: fit-content;
    font-family: 'Montserrat', sans-serif;
}

.banner-button:hover {
    background: #fe8118;
}

.banner-button:active {
    transform: translateY(0);
}

.banner-button span {
    margin-left: 8px;
}

.button-icon {
    transition: color 0.3s ease;
    order: -1;
}

/* Пагинация баннеров */
.banner-pagination {
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    width: 100%;
    /* Фиксированная ширина контейнера */
    max-width: 100%;
    /* Ограничение для мобильных устройств */
}

.pagination-indicator {
    flex: 1;
    /* Равномерное распределение ширины между индикаторами */
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 20px;
    /* Минимальная ширина для читаемости */
}

.pagination-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.pagination-indicator.active {
    background: rgba(255, 255, 255, 0.5);
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #F37021;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.pagination-indicator.active .progress-bar {
    animation: progressAnimation 15s linear forwards;
}

@keyframes progressAnimation {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Вертикальные зоны навигации для ПК */
.banner-nav-zone {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    background: transparent;
    cursor: pointer;
    z-index: 4;
    transition: background-color 0.3s ease;
    display: none;
    /* Скрыты по умолчанию */
}

.banner-nav-zone.left {
    left: 0;
}

.banner-nav-zone.right {
    right: 0;
}

.banner-nav-zone:hover {
    background: rgba(0, 0, 0, 0.3);
    /* Чёрный цвет с 70% прозрачностью */
}

/* Показываем зоны навигации только на ПК (от 769px) */
@media (min-width: 769px) {
    .banner-nav-zone {
        display: block;
    }
}

/* Навигация слайдера */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.banner-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Стили для SVG иконок */
.banner-nav svg path {
    fill: white;
    fill-opacity: 0.3;
    transition: all 0.3s ease;
}

/* Изменение цвета иконок переключателей на белый при наведении */
.banner-nav:hover svg path {
    fill: white !important;
    fill-opacity: 1 !important;
    transition: all 0.3s ease;
}

.banner-nav.left {
    left: 0px;
}

.banner-nav.right {
    right: 0px;
}

.banner-nav svg {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Модальное окно */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 24px;
    border-radius: 14px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

/* Стили для блока FAQ */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #000;
    text-align: left;
    margin-bottom: 32px;
}

.faq-list {
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #000;
    flex: 1;
    margin-right: 20px;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-toggle:hover {
    transform: scale(1.1);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-weight: 400;
    font-size: 17px;
    line-height: 141%;
    color: #504c4d;
    margin: 0;
}

/* Стили для подвала */
.footer {
    background-color: #ffffff;
    color: #2c3e50;
    padding: 60px 0 40px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer--right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-app {
    background: #f6f5f5;
    border-radius: 14px;
    padding: 24px;
    max-width: 432px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-app h3,
.footer-social h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

a.store-link {
    text-decoration: none;
    padding: 16px;
    width: 100%;
    background: #fff;
    border-radius: 14px;
}

.store-links {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.store-link img {
    width: 24px;
    height: 24px;
}

.app-download {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.qr-code {
    flex-shrink: 0;
}

.app-info p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.footer-contacts {
    display: flex;
    gap: 48px;
    justify-content: space-between;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-info p {
    font-weight: 400;
    font-size: 17px;
    line-height: 141%;
    color: #504c4d;
    margin: 0;
}

.footer-actions {
    display: flex;
    align-items: flex-start;
}

.cancel-order-btn {
    background-color: #f6f5f5;
    color: #000;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    line-height: 171%;
    letter-spacing: 0.04em;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .cancel-order-btn:hover {
    background-color: #f37021;
    color: #ffffff;
} */

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f6f5f5;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.social-link:hover {
    background-color: #f37021;
    color: #ffffff;
    border-color: #f37021;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
    flex-shrink: 0;
}

.footer-legal p {
    font-weight: 400;
    font-size: 17px;
    line-height: 141%;
    color: #504c4d;
    margin: 0;
}

.privacy-link {
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    line-height: 141%;
    color: #504c4d;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #FF6B35;
}

.footer-disclaimer {
    flex: 1;
}

.footer-disclaimer p {
    font-weight: 400;
    font-size: 17px;
    line-height: 141%;
    color: #504c4d;
    margin-bottom: 10px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-link {
    color: #0075bf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0075bf;
}

/* Адаптивность для подвала */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .app-download {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 28px;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .header-container {
        padding: 0 15px;
        min-width: auto;
        flex-wrap: nowrap;
    }

    .logo {
        font-size: 20px;
    }

    .logo img {
        max-width: 100px;
        height: auto;
        flex-shrink: 1;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }

    .city-label {
        font-size: 14px;
    }


    .banner-subtitle {
        font-size: 1.2rem;
    }


    .banner-nav {
        opacity: 0.5;
    }

    .banner-nav.left {
        left: 15px;
    }

    .banner-nav.right {
        right: 15px;
    }

    .banner-nav svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {



    .banner-content {
        padding: 0 15px;
    }

    .banner-nav svg {
        width: 48px;
        height: 48px;
    }
}

/* Стили для блока услуг */
.services-section {
    padding: 60px 0;
    padding-bottom: 0;
    background: #f8f9fa;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

/* Левая часть - настройки тарифа */
.tariff-settings {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Карточка подключения региона */
.region-connection-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.region-connection-card:hover {
    border: 0.70px solid #ccc;
}

.region-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}



.region-sim-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.region-info {
    flex: 1;
}

.region-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.region-description {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.region-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.region-connection-card:hover .region-chevron {
    transform: rotate(180deg);
}

/* Модальное окно выбора региона */
.region-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.region-modal.active {
    display: flex;
}

.region-modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.region-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.region-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.region-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.3s ease;
}

.region-modal-close:hover {
    color: #2c3e50;
}

.region-options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.region-option {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: none;
    justify-content: space-between;
    background: #f6f5f5;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.region-option:last-child {
    border-bottom: none;
}

.regions-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.region-radio {
    margin-right: 16px;
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.region-radio.checked {
    border-color: #ff6b35;
}

.region-radio.checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #ff6b35;
    border-radius: 50%;
}

.region-label {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    cursor: pointer;
}

/* Стили для радио кнопок в выборе регионов */
.radio-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-button input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.radio-button label {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background: #F37021;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-button label::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: white;
    transition: all 0.3s ease;
}

/* Состояние когда радио кнопка не выбрана */
.radio-button input[type="radio"]:not(:checked)+label {
    background: #fff;
    border: none;
}

.radio-button input[type="radio"]:not(:checked)+label::after {
    opacity: 0;
    transform: scale(0);
}

/* Состояние при наведении */
.radio-button:hover input[type="radio"]:not(:checked)+label {
    border-color: #F37021;
    background: #fff5f0;
}

/* Состояние когда радио кнопка выбрана */
.radio-button input[type="radio"]:checked+label {
    background: #F37021;
    border: none;
}

.radio-button input[type="radio"]:checked+label::after {
    opacity: 1;
    transform: scale(1);
}

/* Контролы трафика и звонков */
.traffic-control,
.calls-control {
    margin-bottom: 30px;
}

.control-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.control-title {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    letter-spacing: 0.5px;
    flex: 1;
}

/* Ползунки */
/* Кастомные ползунки */
.custom-slider-container {
    position: relative;
    /*margin-bottom: 48px;*/
}

.custom-slider-track {
    position: relative;
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-bottom: 15px;
    margin-top: 10px;
    touch-action: none;
}

.custom-slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #F37021;
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 36.5%;
    pointer-events: none;
    /* Начальная позиция для активного шага (128 - индекс 2) */
}

.custom-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: url('../img/polzun.svg') no-repeat center;
    background-size: contain;
    cursor: grab;
    transition: left 0.3s ease;
    left: 36.5%;
    /* Начальная позиция для активного шага (128 - индекс 2) */
    z-index: 10;
    touch-action: none;
}

.custom-slider-thumb:active {
    cursor: grabbing;
}

.custom-slider-steps {
    display: flex;
    position: relative;
}

.slider-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
}

/* Точные позиции для каждого шага */
/* Увеличено расстояние на 1.5% для лучшего выравнивания на больших экранах */

/* Если шаг только один, размещаем его в конце */
.custom-slider-steps:has(.slider-step:only-child) .slider-step {
    left: 98.5% !important;
    transform: translateX(-50%);
}

.slider-step:nth-child(1) {
    left: 1%;
    transform: translateX(-50%);
}

.slider-step:nth-child(2) {
    left: 18.27%;
    transform: translateX(-50%);
}

.slider-step:nth-child(3) {
    left: 37.0475%;
    transform: translateX(-50%);
}

.slider-step:nth-child(4) {
    left: 55.3175%;
    transform: translateX(-50%);
}

.slider-step:nth-child(5) {
    left: 75.11%;
    transform: translateX(-50%);
}

.slider-step:nth-child(6) {
    left: 98.5%;
    transform: translateX(-50%);
}



.step-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 800;
    transition: color 0.3s ease;
    margin-bottom: 4px;
}

.slider-step.active .step-label {
    font-weight: 800;
    color: #F37021;
}

.slider-step:hover .step-dot {
    background: #F37021;
    transform: scale(1.1);
}

.slider-step:hover .step-label {
    color: #F37021;
}

.slider-step.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Старые стили ползунков - оставляем для совместимости */
.traffic-slider,
.calls-slider {
    position: relative;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 15px;
    position: relative;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 36px;
    height: 36px;
    background: url('../img/polzun.svg') no-repeat center;
    background-size: contain;
    cursor: pointer;
    border: none;
    box-shadow: none;
    position: relative;
}

.slider::-moz-range-thumb {
    width: 36px;
    height: 36px;
    background: url('../img/polzun.svg') no-repeat center;
    background-size: contain;
    cursor: pointer;
    border: none;
    box-shadow: none;
    position: relative;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6c757d;
}


/* Стили для иконок значений */
.value-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Выравнивание ползунка и значения */
.service-controls {
    align-items: center;
    gap: 20px;
}

.service-value {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.value-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 141%;
    color: #000;
}

.value-unit {
    font-size: 32px;
    font-weight: 700;
    line-height: 141%;
    color: #000;
}

.slider-container {
    flex: 1;
    margin-bottom: 0;
}

.slider-labels .active {
    color: #ff6b35;
    font-weight: 600;
}

/* Дополнительные услуги */
.additional-services {
    margin-bottom: 30px;
}

.additional-services h3 {
    font-weight: 600;
    font-size: 17px;
    line-height: 141%;
    color: #000;
    margin-top: 32px;
    margin-bottom: 12px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f4;
}

.service-option:last-child {
    border-bottom: none;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.service-info p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.service-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.service-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-toggle:last-child {
    border-bottom: none;
}

.toggle-info {
    background: #fff;
    padding: 24px 16px;
    border-radius: 14px;
    flex: 1;
}

.toggle-info h4 {
    font-weight: 600;
    font-size: 15px;
    line-height: 120%;
    color: #000;
    margin-bottom: 5px;
}

.toggle-info p {
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    color: #504c4d;
    margin-bottom: 16px;
}

.toggle-control {
    display: flex;
    align-items: center;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-switch:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

input[type="checkbox"]:checked+.toggle-switch {
    background-color: #ff6b35;
}

input[type="checkbox"]:checked+.toggle-switch:before {
    transform: translateX(20px);
}



.service-price {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    min-width: 70px;
    text-align: right;
}

/* Итоговая стоимость */
.total-cost {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.cost-display {
    flex: 1;
}

.cost-amount {
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    color: #000;
    display: block;
    margin-bottom: 5px;
}

.cost-description {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.cart-icon {
    position: absolute;
    right: 16px;
    width: 24px;
    height: 24px;
}

/* Стили для корзины */
.cart-panel {
    width: 100%;
    box-sizing: border-box;
}

.cart-panel--sticky {
    position: sticky;
    top: var(--cart-panel-top-offset, 104px);
    align-self: flex-start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cart-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.basket-container {
    background: #fff;
    border-radius: 14px;
    padding: 24px 16px 24px 16px;
    margin-bottom: 16px;
}

.buyer-container {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 16px;
}

.delivery-container,
.payment-container {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 16px;
    display: none; /* Скрыты по умолчанию */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.delivery-container.show,
.payment-container.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cart-header .cart-icon {
    width: 24px;
    height: 24px;
}

.cart-header h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #000;
    margin: 0;
}

/* Товары в корзине */


.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /*border-bottom: 1px solid #f0f0f0;*/
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
}

.cart-item-price {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #000;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
}

.cart-item-info {
    /*flex: 1;*/
    min-width: 66%;
    flex-shrink: 1;
}

.cart-item-region {
    text-align: right;
    max-width: 33%;
    /*white-space: nowrap;*/
    flex-shrink: 3;
}

.item-info {
    flex: 1;
}

.item-details {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.item-data {
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.item-description {
    font-size: 12px;
    color: #666;
    margin: 2px 0;
    line-height: 1.4;
}

.item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 0.70px solid #e2e2e2;
    border-radius: 14px;
}

.quantity-btn {
    width: 40px;
    height: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 17px;
    background: none;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #000;
    transition: all 0.2s ease;
}

.quantity-btn.minus img {
    width: 12px;
    height: 12px;
}

.quantity {
    font-size: 17px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.cart-item-details {
    display: flex;
    gap: 16px;
}

.cart-item-traffic,
.cart-item-calls,
.extra-service,
.cart-item-name,
.cart-item-region {
    font-weight: 600;
    font-size: 17px;
    line-height: 141%;
    color: #000;
}

.item-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Покупатель */

.buyer-section h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #000;
    margin-bottom: 24px;
}

.phone-input-container {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    position: relative;
}

.phone-input {
    flex: 1;
    padding: 12px 16px;
    padding-right: 50px;
    /* Добавляем место для иконки валидации */
    background: #f6f5f5;
    border-radius: 12px;
    font-size: 17px;
    line-height: 141%;
    border: none;
    letter-spacing: -0.02em;
    outline: none;
    transition: border-color 0.2s ease;
}

.phone-input:focus {
    border-color: #f37021;
}

.phone-submit-btn {
    width: 56px;
    height: 56px;
    background: #f37021;
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.phone-submit-btn:hover {
    background: #d85f1c;
}

.phone-note {
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    color: #504c4d;
}

/* Способ получения */

.delivery-section h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #000;
    margin: 0 0 8px 0;
}

.delivery-info {
    font-weight: 400;
    font-size: 17px;
    line-height: 120%;
    color: #000;
    margin: 0 0 16px 0;
}

.delivery-city {
    font-weight: 600;
    color: #0c78ed;
    text-decoration: none;
    cursor: pointer;
}

.delivery-options {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.delivery-option {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: #f6f5f5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    background: #e0e0e0;
    transition: all 0.2s ease;
}

.option-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.2s ease;
}

.pickup-icon {
    background: #e0e0e0;
}

.courier-icon {
    background: #fff;
}

.delivery-option.active .pickup-icon,
.delivery-option.active .courier-icon {
    background: #F37021;
}

.delivery-option.active .pickup-icon::after,
.delivery-option.active .courier-icon::after {
    background: white;
}

.delivery-option:hover .option-icon {
    background: #F37021;
}

.delivery-option:hover .option-icon::after {
    background: white;
}

.option-info {
    flex: 1;
}

.option-title {
    font-weight: 600;
    font-size: 17px;
    line-height: 141%;
    letter-spacing: -0.02em;
    color: #000;
    margin-bottom: 4px;
}

.option-details {
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    color: #000;
}

/* Пункт СДЭК */
.pickup-point {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
}

.pickup-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    justify-content: space-between;
    height: -webkit-fill-available;

}

.pickup-info--top {
    display: flex;
    gap: 8px;
}

.cdek-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pickup-details {
    flex: 1;
}

.pickup-title {
    font-weight: 600;
    font-size: 17px;
    line-height: 141%;
    letter-spacing: -0.02em;
    color: #000;
}

.pickup-address,
.pickup-date {
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    color: #000;
}
.pickup-address,
.pickup-title {
    margin-bottom: 8px;
}

/*.pickup-date {*/
/*    font-weight: 600;*/
/*}*/

.change-pickup-btn {
    display: flex;
    gap: 4px;
    background: #f6f5f5;
    border: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 171%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    padding: 16px;
    border-radius: 14px;
}

/* Карта */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 216px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Оплата */
.payment-section {
    margin-bottom: 24px;
}

.payment-section h3 {
    margin: 0 0 16px 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #000;
}

.payment-options {
    display: flex;
    gap: 8px;
}

.payment-option {
    flex: 1;
    padding: 20px 24px;
    border-radius: 14px;
    cursor: pointer;
    border: none;
    background: #f6f5f5;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 4px;
    text-align: center;
}

.payment-icon {
    width: 36px;
    height: 36px;
}

.payment-option span {
    font-weight: 600;
    font-size: 17px;
    line-height: 141%;
    letter-spacing: -0.02em;
    color: #000;
}

.payment-option .option-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    background: #e0e0e0;
    transition: all 0.2s ease;
}

.payment-option .option-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.2s ease;
}

.payment-option.active .option-icon {
    background: #F37021;
}

.payment-option.active .option-icon::after {
    background: white;
}

.payment-option:hover .option-icon {
    background: #F37021;
}

.payment-option:hover .option-icon::after {
    background: white;
}

/* Кнопка оплаты */
.pay-button {
    width: 100%;
    padding: 16px 24px;
    background: #f37021;
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.pay-button:hover {
    background: #d85f1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 112, 33, 0.3);
}

.pay-button .arrow {
    font-size: 16px;
}

/* Стили для состояния "В корзине" */
.cart-button.in-cart {
    background: #f6f5f5;
    color: #000;
    border: 1px solid #e2e2e2;
}

.cart-button.in-cart:hover {
    background: #ececec;
}

/* Стили для блока маркетплейсов */
.marketplace-section {
    margin-top: 16px;
    text-align: center;
}

.marketplace-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 16px 0;
    line-height: 1.41;
}

.marketplace-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.marketplace-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 10px;
    background: #FFFFFF;
    border: 0.7px solid #E2E2E2;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
}

.marketplace-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.marketplace-item img {
    max-width: 92px;
    max-height: 30px;
    object-fit: contain;
}



/* Стили для формы курьерской доставки */
.courier-delivery-form {
    display: none;
}

.address-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field-group label {
    font-weight: 400;
    font-size: 17px;
    line-height: 141%;
    color: #757575;
}

.field-group input,
.field-group textarea {
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 400;
    line-height: 141%;
    transition: all 0.3s ease;
    background: #f6f5f5;
}

.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    border-color: none;
}

.field-note {
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
}

/* Стили для SMS кода */
.sms-code-container {
    margin-top: 20px;
    border-radius: 12px;
}

.sms-code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 8px;
}

.back-btn {
    background: #f6f5f5;
    border: none;
    cursor: pointer;
    padding: 16px;
    border-radius: 14px;
    color: #000;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: #e9ecef;
    color: #495057;
}

.sms-code-info {
    flex: 1;
    text-align: center;
}

.sms-code-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

.sms-code-description span {
    color: #000;
    font-weight: 500;
}

.sms-code-title {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 4px;
}

.sms-code-number {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.sms-code-status svg {
    width: 24px;
    height: 24px;
}

.sms-code-input-container {
    position: relative;
}

.sms-code-input {
    width: 100%;
    padding: 8px 16px;
    padding-right: 50px;
    /* Добавляем место для иконки валидации */
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    background: #f6f5f5;
    transition: all 0.2s ease;
}

.sms-code-input:focus {
    outline: none;
}

.sms-code-input.error {
    background: #FBF0F0;
}

/* Стили для иконок валидации */
.validation-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    z-index: 10;
}

.validation-icon .validation-success,
.validation-icon .validation-error {
    display: none;
    width: 24px;
    height: 24px;
}

.validation-icon.show-success .validation-success {
    display: block;
}

.validation-icon.show-error .validation-error {
    display: block;
}

/* Для контейнера телефона нужно учесть кнопку */
.phone-input-container .validation-icon {
    right: 72px;
    /* 56px ширина кнопки + 16px отступ */
}

/* Стили для подтвержденного состояния phone-input-container */
.phone-input-container.confirmed .validation-icon {
    right: 16px;
    /* Когда кнопка скрыта, иконка ближе к краю */
}

.phone-input-container.confirmed .phone-input {
    background: #e8f5e8;
    /* Светло-зеленый фон для подтвержденного номера */
    border: 1px solid #5CCE79;
    /* Зеленая рамка */
}

.phone-input-container.confirmed .phone-input:focus {
    border-color: #5CCE79;
    /* Сохраняем зеленую рамку при фокусе */
}

.sms-code-timer {
    text-align: center;
}

.timer-text {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 2;
}

#timer-countdown {
    font-weight: 600;
}

.resend-code-btn {
    background: #f37021;
    color: white;
    width: 100%;
    padding: 16px 0;
    border: none;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.resend-code-btn:hover {
    transform: translateY(-1px);
}

.resend-code-btn:active {
    transform: translateY(0);
}

/* Анимации для переходов */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

.fade-out {
    animation: fadeOut 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Стили для уведомлений */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: #dc3545;
}

.notification.success {
    background: #28a745;
}

.notification.info {
    background: #17a2b8;
}

/* Стили для маски телефона */
.phone-input,
#phone {
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 1px;
}

.phone-input::placeholder,
#phone::placeholder {
    color: #adb5bd;
    font-family: 'Roboto Mono', monospace;
}

/* Анимация для переключения между способами доставки */
.pickup-point,
.map-container,
.courier-delivery-form {
    transition: all 0.3s ease;
}

/* Стили для анимации появления формы */
.courier-delivery-form.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для улучшенного отображения полей */
.form-section {
    margin-bottom: 24px;
}

.form-section h3 {
    margin-bottom: 16px;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

/* Стили для валидации полей */
.field-group input.error,
.field-group textarea.error {
    border-color: none;
    background: #fbf0f0;
}

.field-group .error-message {
    color: #cb272d;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    margin-top: 4px;
}



/* Улучшенные стили для активных состояний */
.payment-option.active .payment-icon,
.delivery-option.active .delivery-icon {
    color: #007bff;
}

/* Правая часть - инструкция */
.instruction-panel {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.instruction-panel h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 15px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-weight: 600;
    font-size: 17px;
    line-height: 141%;
    color: #000;
}

.step-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Адаптивность для блока услуг */
@media (max-width: 768px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .total-cost {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .add-to-cart-btn {
        justify-content: center;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .courier-delivery-form {
        padding: 16px;
        margin-top: 16px;
    }

    .payment-option,
    .delivery-option {
        padding: 12px;
    }

    .field-group input,
    .field-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

/* Адаптивные стили для нескольких вариантов оплаты на мобильных */
    .payment-options {
        flex-direction: column;
    }

    .payment-option:not(:only-child) {
        width: 100%;
        flex: 1 1 100%;
    }

    .payment-option span {
        font-size: 15px;
    }

    .payment-icon {
        width: 32px;
        height: 32px;
    }

    .field-group input,
    .field-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* HTMX анимации */
.htmx-indicator {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.htmx-request .htmx-indicator {
    opacity: 1;
}

.htmx-request.htmx-indicator {
    opacity: 1;
}

/* Стили для карточек услуг */
.service-card {
    height: 120px;
    margin-bottom: 50px;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.service-title {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin: 0;
    letter-spacing: 0.5px;
}

.info-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}



/* Backdrop для подсказок */
.tooltip-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.tooltip-backdrop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Всплывающая подсказка */
.tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    transform: translateY(-50%);
    background-color: #000;
    color: #000;
    padding: 24px 16px;
    border-radius: 14px;
    width: 508px;
    max-width: calc(100vw - 32px);
    /* Ограничиваем максимальную ширину */
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.tooltip.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: var(--arrow-offset, 50%);
    left: -11px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #000000;
}



.tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tooltip-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.41;
    color: #fff;
    margin: 0;
}

.tooltip-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.41;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    align-self: flex-start;
}

.tooltip-link:hover {
    text-decoration: underline;
}

/* Кнопка закрытия tooltip */
.tooltip-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    color: #666;
    transition: all 0.2s ease;
    z-index: 10;
    display: none; /* Скрыта по умолчанию */
}

.tooltip-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.tooltip-close svg {
    width: 16px;
    height: 16px;
}

/* Кастомный Toggle компонент */
.custom-toggle {
    width: 54px;
    height: 34px;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.toggle-track {
    width: 100%;
    height: 100%;
    background-color: #E2E2E2;
    border-radius: 12px;
    position: relative;
    transition: background-color 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-thumb {
    width: 26px;
    height: 26px;
    background-color: #FFFFFF;
    border-radius: 10px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Активное состояние Toggle */
.custom-toggle[data-active="true"] .toggle-track {
    background-color: #F37021;
}

.custom-toggle[data-active="true"] .toggle-thumb {
    transform: translateX(20px);
}

/* Hover эффекты */
.custom-toggle:hover .toggle-track {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

.custom-toggle:hover .toggle-thumb {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E2E2E2;
    transition: all 0.4s ease;
    border-radius: 17px;
    width: 54px;
    height: 34px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider-toggle:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    top: 3px;
    background-color: white;
    transition: all 0.4s ease;
    border-radius: 13px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 0.15px rgba(0, 0, 0, 0.1);
}

input:checked+.slider-toggle {
    background-color: #F37021;
}

input:checked+.slider-toggle:before {
    transform: translateX(22px);
}

.toggle-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #000;
}

/* Стили для кнопки корзины */


.cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 16px;
    background: #F37021;
    color: white;
    border: 1px solid #F37021;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.714;
}

.cart-button img {
    position: absolute;
    right: 16px;
    filter: brightness(0) invert(1);
}

.cart-button:hover {
    background: #fe8118;
}

.cart-button img {
    filter: brightness(0) invert(1);
}

.cart-icon {
    width: 24px;
    height: 24px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .banner-section {
        height: 100vh;
        min-height: 500px;
    }

    .container {
        padding: 0 16px;
    }

    .header {
        min-width: 100%;
        overflow-x: hidden;
    }

    .header-container {
        min-width: auto;
        flex-wrap: nowrap;
    }

    .city-name,
    .city-selector-content .chevron-icon,
    .banner-nav.left,
    .banner-nav.right {
        display: none;
    }

    .city-selector-content {
        padding: 6px 8px;
        border-radius: 20px;
        min-width: auto;
        flex-shrink: 1;
    }

    .banner-title {
        font-weight: 700;
        font-size: 32px;
        line-height: 120%;
    }

    .banner-content {
        padding: 16px;
        margin: 0 16px;
    }

    .banner-text {
        padding-right: 32px;
    }

    .banner-button {
        width: 100%;
        justify-content: center;
    }

    .services-section {
        padding: 20px 0;
    }

    .value-number,
    .value-unit {
        font-weight: 600;
        font-size: 17px;
        line-height: 141%;
    }

    .delivery-options {
        flex-direction: column;
    }

    .delivery-option {
        padding: 16px 24px;
    }

    /* Стили для marketplace-icons на мобильном */
    .marketplace-icons {
        justify-content: space-between;
        gap: 4px;
    }

    .marketplace-item {
        flex: 0 0 calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
    }

    .marketplace-item img {
        width: 100%;
        height: auto;
        max-width: 80px;
    }
}

/* Стили для модального окна выбора пунктов выдачи */
.pickup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.pickup-modal.active {
    display: flex;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.pickup-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 1200px;
    max-height: 636px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    /*padding-bottom: 1.5em;*/
}

.steps-list p {
    font-weight: 400;
    font-size: 17px;
    line-height: 141%;
    color: #504c4d;
}

.steps-number {
    margin-bottom: 32px;
}

.sim-steps-panel h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #000;
    margin-bottom: 48px;
}

.pickup-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
}

/* Стили для переключателей вида */
.pickup-view-toggle {
    display: none;
    gap: 8px;
}

.pickup-toggle-btn {
    background: #F6F5F5;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 171%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.pickup-toggle-btn.active {
    background: #000;
    color: #fff;
}

.pickup-toggle-btn:hover {
    color: #fff;
    background: #000;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.pickup-modal-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #000;
    margin: 0;
}

.pickup-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #6B7280;
    transition: color 0.2s;
}

.pickup-modal-close:hover {
    color: #111827;
}

.pickup-modal-body {
    display: flex;
    flex: 1;
    min-height: 0;
    padding: 24px;
    gap: 24px;
    padding-top: 0;
    overflow-y: auto;
}

.pickup-modal-left {
    width: 40%;
    overflow-y: auto;
}

.pickup-search {
    margin-bottom: 24px;
}

.pickup-search-input {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 141%;
    outline: none;
    background: #f6f5f5;
}

.pickup-points-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 16px;
}

.pickup-point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.pickup-point-icon {
    color: #6B7280;
    flex-shrink: 0;
}

.pickup-point-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}

.pickup-point-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #000;
    line-height: 141%;
    margin: 0 0 8px 0;
}

.pickup-point-details p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.pickup-select-btn {
    background: #f6f5f5;
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 171%;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.pickup-select-btn:hover {
    background: #f37021;
    color: #fff;
}

.pickup-select-btn.selected {
    background: #f37021;
    color: #fff;
}

.pickup-select-btn.selected:hover {
    background: #f37021;
    color: #fff;
}

.pickup-modal-right {
    width: 60%;
    position: relative;
}

.pickup-map {
    width: 100%;
    height: 100%;
}

.pickup-info-popup {
    position: absolute;
    top: 24px;
    right: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    width: 280px;
    max-width: calc(100vw - 48px);
    /* Ограничиваем максимальную ширину */
    display: none;
}

.pickup-info-popup.active {
    display: block;
}

.pickup-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.pickup-info-icon {
    color: #6B7280;
}

.pickup-info-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 141%;
    color: #000;
    margin: 0;
    flex: 1;
}

.pickup-info-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #6B7280;
    transition: color 0.2s;
}

.pickup-info-close:hover {
    color: #111827;
}

.pickup-info-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #000;
    font-weight: 400;
    margin: 0 0 16px 0;
    line-height: 120%;
}

.cancel-order-note a {
    text-decoration: none;
    color: #504c4d;
    transition: color 0.2s;
}

.cancel-order-note a:hover {
    color: #FF6B35;
}

.phone-number a {
    text-decoration: none;
    color: #000;
    transition: color 0.2s;
}

.phone-number a:hover {
    color: #FF6B35;
}

.pickup-info-select-btn {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.pickup-info-select-btn:hover {
    background: #E55A2B;
}

@media (max-width: 1340px) {
    .pickup-point {
        flex-direction: column;
        gap: 24px;
    }

    .delivery-options {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 1024px) {
    .services-content {
        grid-template-columns: 1fr;
    }

    .services-left {
        max-width: 100%;
    }

    .delivery-container,
    .payment-container {
        padding: 24px 16px;
    }

    .courier-delivery-form {
        padding: 0;
    }

    .delivery-options {
        margin-bottom: 32px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }

    .footer-content {
        margin-bottom: 0;
    }

    .faq-section {
        padding: 0;
    }

    .social-link {
        padding: 16px;
        border-radius: 14px;
        width: 100%;
        height: 100%;
    }

    .social-links {
        width: 100%;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 8px;
    }

    .contact-info {
        margin-bottom: 24px;
    }

    .cancel-order-btn,
    .footer--right {
        width: 100%;
    }

    .faq-title {
        text-align: left;
    }

    .footer-social {
        align-items: flex-start;
    }

    .footer-actions {
        margin-bottom: 32px;
    }

    .container {
        padding: 0 16px;
    }
}

/* Адаптивность для модального окна */
@media (max-width: 1024px) {
    .pickup-view-toggle {
        display: flex;
    }

    .buyer-container {
        padding: 24px 16px;
    }

    .pickup-modal-body {
        flex-direction: column;
    }

    .region-card-content {
        align-items: flex-start;
    }

    .quantity-controls {
        padding: 6px 8px;
    }

    .advertiser-tooltip-content {
        background-color: #fff;
    }

    .advertiser-tooltip-text {
        color: #000;
    }

    .pickup-modal-left {
        width: 100%;
        height: 100%;
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
        display: block;
    }

    .pickup-modal-right {
        width: 100%;
        height: 100%;
        display: none;
    }

    .pickup-modal-right.active {
        display: block;
    }

    .pickup-modal-left.hidden {
        display: none;
    }
}

@media (max-width: 768px) {
    .pickup-modal-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        /*padding-bottom: 1.5em;*/
    }

    .pickup-modal-header {
        padding: 16px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .pickup-modal-header h2 {
        font-size: 16px;
        order: 1;
    }

    .pickup-view-toggle {
        order: 2;
        flex: 1;
        width: 100%;
    }

    .pickup-modal-close {
        order: 1;
    }

    .pickup-toggle-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .custom-slider-track {
        margin-top: 15px;
    }

    .pickup-modal-body {
        flex-direction: column;
    }

    .pickup-modal-left {
        width: 100%;
        height: 100%;
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }

    .pickup-modal-body {
        padding: 16px 20px;
    }

    .pickup-modal-right {
        width: 100%;
        height: 50%;
    }

    .mobile-city-name,
    .mobile-chevron-icon {
        display: none;
    }

    .pickup-info-popup {
        position: static;
        width: auto;
        margin: 16px;
        box-shadow: none;
        border: 1px solid #E5E7EB;
    }
}

@media (max-width: 1670px) {
    .banner-content {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .banner-content {
        padding: 16px;
        margin: 0 16px;
    }
}

/* Стили для страницы отмены заказа */
.cancel-order-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cancel-order-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cancel-order-content {
    max-width: 468px;
    margin: 0 auto;
    margin-top: 96px;
    text-align: center;
}



.cancel-order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    background: #fff;
    border-radius: 20px;
}

.order-input-group {
    position: relative;
    margin-bottom: 24px;
}

.order-input-label {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #6B7280;
    position: absolute;
    left: 20px;
    /*top: 50%;*/
    top: 27px;
    transform: translateY(-50%);
    background: transparent;
    padding: 0 4px;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.order-number-input {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1F2937;
    background: #F3F4F6;
    border: 2px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.order-number-input:focus {
    border-color: none;
}

.order-number-input:focus+.order-input-label,
.order-number-input:not(:placeholder-shown)+.order-input-label {
    top: 0px;
    left: 16px;
    font-weight: 400;
    font-size: 13px;
    line-height: 108%;
    color: #757575;
    padding: 0 8px;
}

.cancel-order-note {
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    color: #837e7f;
}

.order-number-input::placeholder {
    color: transparent;
}

.cancel-order-btn-submit {
    width: 100%;
    padding: 16px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #F97316;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cancel-order-btn-submit:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.cancel-order-btn-submit:active {
    transform: translateY(0);
}

.cancel-order-description {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.5;
    margin-top: 16px;
}

/* Адаптивность для блока отмены заказа */
@media (max-width: 768px) {
    .cancel-order-section {
        padding: 40px 0;
    }

    .cancel-order-container {
        padding: 0 16px;
    }

    .cancel-order-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .order-number-input {
        font-size: 16px;
        padding: 14px 16px;
    }

    .cancel-order-btn-submit {
        font-size: 16px;
        padding: 14px 20px;
    }
}

.order-number-label {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: #000;
}

.order-number-field {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Floating Label стили для главной страницы */
.floating-label-group {
    position: relative;
}

.floating-label-group input,
.floating-label-group textarea {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: '', sans-serif;
    background: #f6f5f5;
    transition: all 0.3s ease;
    outline: none;
}

.floating-label {
    position: absolute;
    left: 12px;
    top: 16px;
    font-size: 16px;
    font-weight: 400;
    color: #757575;
    background: none;
    padding: 0 4px;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Manrope', sans-serif;
}

.floating-label-group input:focus+.floating-label,
.floating-label-group input:not(:placeholder-shown)+.floating-label,
.floating-label-group textarea:focus+.floating-label,
.floating-label-group textarea:not(:placeholder-shown)+.floating-label {
    top: -5px;
    left: 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 108%;
    background: none;
}

/* Специальные стили для textarea */
.floating-label-group textarea {
    resize: vertical;
    min-height: 80px;
}

.floating-label-group textarea+.floating-label {
    top: 16px;
}

.floating-label-group textarea:focus+.floating-label,
.floating-label-group textarea:not(:placeholder-shown)+.floating-label {
    top: -5px;
}

/* Адаптивность для floating labels */
@media (max-width: 768px) {

    .floating-label-group input,
    .floating-label-group textarea {
        padding: 19.2px 12px 19.2px 12px;
        font-size: 16px;
    }

    .floating-label {
        font-size: 14px;
        top: 14px;
    }

    .floating-label-group input:focus+.floating-label,
    .floating-label-group input:not(:placeholder-shown)+.floating-label,
    .floating-label-group textarea:focus+.floating-label,
    .floating-label-group textarea:not(:placeholder-shown)+.floating-label {
        font-size: 11px;
        top: -6px;
    }
}

/* Стили для страницы Политики конфиденциальности */
.privacy-policy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 100px;
    font-family: 'Manrope', sans-serif;
    color: #1F2937;
    line-height: 1.6;
}

.privacy-policy-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 32px;
    text-align: center;
}

.privacy-policy-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 40px 0 20px 0;
}

.privacy-policy-content p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    text-align: justify;
}

/* Мобильная адаптивность для страницы Политики конфиденциальности */
@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 24px 16px 50px;
    }

    .privacy-policy-content h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .privacy-policy-content h2 {
        font-size: 20px;
        margin: 32px 0 16px 0;
    }

    .privacy-policy-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

/* Мобильные стили для подсказок */
@media (max-width: 768px) {
    .tooltip {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: none;
        border-radius: 20px 20px 0 0;
        padding: 24px 20px 32px;
        transform: translateY(100%);
        background: #fff;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .tooltip.show {
        transform: translateY(0);
    }

    .tooltip::before {
        display: none;
    }

    .tooltip-content {
        text-align: left;
    }

    .tooltip-text {
        font-size: 16px;
        line-height: 1.5;
        color: #000;
    }

    .tooltip-link {
        font-size: 16px;
        color: #000;
    }

    /* Показываем кнопку закрытия на мобильных устройствах */
    .tooltip-close {
        display: block;
        top: 16px;
        right: 16px;
        color: #000;
    }
}

.btn-scroll-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 15px;
    width: 100%;
    position: relative;
    z-index: 10;
}
/* Плавная анимация движения вперёд-назад для кнопки прокрутки */
@keyframes smoothFloat {
    0% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

.btn-scrolling {
    animation: smoothFloat 3s ease-in-out infinite;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.btn-scrolling:hover {
    transform: translateY(-3px);
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.2);
    animation-play-state: paused;
}
.btn-reset {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 767px) {
    .region-card-content {
        align-items: center;
        gap: 12px;
    }

    .region-info {
        width: 100%;
        /* padding-right: 40px; */
    }

    .region-connection-card .chevron-icon {
        position: absolute;
        top: 3px;
        right: 0px;
        width: 24px;
        height: 24px;
    }
}
.resend-link {
    /*color: #0C78ED;*/
    /*text-decoration: none;*/
}


/* Скрываем слайдеры и опции по умолчанию до загрузки данных из API */
.service-card:first-of-type,
.service-card:nth-of-type(2),
.additional-services {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Прелоадер */
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 200px;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader.hidden {
    display: none;
}

/* Сообщение об отсутствии тарифов */
.no-tariffs-message {
    padding: 40px 20px;
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.no-tariffs-message.hidden {
    display: none;
}


[v-cloak] {
    display: none;
}

/* Адаптивные стили для планшетов (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Если несколько вариантов оплаты, они могут располагаться в две колонки */
    .payment-option:not(:only-child) {
        flex: 1 1 calc(50% - 4px);
        min-width: calc(50% - 4px);
    }
    
    /* Если вариантов больше двух, они переносятся на новую строку */
    .payment-options {
        flex-wrap: wrap;
    }
}
/* пока выкл */
.cart-summary {
    display: none;
    /*display: flex;*/
    justify-content: space-between;
}
/* пока выкл */
.cart-region-group {
    padding: 0;
    border: none;
    margin: 0;
    /*padding: 10px 14px;*/
    /*border: 1px solid #eee;*/
    /*border-radius: 5px;*/
    /*margin-bottom: 10px;*/
}
.cart-region-label {
    display: none;
    color: #aaa;
}