

/* Start:/local/components/taurus/basket/templates/.default/style.css?178532173950864*/
.taurus-basket {
    /* max-width: 1360px; */
    /* margin: 0 auto; */
    /* padding: 0 20px; */
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    /* color: #2b251f; */
}

.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 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

#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-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 banner */
.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); }

/* Notification */
.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 */
.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); }
}

/* Responsive */
@media (max-width: 768px) {
    .taurus-basket { padding: 0 16px; }
    .basket-items { padding: 0 20px; }
    .basket-item { flex-direction: column; gap: 16px; padding: 24px 0; }
    .item-image { width: 100px; height: 100px; }
    .item-title { font-size: 18px; }
    .item-actions { flex-direction: column; align-items: flex-start; }
    .price-block { width: 100%; justify-content: space-between; }
    .current-price { font-size: 20px; }
    .total-row.big { font-size: 24px; }
    .checkout-title { font-size: 22px; padding: 24px 24px 0; }
    .form-group { padding: 0 24px; }
    .pickup-preview { margin: 0 24px 20px; }
    .bonus-block { padding: 0 24px 20px; }
    .order-total-panel { margin: 20px 24px; }
    .btn-order { width: calc(100% - 48px); margin: 0 24px 24px; }
    .gift-banner { flex-direction: column; text-align: center; }
    .gift-icon { margin: 0 auto; }
    .cart-notification { left: 20px; right: 20px; min-width: auto; }

    /* ÐœÐ¾Ð´Ð°Ð»ÑŒÐ½Ñ‹Ðµ Ð¾ÐºÐ½Ð° Ð½Ð° Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ñ… */
    .modal-content {
        width: 92%;
        border-radius: 24px;
    }

    #auth-modal .modal-content,
    #verify-modal .modal-content {
        max-width: 92%;
    }

    .modal-header {
        padding: 18px 20px;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .verify-icon,
    .auth-icon {
        font-size: 48px;
    }

    .verify-text,
    .auth-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .verify-phone-label {
        font-size: 14px;
        padding: 10px;
        margin-bottom: 20px;
        word-break: break-all;
    }

    .verify-code-input {
        font-size: 20px;
        letter-spacing: 4px;
        padding: 14px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 12px;
    }

    .modal-actions .btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

    /* ÐšÐ½Ð¾Ð¿ÐºÐ° "ÐžÑ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÑŒ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€Ð½Ð¾" Ð½Ð° Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ñ… */
    #resend-code {
        order: 2;
    }

    #confirm-code {
        order: 1;
    }

    .verify-info {
        font-size: 11px;
        margin-top: 16px;
        padding-top: 12px;
    }

    /* ÐžÐºÐ½Ð¾ Ð²Ñ‹Ð±Ð¾Ñ€Ð° Ð¼Ð°Ð³Ð°Ð·Ð¸Ð½Ð° Ð½Ð° Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ñ… */
    #pickup-modal .modal-content {
        width: 95%;
        height: 90vh;
        max-height: 90vh;
    }

    #pickup-modal .modal-body {
        padding: 0;
    }

    #pickup-modal .modal-body > div {
        flex-direction: column !important;
    }

    #pickup-modal .stores-list-container {
        width: 100% !important;
        height: 40% !important;
        border-right: none !important;
        border-bottom: 1px solid #ece8e2;
        padding: 16px !important;
    }

    #pickup-modal .stores-list-container + div {
        width: 100% !important;
        height: 60% !important;
    }

    #pickup-map {
        height: 100% !important;
        min-height: 250px;
    }
}

@media (max-width: 425px) {
    .sku-item { padding: 6px 16px; font-size: 14px; min-width: 50px; }
    .qty-btn { width: 40px; height: 40px; }
}

