:root {
    --brand-blue-dark: #040D21;   
    --brand-blue-card: #0B1736;   
    --brand-blue-light: #132554;  
    
    --brand-gold: #D4AF37;        
    --brand-gold-light: #F3E5AB;
    --brand-gold-glow: rgba(212, 175, 55, 0.4);
    
    --text-main: #FFFFFF;
    --text-muted: #8892B0;
    
    --glass-bg: rgba(11, 23, 54, 0.6);
    --glass-border: rgba(212, 175, 55, 0.15);
    
    --font-ui: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #D4AF37 50%, #FBF5B7 75%, #AA771C 100%);
    
    --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --smooth: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body { background-color: var(--brand-blue-dark); color: var(--text-main); font-family: var(--font-ui); line-height: 1.5; overflow-x: hidden; overscroll-behavior-y: none; }

/* ВАУ-ЭФФЕКТ: Фоновое свечение и Золотая Пыльца */
.ambient-background { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.ambient-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; animation: floatGlow 20s infinite alternate ease-in-out; }
.glow-1 { width: 50vw; height: 50vw; background: rgba(212, 175, 55, 0.15); top: -10%; left: -10%; }
.glow-2 { width: 60vw; height: 60vw; background: rgba(19, 37, 84, 0.6); bottom: -20%; right: -10%; animation-delay: -5s; }
@keyframes floatGlow { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(50px, 100px) scale(1.2); } }

.gold-dust { position: absolute; background: radial-gradient(circle, #FFF 0%, #D4AF37 50%, transparent 100%); border-radius: 50%; opacity: 0; pointer-events: none; animation: floatUp linear infinite; box-shadow: 0 0 5px rgba(212, 175, 55, 0.8); }
@keyframes floatUp { 0% { transform: translateY(0) scale(0.5); opacity: 0; } 20% { opacity: 0.8; } 80% { opacity: 0.6; } 100% { transform: translateY(-100vh) scale(1.2); opacity: 0; } }

/* Glassmorphism */
.glass { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); }

/* ПРЕЛОАДЕР */
.loader-overlay { position: fixed; inset: 0; background: var(--brand-blue-dark); z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.6s var(--smooth), visibility 0.6s; }
.loader-overlay.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo-text { font-family: var(--font-display); font-size: 42px; font-weight: 800; margin-bottom: 20px; letter-spacing: 4px; }
.loader-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.1); overflow: hidden; margin: 0 auto; }
.loader-progress { height: 100%; width: 0%; background: var(--gold-gradient); animation: loadBar 1.2s cubic-bezier(0.85, 0, 0.15, 1) forwards; }
.loader-greeting { margin-top: 15px; font-size: 13px; font-weight: 500; color: var(--brand-gold); text-transform: uppercase; letter-spacing: 2px; }
@keyframes loadBar { 0% { width: 0%; } 100% { width: 100%; } }

