/* ==== БАЗА / ТЕМА ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: #e8f4ff;
  overflow-x: hidden;
  background-color: #0f0f0f; /* майже чорний фон без синього */
}

/* Глобальний акцентний колір для інпутів, чекбоксів, календарів тощо */
:root {
  accent-color: #ff8c00;
}

/* На всяк випадок явно для наших контролів */
input[type="date"],
input[type="checkbox"],
input[type="radio"],
select {
  accent-color: #ff8c00;
}

/* ==== СПІЛЬНИЙ КОНТЕЙНЕР ==== */
.container {
  width: 100vw;
  max-width: 100vw;
  margin: 20px 0 40px;
  padding: 0 0 40px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container--narrow {
  max-width: 400px;
  margin: 40px auto;
  padding: 0 16px 32px;
}

/* ==== ЗАГОЛОВКИ ==== */
h2 {
  text-align: center;
  font-size: 32px;
  color: #f9fafb;
  margin: 80px 0 38px 0;
  text-shadow: 0 0 12px rgba(255, 140, 0, 0.7); /* тепле світіння замість бірюзового */
}

/* ==== ТАБЛИЦІ (глобальні) ==== */
table {
  width: 98%;
  margin: 0 1%;
  border-collapse: collapse;
  border-radius: 16px;
  background: rgba(30, 30, 30, 0.9);
  text-align: center;
  color: #e8f4ff;
  box-shadow:
    0 0 18px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(255, 140, 0, 0.18); /* легке помаранчеве світіння */
  table-layout: fixed;
}

thead {
  position: sticky;
  top: 80px;       /* для звичайних таблиць – під топ-баром */
  z-index: 900;
}

thead th {
  background: linear-gradient(
    90deg,
    rgba(255, 140, 0, 0.96),
    rgba(255, 184, 92, 0.96)
  ); /* мʼякший градієнт без жорсткої лінії */
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 0 10px rgba(255, 140, 0, 0.5);
}

th,
td {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease;
}

/* Довгий текст у клітинках */
.wrap-any {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Клікабельні рядки таблиць */
tbody tr[data-href] {
  cursor: pointer;
}
tbody tr[data-href]:hover {
  background: rgba(255, 255, 255, 0.10);
}
tbody tr[data-href]:focus {
  outline: 2px solid rgb(221, 94, 15); /* помаранчевий фокус */
  outline-offset: -2px;
}

/* Посилання в таблицях */
table a {
  color: #e8f4ff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(232, 244, 255, 0.35);
}
table a:hover {
  border-bottom-color: rgba(232, 244, 255, 0.75);
}

/* ==== КНОПКИ (базові) ==== */
button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #ff8c00, #ffb347);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.9);
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-row,
.btn-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.btn-row a,
.btn-container a {
  text-decoration: none;
}

/* ==== ФОРМИ (глобальні) ==== */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

label {
  align-self: flex-start;
  font-weight: 500;
  color: #e5e7eb;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 16px;
  background: #151515;
  color: #f9fafb;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
input[type="text"]:focus,
input[type="password"]:focus {
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.7);
  border: 1px solid #ff8c00;
}

/* ==== ЛОГІН ==== */
.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.login-container {
  width: 99%;
  max-width: 400px;
}
.login-container.container {
  padding: 40px 32px;
}

/* ==== ТЕКСТ ==== */
p {
  color: #cde7ff;
  font-size: 16px;
}
.error {
  color: #ffb3b3;
  margin-top: -6px;
  margin-bottom: 10px;
}

/* ==== TOP BAR ==== */
.top-bar {
  position: fixed;
  top: 15px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 16px;

  background: linear-gradient(
    180deg,
    rgba(25, 25, 25, 0.96),
    rgba(10, 10, 10, 0.98)
  ); /* темно-сірий бар без синього */

  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(255, 140, 0, 0.22); /* легка помаранчева ореола */
}

/* Фолбек, якщо немає backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .top-bar {
    background: #141414;
  }
}

.top-left {
  display: flex;
  gap: 12px;
  align-items: center;
}
.top-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Кнопка-Головна */
.home-btn {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(90deg, #2e8b00, #45d800);
  box-shadow: 0 0 18px rgba(80, 255, 120, 0.55);
  transition: 0.25s ease;
}
.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(100, 255, 150, 0.9);
}

/* Кнопки в топ-барі */
.logout-btn,
.blue-btn {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  transition: 0.25s ease;
}

/* Вийти – більш червона, без рожевого */
.logout-btn {
  background: linear-gradient(90deg, #a80000, #ff2b2b);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.65);
}
.logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 0, 0, 0.95);
}

/* Інші сині кнопки (типу "Додати", якщо є) – помаранчеві */
.blue-btn {
  background: linear-gradient(90deg, #ff8c00, #ffb347);
  box-shadow: 0 0 18px rgba(255, 140, 0, 0.65);
}
.blue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 140, 0, 0.95);
}

