
.breadcrumbs-new {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #93999E;
    font-size: 15px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.breadcrumbs-new__link {
    color: #93999E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs-new__link:hover {
    color: #2A85F7;
}

.breadcrumbs-new__separator {
    color: #93999E;
}

.breadcrumbs-new__current {
    color: #93999E;
}

.catalog-header-new {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    margin-bottom: 17px;
    gap: 28px;
}

.catalog-header-new__title {
    color: #1C2126;
    font-size: 36px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
}

.catalog-header-new__count {
    color: #1C2126;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 22px;
}

.basket-empty-page {
    padding: 120px 0 140px;
    text-align: center;
}

.basket-empty-page__icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: rgba(42, 133, 247, 0.1);
}

.basket-empty-page__icon::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 19px;
    width: 30px;
    height: 24px;
    border: 2px solid #2A85F7;
    border-radius: 4px;
    box-sizing: border-box;
}

.basket-empty-page__icon::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 14px;
    width: 18px;
    height: 10px;
    border: 2px solid #2A85F7;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
}

.basket-empty-page .success_message_caption {
    color: #001D3A;
    display: flex;
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    font-weight: 500;
    justify-content: center;
    line-height: 140%;
    margin-bottom: 0;
    width: 100%;
}

.basket-empty-page__btn {
    align-items: center;
    background-color: #2A85F7;
    border-radius: 12px;
    color: #FFFFFF;
    display: inline-flex;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 45px;
    justify-content: center;
    line-height: 20px;
    margin-top: 24px;
    min-width: 190px;
    padding: 0 28px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.basket-empty-page__btn:hover {
    background-color: #1A75E6;
    color: #FFFFFF;
    text-decoration: none;
}

/* === НОВЫЕ СТИЛИ ДЛЯ КОРЗИНЫ === */

.basket-new {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.basket-new__left {
    flex: 1;
    max-width: 934px;
}

.basket-new__right {
    width: 357px;
    flex-shrink: 0;
}

.basket-search {
    width: 383px;
    padding: 10px 14px;
    border-radius: 10px;
    outline: 0.50px rgba(0, 0, 0, 0.28) solid;
    outline-offset: -0.50px;
    margin-bottom: 18px;
    color: #ABABAB;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 20px;
    border: none;
}

.basket-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    max-width: 844px;
}

.basket-toolbar__left {
    display: flex;
    align-items: center;
    gap: 27px;
}

.basket-toolbar__right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.basket-toolbar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: black;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
}

.basket-toolbar__divider {
    height: 1px;
    background: rgba(147, 153, 158, 0.27);
    margin-bottom: 14px;
}

/* Товары в корзине */
.basket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 15px 0;
}

.basket-item__left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.basket-item__checkbox {
    cursor: pointer;
}

.basket-item__image {
    width: 100px;
    height: 100px;
    border-radius: 9px;
    object-fit: cover;
    cursor: pointer;
}

.basket-item__info {
    flex: 1;
    max-width: 385px;
    cursor: pointer;
}

.basket-item__code {
    color: #93999E;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 4px;
}

.basket-item__name {
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 4px;
}

.basket-item__delivery {
    color: #93999E;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
}

.basket-item__delivery span {
    color: #060606;
}

