/* =====================================================
   The Listening Library – Core Stylesheet
   Ubermorgen Publishing
   ===================================================== */

:root {
  --bg:          #12111a;
  --bg-2:        #1c1b27;
  --bg-3:        #252338;
  --border:      #2e2c42;
  --accent:      #c8902a;
  --accent-2:    #e8a83e;
  --accent-light:#f5c972;
  --text:        #f0ece3;
  --text-2:      #b8b4ab;
  --text-3:      #7a7670;
  --hero-grad:   linear-gradient(135deg, #1a1830 0%, #12111a 60%, #1e1628 100%);
  --card-shadow: 0 4px 20px rgba(0,0,0,0.5);
  --radius:      8px;
  --radius-lg:   14px;
  --font-serif:  'Georgia', 'Times New Roman', serif;
  --font-sans:   'Segoe UI', system-ui, -apple-system, sans-serif;
  --nav-h:       68px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(18, 17, 26, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 32px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: normal;
  color: var(--accent-light);
  letter-spacing: 0.02em;
}

.nav__logo-sub {
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.nav__search input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 9px 16px 9px 42px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.nav__search input:focus { border-color: var(--accent); }
.nav__search input::placeholder { color: var(--text-3); }

.nav__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  width: 16px;
  height: 16px;
}

.nav__links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}

.nav__link {
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav__link:hover { color: var(--text); background: var(--bg-3); }
.nav__link--active { color: var(--accent-light); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  background: var(--hero-grad);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(200,144,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 6vw, 58px);
  font-weight: normal;
  color: var(--accent-light);
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
}

.hero__sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-2);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent-light); }

/* ── Hero stats ───────────────────────────────────── */
.hero__stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero__stat { text-align: center; }
.hero__stat-n {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--accent-light);
  display: block;
}
.hero__stat-l {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Sections ─────────────────────────────────────── */
.section {
  padding: 56px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.section--wide { max-width: 100%; }

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: normal;
  color: var(--text);
}

.section__link {
  font-size: 13px;
  color: var(--accent);
  white-space: nowrap;
}
.section__link:hover { color: var(--accent-2); }

/* ── Card Grid ────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* ── Book Card ────────────────────────────────────── */
.card {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow);
}

.card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-3);
}

.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover .card__thumb img { transform: scale(1.04); }

.card__lang {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(18,17,26,0.85);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(200,144,42,0.3);
}

.card__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-2);
}

.card__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}