/* Ð”Ð»Ñ Ð¾Ñ‡ÐµÐ½ÑŒ Ð¼Ð°Ð»ÐµÐ½ÑŒÐºÐ¸Ñ… ÑÐºÑ€Ð°Ð½Ð¾Ð² (iPhone SE Ð¸ Ñ‚.Ð´.) */
@media (max-width: 380px) {
    .modal-header {
        padding: 14px 16px;
    }

    .modal-header h3 {
        font-size: 18px;
    }

    .modal-body {
        padding: 16px;
    }

    .verify-icon,
    .auth-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .verify-text,
    .auth-text {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .verify-phone-label {
        font-size: 13px;
        padding: 8px;
        margin-bottom: 16px;
    }

    .verify-code-input {
        font-size: 18px;
        letter-spacing: 3px;
        padding: 12px;
    }

    .modal-actions .btn {
        padding: 12px;
        font-size: 15px;
    }
}

/* Safe area support Ð´Ð»Ñ 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));
    }
}

/* ÐÐºÑ†Ð¸Ð¸ Ð¸ Ð¼Ð°Ñ€ÐºÐµÑ‚Ð¸Ð½Ð³Ð¾Ð²Ñ‹Ðµ Ð±ÐµÐ¹Ð´Ð¶Ð¸ */
.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;
}

.item-action-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f0ede8;
    border-radius: 20px;
    font-size: 11px;
    color: #736b60;
    margin-top: 8px;
    margin-right: 8px;
}

.discount-badge {
    display: inline-block;
    background: #eebc70;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

/* Ð˜ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ðµ Ð´Ð»Ñ Ð¿ÑƒÑÑ‚Ð¾Ð¹ ÐºÐ¾Ñ€Ð·Ð¸Ð½Ñ‹ */
.basket-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 10px;
    align-items: start;
}

.basket-layout.hide-right .basket-right {
    display: none;
}

.basket-layout.hide-right {
    grid-template-columns: 1fr;
}

/* ÐÐ½Ð¸Ð¼Ð°Ñ†Ð¸Ñ Ð´Ð»Ñ Ð°ÐºÑ†Ð¸Ð¹ */
@keyframes actionPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.applied-actions-section {
    animation: actionPulse 0.5s ease;
}

/* ÐžÑÐ½Ð¾Ð²Ð½Ñ‹Ðµ Ñ„Ð¸Ñ€Ð¼ÐµÐ½Ð½Ñ‹Ðµ Ñ†Ð²ÐµÑ‚Ð° Ñ !important */
:root {
    --brand-color: rgba(227, 164, 85, 0.91) !important;
    --brand-color-solid: #e3a455 !important;
    --brand-color-light: rgba(227, 164, 85, 0.2) !important;
    --brand-color-dark: #c48a3a !important;
}