/* Статистика – темно-помаранчева, трохи темніша за інші */
.stats-btn {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(90deg, #b35900, #7a3a00); /* темний помаранчевий */
  box-shadow: 0 0 18px rgba(255, 140, 0, 0.6);
  transition: 0.25s ease;
}
.stats-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 140, 0, 0.95);
}

/* ==== ФОРМИ GEO / ЧЕКБОКСИ ==== */
.geo-form {
  background: #171717;
  border-radius: 15px;
  padding: 15px;
  margin: 15px 0;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  text-align: center;
}

.geo-access-table .geo-user-cell {
  text-align: left;
  font-weight: 600;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* ==== АДАПТИВ ==== */
@media (max-width: 768px) {
  .container {
    width: 100%;
    margin: 40px 0;
    padding: 90px 0 30px;
  }
  table {
    font-size: 13px;
  }
  th,
  td {
    padding: 10px;
  }
  h2 {
    font-size: 24px;
  }
}

/* Надпис TOTAL */
.total-label {
  text-align: right;
  font-weight: 800;
  font-size: 22px;
  margin: 0 2vw 10px 0;
}

/* ==== ON/OFF тумблер для GEO доступів ==== */
.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 46px;
  height: 24px;
  border-radius: 999px;
  padding: 2px;
  cursor: pointer;
  background: linear-gradient(135deg, #1e1e1e, #101010);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 10px rgba(0,0,0,0.7);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.toggle-switch input {
  display: none;
}

.toggle-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 4px rgba(0,0,0,0.7);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c00, #ffb347);
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.9);
  transition: transform 0.2s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background: rgba(255, 140, 0, 0.25);
  box-shadow:
    0 0 0 1px rgba(255, 140, 0, 0.6),
    0 0 12px rgba(255, 140, 0, 0.7);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18),
    0 0 12px rgba(255, 140, 0, 0.6);
}

/* ==== СТИЛІ ДЛЯ СКРОЛБАРА ==== */

/* Firefox */
html {
  scrollbar-color: rgba(150,150,150,0.9) #050505;
  scrollbar-width: thin;
}

/* Chrome / Edge / Opera / Safari */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #050505;
}
body::-webkit-scrollbar-thumb {
  background: rgba(180,180,180,0.9);
  border-radius: 999px;
  border: 2px solid #050505;
}
body::-webkit-scrollbar-thumb:hover {
  background: #f0f0f0;
}

/* ========================================================= */
/*           ЛІД-ТАБЛИЦЯ / manager_data.html                 */
/* ========================================================= */

.table-scroll {
  max-height: 65vh;
  overflow-y: auto;
  overflow-x: auto;
}

/* компактна темна таблиця */
.editable-table {
  width: 98%;
  margin: 0 1%;
  border-collapse: collapse;
  font-size: 12px;
}

.editable-table th,
.editable-table td {
  padding: 6px 4px;
  font-size: 12px;
}

/* sticky-хедер всередині контейнера */
.editable-table thead {
  position: sticky;
  top: 0;
  z-index: 5;
}

/* темні інпути та селекти в таблиці */
.editable-table input,
.editable-table select {
  width: 100%;
  max-width: 110px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #151515;
  color: #e8f4ff;
  padding: 6px 8px;
  outline: none;
  font-size: 12px;
  text-align: center;
}

.editable-table input:focus,
.editable-table select:focus {
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.8);
  border-color: #ff8c00;
}

