/* =========================================================
   SEO.Web-Biz.pro — общий стиль
   ========================================================= */

:root {
  /* фон чуть более «тесно синий» */
  --wb-bg: #020617;
  --wb-bg-alt: #05081a;
  --wb-card-bg: #020617;
  --wb-card-bg-soft: rgba(15, 23, 42, 0.94);

  --wb-border-subtle: rgba(148, 163, 184, 0.25);
  --wb-border-strong: rgba(148, 163, 184, 0.55);

  --wb-text: #e5e7eb;
  --wb-text-strong: #f9fafb;
  --wb-text-muted: #9ca3af;
  --wb-text-softer: #6b7280;

  /* было оранжевым – делаем фиолетовый */
  --wb-accent: #a855f7;           /* основной фиолетовый */
  --wb-accent-soft: rgba(168, 85, 247, 0.18);
  --wb-accent-strong: #c084fc;    /* яркий фиолетовый */

  --wb-success: #16a34a;
  --wb-success-soft: rgba(22, 163, 74, 0.2);
  --wb-danger: #ef4444;
  --wb-danger-soft: rgba(239, 68, 68, 0.2);
  --wb-warning: #f59e0b;
  --wb-warning-soft: rgba(245, 158, 11, 0.2);

  --wb-radius-lg: 16px;
  --wb-radius-md: 10px;
  --wb-radius-pill: 999px;

  --wb-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
  --wb-shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.4);

  --wb-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;

  --wb-transition-fast: 150ms ease-out;
}

/* ---------- базовый фон / текст ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--wb-font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--wb-text);
  background:
    radial-gradient(circle at top left, #1f2937 0, transparent 50%),
    radial-gradient(circle at bottom right, #111827 0, transparent 55%),
    var(--wb-bg);
}

/* скролл */

::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.8);
}
::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.6);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(209, 213, 219, 0.9);
}

/* ---------- контейнер ---------- */

.wb-main {
  padding: 24px 16px 40px;
}

.wb-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- шапка / меню ---------- */

.wb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 55%),
    radial-gradient(circle at bottom right, rgba(248, 113, 113, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.wb-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
}

/* логотип */

.wb-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.wb-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background:
    conic-gradient(from 210deg, #ff6b00, #f97316, #facc15, #f97316, #ff6b00);
  box-shadow: 0 0 18px rgba(248, 113, 113, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1020;
  font-weight: 700;
  font-size: 17px;
}

.wb-logo-text {
  display: flex;
  flex-direction: column;
}

.wb-logo-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--wb-text-strong);
}

.wb-logo-subtitle {
  font-size: 11px;
  color: var(--wb-text-muted);
}

/* меню — работаем с любым <nav> внутри шапки */

.wb-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.wb-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

/* если в layout.php меню не в ul, а просто ссылки в nav —
   стилизуем их тем же стилем */

.wb-header-inner nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.wb-header-inner nav a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--wb-radius-pill);
  font-size: 13px;
  color: var(--wb-text-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--wb-transition-fast),
    color var(--wb-transition-fast),
    border-color var(--wb-transition-fast),
    transform var(--wb-transition-fast),
    box-shadow var(--wb-transition-fast);
}

.wb-header-inner nav a:hover {
  background: rgba(15, 23, 42, 0.98);
  color: var(--wb-text-strong);
  border-color: rgba(148, 163, 184, 0.6);
  transform: translateY(-1px);
}

.wb-header-inner nav a.wb-nav-active {
  background: var(--wb-accent-soft);
  border-color: rgba(248, 250, 251, 0.16);
  color: var(--wb-text-strong);
  box-shadow: 0 0 0 1px rgba(248, 250, 251, 0.04),
    0 0 18px rgba(248, 113, 113, 0.55);
}

/* правый блок в шапке */

.wb-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wb-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 12px;
}

.wb-user-name {
  font-weight: 500;
  color: var(--wb-text-strong);
}

.wb-user-tokens {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(24, 37, 53, 0.9);
  color: var(--wb-accent-strong);
  font-weight: 600;
  font-size: 11px;
}