/* ÐŸÐ¾Ð»Ð½Ð¾ÑÐºÑ€Ð°Ð½Ð½Ñ‹Ð¹ Ñ€ÐµÐ¶Ð¸Ð¼ Ð´Ð»Ñ Ð¿ÑƒÑÑ‚Ð¾Ð¹ ÐºÐ¾Ñ€Ð·Ð¸Ð½Ñ‹ */
.empty-cart-fullscreen {
    position: fixed ;
    top: 0 ;
    left: 0 ;
    right: 0 ;
    bottom: 0 ;
    width: 100% ;
    height: 100% ;
    background: linear-gradient(135deg, #faf7f2 0%, #fff 100%) ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    z-index: 1000 ;
    margin: 0 ;
    padding: 0 ;
}

.empty-cart-content {
    text-align: center ;
    max-width: 500px ;
    padding: 40px ;
    animation: fadeInUp 0.5s ease ;
}

.empty-cart-icon {
    font-size: 120px ;
    margin-bottom: 30px ;
    opacity: 0.8 ;
    animation: bounce 1s ease infinite ;
}

.empty-cart-content h2 {
    font-size: 36px ;
    font-weight: 700 ;
    color: #2b251f ;
    margin-bottom: 16px ;
}

.empty-cart-content p {
    font-size: 18px !important;
    color: #736b60 !important;
    margin-bottom: 32px !important;
}

.btn-large {
    padding: 16px 40px !important;
    font-size: 18px !important;
    border-radius: 60px !important;
    background: rgba(227, 164, 85, 0.91) !important;
    color: white !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.btn-large:hover {
    background: #c48a3a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(227, 164, 85, 0.3) !important;
}

/* ÐÐºÑ†Ð¸Ð¸ Ð¸ Ð¼Ð°Ñ€ÐºÐµÑ‚Ð¸Ð½Ð³Ð¾Ð²Ñ‹Ðµ Ð±ÐµÐ¹Ð´Ð¶Ð¸ */
.applied-actions-section {
    background: linear-gradient(135deg, #fef9e7 0%, #fff3d6 100%) !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    margin: 24px 0 0 0 !important;
    border: 1px solid rgba(227, 164, 85, 0.91) !important;
}

.actions-title {
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #2b251f !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.actions-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.action-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 12px !important;
    background: white !important;
    border-radius: 12px !important;
    gap: 12px !important;
}

.action-icon {
    font-size: 24px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(227, 164, 85, 0.2) !important;
    border-radius: 50% !important;
}

.action-info {
    flex: 1 !important;
}

.action-name {
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #2b251f !important;
    margin-bottom: 4px !important;
}

.action-desc {
    font-size: 12px !important;
    color: #736b60 !important;
}

.action-savings {
    font-weight: 700 !important;
    color: rgba(227, 164, 85, 0.91) !important;
    font-size: 16px !important;
}

/* Ð‘ÐµÐ¹Ð´Ð¶Ð¸ Ð°ÐºÑ†Ð¸Ð¹ Ð´Ð»Ñ Ñ‚Ð¾Ð²Ð°Ñ€Ð¾Ð² */
.item-marketing-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 8px 0 12px 0 !important;
}

.marketing-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 4px 10px !important;
    background: rgba(227, 164, 85, 0.15) !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #c48a3a !important;
    border: 1px solid rgba(227, 164, 85, 0.91) !important;
    cursor: help !important;
}

.discount-badge {
    display: inline-block !important;
    background: rgba(227, 164, 85, 0.91) !important;
    color: white !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 2px 8px !important;
    border-radius: 20px !important;
    margin-left: 8px !important;
}

/* ÐšÐ½Ð¾Ð¿ÐºÐ¸ */
.promo-btn,
.btn-order,
.btn-primary,
#apply-promo,
#submit-order,
#continue-btn,
#confirm-code,
#login-btn,
.gift-add-btn,
.undo-btn {
    background: rgba(227, 164, 85, 0.91) !important;
    color: white !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.promo-btn:hover,
.btn-order:hover,
.btn-primary:hover,
#apply-promo:hover,
#submit-order:hover,
#continue-btn:hover,
#confirm-code:hover,
#login-btn:hover,
.gift-add-btn:hover,
.undo-btn:hover {
    background: #c48a3a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(227, 164, 85, 0.3) !important;
}

/* Ð‘Ð¾Ð½ÑƒÑÑ‹ */
.bonus-balance {
    background: white !important;
    padding: 6px 16px !important;
    border-radius: 60px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(227, 164, 85, 0.91) !important;
    border: 2px solid rgba(227, 164, 85, 0.91) !important;
}

.bonus-slider {
    width: 100% !important;
    height: 6px !important;
    border-radius: 10px !important;
    background: linear-gradient(to right, rgba(227, 164, 85, 0.91), #c48a3a) !important;
    -webkit-appearance: none !important;
    margin: 20px 0 !important;
}

.bonus-slider::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background: rgba(227, 164, 85, 0.91) !important;
    cursor: pointer !important;
    border: 3px solid white !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
}

.bonus-slider::-webkit-slider-thumb:hover {
    background: #c48a3a !important;
    transform: scale(1.1) !important;
}

.preview-row.total {
    border-top: 2px solid rgba(227, 164, 85, 0.91) !important;
    margin-top: 10px !important;
    padding-top: 16px !important;
    font-weight: 700 !important;
    color: rgba(227, 164, 85, 0.91) !important;
    font-size: 18px !important;
}

/* Ð’Ñ‹Ð±Ð¾Ñ€ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° */
.sku-item:hover:not(.disabled) {
    border-color: rgba(227, 164, 85, 0.91) !important;
    color: rgba(227, 164, 85, 0.91) !important;
}

.sku-item.selected {
    background: rgba(227, 164, 85, 0.91) !important;
    border-color: rgba(227, 164, 85, 0.91) !important;
    color: white !important;
}

/* ÐŸÑ€Ð¾Ð¼Ð¾ÐºÐ¾Ð´ */
.promo-input:focus {
    border-color: rgba(227, 164, 85, 0.91) !important;
    outline: none !important;
}

/* Ð¡Ð°Ð¼Ð¾Ð²Ñ‹Ð²Ð¾Ð· */
.pickup-preview:hover {
    border-color: rgba(227, 164, 85, 0.91) !important;
    background: white !important;
}

.change-pickup {
    background: none !important;
    border: none !important;
    color: rgba(227, 164, 85, 0.91) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}

.change-pickup:hover {
    color: #c48a3a !important;
    text-decoration: underline !important;
}

/* Ð¤Ð¾Ñ€Ð¼Ñ‹ */
.form-control:focus {
    border-color: rgba(227, 164, 85, 0.91) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(227, 164, 85, 0.2) !important;
}

/* Ð¡ÑÑ‹Ð»ÐºÐ° Ð½Ð° Ñ‚Ð¾Ð²Ð°Ñ€ */
.item-title:hover {
    color: rgba(227, 164, 85, 0.91) !important;
}

/* Ð£Ð²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ðµ Ð¾Ð± Ð¾Ñ‚Ð¼ÐµÐ½Ðµ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ */
.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 ;
}

/* Gift banner */
.gift-banner {
    background: linear-gradient(145deg, #fef9e7, #fff3d6) !important;
    border: 2px solid rgba(227, 164, 85, 0.91) !important;
    border-radius: 16px !important;
    padding: 20px 24px !important;
    margin: 0 0 24px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    animation: fadeIn 0.5s ease !important;
}

.gift-name {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: rgba(227, 164, 85, 0.91) !important;
}

/* Store card */
.store-card:hover {
    border-color: rgba(227, 164, 85, 0.91) !important;
    background: white !important;
}

/* Modal close */
.modal-close:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: rgba(227, 164, 85, 0.91) !important;
}

/* Total row savings */
.total-row.savings {
    color: rgba(227, 164, 85, 0.91) !important;
}

/* Order total panel */
.order-row.final {
    font-size: 20px !important;
    font-weight: 700 !important;
    border-top: 2px solid rgba(227, 164, 85, 0.91) !important;
    margin-top: 10px !important;
    padding-top: 16px !important;
}

/* Ð¢ÐµÐºÑÑ‚Ð¾Ð²Ñ‹Ðµ ÑÑÑ‹Ð»ÐºÐ¸ Ð¸ Ð°ÐºÑ†ÐµÐ½Ñ‚Ñ‹ */
.required,
.pickup-title,
.bonus-title {
    color: rgba(227, 164, 85, 0.91) !important;
}

/* Ð§ÐµÐºÐ±Ð¾ÐºÑÑ‹ Ð¸ Ñ€Ð°Ð´Ð¸Ð¾ÐºÐ½Ð¾Ð¿ÐºÐ¸ (ÐµÑÐ»Ð¸ ÐµÑÑ‚ÑŒ) */
input[type="radio"]:checked,
input[type="checkbox"]:checked {
    accent-color: rgba(227, 164, 85, 0.91) !important;
}

/* ÐŸÐ°Ð³Ð¸Ð½Ð°Ñ†Ð¸Ñ ÐµÑÐ»Ð¸ ÐµÑÑ‚ÑŒ */
.pagination .active a {
    background: rgba(227, 164, 85, 0.91) !important;
    border-color: rgba(227, 164, 85, 0.91) !important;
}

/* ÐÐ½Ð¸Ð¼Ð°Ñ†Ð¸Ð¸ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Auth Banner Styles */
.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);
}