.card:hover .card__play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card__body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__genre {
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__author {
  font-size: 12px;
  color: var(--text-3);
  margin-top: auto;
}

/* ── Genre Chips ──────────────────────────────────── */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.genre-chip {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.genre-chip:hover, .genre-chip.active {
  border-color: var(--accent);
  background: var(--bg-3);
  color: var(--accent-light);
}

.genre-chip__icon { font-size: 20px; }
.genre-chip__name { font-size: 13px; font-weight: 500; }
.genre-chip__count { margin-left: auto; font-size: 11px; color: var(--text-3); }

/* ── Language Toggle ──────────────────────────────── */
.lang-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.lang-tab {
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 13px;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  transition: all 0.2s;
}

.lang-tab.active, .lang-tab:hover {
  border-color: var(--accent);
  background: rgba(200,144,42,0.1);
  color: var(--accent-light);
}

/* ── Catalog Page ─────────────────────────────────── */
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

@media (max-width: 768px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  height: fit-content;
  max-height: calc(100vh - var(--nav-h) - 32px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.sidebar__section { margin-bottom: 28px; }

.sidebar__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 12px;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
  color: var(--text-2);
  font-size: 13.5px;
}

.filter-item:hover { background: var(--bg-3); color: var(--text); }
.filter-item.active { color: var(--accent-light); background: rgba(200,144,42,0.08); }

.filter-item__check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.filter-item.active .filter-item__check {
  background: var(--accent);
  border-color: var(--accent);
}

.filter-item__count { margin-left: auto; font-size: 11px; color: var(--text-3); }

.catalog-main {}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.catalog-count {
  font-size: 13px;
  color: var(--text-3);
}

.sort-select {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 7px 12px;
  color: var(--text-2);
  font-size: 13px;
  outline: none;
  cursor: pointer;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 9px 16px 9px 14px;
  width: 100%;
  max-width: 400px;
}

.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 14px;
}

.search-bar input::placeholder { color: var(--text-3); }
.search-bar:focus-within { border-color: var(--accent); }

/* ── Title Detail Page ────────────────────────────── */
.detail-layout {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .detail-layout { grid-template-columns: 1fr; }
}

.detail-cover {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.detail-cover__thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  margin-bottom: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.detail-cover__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-cover__play {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
  margin-bottom: 10px;
}

.detail-cover__play:hover { background: var(--accent-2); }

.detail-cover__yt {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  border-radius: 28px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.detail-cover__yt:hover { border-color: var(--accent); color: var(--accent-light); }

.detail-info {}

.detail-genre {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.detail-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: normal;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 10px;
}

.detail-author {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 24px;
}

.detail-author span { color: var(--accent-light); }

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.meta-pill {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 5px;
}

.detail-description {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.detail-description h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}

/* ── Player Modal ─────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 860px;
  overflow: hidden;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.modal__title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text);
}

.modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}

.modal__close:hover { background: var(--accent); color: #fff; }

.modal__embed {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}

.modal__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── About / Static Pages ─────────────────────────── */
.static-page {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 24px 80px;
}

.static-page h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: normal;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.static-page .byline {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.static-page h2 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: normal;
  color: var(--text);
  margin: 36px 0 12px;
}

.static-page p {
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.8;
}

.static-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
  color: var(--text-2);
  line-height: 1.8;
}

.static-page a { color: var(--accent-light); border-bottom: 1px solid rgba(200,144,42,0.3); }
.static-page a:hover { color: var(--accent-2); }

.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 32px;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.footer__brand-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 14px;
}

.footer__link {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  padding: 4px 0;
  transition: color 0.15s;
}

.footer__link:hover { color: var(--accent-light); }

.footer__bottom {
  max-width: 1280px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-3);
}

/* ── Utilities ────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-3);
}

.empty-state__icon { font-size: 48px; margin-bottom: 12px; }
.empty-state__text { font-size: 15px; }

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge--new { background: rgba(200,144,42,0.15); color: var(--accent-light); border: 1px solid rgba(200,144,42,0.3); }
.badge--en { background: rgba(70,130,200,0.15); color: #7eb8f5; border: 1px solid rgba(70,130,200,0.3); }
.badge--es { background: rgba(180,80,80,0.15); color: #f5a07e; border: 1px solid rgba(180,80,80,0.3); }

/* ── Scrollbar ────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 600px) {
  .nav__search { display: none; }
  .nav { gap: 16px; }
  .hero { padding: 56px 20px 48px; }
  .hero__stats { gap: 24px; }
  .section { padding: 36px 16px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
}

/* ── Auth ─────────────────────────────────────────── */
.nav__username {
  font-size: 13px;
  color: var(--text-2);
  padding: 7px 10px;
}
.nav__signout {
  font-size: 13px;
  color: var(--text-3);
  padding: 7px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav__signout:hover { color: var(--text); background: var(--bg-3); }
.nav__link--cta {
  background: var(--accent);
  color: #fff !important;
  border-radius: 20px;
  padding: 7px 16px !important;
}
.nav__link--cta:hover { background: var(--accent-2) !important; }

/* Auth page layout */
.auth-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--hero-grad);
}
.auth-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
}
@media (max-width: 500px) { .auth-card { padding: 28px 22px; } }

.auth-card__logo {
  text-align: center;
  margin-bottom: 28px;
}
.auth-card__logo-main {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--accent-light);
  display: block;
}
.auth-card__logo-sub {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auth-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 6px;
  text-align: center;
}
.auth-card__sub {
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 28px;
}

.auth-field { margin-bottom: 16px; }
.auth-label {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
.auth-input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-sans);
}
.auth-input:focus { border-color: var(--accent); }
.auth-input::placeholder { color: var(--text-3); }
.auth-input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.auth-submit {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.2s, opacity 0.2s;
  letter-spacing: 0.02em;
}
.auth-submit:hover:not(:disabled) { background: var(--accent-2); }
.auth-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.auth-error {
  background: rgba(200,60,60,0.12);
  border: 1px solid rgba(200,60,60,0.3);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  color: #f08080;
  margin-bottom: 16px;
  display: none;
}
.auth-error.visible { display: block; }

.auth-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.auth-switch {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 20px;
}
.auth-switch a { color: var(--accent-light); border-bottom: 1px solid rgba(200,144,42,0.3); }

.payment-section {
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 4px;
}
.payment-section__badge {
  display: inline-block;
  background: rgba(200,144,42,0.1);
  border: 1px solid rgba(200,144,42,0.25);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.payment-section__note {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 14px;
  line-height: 1.6;
}