.gold-text { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ВАУ-ЭФФЕКТ: Золотая рябь (Ripple) */
.ripple-target { position: relative; overflow: hidden; }
.ripple { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple-anim 0.6s linear; background: rgba(212, 175, 55, 0.4); pointer-events: none; z-index: 10; }
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* LAYOUT */
.app-layout { max-width: 1200px; margin: 0 auto; padding: 16px; display: flex; flex-direction: column; gap: 24px; transition: filter 0.4s ease, transform 0.4s ease; }
body.dialog-open .app-layout { filter: blur(8px) brightness(0.6); transform: scale(0.98); pointer-events: none; }

/* ШАПКА */
.top-bar { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-radius: 24px; }
.brand-identity { display: flex; align-items: center; gap: 12px; }
.back-btn { background: transparent; border: none; color: var(--text-main); display: flex; align-items: center; padding: 5px; cursor: pointer; transition: 0.3s; margin-right: 5px; }
.back-btn.hidden { display: none; }
.brand-titles h1 { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; font-weight: 800; }
.brand-titles p { font-size: 10px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

.lang-switcher { display: flex; gap: 4px; }
.lang-btn { background: transparent; border: 1px solid transparent; color: var(--text-muted); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; }
.lang-btn.active { background: rgba(212, 175, 55, 0.1); border-color: var(--brand-gold); color: var(--brand-gold); }

/* НАВИГАЦИЯ */
/* НАВИГАЦИЯ */
.nav-container { 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    margin: -16px -16px 16px -16px; 
    padding: 16px 16px 8px 16px; 
    background: linear-gradient(to bottom, var(--brand-blue-dark) 85%, transparent); 
}
.categories-nav { 
    display: flex; 
    gap: 10px; 
    overflow-x: auto; 
    padding: 10px; 
    border-radius: 20px; 
    scrollbar-width: none; 
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
}
.categories-nav::-webkit-scrollbar { 
    display: none; 
}
.nav-btn { 
    flex-shrink: 0; /* РЕШЕНИЕ ПРОБЛЕМЫ: Запрещаем кнопкам сжиматься */
    padding: 10px 18px; 
    border-radius: 14px; 
    background: transparent; 
    border: 1px solid transparent; 
    color: var(--text-muted); 
    font-size: 14px; 
    font-weight: 600; 
    white-space: nowrap; 
    transition: all 0.3s ease; 
    cursor: pointer; 
}
.nav-btn.active { 
    background: var(--brand-blue-light); 
    border-color: var(--glass-border); 
    color: var(--brand-gold-light); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
}
/* ЭКРАНЫ И СЕТКА */
.view-section { display: none; animation: fadeIn 0.4s var(--smooth); }
.view-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.section-title { font-family: var(--font-display); font-size: 26px; margin: 10px 0 20px; font-weight: 800; color: var(--text-main); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; grid-auto-flow: dense; perspective: 1000px; }

/* КАРТОЧКИ (BENTO) */
.bento-item { background: var(--brand-blue-card); border: 1px solid var(--glass-border); border-radius: 24px; position: relative; display: flex; flex-direction: column; overflow: hidden; min-height: 220px; cursor: pointer; transition: transform 0.1s linear, box-shadow 0.3s ease, border-color 0.3s ease; transform-style: preserve-3d; }
.bento-item:hover { border-color: var(--brand-gold); box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.15); z-index: 2; }
.bento-item:active { transform: scale(0.96) !important; }
.bento-glow { position: absolute; inset: 0; z-index: 3; background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.15) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; pointer-events: none; border-radius: inherit; }
.bento-item:hover .bento-glow { opacity: 1; }

.bento-bg { height: 130px; width: 100%; background-size: cover; background-position: center; flex-shrink: 0; opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease; }
.bento-item.img-loaded .bento-bg { opacity: 1; }
.bento-item:hover .bento-bg { transform: scale(1.08); }

.bento-content { padding: 14px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; z-index: 2; background: linear-gradient(to top, var(--brand-blue-card) 80%, transparent); transform: translateZ(20px); }
.bento-title { font-size: 15px; font-weight: 600; color: var(--text-main); margin-bottom: 6px; line-height: 1.3; }
.bento-price { font-size: 16px; font-weight: 800; }

.bento-item.wide { flex-direction: row; grid-column: span 2; min-height: 140px; }
.bento-item.wide .bento-bg { width: 45%; height: 100%; position: absolute; right: 0; top: 0; clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); }
.bento-item.wide .bento-content { width: 65%; justify-content: center; background: none; }

.skeleton { position: absolute; inset: 0; background: linear-gradient(90deg, var(--brand-blue-card) 25%, var(--brand-blue-light) 50%, var(--brand-blue-card) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite linear; z-index: 10; transition: opacity 0.5s; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.bento-item.img-loaded .skeleton { opacity: 0; pointer-events: none; }

.bento-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; z-index: 5; display: none; background: var(--gold-gradient); color: var(--brand-blue-dark); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }

/* МОДАЛЬНЫЕ ОКНА */
.detail-dialog { border: none; padding: 0; color: var(--text-main); opacity: 0; transition: transform 0.4s var(--spring), opacity 0.3s ease; }
.detail-dialog::backdrop { background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); opacity: 0; transition: opacity 0.4s ease; }
.detail-dialog[open]::backdrop { opacity: 1; }