.wb-header-auth-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.wb-header-auth-links a {
  color: var(--wb-text-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 999px;
  transition: background var(--wb-transition-fast), color var(--wb-transition-fast);
}

.wb-header-auth-links a:hover {
  background: rgba(15, 23, 42, 0.9);
  color: var(--wb-text-strong);
}

/* ---------- кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--wb-radius-pill);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: var(--wb-text);
  transition: background var(--wb-transition-fast), color var(--wb-transition-fast),
    border-color var(--wb-transition-fast), box-shadow var(--wb-transition-fast),
    transform var(--wb-transition-fast);
}

.btn--primary {
  background: linear-gradient(135deg, var(--wb-accent), var(--wb-accent-strong));
  border-color: rgba(248, 250, 252, 0.08);
  color: #0b1020;
  box-shadow: 0 0 18px rgba(248, 113, 113, 0.65);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.btn--ghost {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: var(--wb-text);
}

.btn--ghost:hover {
  border-color: rgba(249, 250, 251, 0.7);
  background: rgba(15, 23, 42, 1);
}

.btn--small {
  padding: 4px 10px;
  font-size: 11px;
}

/* по умолчанию submit-кнопки никогда не растягиваем на 100%,
   чтобы SEO-кнопка не была «оранжевой полосой» */

.wb-card button[type="submit"],
.wb-card .btn[type="submit"] {
  width: auto;
  max-width: 260px;
}

/* ---------- hero-блок ---------- */

.wb-hero {
  margin-bottom: 24px;
  padding: 18px 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(239, 68, 68, 0.15), transparent 55%),
    radial-gradient(circle at center, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--wb-shadow-soft);
}

.wb-hero-title {
  margin: 0 0 4px;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--wb-text-strong);
}

.wb-hero-subtitle {
  margin: 0;
  font-size: 13px;
  color: var(--wb-text-muted);
}

/* ---------- карточки / отступы ---------- */

.wb-card {
  background: var(--wb-card-bg-soft);
  border-radius: var(--wb-radius-lg);
  border: 1px solid var(--wb-border-subtle);
  padding: 18px 18px 16px;
  box-shadow: var(--wb-shadow-subtle);
  margin-bottom: 20px;
}

/* общая колонка в админке: настройки, пользователи, история — друг под другом */

.wb-admin-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}

/* заголовки секций */

.wb-section-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--wb-text-strong);
}

.wb-section-subtitle {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--wb-text-muted);
}

/* header внутри карточки (заголовок + «назад» и т.п.) */

.wb-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.wb-link-back {
  font-size: 12px;
  color: var(--wb-text-muted);
  text-decoration: none;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  transition: background var(--wb-transition-fast), color var(--wb-transition-fast),
    border-color var(--wb-transition-fast);
}

.wb-link-back:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(249, 250, 251, 0.85);
  color: var(--wb-text-strong);
}

/* читаемость текста внутри карточек (в т.ч. личный кабинет) */

.wb-card p {
  margin: 2px 0 4px;
  font-size: 13px;
}

.wb-card p + p {
  margin-top: 4px;
}

/* ---------- формы ---------- */

.wb-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wb-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wb-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--wb-text-muted);
}

.wb-input,
.wb-select,
.wb-textarea {
  width: 100%;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.95);
  color: var(--wb-text);
  font-size: 13px;
  outline: none;
  transition: border-color var(--wb-transition-fast),
    box-shadow var(--wb-transition-fast), background var(--wb-transition-fast);
}

.wb-input:focus,
.wb-select:focus,
.wb-textarea:focus {
  border-color: var(--wb-accent-strong);
  box-shadow: 0 0 0 1px rgba(248, 250, 251, 0.2);
  background: rgba(15, 23, 42, 1);
}

.wb-textarea {
  resize: vertical;
  min-height: 80px;
}

.wb-form-hint {
  margin: 0;
  font-size: 11px;
  color: var(--wb-text-softer);
}

