/* ── МОДАЛКА СВЕЖИЕ СЕРВИСЫ ─────────────────────── */
.ann-modal {
  position: fixed; inset: 0;
  background: var(--bg-secondary);
  z-index: 500;
  display: none; flex-direction: column;
}
.ann-modal.active {
  display: flex;
  animation: slideUp 0.3s cubic-bezier(.4,0,.2,1);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.ann-header {
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px; height: 58px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.ann-header-icon { font-size: 20px; }
.ann-title { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; flex: 1; }
.ann-close {
  width: 34px; height: 34px;
  border-radius: 50%; border: none;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s;
}
.ann-close:active { background: var(--border); }
.ann-close svg { width: 16px; height: 16px; stroke: var(--text-secondary); fill: none; stroke-width: 2.5; }

.ann-city {
  padding: 10px 14px; background: var(--bg);
  border-bottom: 1px solid var(--border-light); flex-shrink: 0;
}
.city-select {
  width: 100%; padding: 9px 36px 9px 13px;
  border: 1.5px solid var(--border); border-radius: var(--radius-xs);
  font-size: 14px; font-weight: 600; color: var(--text);
  background: var(--bg-secondary); outline: none; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 11px center;
  font-family: 'Manrope', sans-serif;
  transition: border-color 0.15s;
}
.city-select:focus { border-color: var(--primary); }

.ann-content { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 14px; }

.ann-loading {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 20px; gap: 14px;
}
.spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ann-loading p { font-size: 14px; color: var(--text-secondary); font-weight: 500; }

.ann-category { margin-bottom: 20px; }
.ann-cat-title {
  font-size: 15px; font-weight: 800; color: var(--text);
  letter-spacing: -0.3px; margin-bottom: 10px; padding-left: 2px;
}
.ann-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }

.ann-item {
  background: var(--bg);
  border-radius: var(--radius-xs);
  overflow: hidden; cursor: pointer;
  transition: transform 0.15s;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ann-item:active { transform: scale(0.94); }
.ann-item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--bg-secondary); }
.ann-date {
  position: absolute; top: 5px; right: 5px;
  background: rgba(59,108,244,0.9);
  color: white; padding: 3px 7px;
  border-radius: 6px; font-size: 9.5px; font-weight: 700;
  backdrop-filter: blur(4px);
}
.ann-item-name {
  font-size: 11.5px; font-weight: 600; color: var(--text);
  padding: 7px 8px 9px;
  text-align: center; line-height: 1.4;
  word-break: break-word;
}

.ann-add-card {
  background: var(--bg-secondary);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xs);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  aspect-ratio: 1; cursor: pointer;
  transition: all 0.15s; gap: 5px; padding: 8px;
}
.ann-add-card:active { border-color: var(--primary); background: var(--primary-light); transform: scale(0.95); }
.ann-add-card svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 2.5; }
.ann-add-card span { font-size: 9.5px; color: var(--text-secondary); text-align: center; line-height: 1.3; font-weight: 600; }

.ann-empty {
  display: flex; flex-direction: column; align-items: center;
  padding: 50px 20px; text-align: center; gap: 10px;
}
.ann-empty-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.ann-empty-icon svg { width: 30px; height: 30px; stroke: var(--text-light); fill: none; stroke-width: 1.5; }
.ann-empty h3 { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.ann-empty p  { font-size: 13.5px; color: var(--text-secondary); font-weight: 500; line-height: 1.6; }
.ann-add-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary); color: white;
  padding: 11px 22px; border-radius: var(--radius-xs);
  font-size: 14px; font-weight: 700; text-decoration: none;
  cursor: pointer; border: none; font-family: inherit;
  box-shadow: 0 2px 10px rgba(59,108,244,0.28);
  transition: opacity 0.15s, transform 0.1s;
}
.ann-add-btn:active { opacity: 0.85; transform: scale(0.97); }
.ann-add-btn svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; }
.ann-add-free { font-size: 11.5px; color: var(--text-light); font-weight: 500; }