.basket-item__right {
    width: 292px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basket-item__price {
    color: black;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 22px;
}

.basket-item__quantity {
    min-width: 117px;
    padding: 11px 21px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basket-item__quantity-btn {
    color: rgba(0, 0, 0, 0.38);
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 22px;
    cursor: pointer;
    border: none;
    background: none;
}

.basket-item__quantity-value {
    color: black;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 22px;
}

/* Категория товара */
.basket-category {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 40px;
}

.basket-category__name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 20px;
}

/* Рекомендуемые товары */
.basket-recommended {
    display: flex;
    gap: 19px;
    margin-top: 18px;
}

.basket-recommended__item {
    flex: 1;
    padding: 10px 13px;
    background: white;
    border-radius: 10px;
    outline: 1px rgba(0, 0, 0, 0.06) solid;
    outline-offset: -1px;
    display: flex;
    align-items: center;
    gap: 19px;
}

.basket-recommended__image {
    width: 124px;
    height: 89px;
    border-radius: 7px;
    object-fit: cover;
    cursor: pointer;
}

.basket-recommended__info {
    flex: 1;
    height: 89px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.basket-recommended__name {
    color: black;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
}

.basket-recommended__price {
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 20px;
}

.basket-recommended__add {
    width: 124px;
    height: 24px;
    background-color: #2A85F7;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
}

.basket-recommended__add:hover {
    background-color: #1a75e6;
}

/* Правая колонка - оформление заказа */
.basket-summary {
    padding: 23px 24px;
    border-radius: 6px;
    outline: 1px rgba(0, 0, 0, 0.03) solid;
    outline-offset: -1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 369px;
}


.basket-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.basket-summary__label {
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 20px;
}

.basket-summary__change {
    color: rgba(0, 0, 0, 0.38);
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
    cursor: pointer;
}

.basket-summary__info {
    margin-bottom: 15px;
}

.basket-summary__name {
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 4px;
}

.basket-summary__phone {
    color: rgba(0, 0, 0, 0.38);
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
}

.basket-summary__promo {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    outline: 0.50px rgba(0, 0, 0, 0.28) solid;
    outline-offset: -0.50px;
    color: #ABABAB;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
    border: none;
}

.basket-summary__total {
    margin-top: 20px;
}

.basket-summary__items {
    color: black;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 5px;
}

.basket-summary__total-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.basket-summary__total-label {
    color: black;
    font-size: 20px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    line-height: 24px;
}

.basket-summary__total-value {
    color: black;
    font-size: 20px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    line-height: 24px;
}

.basket-summary__order-btn {
    width: 100%;
    height: 45px;
    padding: 8px 27px;
    background-color: #2A85F7;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
}

.basket-summary__order-btn:hover {
    background-color: #1a75e6;
}

/* Блок данных получателя */
.basket-recipient {
    width: 100%;
    padding: 23px 24px;
    border-radius: 6px;
    outline: 1px rgba(0, 0, 0, 0.03) solid;
    outline-offset: -1px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.basket-recipient__title {
    color: black;
    font-size: 20px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 20px;
}

.basket-recipient__fields {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.basket-recipient__field {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px 14px;
    border-radius: 10px;
    outline: 0.50px rgba(0, 0, 0, 0.28) solid;
    outline-offset: -0.50px;
    color: #000 !important;
    -webkit-text-fill-color: #000;
    opacity: 1;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 20px;
    border: none;
}

.basket-recipient__fields--address {
    display: block;
    margin-bottom: 15px;
}

.basket-recipient__field--address {
    display: block;
    flex: none;
    width: 100%;
}

.basket-recipient__field::placeholder {
    color: #93999E;
    -webkit-text-fill-color: #93999E;
    opacity: 1;
}

.basket-recipient__field:focus,
.basket-recipient__field:not(:placeholder-shown),
.basket-recipient__field:-webkit-autofill,
.basket-recipient__field:-webkit-autofill:hover,
.basket-recipient__field:-webkit-autofill:focus {
    color: #000 !important;
    -webkit-text-fill-color: #000;
    opacity: 1;
}

.basket-recipient__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.basket-recipient__checkbox input {
    margin: 0;
    flex-shrink: 0;
}

.basket-recipient__checkbox-label {
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 20px;
}


.basket-delivery-method__title {
    color: black;
    font-size: 20px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 25px;
}

.basket-delivery-method__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    max-width: 572px;

}

.basket-delivery-method__option {
    padding: 12px;
    padding-right: 25px;
    padding-left: 25px;
    border-radius: 11px;
    outline: 1px rgba(0, 0, 0, 0.06) solid;
    outline-offset: -1px;
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
}

.basket-delivery-method__option--active {
    outline: 1px #2A85F7 solid;
}

.basket-delivery-method__option-name {
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 2px;
}

.basket-delivery-method__option-desc {
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 20px;
}

.basket-delivery-address__title {
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 9px;
}

.paymentblock {
    width: 100%;
    padding: 23px 24px;
    border-radius: 6px;
    outline: 1px rgba(0, 0, 0, 0.03) solid;
    outline-offset: -1px;
    margin-bottom: 40px;
}

.basket-delivery-address__field {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    outline: 0.50px rgba(0, 0, 0, 0.28) solid;
    outline-offset: -0.50px;
    color: #ABABAB;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 20px;
    border: none;
    margin-bottom: 9px;
}

.basket-delivery-address__fields-row {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
}

.basket-delivery-address__field-small {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    outline: 0.50px rgba(0, 0, 0, 0.28) solid;
    outline-offset: -0.50px;
    color: #ABABAB;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 20px;
    max-width: 257px;
    border: none;
}

.basket-delivery-address__comment {
    width: 100%;
    height: 197px;
    padding: 10px 14px;
    border-radius: 10px;
    outline: 0.50px rgba(0, 0, 0, 0.28) solid;
    outline-offset: -0.50px;
    color: #ABABAB;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 20px;
    border: none;
    resize: vertical;
    margin-bottom: 9px;
}

.basket-delivery-cost {
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 20px;
}

.basket-payment {
    width: 100%;
    padding: 23px 24px;
    border-radius: 6px;
    outline: 1px rgba(0, 0, 0, 0.03) solid;
    outline-offset: -1px;
    margin-bottom: 40px;
}

.basket-payment__title {
    color: black;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 15px;
}

.basket-payment__options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.basket-payment__option {
    width: calc(50% - 7.5px);
    padding: 11px 15px;
    border-radius: 12px;
    outline: 1px rgba(0, 0, 0, 0.06) solid;
    outline-offset: -1px;
    cursor: pointer;
}

.basket-payment__option--active {
    outline: 1px #2A85F7 solid;
}

.basket-payment__option-name {
    color: black;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 5px;
}

.basket-payment__option-desc {
    color: black;
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
}

.basket-payment__note {
    color: rgba(0, 0, 0, 0.38);
    font-size: 12px;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    line-height: 16px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .basket-new {
        flex-direction: column;
    }
    
    .basket-new__left {
        max-width: 100%;
    }
    
    .basket-new__right {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .basket-toolbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .basket-toolbar__left,
    .basket-toolbar__right {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .breadcrumbs-new {
        font-size: 14px;
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .catalog-header-new {
        gap: 20px;
        margin-bottom: 17px;
    }
    
    .catalog-header-new__title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .catalog-header-new__count {
        font-size: 20px;
        line-height: 24px;
    }
    
    .basket-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .basket-item__right {
        width: 100%;
        margin-top: 15px;
    }
    
    .basket-recommended {
        flex-direction: column;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }
    
    .basket-recipient__fields {
        flex-direction: column;
    }
    
    .basket-delivery-address__fields-row {
        flex-direction: column;
    }
    
    .basket-payment__option {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .breadcrumbs-new {
        font-size: 12px;
    }
    
    .catalog-header-new__title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .catalog-header-new__count {
        font-size: 18px;
        line-height: 22px;
    }
    
    .basket-toolbar__left,
    .basket-toolbar__right {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .basket-item__left {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .basket-delivery-method__options {
        flex-direction: column;
    }
}

/* === ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ СПОЙЛЕРА === */
.basket-category__name {
    cursor: pointer;
    transition: color 0.2s ease;
}

.basket-category__name:hover {
    color: #2A85F7;
}

.basket-category__name:hover svg path {
    stroke: #2A85F7;
}

.basket-category__name svg {
    transition: transform 0.3s ease;
}

.basket-category__name--expanded svg {
    transform: rotate(180deg);
}

.basket-recommended {
    display: none;
}

.basket-recommended--expanded {
    display: flex;
}

.basket-toolbar__item {
    transition: color 0.2s ease;
}

.basket-toolbar__item:hover {
    color: #2A85F7;
}

.basket-toolbar__item:hover svg path {
    stroke: #2A85F7;
}

.basket-summary {
    height: auto;
    min-height: 170px;
}

.basket-select-all__mark,
.basket-item__checkbox-mark {
    display: none;
}

.basket-toolbar__item--selected .basket-select-all__mark,
.basket-item--selected .basket-item__checkbox-mark {
    display: block;
}

.basket-toolbar__item--selected svg rect,
.basket-item--selected .basket-item__checkbox svg rect {
    fill: #2A85F7;
    stroke: #2A85F7;
}

.basket-toolbar__item.basket-toolbar__item--selected:hover .basket-select-all__mark,
.basket-item--selected .basket-item__checkbox-mark {
    stroke: #FFFFFF !important;
}

.basket-item--selected .basket-item__checkbox::before {
    content: none !important;
}

.checkout-auth-open {
    overflow: hidden;
}

.checkout-auth-modal[hidden] {
    display: none !important;
}

.checkout-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: 'Onest', sans-serif;
}

.checkout-auth-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.46);
}

.checkout-auth-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 40px 42px 34px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
    color: #1C2126;
}

.checkout-auth-modal__close,
.checkout-auth-modal__back {
    position: absolute;
    top: 16px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #93999E;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.checkout-auth-modal__close {
    right: 16px;
}

.checkout-auth-modal__back {
    left: 16px;
    font-size: 24px;
}

.checkout-auth-modal__close:hover,
.checkout-auth-modal__back:hover {
    color: #1C2126;
}

.checkout-auth-step {
    display: none;
}

.checkout-auth-step--active {
    display: block;
}

.checkout-auth-modal__title {
    margin: 0 0 24px;
    color: #1C2126;
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0;
}

.checkout-auth-modal__text {
    margin-bottom: 18px;
    color: #5E646A;
    font-size: 15px;
    line-height: 22px;
}

.checkout-auth-identity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-auth-identity strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #1C2126;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
}

.checkout-auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-auth-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.checkout-auth-field span {
    color: #5E646A;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
}

.checkout-auth-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    background: #FFFFFF;
    color: #1C2126;
    font-size: 15px;
    line-height: 20px;
    outline: none;
}

.checkout-auth-input:focus {
    border-color: #2A85F7;
}

.checkout-auth-field--password {
    position: relative;
}

.checkout-auth-field--password .checkout-auth-input {
    padding-right: 48px;
}

.checkout-auth-password-toggle {
    position: absolute;
    right: 10px;
    bottom: 7px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #93999E;
    cursor: pointer;
}

.checkout-auth-password-toggle:hover {
    color: #1C2126;
}

.checkout-auth-submit {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: #2A85F7;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.checkout-auth-submit:hover {
    background: #1A75E6;
}

.checkout-auth-submit:disabled {
    opacity: 0.65;
    cursor: default;
}

.checkout-auth-link,
.checkout-auth-forgot {
    border: 0;
    background: transparent;
    color: #2A85F7;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
    cursor: pointer;
}

.checkout-auth-link:hover,
.checkout-auth-forgot:hover,
.checkout-auth-agreement a:hover {
    color: #1A75E6;
}

.checkout-auth-forgot {
    display: inline-flex;
    margin-top: 18px;
}

.checkout-auth-error {
    color: #D64545;
    font-size: 13px;
    line-height: 18px;
}

.checkout-auth-error:empty {
    display: none;
}

.checkout-auth-captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #F7F9FB;
    color: #2A85F7;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    cursor: pointer;
}

.checkout-auth-captcha img {
    max-width: 180px;
    height: 46px;
    object-fit: contain;
}

.checkout-auth-agreement {
    color: #5E646A;
    font-size: 12px;
    line-height: 18px;
}

.checkout-auth-agreement a {
    color: #2A85F7;
    text-decoration: none;
}

@media (max-width: 600px) {
    .checkout-auth-modal {
        align-items: flex-end;
        padding: 12px;
    }

    .checkout-auth-modal__dialog {
        max-height: calc(100vh - 24px);
        padding: 36px 18px 24px;
    }

    .checkout-auth-modal__title {
        font-size: 24px;
        line-height: 30px;
    }

    .checkout-auth-captcha {
        align-items: flex-start;
        flex-direction: column;
    }
}