.wb-form-hint--error {
  color: var(--wb-danger);
}

.wb-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

/* inline формы (выдача токенов) */

.wb-form-inline {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wb-input--inline {
  max-width: 90px;
  padding-inline: 8px;
}

.wb-input--comment {
  max-width: 150px;
}

/* ---------- алерты ---------- */

.wb-alert {
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid;
  font-size: 12px;
}

.wb-alert--success {
  border-color: rgba(22, 163, 74, 0.7);
  background: var(--wb-success-soft);
  color: #bbf7d0;
}

.wb-alert--error {
  border-color: rgba(239, 68, 68, 0.7);
  background: var(--wb-danger-soft);
  color: #fecaca;
}

/* ---------- таблицы ---------- */

.wb-table-wrapper {
  width: 100%;
  margin-top: 6px;
}

.wb-table-wrapper--scroll {
  overflow-x: auto;
  padding-bottom: 4px;
}

.wb-table {
  width: 100%;
  min-width: max(100%, 640px);
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 12px;
}

.wb-table th,
.wb-table td {
  padding: 7px 8px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
  text-align: left;
  white-space: nowrap;
}

.wb-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(15, 23, 42, 0.98);
  font-weight: 500;
  color: var(--wb-text-muted);
  border-bottom-color: rgba(55, 65, 81, 0.9);
}

.wb-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.75);
}

.wb-table tbody tr:hover {
  background: rgba(15, 23, 42, 0.98);
}

/* ---------- бейджи / статусы ---------- */

.wb-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}

.wb-badge--admin {
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
}

.wb-badge--user {
  background: rgba(148, 163, 184, 0.26);
  color: #e5e7eb;
}

/* HTTP-статусы (битые ссылки и т.п.) */

.wb-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.wb-status--ok {
  background: var(--wb-success-soft);
  color: #bbf7d0;
}

.wb-status--error {
  background: var(--wb-danger-soft);
  color: #fecaca;
}

.wb-status--redirect {
  background: var(--wb-warning-soft);
  color: #fed7aa;
}

.wb-status--empty {
  background: rgba(30, 64, 175, 0.35);
  color: #bfdbfe;
}

/* ---------- карточка пользователя в админке ---------- */

.wb-user-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.98)
    );
  padding: 12px 14px;
}

.wb-user-card__info p {
  margin: 2px 0;
  font-size: 12px;
}

.wb-user-card__info strong {
  color: var(--wb-text-muted);
}

.wb-user-card__actions {
  margin-left: auto;
}

/* ---------- прогресс / сервисы ---------- */

.wb-progress {
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.9);
  overflow: hidden;
  height: 8px;
}

.wb-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--wb-accent), var(--wb-accent-strong));
  transition: width 0.2s ease-out;
}

.wb-progress-meta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--wb-text-softer);
}

/* ---------- цены (pricing) ---------- */

.wb-pricing {
  gap: 20px;
}

@media (max-width: 960px) {
  .wb-pricing {
    grid-template-columns: minmax(0, 1fr);
  }
}

.wb-pricing-intro {
  padding: 16px 16px 14px;
  border-radius: var(--wb-radius-lg);
  border: 1px solid var(--wb-border-subtle);
  background: radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.24),
      transparent 55%
    ),
    var(--wb-card-bg-soft);
  box-shadow: var(--wb-shadow-subtle);
}

.wb-pricing-intro h2 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--wb-text-strong);
}

.wb-pricing-intro p {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--wb-text-muted);
}

.wb-pricing-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 12px;
  color: var(--wb-text-softer);
}

.wb-pricing-list li {
  padding-left: 12px;
  position: relative;
  margin-bottom: 4px;
}

.wb-pricing-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--wb-accent);
}

.wb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 4px;
}

@media (max-width: 960px) {
  .wb-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .wb-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.wb-pricing-card {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.98),
    rgba(30, 64, 175, 0.65)
  );
  padding: 12px 12px 10px;
  box-shadow: var(--wb-shadow-subtle);
}