/* конкретні види */
.numeric-input,
.date-input,
.text-input,
.product-input {
  font-size: 12px;
}

/* клітинка з трекером */
.cell-track {
  position: relative;
}

/* кружечки-трекери */
.track-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  margin-left: 4px;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0,0,0,0.6);
}

.track-indicator.track-yes  { background: #16c784; }
.track-indicator.track-no   { background: #ffeb3b; }
.track-indicator.track-fuck { background: #ff5252; }

/* клітинка з коментарем */
.cell-comment {
  max-width: 230px;
}

/* кнопка-коментар */
.comment-btn {
  width: 100%;
  background: #151515;
  color: #e8f4ff;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 8px;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: none;
}

.comment-btn:hover {
  box-shadow: 0 0 8px rgba(255,140,0,0.6);
}

/* модалка підтвердження */
.confirm-modal.hidden {
  display: none;
}
.confirm-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.confirm-modal-content {
  background: #151515;
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 420px;
  width: 90%;
  color: #e8f4ff;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
}
.confirm-modal-text {
  max-height: 160px;
  overflow-y: auto;
  margin-bottom: 18px;
  white-space: pre-wrap;
}
.confirm-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.btn-decline,
.btn-confirm {
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.btn-decline {
  background: #ff5252;
  color: #fff;
}
.btn-confirm {
  background: #16c784;
  color: #fff;
}

/* === DATE INPUT: без іконки, клікабельне все поле === */
.editable-table .date-input {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.editable-table .date-input::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  color: transparent;
  opacity: 0;
  cursor: pointer;
}

/* Текст продукту */
.product-text {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: #151515;
  color: #e5e7eb;
  font-size: 14px;
}

/* textarea для коментарів */
.comment-textarea {
  width: 100%;
  min-height: 180px;
  padding: 12px 14px;

  background: #151515;
  color: #f9fafb;
  border: 1px solid #333333;
  border-radius: 12px;

  font-family: inherit;
  font-size: 14px;
  resize: vertical;

  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.comment-textarea::placeholder {
  color: #6b7280;
}

.comment-textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px #22c55e;
}

/* Картка форм (створення менеджера тощо) */
.form-card {
  max-width: 480px;
  margin-top: 24px;
  padding: 20px 24px;
  background: #151515;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}

.form-row {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  color: #e5e7eb;
  font-size: 14px;
}

.form-row input[type="text"],
.form-row input[type="password"] {
  background: #151515;
  border: 1px solid #333333;
  border-radius: 12px;
  color: #f9fafb;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 14px;
}

.form-row input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px #22c55e;
}

.geo-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #e5e7eb;
}

.geo-checkbox input {
  margin-right: 6px;
}

.form-actions {
  margin-top: 20px;
  text-align: right;
}

/* flash-повідомлення */
.flash-container {
  margin-top: 12px;
  margin-bottom: 12px;
}

.flash {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.flash-error {
  background: #991b1b;
  color: #fee2e2;
}

.flash-success {
  background: #14532d;
  color: #bbf7d0;
}

/* error-msg */
.error-msg {
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 10px;

  background: #7f1d1d;
  color: #fee2e2;
  font-size: 14px;
  text-align: center;
}

/* Загальний стиль для всіх селектів */
select,
.filter-select,
.product-input {
  background: #151515;
  color: #e5e7eb;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 6px 32px 6px 10px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* базовий вигляд пунктів у дропдауні */
select option {
  background-color: #151515;
  color: #e5e7eb;
}

/* прибираємо синій ховер/виділення – все робимо помаранчевим */
select option:hover,
select option:focus,
select option:active
select option:checked {
  background-color: #ff8c00 !important;
  color: #ffffff !important;
}

/* hover / focus для селектів */
select:focus,
.filter-select:focus,
.product-input:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 0 1px #ff8c00;
}

/* Темні інпути в стилі сайту (загальні) */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="number"],
.text-input,
.numeric-input,
.date-input {
  background: #151515;
  color: #e5e7eb;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 14px;
}

/* плейсхолдери – сірі */
input::placeholder {
  color: #6b7280;
}

/* фокус */
input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
.text-input:focus,
.numeric-input:focus,
.date-input:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 0 1px #ff8c00;
  background: #151515;
}

/* Повноекранне тіло для лендінгу */
.landing-body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ВЕСЬ екран – клікабельний лінк */
.landing-cover {
  display: block;
  width: 100%;
  min-height: 100vh;
  background-color: #0c0c0c;
  background-image: url("img/DeltaTraff.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: relative;
}

/* Текст поверх лендінгу (невидимий, тільки для клика) */
.landing-cover::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  pointer-events: none;
}





















/* ================================================================== */
/*     ❄❄❄  TIMESHIFT WINTER MODE – COPY–PASTE AND LATER REMOVE  ❄❄❄ */
/* ================================================================== */

/* ---------- 1. Сніг, що падає поверх усього сайту ------------------ */

/* Три шари снігу: фон (html), середній і передній план (body) */
html::before,
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -10vh 0 0 0;        /* трішки вище, щоб було куди падати */
  pointer-events: none;      /* НЕ блокує кліки по сайту */
  z-index: 9999;             /* поверх вмісту, але нижче системних діалогів */
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.25;
}

/* дрібні далекі сніжинки (повільні) */
html::before {
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.7) 50%, transparent 51%),
    radial-gradient(2px 2px at 70% 40%, rgba(255, 255, 255, 0.5) 50%, transparent 51%),
    radial-gradient(2px 2px at 40% 80%, rgba(255, 255, 255, 0.6) 50%, transparent 51%);
  animation: winter-snow-far 40s linear infinite;
}