/* Responsive Ð´Ð»Ñ Auth Banner */
@media (max-width: 768px) {
    .auth-banner-text {
        left: 20px;
        max-width: 70%;
    }

    .auth-banner-title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .auth-banner-description {
        font-size: 12px;
    }

    .auth-banner-buttons {
        bottom: 15px;
        right: 20px;
        gap: 8px;
    }

    .auth-banner-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .auth-banner-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 20px;
        max-width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .auth-banner-buttons {
        position: relative;
        bottom: auto;
        right: auto;
        padding: 0 20px 20px;
        justify-content: center;
    }

    .auth-banner-image {
        display: none;
    }
}

/* ÐšÐ½Ð¾Ð¿ÐºÐ° Ð³ÐµÐ¾Ð»Ð¾ÐºÐ°Ñ†Ð¸Ð¸ Ð½Ð° ÐºÐ°Ñ€Ñ‚Ðµ */
.ymaps-2-1-79-gotoymaps,
.ymaps-2-1-79-gototech {
    display: none !important;
}

.sku-item.selected {
    background: rgba(227, 164, 85, 0.91) !important;
    border-color: rgba(227, 164, 85, 0.91) !important;
    color: white !important;
}

.sku-item.selected:hover {
    background: #c48a3a !important;
}

.sku-item:not(.disabled) {
    cursor: pointer;
}