.wb-pricing-card--highlight {
  border-color: rgba(248, 250, 251, 0.7);
  box-shadow: 0 0 0 1px rgba(248, 250, 251, 0.18),
    0 18px 40px rgba(15, 23, 42, 0.95);
}

.wb-pricing-card__name {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wb-text-strong);
}

.wb-pricing-card__tokens {
  font-size: 22px;
  font-weight: 700;
  color: var(--wb-accent-strong);
}

.wb-pricing-card__price {
  font-size: 12px;
  color: var(--wb-text-muted);
  margin-bottom: 6px;
}

.wb-pricing-card__meta {
  font-size: 11px;
  color: var(--wb-text-softer);
  margin-bottom: 8px;
}

.wb-pricing-card__actions {
  display: flex;
  justify-content: flex-start;
}

/* ---------- ссылки / футер ---------- */

a {
  color: var(--wb-accent-strong);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wb-footer {
  padding: 12px 16px 20px;
  border-top: 1px solid rgba(31, 41, 55, 0.8);
  font-size: 11px;
  color: var(--wb-text-softer);
  background: rgba(15, 23, 42, 0.96);
}
/* ==== Личный кабинет ==== */

.wb-card--account {
  margin-bottom: 24px;
}

.wb-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .wb-account-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.wb-account-section + .wb-account-section {
  border-left: 1px solid rgba(31, 41, 55, 0.8);
  padding-left: 18px;
}

@media (max-width: 900px) {
  .wb-account-section + .wb-account-section {
    border-left: none;
    border-top: 1px solid rgba(31, 41, 55, 0.8);
    padding-left: 0;
    padding-top: 12px;
    margin-top: 8px;
  }
}

/* key–value список */

.wb-kv {
  margin: 10px 0 0;
}

.wb-kv-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
  font-size: 13px;
}

.wb-kv-label {
  color: var(--wb-text-muted);
}

.wb-kv-value {
  font-weight: 500;
  text-align: right;
}

/* блок баланса */

.wb-account-balance {
  margin-top: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.wb-account-balance-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.wb-account-balance-main strong {
  color: var(--wb-accent-strong);
  font-size: 18px;
}

.wb-account-balance-note {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--wb-text-softer);
}

.wb-account-actions {
  margin-top: 8px;
}

/* чуть компактнее правила токенов справа */

.wb-account-rules {
  margin-top: 4px;
}
.wb-account-rules li {
  margin-bottom: 3px;
}
/* ==== Светлая тема (body[data-theme="light"]) ==== */

body[data-theme="light"] {
  background: #f3f4f6;
  color: #111827;
}

body[data-theme="light"] .wb-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(209, 213, 219, 0.9);
}

body[data-theme="light"] .wb-logo-title {
  color: #111827;
}
body[data-theme="light"] .wb-logo-subtitle {
  color: #6b7280;
}

body[data-theme="light"] .wb-card,
body[data-theme="light"] .wb-hero {
  background: #ffffff;
  border-color: rgba(209, 213, 219, 0.95);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

body[data-theme="light"] .wb-section-title {
  color: #111827;
}
body[data-theme="light"] .wb-section-subtitle {
  color: #6b7280;
}

body[data-theme="light"] .wb-input,
body[data-theme="light"] .wb-select,
body[data-theme="light"] .wb-textarea {
  background: #f9fafb;
  border-color: rgba(209, 213, 219, 0.95);
  color: #111827;
}

body[data-theme="light"] .wb-table thead th {
  background: #f9fafb;
  color: #6b7280;
}
body[data-theme="light"] .wb-table tbody tr:nth-child(even) {
  background: #f3f4f6;
}
body[data-theme="light"] .wb-table tbody tr:hover {
  background: #e5e7eb;
}

body[data-theme="light"] .wb-footer {
  background: #f9fafb;
  border-top-color: rgba(209, 213, 219, 0.9);
  color: #6b7280;
}
/* базовая ссылка в меню (у тебя class="nav-link ...") */
.wb-header-inner nav .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--wb-radius-pill);
  font-size: 13px;
  color: var(--wb-text-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--wb-transition-fast),
    color var(--wb-transition-fast),
    border-color var(--wb-transition-fast),
    transform var(--wb-transition-fast),
    box-shadow var(--wb-transition-fast);
}

