

/* Start:/local/components/taurus/basket/templates/.default/style.css?178595715449705*/
.taurus-basket { }

.basket-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

/* ===== АДАПТИВ ДЛЯ ПЛАНШЕТОВ ===== */
@media (max-width: 1024px) {
    .basket-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===== ТОВАРЫ ===== */
.basket-items {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #ece8e2;
    overflow: hidden;
    padding: 0 22px;
}

.basket-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid #ece8e2;
}

.basket-item:last-child { border-bottom: none; }

.item-image {
    width: 120px;
    height: 120px;
    background: #faf7f2;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.item-image img { width: 100%; height: 100%; object-fit: cover; }

.item-info { flex: 1; }

.item-title {
    font-size: 20px;
    font-weight: 600;
    color: #2b251f;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.item-title:hover { color: #eebc70; }

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.stock-status.low {
    background: #fff3e0;
    color: #e65100;
}

.stock-status::before { content: "\25CF"; font-size: 10px; }

.sku-selector { margin: 16px 0; }
.sku-label { font-size: 14px; font-weight: 500; color: #736b60; margin-bottom: 10px; display: block; }
.sku-list { display: flex; flex-wrap: wrap; gap: 10px; }
.sku-item {
    cursor: pointer;
    border: 2px solid #ece8e2;
    border-radius: 60px;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: 500;
    background: white;
    color: #736b60;
    transition: all 0.2s;
    min-width: 60px;
    text-align: center;
}
.sku-item:hover:not(.disabled) { border-color: #eebc70; color: #eebc70; }
.sku-item.selected { background: #eebc70; border-color: #eebc70; color: white; }
.sku-item.disabled { opacity: 0.4; cursor: not-allowed; }

.item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid #ece8e2;
    border-radius: 60px;
    background: white;
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    color: #2b251f;
    transition: all 0.2s;
}

.qty-btn:hover:not(:disabled) { background: rgba(238, 188, 112, 0.1); color: #eebc70; }
.qty-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.price-block { display: flex; align-items: center; gap: 16px; }
.current-price { font-size: 24px; font-weight: 700; color: #2b251f; }
.current-price.gift { color: #eebc70; }
.old-price { font-size: 16px; color: #a89f94; text-decoration: line-through; }

.remove-item {
    background: none;
    border: none;
    color: #a89f94;
    font-size: 20px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.remove-item:hover { background: #fee2e2; color: #ef4444; }

/* ===== ИТОГО ===== */
.totals-block {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #ece8e2;
    margin-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    color: #736b60;
    font-size: 18px;
}

.total-row.big {
    font-size: 28px;
    font-weight: 700;
    color: #2b251f;
    border-top: 2px dashed #ddd6cc;
    margin-top: 16px;
    padding-top: 24px;
}
.total-row.savings { color: #eebc70; }

.promo-section {
    display: flex;
    gap: 12px;
    margin: 28px 0;
}
.promo-input {
    flex: 1;
    padding: 16px 22px;
    border: 2px solid #ece8e2;
    border-radius: 60px;
    font-size: 15px;
    outline: none;
    background: white;
    transition: all 0.2s;
}
.promo-input:focus { border-color: #eebc70; }
.promo-btn {
    background: #eebc70;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 0 36px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.promo-btn:hover { background: #d9a45c; }

.clear-cart {
    width: 100%;
    text-align: center;
    background: none;
    border: none;
    color: #a89f94;
    cursor: pointer;
    padding: 12px;
    font-size: 14px;
    transition: color 0.2s;
}
.clear-cart:hover { color: #ef4444; }

/* ===== ПРАВАЯ КОЛОНКА ===== */
.checkout-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #ece8e2;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.checkout-title {
    font-size: 26px;
    font-weight: 700;
    padding: 22px 19px 0;
    margin-bottom: 24px;
}

.form-group {padding: 0 14px;margin-bottom: 24px;}
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #736b60; }
.form-group .required { color: #eebc70; }

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ece8e2;
    border-radius: 16px;
    font-size: 15px;
    outline: none;
    background: white;
    transition: all 0.2s;
    font-family: inherit;
}
.form-control:focus { border-color: #eebc70; }

.phone-input-wrapper { position: relative; }
.phone-prefix {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #a89f94;
    font-weight: 500;
    pointer-events: none;
}
textarea.form-control { resize: vertical; min-height: 80px; }

.pickup-preview {
    background: #faf7f2;
    border-radius: 16px;
    padding: 12px;
    margin: 0 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.pickup-preview:hover { border-color: #eebc70; background: white; }
.pickup-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.pickup-title { font-weight: 600; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.change-pickup { background: none; border: none; color: #eebc70; font-size: 14px; font-weight: 500; cursor: pointer; }
.pickup-address { color: #736b60; font-size: 14px; margin-bottom: 8px; }
.pickup-hours { font-size: 13px; color: #a89f94; display: flex; align-items: center; gap: 6px; }

/* ===== БОНУСЫ ===== */
.bonus-block { padding: 0 32px 24px; border-top: 1px solid #ece8e2; margin-top: 16px; }
.bonus-header { display: flex; align-items: center; justify-content: space-between; margin: 24px 0 20px; flex-wrap: wrap; gap: 12px; }
.bonus-title { font-weight: 700; font-size: 18px; }
.bonus-balance {
    background: white;
    padding: 6px 16px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    color: #eebc70;
    border: 2px solid #eebc70;
}
.bonus-slider { width: 100%; height: 6px; border-radius: 10px; background: linear-gradient(to right, #eebc70, #d9a45c); -webkit-appearance: none; margin: 20px 0; }
.bonus-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #eebc70; cursor: pointer; border: 3px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.slider-labels { display: flex; justify-content: space-between; color: #a89f94; font-size: 12px; margin-top: 8px; }
.bonus-input-wrapper { display: flex; align-items: center; background: white; border: 2px solid #ece8e2; border-radius: 16px; overflow: hidden; margin: 20px 0; }
.bonus-input { flex: 1; border: none; padding: 14px 18px; font-size: 16px; outline: none; }
.bonus-suffix { padding: 0 20px; color: #736b60; background: #f5f2ed; height: 100%; display: flex; align-items: center; font-weight: 500; }
.bonus-preview { background: #faf7f2; border-radius: 16px; padding: 20px; margin: 20px 0; }
.preview-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 15px; }
.preview-row.total { border-top: 2px solid #eebc70; margin-top: 10px; padding-top: 16px; font-weight: 700; color: #eebc70; font-size: 18px; }

.order-total-panel {background: #faf7f2;border-radius: 16px;padding: 10px;margin: 10px 10px;}
.order-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 16px; }
.order-row.final { font-size: 20px; font-weight: 700; border-top: 2px solid #ece8e2; margin-top: 10px; padding-top: 16px; }

.btn-order {
    background: #eebc70;
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 60px;
    width: calc(100% - 64px);
    margin: 0 32px 32px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-order:hover { background: #d9a45c; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(238, 188, 112, 0.25); }

/* ===== МОДАЛЬНЫЕ ОКНА ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.2s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 32px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    z-index: 1001;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp 0.3s ease;
}

#auth-modal .modal-content { max-width: 600px; }
#verify-modal .modal-content { max-width: 600px; }

#pickup-modal .modal-content {
    max-width: 1200px;
    width: 90%;
    height: 85vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #ece8e2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #a89f94;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #e3a455;
}

.modal-body {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
}

/* ===== ВЕРИФИКАЦИЯ ===== */
#verify-modal .modal-body,
#auth-modal .modal-body {
    padding: 24px 32px 32px;
}

.verify-icon,
.auth-icon {
    font-size: 56px;
    text-align: center;
    margin-bottom: 16px;
}

.verify-text,
.auth-text {
    text-align: center;
    color: #736b60;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.4;
}

.verify-phone-label {
    text-align: center;
    margin-bottom: 24px;
    font-size: 16px;
    background: #f5f2ed;
    padding: 12px;
    border-radius: 12px;
    word-break: break-word;
}

.verify-code-input {
    text-align: center;
    letter-spacing: 4px;
    font-size: 24px;
    font-weight: 600;
    padding: 16px;
    text-transform: uppercase;
    background: #faf7f2;
    border: 2px solid #ece8e2;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
}

.verify-code-input:focus {
    border-color: #e3a455;
    outline: none;
    background: white;
}

.modal-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 16px;
    text-align: center;
}

.modal-actions .btn-primary {
    background: #e3a455;
    color: white;
}

.modal-actions .btn-primary:hover {
    background: #c48a3a;
    transform: translateY(-2px);
}

.modal-actions .btn-secondary {
    background: #f0ede8;
    color: #2b251f;
}

.modal-actions .btn-secondary:hover {
    background: #e5e0d8;
}

#resend-code:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.resend-timer {
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
    font-weight: normal;
}

.timer {
    text-align: center;
    font-size: 12px;
    color: #a89f94;
    margin-top: 16px;
}

.verify-info {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #ece8e2;
    color: #a89f94;
    font-size: 12px;
}

/* ===== МАГАЗИНЫ ===== */
.stores-list { display: flex; flex-direction: column; gap: 16px; }
.store-card {
    background: #faf7f2;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.store-card:hover { border-color: #eebc70; background: white; }
.store-name { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.store-address { color: #736b60; font-size: 14px; margin-bottom: 12px; }
.store-hours { font-size: 13px; color: #a89f94; display: flex; align-items: center; gap: 4px; }

/* ===== КНОПКИ ===== */
.modal-actions { display: flex; gap: 16px; margin-top: 24px; }
.btn { padding: 12px 24px; border-radius: 60px; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; font-size: 15px; }
.btn-primary { background: #eebc70; color: white; }
.btn-primary:hover { background: #d9a45c; }
.btn-secondary { background: #f0ede8; color: #2b251f; }
.btn-secondary:hover { background: #e5e0d8; }

/* ===== UNDO ===== */
.undo-notification {
    background: #2b251f;
    color: white;
    border-radius: 60px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 32px 32px;
    animation: slideDown 0.3s ease;
}
.undo-btn {
    background: #eebc70;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.undo-btn:hover { background: #d9a45c; }

/* ===== УСПЕХ ===== */
.success-message {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 32px;
    margin: 40px auto;
    max-width: 500px;
}
.success-icon { font-size: 72px; margin-bottom: 24px; }
.success-message h2 { font-size: 32px; margin-bottom: 16px; }
.order-number { color: #eebc70; font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.pickup-info { color: #736b60; margin-bottom: 32px; }

/* ===== GIFT ===== */
.gift-banner {
    background: linear-gradient(145deg, #fef9e7, #fff3d6);
    border: 2px solid #eebc70;
    border-radius: 16px;
    padding: 20px 24px;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeIn 0.5s ease;
}
.gift-icon { font-size: 48px; background: white; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.gift-content { flex: 1; }
.gift-title { font-weight: 700; color: #2b251f; margin-bottom: 4px; }
.gift-name { font-size: 18px; font-weight: 600; color: #eebc70; }
.gift-description { font-size: 14px; color: #736b60; }
.gift-add-btn { background: #eebc70; color: white; border: none; padding: 12px 28px; border-radius: 60px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.gift-add-btn:hover { background: #d9a45c; transform: translateY(-2px); }

/* ===== НОТИФИКАЦИЯ ===== */
.cart-notification {
    position: fixed;
    top: 130px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s ease;
}
.cart-notification .notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-left: 4px solid;
}
.cart-notification.info .notification-content { border-left-color: #3498db; background: #e8f4fd; }
.cart-notification.success .notification-content { border-left-color: #27ae60; background: #e8f5e9; }
.cart-notification.error .notification-content { border-left-color: #e74c3c; background: #fee2e2; }
.notification-message { flex: 1; font-size: 14px; color: #2b251f; }
.notification-close { background: none; border: none; font-size: 20px; cursor: pointer; color: #a89f94; padding: 0 0 0 12px; }
.notification-close:hover { color: #e74c3c; }

/* ===== ПУСТАЯ КОРЗИНА ===== */
.basket-empty { text-align: center; padding: 60px; }
.empty-icon { font-size: 64px; margin-bottom: 20px; }
.basket-empty h3 { font-size: 24px; margin-bottom: 12px; }
.basket-empty p { color: #736b60; margin-bottom: 32px; }

/* ===== АНИМАЦИИ ===== */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== МАРКЕТИНГОВЫЕ АКЦИИ ===== */
.applied-actions-section {
    background: linear-gradient(135deg, #fef9e7 0%, #fff3d6 100%);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 24px;
    border: 1px solid #eebc70;
}

.actions-title {
    font-weight: 700;
    font-size: 16px;
    color: #2b251f;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.actions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: white;
    border-radius: 12px;
    gap: 12px;
}

.action-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef9e7;
    border-radius: 50%;
}

.action-info {
    flex: 1;
}

.action-name {
    font-weight: 600;
    font-size: 14px;
    color: #2b251f;
    margin-bottom: 4px;
}

.action-desc {
    font-size: 12px;
    color: #736b60;
}

.action-savings {
    font-weight: 700;
    color: #eebc70;
    font-size: 16px;
}

.item-marketing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.marketing-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #fef9e7;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: #eebc70;
    border: 1px solid #eebc70;
    cursor: help;
}

.discount-badge {
    display: inline-block;
    background: #eebc70;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

/* ===== ПРИМЕНЕННЫЙ ПРОМОКОД ===== */
.applied-promo-block {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #4caf50;
    animation: slideDown 0.3s ease;
}

.applied-promo-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-icon {
    font-size: 20px;
    background: #4caf50;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.promo-code {
    font-size: 14px;
    color: #2e7d32;
}

.promo-code strong {
    font-size: 16px;
    font-weight: 700;
    background: white;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 6px;
    letter-spacing: 1px;
}

.promo-discount {
    background: #ffc107;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #2b251f;
}

.remove-promo-btn {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.remove-promo-btn:hover {
    background: #f44336;
    color: white;
    transform: scale(1.05);
}

/* ===== AUTH BANNER ===== */
.auth-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    margin-bottom: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
}

.auth-banner-content {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.auth-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.auth-banner-text {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 50%;
}

.auth-banner-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.auth-banner-description {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.auth-banner-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 3;
}

.auth-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.auth-banner-buttons {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 16px;
    z-index: 3;
}

.auth-banner-btn {
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 15px;
}

.auth-banner-btn.btn-primary {
    background: rgba(227, 164, 85, 0.91);
    color: white;
}

.auth-banner-btn.btn-primary:hover {
    background: #c48a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 164, 85, 0.3);
}

.auth-banner-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.auth-banner-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===== ВЫБОР ДОСТАВКИ ===== */
#pickup-modal .modal-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pickup-modal-layout {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.pickup-stores-sidebar {
    width: 420px;
    min-width: 420px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid #ece8e2;
    overflow: hidden;
}

.pickup-stores-header {
    padding: 15px 16px;
    background: #faf7f2;
    border-bottom: 1px solid #ece8e2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    flex-shrink: 0;
}

.pickup-stores-count {
    background: #e3a455;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.pickup-stores-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.pickup-store-item {
    background: #fff;
    border: 1px solid #ece8e2;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pickup-store-item:hover {
    border-color: #e3a455;
    background: #fef9e7;
}

.pickup-store-item.active {
    border-color: #e3a455;
    background: #fef9e7;
}

.pickup-store-name {
    font-size: 14px;
    font-weight: 600;
    color: #2b251f;
    margin-bottom: 6px;
}

.pickup-store-address {
    font-size: 12px;
    color: #736b60;
    margin-bottom: 4px;
}

.pickup-store-hours {
    font-size: 11px;
    color: #a89f94;
    margin-bottom: 10px;
}

.pickup-store-select-btn {
    background: #e3a455;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.pickup-store-select-btn:hover {
    background: #c48a3a;
}

.pickup-map-wrapper {
    flex: 1;
    background: #faf7f2;
    position: relative;
}

#pickup-map {
    width: 100%;
    height: 100%;
}

.pickup-delivery-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 2px solid #e3a455;
    border-radius: 16px;
    padding: 12px 20px;
    margin: 15px 20px 0 20px;
    flex-shrink: 0;
}

.pickup-delivery-icon {
    width: 45px;
    height: 45px;
    background: #e3a455;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

.pickup-delivery-info {
    flex: 1;
}

.pickup-delivery-title {
    font-size: 15px;
    font-weight: 700;
    color: #2b251f;
    margin-bottom: 3px;
}

.pickup-delivery-desc {
    font-size: 12px;
    color: #a89f94;
}

.pickup-delivery-btn {
    background: #e3a455;
    border: none;
    border-radius: 30px;
    padding: 8px 25px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.pickup-delivery-btn:hover {
    background: #c48a3a;
}

.pickup-separator {
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    color: #a89f94;
    flex-shrink: 0;
}

.pickup-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #faf7f2;
    text-align: center;
    padding: 40px;
}

.order-payment-note {
    margin: 12px 0;
    padding: 12px 14px;
    background: #f6f9f4;
    border-left: 3px solid #27ae60;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.45;
    color: #3d4a3d;
}

.order-delivery-hint {
    margin: 0 32px 10px;
    font-size: 14px;
    line-height: 1.4;
    color: #8a7b63;
    text-align: center;
}

.order-delivery-hint a {
    color: #b8860b;
    font-weight: 600;
    text-decoration: underline;
}

/* ===== КНОПКА ОФОРМЛЕНИЯ (DISABLED) ===== */
.btn-order:disabled,
.btn-order[disabled],
#submit-order:disabled,
#submit-order[disabled] {
    background: #ded9d2 !important;
    color: #8d8781 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}
.btn-order:disabled:hover,
.btn-order[disabled]:hover,
#submit-order:disabled:hover,
#submit-order[disabled]:hover {
    background: #ded9d2 !important;
    color: #8d8781 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ===== СМЕНА ТЕЛЕФОНА ===== */
.change-phone-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    color: #b8860b;
    text-decoration: underline;
}

.change-phone-link:hover {
    color: #8a6b0b;
}

/* ===== УСПЕХ (СТРАНИЦА СПАСИБО) ===== */
.success-store-card {
    display: none;
    max-width: 460px;
    margin: 16px auto;
    padding: 14px 16px;
    background: #faf7f0;
    border: 1px solid #e8dcc0;
    border-radius: 6px;
    text-align: left;
    line-height: 1.5;
}

.success-store-name {
    font-weight: 600;
}

.success-store-address,
.success-store-hours,
.success-store-phone {
    font-size: 14px;
    color: #7a7a7a;
}

.success-callback {
    max-width: 460px;
    margin: 0 auto 6px;
}

/* ===== БОНУСЫ: убираем стрелки ===== */
.bonus-input::-webkit-outer-spin-button,
.bonus-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bonus-input[type=number] {
    -moz-appearance: textfield;
}

/* ===== ТЕМНАЯ ТЕМА ===== */
@media (prefers-color-scheme: dark) {
    .applied-promo-block {
        background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
        border-color: #4caf50;
    }
    .promo-code {
        color: #a5d6a7;
    }
    .promo-code strong {
        background: #1b5e20;
        color: #fff;
    }
}

/* ============================================================
   ===== АДАПТИВНАЯ ВЕРСИЯ ДЛЯ ТЕЛЕФОНОВ =====
   ============================================================ */

/* ===== ПЛАНШЕТЫ И МАЛЕНЬКИЕ ЭКРАНЫ (до 1024px) ===== */
@media (max-width: 1024px) {
    .basket-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .checkout-card {
        position: relative;
        top: auto;
    }
}

/* ===== ТЕЛЕФОНЫ (до 768px) ===== */
@media (max-width: 768px) {
    .taurus-basket {
        padding: 0 12px !important;
    }

    .basket-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .basket-left {
        order: 1 !important;
        width: 100% !important;
    }

    .basket-right {
        order: 2 !important;
        width: 100% !important;
    }

    .basket-items {
        padding: 0 12px !important;
        border-radius: 16px !important;
    }

    .basket-item {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 16px 0 !important;
    }

    .item-image {
        width: 80px !important;
        height: 80px !important;
        align-self: center !important;
    }

    .item-title {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .item-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .quantity-control {
        align-self: center !important;
    }

    .price-block {
        justify-content: space-between !important;
        width: 100% !important;
    }

    .current-price {
        font-size: 18px !important;
    }

    .old-price {
        font-size: 14px !important;
    }

    .total-row.big {
        font-size: 22px !important;
    }

    .checkout-card {
        border-radius: 16px !important;
    }

    .checkout-title {
        font-size: 20px !important;
        padding: 16px 16px 0 !important;
        margin-bottom: 16px !important;
    }

    .form-group {
        padding: 0 16px !important;
        margin-bottom: 16px !important;
    }

    .form-control {
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-radius: 12px !important;
    }

    .pickup-preview {
        margin: 0 16px 16px !important;
        padding: 12px !important;
    }

    .bonus-block {
        padding: 0 16px 16px !important;
    }

    .bonus-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin: 16px 0 12px !important;
    }

    .bonus-balance {
        font-size: 13px !important;
        padding: 4px 12px !important;
    }

    .bonus-slider {
        margin: 12px 0 !important;
    }

    .bonus-input-wrapper {
        margin: 12px 0 !important;
    }

    .bonus-preview {
        padding: 16px !important;
        margin: 12px 0 !important;
    }

    .preview-row {
        font-size: 14px !important;
        padding: 6px 0 !important;
    }

    .preview-row.total {
        font-size: 16px !important;
        padding-top: 12px !important;
        margin-top: 6px !important;
    }

    .order-total-panel {
        padding: 12px !important;
        margin: 12px 16px !important;
        border-radius: 12px !important;
    }

    .order-row {
        font-size: 14px !important;
        padding: 6px 0 !important;
    }

    .order-row.final {
        font-size: 18px !important;
        padding-top: 12px !important;
        margin-top: 6px !important;
    }

    .btn-order {
        width: calc(100% - 32px) !important;
        margin: 0 16px 20px !important;
        padding: 14px !important;
        font-size: 16px !important;
        border-radius: 30px !important;
    }

    .order-payment-note {
        margin: 8px 16px !important;
        padding: 10px 14px !important;
        font-size: 13px !important;
    }

    .order-delivery-hint {
        margin: 0 16px 10px !important;
        font-size: 13px !important;
    }

    .gift-banner {
        flex-direction: column !important;
        text-align: center !important;
        padding: 16px !important;
        margin: 0 0 16px 0 !important;
    }

    .gift-icon {
        margin: 0 auto !important;
        width: 56px !important;
        height: 56px !important;
        font-size: 28px !important;
    }

    .gift-add-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 10px !important;
    }

    .sku-selector {
        margin: 10px 0 !important;
    }

    .sku-label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }

    .sku-list {
        gap: 6px !important;
    }

    .sku-item {
        padding: 6px 14px !important;
        font-size: 13px !important;
        min-width: 44px !important;
    }

    .stock-status {
        font-size: 11px !important;
        padding: 2px 10px !important;
        margin-bottom: 10px !important;
    }

    .applied-actions-section {
        padding: 12px 16px !important;
        margin: 16px 0 0 0 !important;
    }

    .actions-title {
        font-size: 14px !important;
    }

    .action-item {
        padding: 8px 10px !important;
        flex-wrap: wrap !important;
    }

    .action-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 18px !important;
    }

    .action-name {
        font-size: 13px !important;
    }

    .action-savings {
        font-size: 14px !important;
    }

    .item-marketing-actions {
        gap: 4px !important;
        margin: 4px 0 8px 0 !important;
    }

    .marketing-badge {
        font-size: 10px !important;
        padding: 2px 8px !important;
    }

    .discount-badge {
        font-size: 11px !important;
        padding: 2px 6px !important;
        margin-left: 4px !important;
    }

    .undo-notification {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
        padding: 12px 16px !important;
        margin: 0 12px 16px !important;
        border-radius: 12px !important;
    }

    .undo-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .applied-promo-block {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
        padding: 10px 14px !important;
        margin: 10px 0 !important;
    }

    .applied-promo-info {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    .promo-code strong {
        font-size: 13px !important;
        padding: 2px 8px !important;
    }

    .remove-promo-btn {
        align-self: center !important;
    }

    .promo-section {
        flex-direction: column !important;
        gap: 8px !important;
        margin: 16px 0 !important;
    }

    .promo-input {
        padding: 12px 16px !important;
        font-size: 14px !important;
    }

    .promo-btn {
        padding: 12px !important;
        font-size: 14px !important;
        width: 100% !important;
    }

    .clear-cart {
        font-size: 13px !important;
        padding: 8px !important;
    }

    .totals-block {
        margin-top: 12px !important;
        padding: 16px !important;
        border-radius: 16px !important;
    }

    .total-row {
        font-size: 15px !important;
        padding: 10px 0 !important;
    }

    /* Модальные окна */
    .modal-content {
        width: 92% !important;
        border-radius: 24px !important;
    }

    #auth-modal .modal-content,
    #verify-modal .modal-content {
        max-width: 92% !important;
    }

    .modal-header {
        padding: 18px 20px !important;
    }

    .modal-header h3 {
        font-size: 20px !important;
    }

    .modal-body {
        padding: 20px !important;
    }

    .verify-icon,
    .auth-icon {
        font-size: 48px !important;
    }

    .verify-text,
    .auth-text {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .verify-phone-label {
        font-size: 14px !important;
        padding: 10px !important;
        margin-bottom: 20px !important;
        word-break: break-all !important;
    }

    .verify-code-input {
        font-size: 20px !important;
        letter-spacing: 4px !important;
        padding: 14px !important;
    }

    .modal-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .modal-actions .btn {
        width: 100% !important;
        padding: 14px !important;
        font-size: 16px !important;
    }

    #resend-code {
        order: 2 !important;
    }

    #confirm-code {
        order: 1 !important;
    }

    .verify-info {
        font-size: 11px !important;
        margin-top: 16px !important;
        padding-top: 12px !important;
    }

    #pickup-modal .modal-content {
        width: 95% !important;
        height: 90vh !important;
        max-height: 90vh !important;
    }

    #pickup-modal .modal-body {
        padding: 0 !important;
    }

    .pickup-modal-layout {
        flex-direction: column !important;
    }

    .pickup-stores-sidebar {
        width: 100% !important;
        min-width: auto !important;
        height: 40% !important;
        border-right: none !important;
        border-bottom: 1px solid #ece8e2 !important;
    }

    .pickup-map-wrapper {
        height: 60% !important;
    }

    #pickup-map {
        height: 100% !important;
        min-height: 250px !important;
    }

    .pickup-delivery-card {
        margin: 10px 12px 0 12px !important;
        padding: 10px 14px !important;
        flex-wrap: wrap !important;
    }

    .pickup-delivery-btn {
        width: 100% !important;
        text-align: center !important;
    }

    .pickup-stores-header {
        padding: 10px 14px !important;
        font-size: 14px !important;
    }

    .pickup-stores-list {
        padding: 8px !important;
    }

    .pickup-store-item {
        padding: 10px !important;
        margin-bottom: 6px !important;
    }

    .pickup-store-name {
        font-size: 13px !important;
    }

    .pickup-store-address {
        font-size: 11px !important;
    }

    .pickup-store-hours {
        font-size: 10px !important;
    }

    /* Auth banner */
    .auth-banner-text {
        left: 20px !important;
        max-width: 70% !important;
    }

    .auth-banner-title {
        font-size: 20px !important;
        margin-bottom: 6px !important;
    }

    .auth-banner-description {
        font-size: 12px !important;
    }

    .auth-banner-buttons {
        bottom: 15px !important;
        right: 20px !important;
        gap: 8px !important;
    }

    .auth-banner-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }

    /* Success message */
    .success-message {
        padding: 30px 20px !important;
        margin: 20px auto !important;
    }

    .success-icon {
        font-size: 56px !important;
        margin-bottom: 16px !important;
    }

    .success-message h2 {
        font-size: 24px !important;
    }

    .order-number {
        font-size: 17px !important;
    }

    .success-store-card {
        padding: 12px 14px !important;
        margin: 12px auto !important;
    }

    .success-store-name,
    .success-store-address,
    .success-store-hours,
    .success-store-phone,
    .success-callback {
        font-size: 13px !important;
    }
}

/* ===== ОЧЕНЬ МАЛЕНЬКИЕ ТЕЛЕФОНЫ (до 425px) ===== */
@media (max-width: 425px) {
    .taurus-basket {
        padding: 0 8px !important;
    }

    .basket-items {
        padding: 0 8px !important;
    }

    .basket-item {
        padding: 12px 0 !important;
        gap: 8px !important;
    }

    .item-image {
        width: 64px !important;
        height: 64px !important;
        border-radius: 12px !important;
    }

    .item-title {
        font-size: 14px !important;
        margin-bottom: 4px !important;
    }

    .item-actions {
        gap: 8px !important;
    }

    .qty-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }

    .qty-input {
        width: 36px !important;
        font-size: 14px !important;
    }

    .current-price {
        font-size: 16px !important;
    }

    .old-price {
        font-size: 12px !important;
    }

    .remove-item {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }

    .checkout-title {
        font-size: 18px !important;
        padding: 12px 12px 0 !important;
    }

    .form-group {
        padding: 0 12px !important;
        margin-bottom: 12px !important;
    }

    .form-control {
        padding: 10px 12px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
    }

    .pickup-preview {
        margin: 0 12px 12px !important;
        padding: 10px !important;
    }

    .pickup-title {
        font-size: 14px !important;
    }

    .pickup-address {
        font-size: 12px !important;
    }

    .pickup-hours {
        font-size: 11px !important;
    }

    .bonus-block {
        padding: 0 12px 12px !important;
    }

    .bonus-title {
        font-size: 15px !important;
    }

    .bonus-balance {
        font-size: 12px !important;
        padding: 3px 10px !important;
    }

    .bonus-preview {
        padding: 12px !important;
    }

    .preview-row {
        font-size: 13px !important;
        padding: 4px 0 !important;
    }

    .preview-row.total {
        font-size: 15px !important;
        padding-top: 10px !important;
    }

    .order-total-panel {
        padding: 10px !important;
        margin: 10px 12px !important;
    }

    .order-row {
        font-size: 13px !important;
        padding: 4px 0 !important;
    }

    .order-row.final {
        font-size: 16px !important;
        padding-top: 10px !important;
    }

    .btn-order {
        width: calc(100% - 24px) !important;
        margin: 0 12px 16px !important;
        padding: 12px !important;
        font-size: 14px !important;
        border-radius: 30px !important;
    }

    .order-payment-note {
        margin: 6px 12px !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
    }

    .order-delivery-hint {
        margin: 0 12px 8px !important;
        font-size: 12px !important;
    }

    .sku-item {
        padding: 4px 10px !important;
        font-size: 12px !important;
        min-width: 36px !important;
    }

    .gift-banner {
        padding: 12px !important;
        gap: 12px !important;
    }

    .gift-name {
        font-size: 15px !important;
    }

    .gift-description {
        font-size: 12px !important;
    }

    .gift-add-btn {
        font-size: 13px !important;
        padding: 8px !important;
    }

    .modal-header {
        padding: 14px 16px !important;
    }

    .modal-header h3 {
        font-size: 18px !important;
    }

    .modal-body {
        padding: 16px !important;
    }

    .verify-icon,
    .auth-icon {
        font-size: 40px !important;
        margin-bottom: 12px !important;
    }

    .verify-text,
    .auth-text {
        font-size: 13px !important;
        margin-bottom: 16px !important;
    }

    .verify-phone-label {
        font-size: 13px !important;
        padding: 8px !important;
        margin-bottom: 16px !important;
    }

    .verify-code-input {
        font-size: 18px !important;
        letter-spacing: 3px !important;
        padding: 12px !important;
    }

    .modal-actions .btn {
        padding: 12px !important;
        font-size: 15px !important;
    }
}

/* ===== САМЫЕ МАЛЕНЬКИЕ ТЕЛЕФОНЫ (до 360px) ===== */
@media (max-width: 360px) {
    .taurus-basket {
        padding: 0 4px !important;
    }

    .item-image {
        width: 56px !important;
        height: 56px !important;
    }

    .item-title {
        font-size: 13px !important;
    }

    .current-price {
        font-size: 14px !important;
    }

    .sku-item {
        padding: 3px 8px !important;
        font-size: 11px !important;
        min-width: 30px !important;
    }

    .qty-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 14px !important;
    }

    .qty-input {
        width: 30px !important;
        font-size: 12px !important;
    }

    .checkout-title {
        font-size: 16px !important;
    }

    .form-control {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }

    .btn-order {
        font-size: 13px !important;
        padding: 10px !important;
    }

    .order-row.final {
        font-size: 14px !important;
    }

    .modal-header h3 {
        font-size: 16px !important;
    }

    .verify-code-input {
        font-size: 16px !important;
        letter-spacing: 2px !important;
        padding: 10px !important;
    }
}

/* ===== SAFE AREA ДЛЯ IPHONE ===== */
@supports (padding: max(0px)) {
    .modal-content {
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .modal-header {
        padding-top: max(24px, env(safe-area-inset-top, 0));
        padding-left: max(32px, env(safe-area-inset-left, 0));
        padding-right: max(32px, env(safe-area-inset-right, 0));
    }

    .modal-body {
        padding-bottom: max(24px, env(safe-area-inset-bottom, 0));
    }

    @media (max-width: 768px) {
        .modal-header {
            padding-top: max(18px, env(safe-area-inset-top, 0));
            padding-left: max(20px, env(safe-area-inset-left, 0));
            padding-right: max(20px, env(safe-area-inset-right, 0));
        }
        .modal-body {
            padding-bottom: max(20px, env(safe-area-inset-bottom, 0));
        }
    }

    @media (max-width: 425px) {
        .modal-header {
            padding-top: max(14px, env(safe-area-inset-top, 0));
            padding-left: max(16px, env(safe-area-inset-left, 0));
            padding-right: max(16px, env(safe-area-inset-right, 0));
        }
        .modal-body {
            padding-bottom: max(16px, env(safe-area-inset-bottom, 0));
        }
    }
}
/* End */
/* /local/components/taurus/basket/templates/.default/style.css?178595715449705 */