/* середні сніжинки */
body::before {
  background-image:
    radial-gradient(3px 3px at 20% 0%, rgba(255, 255, 255, 0.85) 50%, transparent 52%),
    radial-gradient(3px 3px at 80% 30%, rgba(255, 255, 255, 0.8) 50%, transparent 52%),
    radial-gradient(3px 3px at 50% 70%, rgba(255, 255, 255, 0.75) 50%, transparent 52%);
  animation: winter-snow-mid 26s linear infinite;
}

/* великі ближні сніжинки */
body::after {
  background-image:
    radial-gradient(4px 4px at 30% -10%, rgba(255, 255, 255, 0.95) 55%, transparent 57%),
    radial-gradient(4px 4px at 60% 10%, rgba(255, 255, 255, 0.95) 55%, transparent 57%),
    radial-gradient(4px 4px at 90% -5%, rgba(255, 255, 255, 0.9) 55%, transparent 57%);
  animation: winter-snow-front 18s linear infinite;
}

/* Анімації руху снігу */
@keyframes winter-snow-far {
  0%   { transform: translateY(0); }
  100% { transform: translateY(100vh); }
}
@keyframes winter-snow-mid {
  0%   { transform: translateY(0); }
  100% { transform: translateY(105vh); }
}
@keyframes winter-snow-front {
  0%   { transform: translateY(0); }
  100% { transform: translateY(110vh); }
}

/* Щоб анімація виглядала безшовною при ресайзі */
html, body {
  background-attachment: fixed;
}

/* ---------- 2. "Засніжені" таблички з сніговиком і ялинкою ---------- */
/* Додай клас .winter-table до будь-якої <table>, яку хочеш прикрасити:
     <table class="editable-table winter-table"> ... </table>
*/

.winter-table {
  position: relative;
  overflow: visible;          /* дозволяємо снігу та декору вилізти нагору */
}

/* Снігова "шапка" зверху таблиці */
.winter-table::before {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: -18px;
  height: 26px;
  pointer-events: none;
  background:
    /* купки снігу зліва направо */
    radial-gradient(18px 12px at 10% 100%, #ffffff 55%, transparent 57%),
    radial-gradient(26px 16px at 30% 100%, #ffffff 55%, transparent 57%),
    radial-gradient(22px 14px at 50% 100%, #ffffff 55%, transparent 57%),
    radial-gradient(20px 13px at 70% 100%, #ffffff 55%, transparent 57%),
    radial-gradient(18px 12px at 90% 100%, #ffffff 55%, transparent 57%);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35));
  z-index: 5;
}

/* ---------- Кінець зимового блоку ---------------------------------- */
/* ================================================================== */