.wb-header-inner nav .nav-link:hover {
  background: rgba(15, 23, 42, 0.98);
  color: var(--wb-text-strong);
  border-color: rgba(148, 163, 184, 0.6);
  transform: translateY(-1px);
}

/* активная вкладка меню */
.wb-header-inner nav .nav-link--active,
.wb-header-inner nav .btn.nav-link--active {
  background: var(--wb-accent-soft);
  border-color: rgba(248, 250, 251, 0.16);
  color: var(--wb-text-strong);
  box-shadow: 0 0 0 1px rgba(248, 250, 251, 0.06),
    0 0 18px rgba(168, 85, 247, 0.7);
}
/* Таблицы с горизонтальной прокруткой */
.wb-table-wrapper {
  width: 100%;
}

.wb-table-wrapper--scroll {
  overflow-x: auto;
  overflow-y: hidden;
}

/* Чтобы таблица не ломала вёрстку, а уходила в скролл */
.wb-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 900px; /* можно подправить ширину по вкусу */
}
/* Кнопка переключения темы в хедере */
.wb-theme-toggle {
  margin-left: 12px;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.wb-theme-toggle:hover {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.wb-theme-toggle:active {
  transform: translateY(0);
}

/* Иконки темы через псевдоэлемент — без текста */
.wb-theme-toggle::before {
  content: "🌙";
  font-size: 16px;
  line-height: 1;
}

body[data-theme="light"] .wb-theme-toggle::before {
  content: "☀";
}
/* ---------- Хедер и навигация ---------- */

.wb-header {
  background: linear-gradient(90deg, #151826, #262038);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.wb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.wb-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.wb-header-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wb-header-auth-user,
.wb-header-auth-guest {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wb-user-summary--guest .wb-user-name {
  opacity: 0.85;
}

/* ---------- Кнопка переключения темы ---------- */

.wb-theme-toggle {
  margin-left: 4px;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.wb-theme-toggle::before {
  content: "🌙";
  font-size: 15px;
}

body[data-theme="light"] .wb-theme-toggle::before {
  content: "☀";
}

.wb-theme-toggle:hover {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.26), transparent);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.wb-theme-toggle:active {
  transform: translateY(0);
}

/* ---------- Таблицы с горизонтальной прокруткой ---------- */

.wb-table-wrapper {
  width: 100%;
}

.wb-table-wrapper--scroll {
  overflow-x: auto;
}

.wb-card .wb-table {
  min-width: 900px; /* чтобы таблица уходила в скролл, а не растягивала страницу */
}

/* ---------- Заголовок карточки с действиями ---------- */

.wb-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.wb-card-header .wb-section-title {
  margin-bottom: 0;
}

.wb-card-actions {
  flex-shrink: 0;
}
.wb-maintenance-banner {
    background: rgba(255, 193, 7, 0.1);
    border-bottom: 1px solid rgba(255, 193, 7, 0.5);
    color: #ffe082;
    padding: 8px 0;
    font-size: 13px;
}

.wb-maintenance-banner .wb-container {
    text-align: center;
}
/* --- Вкладки админки --- */

.wb-admin-tabs {
  display: flex;
  gap: 10px;
  margin: 24px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.wb-admin-tabs__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #f5f5f7;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.15s ease-out,
    border-color 0.15s ease-out,
    color 0.15s ease-out,
    box-shadow 0.15s ease-out,
    transform 0.08s ease-out;
}

.wb-admin-tabs__btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.wb-admin-tabs__btn:active {
  transform: translateY(1px);
}

.wb-admin-tabs__btn.is-active {
  background: var(--wb-accent-soft);
    border-color: rgba(248, 250, 251, 0.16);
    color: var(--wb-text-strong);
    box-shadow: 0 0 0 1px rgba(248, 250, 251, 0.06), 0 0 18px rgba(168, 85, 247, 0.7);
}

/* --- Карточки статистики --- */

.wb-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.wb-stats-card {
  flex: 1 1 260px;
  padding: 18px 20px 16px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0,
              rgba(255, 255, 255, 0.06),
              rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.wb-stats-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.wb-stats-value {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px;
  font-variant-numeric: tabular-nums;
}

.wb-stats-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 6px;
}

.wb-stats-secondary {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Чуть уменьшим отступы в больших карточках статистики, чтобы не было дыр */
.wb-admin-card--full .wb-section-subtitle + .wb-stats-grid {
  margin-top: 12px;
}

.wb-admin-tab:hover {
  background: #e5e7eb;
  color: #111827;
}

.wb-admin-tab--active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

/* Чтобы на узких экранах вкладки не ломались ужасно */
@media (max-width: 640px) {
  .wb-admin-tabs {
    gap: 6px;
  }
  .wb-admin-tab {
    font-size: 13px;
    padding: 7px 12px;
  }
}



/* ------ Админка: гриды для карточек ------ */

.wb-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Внутренние карточки в статистике / пользователях */
.wb-admin-card {
  /* если у тебя уже есть стили .wb-card, этого может быть достаточно */
}

/* ------ Таблица: длинные URL в статистике ------ */

.wb-table-url {
  white-space: normal;
  word-break: break-all;
  font-size: 12px;
  line-height: 1.4;
}

/* Можно чуть подсветить статусы в очереди (если захочешь добавить классы позже) */
/*
.wb-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.4;
}
.wb-status-badge--queued { background:#fef3c7; color:#92400e; }
.wb-status-badge--running { background:#d1fae5; color:#065f46; }
.wb-status-badge--done { background:#e5e7eb; color:#374151; }
.wb-status-badge--error { background:#fee2e2; color:#991b1b; }
*/
.wb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.wb-tariff-card {
  position: relative;
  border-radius: 16px;
  padding: 20px 20px 24px;
  background: #10131a;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wb-tariff-card--popular {
  border-color: #ff8a3c;
  box-shadow: 0 16px 45px rgba(255,138,60,0.25);
}

.wb-tariff-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffebd9;
}

.wb-tariff-name {
  font-size: 18px;
  margin: 0 0 4px;
}

.wb-tariff-tokens {
  font-size: 16px;
  color: #e0e7ff;
  margin: 0;
}

.wb-tariff-price {
  font-size: 22px;
  font-weight: 600;
  margin: 4px 0 8px;
}

.wb-tariff-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
  opacity: 0.9;
}

.wb-tariff-features li {
  margin-bottom: 4px;
}

.btn--full {
  width: 100%;
}
/* в style-biz.css */
#brokenDownloadCsvBtn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

/* необязательно, но можно чуть подсветить активную */
#brokenDownloadCsvBtn:not([disabled]) {
  /* сделай стили примерно как у активного пункта меню */
  /* например: */
  border-color: var(--wb-accent);
  color: var(--wb-text-strong);
  background: var(--wb-accent-soft);
}
/* Серая, неактивная */
.btn--ghost-disabled {
   opacity: 0.4;
  cursor: not-allowed;
}

/* Подсвеченная активная CSV-кнопка */
.btn--ghost-ready {
    border-color: var(--wb-accent);
  color: var(--wb-text-strong);
  background: var(--wb-accent-soft);
}
.wb-card-results .wb-results-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.wb-results-controls-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wb-results-controls-group .wb-input--small {
  max-width: 180px;
}
/* Кнопка "Остановить сканирование" в стиле переключателя темы */
.wb-broken-stop-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.3;
  color: #ffffff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease,
    opacity 0.2s ease;
}

/* hover / active */
.wb-broken-stop-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.26),
    transparent
  );
  transform: translateY(-1px);
}

