/* === ОБЩИЕ СТИЛИ ДЛЯ ВСЕХ СТРАНИЦ === */
html, body { touch-action: pan-y pinch-zoom; overscroll-behavior-x: none; overflow-x: hidden; max-width: 100vw; position: relative; }
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Flash-сообщения */
.flash-messages { margin-bottom: 16px; }
.flash { padding: 12px; border-radius: 8px; margin-bottom: 10px; }
.flash.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash.danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Cookie-баннер */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid #e2e8f0; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); padding: 16px 24px; z-index: 9999; display: none; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: 14px; color: #475569; max-width: 600px; line-height: 1.5; }
.cookie-banner p a { color: #007bff; text-decoration: none; white-space: nowrap; }
.cookie-banner p a:hover { text-decoration: underline; }
.cookie-banner button { width: auto; padding: 10px 28px; background: #007bff; color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.cookie-banner button:hover { background: #0056b3; }
@media (max-width: 600px) { .cookie-banner { flex-direction: column; text-align: center; gap: 12px; padding: 16px; } }

/* Юридические ссылки в футере */
.legal-links { text-align: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid #eee; font-size: 13px; color: #aaa; line-height: 2; }
.legal-links a { color: #888; text-decoration: none; margin: 0 8px; white-space: nowrap; }
.legal-links a:hover { color: #007bff; text-decoration: underline; }

/* Юридический футер */
.legal-footer { text-align: center; margin-top: 32px; padding-top: 20px; border-top: 1px solid #e2e8f0; font-size: 13px; color: #94a3b8; line-height: 2.2; }
.legal-footer a { color: #94a3b8; text-decoration: none; margin: 0 10px; white-space: nowrap; }
.legal-footer a:hover { color: #3b82f6 !important; }

/* Анимации */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.hidden { display: none !important; }

/* Кнопки cookie-баннера */
.cookie-banner-buttons { display: flex; gap: 8px; }
.cookie-accept { background: #007bff; }
.cookie-reject { background: #6c757d; }

/* Утилитарные классы (замена inline style="...") */
.text-danger { color: #dc3545; }
.text-success { color: #28a745; }
.text-muted { color: #888; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.fw-600 { font-weight: 600; }
.mt-8 { margin-top: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.inline-flex { display: inline-flex; }
.flex-wrap-gap-12 { display: flex; flex-wrap: wrap; gap: 12px; }
.bg-warning-light { background: #fff3cd; }
.bg-danger-light { background: #f8d7da; }
.promo-stats-card { background: #f8f9fa; border-radius: 8px; padding: 12px 16px; min-width: 140px; }