.dialog-content { padding: 16px 24px 40px; position: relative; height: 100%; display: flex; flex-direction: column; touch-action: pan-y; }
.swipe-indicator { width: 40px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 4px; margin: 0 auto 20px; transition: 0.3s; }
.dialog-content:active .swipe-indicator { background: var(--brand-gold); width: 50px; }
.btn-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--text-main); z-index: 10; cursor: pointer; transition: 0.3s; }
.btn-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.detail-media { overflow: hidden; border-radius: 20px; margin-bottom: 24px; background: var(--brand-blue-light); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.detail-image { width: 100%; height: 280px; background-size: cover; background-position: center; }

.detail-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.detail-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; line-height: 1.1; }
.btn-clear-cart { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--text-muted); padding: 6px 12px; border-radius: 10px; font-size: 12px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-clear-cart:hover { border-color: #ff4d4d; color: #ff4d4d; background: rgba(255, 77, 77, 0.1); }
.detail-price { font-size: 24px; font-weight: 800; }
.detail-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; line-height: 1.6; }

/* ВАУ-ЭФФЕКТ: Идеальная пара */
.perfect-pair-container { margin-bottom: 24px; animation: fadeIn 0.6s var(--spring); }
.perfect-pair-container h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; opacity: 0.8; }
.perfect-pair-card { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); padding: 10px; border-radius: 16px; border: 1px solid var(--glass-border); cursor: pointer; transition: 0.3s; }
.perfect-pair-card:hover, .perfect-pair-card:active { border-color: var(--brand-gold); background: rgba(212, 175, 55, 0.1); transform: scale(0.98); }
.perfect-pair-img { width: 50px; height: 50px; border-radius: 10px; background-size: cover; background-position: center; }
.perfect-pair-info { display: flex; flex-direction: column; flex-grow: 1; }
.perfect-pair-title { font-size: 14px; font-weight: 600; color: var(--text-main); }
.perfect-pair-price { font-size: 14px; font-weight: 800; }
.perfect-pair-add { width: 32px; height: 32px; border-radius: 10px; background: rgba(212,175,55,0.1); display: flex; align-items: center; justify-content: center; }

/* Золотая кнопка */
.btn-primary { width: 100%; background: var(--gold-gradient); color: var(--brand-blue-dark); border: none; padding: 18px; border-radius: 16px; font-size: 16px; font-weight: 800; box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); transition: all 0.3s ease; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }
.btn-primary:active { transform: scale(0.96); box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2); }

/* КОРЗИНА (FAB) */
.cart-fab { position: fixed; bottom: 30px; right: 30px; z-index: 90; display: flex; align-items: center; gap: 12px; padding: 16px 24px; border-radius: 40px; background: var(--gold-gradient); color: var(--brand-blue-dark); border: none; box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); cursor: pointer; transition: all 0.4s var(--spring); }
.cart-fab.hidden { transform: translateY(100px) scale(0.5); opacity: 0; pointer-events: none; }
.cart-fab:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5); }
.cart-fab:active { transform: scale(0.95); }
.cart-fab-icon { position: relative; display: flex; align-items: center; }
.cart-badge { position: absolute; top: -12px; right: -16px; background: var(--brand-blue-dark); color: var(--brand-gold-light); font-size: 12px; font-weight: 800; min-width: 22px; height: 22px; border-radius: 11px; display: flex; align-items: center; justify-content: center; border: 2px solid #D4AF37; }
.cart-total-fab { font-weight: 800; font-size: 16px; }

/* ЭЛЕМЕНТЫ КОРЗИНЫ */
.cart-items-container { overflow-y: auto; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; flex-grow: 1; padding-right: 8px; }
.cart-item { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.03); padding: 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); }
.cart-item-info { display: flex; flex-direction: column; gap: 8px; }
.cart-item-title { font-size: 15px; font-weight: 600; color: var(--text-main); }
.cart-item-price { font-size: 16px; font-weight: 800; }
.cart-stepper { display: flex; align-items: center; gap: 12px; background: rgba(0,0,0,0.3); border-radius: 12px; padding: 4px 10px; width: fit-content; }
.btn-stepper { background: transparent; border: none; color: var(--brand-gold); font-size: 18px; font-weight: 800; cursor: pointer; width: 24px; height: 24px; }
.stepper-value { font-size: 14px; font-weight: 800; min-width: 16px; text-align: center; }
.cart-footer { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); mt-auto; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 16px; font-weight: 600; color: var(--text-muted); }