.wb-broken-stop-btn:active {
  transform: translateY(0);
  border-color: rgba(255, 255, 255, 0.45);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.16),
    transparent
  );
}

/* когда скрыта/disabled через JS – делаем полупрозрачной на всякий случай */
.wb-broken-stop-btn[disabled] {
  opacity: 0.5;
  cursor: default;
  transform: none;
}
/* Сетка внутри блока настроек */
.wb-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 16px;
  margin-bottom: 12px;
}

.wb-settings-grid--wide {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 900px) {
  .wb-settings-grid {
    grid-template-columns: 1fr;
  }
}

/* Внутренние «карточки» секций настроек */
.wb-settings-col {
  border-radius: var(--wb-radius-md);
  border: 1px solid var(--wb-border-subtle);
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.16), transparent 55%),
    var(--wb-card-bg-soft);
  padding: 14px 14px 10px;
}

/* Подзаголовок внутри колонки */
.wb-field-subtitle {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wb-text-muted);
}

/* Группа полей (чуть компактнее) */
.wb-field-group {
  margin-bottom: 8px;
}

/* Общие хинты под полями */
.wb-hint {
  margin-top: 3px;
  font-size: 11px;
  color: var(--wb-text-softer);
}

/* Памятки (нагрузка, экономика, приоритеты) */
.wb-hint--note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background:
    radial-gradient(circle at 0 0, rgba(168, 85, 247, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.96);
  font-size: 12px;
  color: var(--wb-text);
}