.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;
    display: block;
}

/* ÐŸÑ€Ð¸Ð½ÑƒÐ´Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ðµ ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ð¹ */
.basket-item .item-image img {
    max-width: 100%;
    max-height: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð¼ÐµÐ½ÐµÐ½Ð½Ð¾Ð³Ð¾ Ð¿Ñ€Ð¾Ð¼Ð¾ÐºÐ¾Ð´Ð° */
.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);
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð² Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð¼Ð¾ÐºÐ¾Ð´Ð° */
@media (max-width: 768px) {
    .applied-promo-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .promo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .promo-code {
        font-size: 12px;
    }

    .promo-code strong {
        font-size: 13px;
        padding: 3px 8px;
    }

    .promo-discount {
        font-size: 11px;
        padding: 3px 10px;
    }

    .promo-section {
        flex-direction: column;
    }

    .promo-btn {
        padding: 12px;
    }
}

/* Ð¢ÐµÐ¼Ð½Ð°Ñ Ñ‚ÐµÐ¼Ð° (ÐµÑÐ»Ð¸ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ) */
@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;
    }
}

/* Ð£Ð±Ð¸Ñ€Ð°ÐµÐ¼ ÑÑ‚Ñ€ÐµÐ»ÐºÐ¸ Ñƒ input number */
.bonus-input::-webkit-outer-spin-button,
.bonus-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bonus-input[type=number] {
    -moz-appearance: textfield;
}



/* ===== Ð¡Ð¢Ð˜Ð›Ð˜ Ð”Ð›Ð¯ ÐœÐžÐ”ÐÐ›Ð¬ÐÐžÐ“Ðž ÐžÐšÐÐ Ð’Ð«Ð‘ÐžÐ Ð Ð”ÐžÐ¡Ð¢ÐÐ’ÐšÐ˜ ===== */

/* ÐœÐ¾Ð´Ð°Ð»ÑŒÐ½Ð¾Ðµ Ð¾ÐºÐ½Ð¾ */
#pickup-modal .modal-content {
    max-width: 1200px;
    width: 95%;
    height: 85vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
}

#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;
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð² */
@media (max-width: 768px) {
    .pickup-modal-layout {
        flex-direction: column;
    }

    .pickup-stores-sidebar {
        width: 100%;
        min-width: auto;
        height: 40%;
        border-right: none;
        border-bottom: 1px solid #ece8e2;
    }

    .pickup-map-wrapper {
        height: 60%;
    }
}


/* End */
/* /local/components/taurus/basket/templates/.default/style.css?178532173950864 */