/* УМНАЯ ПОЛКА */
.smart-shelf-container { margin-bottom: 40px; }
.smart-shelf { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 15px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.smart-shelf::-webkit-scrollbar { display: none; }
.bento-item.shelf-card { min-width: 180px; width: 180px; flex-shrink: 0; scroll-snap-align: start; }

.app-footer { text-align: center; padding: 40px 0 60px; }
.footer-divider { width: 40px; height: 2px; background: var(--glass-border); margin: 0 auto 20px; }
.app-footer a { text-decoration: none; font-weight: 700; font-size: 18px; }
.app-footer p { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* АДАПТАЦИЯ (DESKTOP & TABLET) */
.detail-dialog { margin: auto 0 0 0; width: 100vw; max-width: 100%; max-height: 90vh; border-radius: 30px 30px 0 0; transform: translateY(100%); }
.detail-dialog[open] { transform: translateY(0); opacity: 1; }
.desktop-hidden { display: block; }

@media (min-width: 768px) {
    .menu-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
    .bento-item.wide { grid-column: span 2; }
    
    #itemDialog.detail-dialog { margin: auto; max-width: 850px; border-radius: 24px; max-height: 80vh; transform: scale(0.95); }
    #itemDialog[open] { transform: scale(1); opacity: 1; }
    .dialog-content { padding: 32px; }
    .dialog-body-split { display: flex; gap: 40px; align-items: center; height: 100%; }
    .detail-media { flex: 1; margin-bottom: 0; height: 100%; border-radius: 16px; }
    .detail-image { height: 100%; min-height: 350px; }
    .detail-info { flex: 1.2; display: flex; flex-direction: column; justify-content: center; }
    .swipe-indicator { display: none; }
    
    #cartDialog.detail-dialog { margin: 0 0 0 auto; width: 450px; max-width: 100%; height: 100vh; max-height: 100vh; border-radius: 30px 0 0 30px; transform: translateX(100%); }
    #cartDialog[open] { transform: translateX(0); }
    .desktop-hidden { display: none; }
}
@media (min-width: 1024px) {
    .menu-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   НОВЫЕ СТИЛИ: ПЛАВАЮЩАЯ ПАНЕЛЬ КОРЗИНЫ С АВАТАРКАМИ (CART BAR)
   ========================================================================== */
.cart-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: calc(100% - 32px);
    max-width: 460px;
    padding: 10px 14px 10px 18px;
    border-radius: 50px;
    background: rgba(11, 23, 54, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.2);
    transition: all 0.4s var(--spring);
    cursor: pointer;
}

.cart-bar.hidden {
    transform: translate(-50%, 100px) scale(0.8);
    opacity: 0;
    pointer-events: none;
}

.cart-bar:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.35);
}

.cart-bar-avatars {
    display: flex;
    align-items: center;
    margin-right: -4px;
}

.cart-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--brand-blue-dark);
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.cart-avatar-img:first-child {
    margin-left: 0;
}

.cart-bar-avatars:hover .cart-avatar-img {
    transform: translateX(-4px);
}

.cart-bar-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin-left: 8px;
}

.cart-bar-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cart-bar-total {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.cart-bar-btn {
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue-dark);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.cart-bar:hover .cart-bar-btn {
    transform: scale(1.08) rotate(5deg);
}

/* ==========================================================================
   НОВЫЕ СТИЛИ: ДЕТАЛИЗАЦИЯ И РАСЧЕТ В КОРЗИНЕ
   ========================================================================== */
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-summary-row span:last-child {
    font-weight: 600;
    color: var(--text-main);
}

/* ==========================================================================
   НОВЫЕ СТИЛИ: ПРЕМИАЛЬНЫЙ ФУТЕР
   ========================================================================== */
.glass-footer {
    background: rgba(11, 23, 54, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    padding: 36px 20px 50px;
    border-radius: 30px 30px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
}

.footer-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
}

.footer-phone {
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.footer-dot {
    color: var(--text-muted);
    opacity: 0.5;
}

.footer-hours {
    color: var(--text-muted);
    font-weight: 500;
}

.footer-copyright {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.7;
    margin-top: 8px;
}

/* ==========================================================================
   НОВЫЕ СТИЛИ: ТОСТ-УВЕДОМЛЕНИЯ
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(11, 23, 54, 0.95);
    border: 1px solid var(--brand-gold);
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success { border-color: var(--brand-gold); }
.toast.error { border-color: #ff5252; }