.wb-hint--note.wb-hint--load {
  /* отдельный класс оставляем для семантики, при желании можно переопределить */
}

/* Список внутри памятки */
.wb-hint-list {
  margin: 4px 0 0;
  padding-left: 18px;
}

.wb-hint-list li {
  margin-bottom: 3px;
}

/* Светлая тема: делаем карточки и памятки «бумажными» */
body[data-theme="light"] .wb-settings-col {
  background: #ffffff;
  border-color: rgba(209, 213, 219, 0.9);
}

body[data-theme="light"] .wb-field-subtitle {
  color: #374151;
}

body[data-theme="light"] .wb-hint {
  color: #6b7280;
}

body[data-theme="light"] .wb-hint--note {
  background: #eef2ff;
  border-color: rgba(129, 140, 248, 0.7);
  color: #111827;
}
/* === Web-Biz + SEO.Web-Biz общие секции === */

.wb-hero {
    padding: 80px 0 64px;
    background: radial-gradient(circle at top, #1b2744 0, #050814 65%);
    color: #fff;
}

.wb-hero--compact {
    padding: 72px 0 40px;
}

.wb-hero-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.wb-hero-inner--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 840px;
}

.wb-hero-inner--center .wb-hero-subtitle {
    max-width: 640px;
}

.wb-hero-content {
    max-width: 640px;
}

.wb-hero-aside {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wb-hero-title {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 700;
}

.wb-hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}

.wb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wb-hero-stat {
    background: rgba(5, 8, 20, 0.9);
    border-left: 3px solid #5ce1e6;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.9rem;
}

.wb-hero-stat-label {
    display: block;
    opacity: 0.7;
    margin-bottom: 4px;
}

.wb-hero-stat-value {
    font-weight: 600;
}

/* Основные секции */

.wb-home-section {
    padding: 64px 0;
    background: #060915;
    color: #e3e6f0;
}

.wb-home-section--dark {
    background: #050814;
}

.wb-home-section--alt {
    background: #0b1020;
}

.wb-home-section--text {
    background: #060915;
}

.wb-home-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.wb-home-lead {
    max-width: 720px;
    margin-bottom: 28px;
    opacity: 0.9;
}

.wb-home-text {
    margin-bottom: 14px;
    line-height: 1.7;
}

/* Сетка карточек */

.wb-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.wb-card-home {
    background: rgba(9, 14, 30, 0.96);
    border-radius: 12px;
    padding: 20px 20px 18px;
    border-left: 3px solid #5ce1e6;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    color: inherit;
    text-decoration: none;
    display: block;
}

.wb-card-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(92, 225, 230, 0.4);
    border-color: rgba(92, 225, 230, 0.9);
}

.wb-card-home-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.wb-card-home-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 6px;
}

.wb-card-home-link {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Две колонки */

.wb-home-two-cols {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
    margin-top: 16px;
}

/* Листы и прайс */

.wb-home-subtitle {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.wb-home-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.wb-home-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.wb-home-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5ce1e6;
}

.wb-home-cta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wb-pricing-simple {
    display: grid;
    gap: 16px;
}

.wb-pricing-item {
    background: rgba(9, 14, 30, 0.96);
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(92, 225, 230, 0.2);
}

.wb-pricing-price {
    margin-top: 8px;
    font-weight: 600;
}

.wb-pricing-note {
    margin-top: 8px;
    opacity: 0.85;
}

/* Контакты */

.wb-contacts-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.wb-link-accent {
    color: #5ce1e6;
    text-decoration: underline;
}

/* Адаптив */

@media (max-width: 900px) {
    .wb-hero-inner {
        flex-direction: column;
    }

    .wb-hero-aside {
        max-width: none;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .wb-hero {
        padding: 64px 0 40px;
    }

    .wb-hero-title {
        font-size: 1.9rem;
    }

    .wb-home-two-cols,
    .wb-contacts-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Навигация + дроп "Сервисы" --- */

.wb-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

/* Контейнер дропа */
.wb-nav-dropdown {
    position: relative;
}

/* Невидимая зона между кнопкой и меню,
   чтобы hover не терялся при движении мыши */
.wb-nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;              /* можно 10–16 по ощущениям */
    /* фона не задаём — прозрачный, но кликаемый */
}

/* Кнопка "Сервисы" */
.wb-nav-dropdown-toggle {
    border: none;
    background: none;
    padding: 6px 14px;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
}

/* Маленькая стрелка */
.wb-nav-dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.15s ease;
}

/* Подсветка активного дропа */
.wb-nav-dropdown--active .wb-nav-dropdown-toggle,
.wb-nav-dropdown:hover .wb-nav-dropdown-toggle {
    background: radial-gradient(circle at 0 0, rgba(92, 225, 230, 0.25), transparent 55%);
    color: #ffffff;
}

.wb-nav-dropdown:hover .wb-nav-dropdown-arrow,
.wb-nav-dropdown--active .wb-nav-dropdown-arrow {
    transform: rotate(180deg);
}

/* Падающее меню */
.wb-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);      /* было +10 — стало ближе */
    left: 50%;
    transform: translate(-50%, -2px);
    min-width: 230px;
    background: #050814;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;       /* вертикальный список */
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 50;
}

/* Выезжает ВНИЗ при наведении */
.wb-nav-dropdown:hover .wb-nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);  /* финальное положение */
}

/* Пункты внутри дропа */
.wb-nav-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-decoration: none;
    color: #d7dbff;
    white-space: nowrap;
}

.wb-nav-dropdown-item:hover {
    background: linear-gradient(
        135deg,
        rgba(92, 225, 230, 0.16),
        rgba(106, 92, 255, 0.10)
    );
    color: #ffffff;
}

/* Активный сервис внутри списка */
.wb-nav-dropdown-item.nav-link--active {
    background: linear-gradient(135deg, #6a5cff, #5ce1e6);
    color: #ffffff;
}

/* Чуть компактнее меню на узких экранах */
@media (max-width: 1100px) {
    .wb-nav {
        gap: 12px;
    }
    .wb-header .nav-link,
    .wb-nav-dropdown-toggle {
        font-size: 0.9rem;
    }
}
/* Cookie banner */
.wb-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(5, 8, 22, 0.96);
  color: #ffffff;
  padding: 12px 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.5);
  font-size: 14px;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.wb-cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wb-cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.wb-cookie-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wb-cookie-text {
  max-width: 720px;
  line-height: 1.5;
}

.wb-cookie-btn {
  flex-shrink: 0;
}

/* Ссылка в тексте (если будет политика) */
.wb-cookie-link {
  color: #5ce1e6;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .wb-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .wb-cookie-btn {
    width: 100%;
    text-align: center;
  }
}