/* ==============================================
   Black Book Companions - Main Stylesheet
   Newsphere-inspired magazine design
   Primary: #1a2744 (navy) | Accent: #c9a84c (gold)
   ============================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:   #1a2744;
  --navy2:  #253563;
  --gold:   #c9a84c;
  --gold2:  #a8852c;
  --cream:  #f8f5f0;
  --light:  #f0ece4;
  --border: #e2d9c8;
  --text:   #2d2d2d;
  --muted:  #6b7280;
  --white:  #ffffff;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(26,39,68,0.09);
  --shadow-hover: 0 6px 24px rgba(26,39,68,0.15);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold2); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- Site Header ---- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 62px;
  max-width: 1280px;
  margin: 0 auto;
}

.site-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo .logo-dot {
  color: var(--gold);
}

.site-logo:hover { color: var(--gold); }

.header-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  overflow: hidden;
  height: 38px;
}

.header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0 16px;
  font-size: 0.875rem;
  width: 240px;
}

.header-search input::placeholder { color: rgba(255,255,255,0.5); }

.header-search button {
  background: var(--gold);
  border: none;
  color: var(--navy);
  padding: 0 16px;
  height: 38px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
  transition: background var(--transition);
}

.header-search button:hover { background: var(--gold2); color: #fff; }

/* Nav bar below header */
.site-nav {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-nav ul {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-nav ul li a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.825rem;
  font-weight: 600;
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition), background var(--transition);
}

.site-nav ul li a:hover,
.site-nav ul li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Gold accent strip below nav */
.gold-strip {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}

/* ---- Main Layout ---- */
.site-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.content-area { min-width: 0; }
.sidebar { min-width: 0; }

@media (max-width: 900px) {
  .site-container { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

/* ---- Page Banner / Hero ---- */
.page-banner {
  background: var(--navy);
  color: var(--white);
  padding: 40px 24px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(201,168,76,0.08));
  pointer-events: none;
}

.page-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.page-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 600px;
}

.page-banner .gold-underline {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 12px 0;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold2); }
.breadcrumb .sep { color: var(--border); }

/* ---- Provider Card (Magazine-style) ---- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.provider-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.provider-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.provider-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light);
}

.provider-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.provider-card:hover .provider-card-image img { transform: scale(1.04); }

.provider-card-image .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--muted);
  font-size: 0.875rem;
  background: var(--light);
}

.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-reviews-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(26,39,68,0.85);
  color: var(--white);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 3px;
}

.provider-card-body {
  padding: 14px 16px 16px;
}

.provider-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.provider-card-name a { color: inherit; }
.provider-card-name a:hover { color: var(--gold2); }

.provider-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  color: var(--muted);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.provider-card-meta .location-tag {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--light);
  padding: 2px 8px;
  border-radius: 3px;
  color: var(--navy);
  font-weight: 500;
}

.provider-card-stats {
  display: flex;
  gap: 12px;
  font-size: 0.775rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 8px;
}

.stat-item { display: flex; flex-direction: column; }
.stat-item .val { font-weight: 700; color: var(--navy); font-size: 0.875rem; }
.stat-item .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; }

.card-cta {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.825rem;
  font-weight: 600;
  margin-top: 12px;
  transition: background var(--transition);
}

.card-cta:hover { background: var(--gold2); color: var(--white); }

/* ---- Section Headers ---- */
.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.section-header .gold-bar {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-label {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
}

/* ---- Search Form ---- */
.search-form-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.search-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
}

.search-tab {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}

.search-tab.active,
.search-tab:hover { color: var(--navy); border-bottom-color: var(--gold); }

.search-input-group {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.search-input-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
}

.search-input-group button {
  background: var(--navy);
  border: none;
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.search-input-group button:hover { background: var(--gold2); }

/* ---- Sidebar ---- */
.sidebar-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.sidebar-block-header {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-bottom: 2px solid var(--gold);
}

.sidebar-block-body { padding: 16px; }

.sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.sidebar-list li:last-child { border-bottom: none; }

.sidebar-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.sidebar-list a:hover { color: var(--navy); }

.sidebar-list .count {
  background: var(--light);
  color: var(--muted);
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 600;
}

/* Sidebar provider mini card */
.sidebar-provider-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-provider-item:last-child { border-bottom: none; }

.sidebar-provider-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--light);
}

.sidebar-provider-info { font-size: 0.8rem; }
.sidebar-provider-name { font-weight: 700; color: var(--navy); }
.sidebar-provider-city { color: var(--muted); font-size: 0.75rem; }

/* ---- Provider Profile Page ---- */
.provider-profile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.provider-gallery {
  position: relative;
}

.gallery-main {
  background: #111;
  aspect-ratio: 16/9;
  max-height: 520px;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #0f1a30;
  overflow-x: auto;
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--gold); }

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.provider-profile-body {
  padding: 28px;
}

.provider-profile-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.provider-profile-tagline {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.provider-stats-bar {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 16px 0;
  flex-wrap: wrap;
}

.provider-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.provider-stat .stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.provider-stat .stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.provider-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.info-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: 10px 14px;
}

.info-item .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 2px;
}

.info-item .val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.provider-about {
  background: var(--light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--text);
}

.contact-block {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.contact-btn-primary {
  background: var(--navy);
  color: var(--white);
}

.contact-btn-primary:hover { background: var(--gold2); color: var(--white); }

.contact-btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.contact-btn-gold:hover { background: var(--gold2); color: var(--white); }

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(26,39,68,0.7);
  border: none;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-nav:hover { background: var(--gold2); }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }

/* ---- States & Cities Grid ---- */
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.state-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.state-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.state-card .state-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.state-card .state-count {
  font-size: 0.8rem;
  color: var(--muted);
}

.cities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.city-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.city-item:hover {
  border-color: var(--gold);
  transform: translateX(2px);
  color: var(--gold2);
}
.city-item .city-count { color: var(--muted); font-size: 0.775rem; font-weight: 400; }

/* ---- Search Results ---- */
.search-results-header {
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0;
}

.search-results-header h1 {
  font-size: 1.25rem;
  font-weight: 700;
}

.search-results-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.search-result-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.search-result-item:hover { box-shadow: var(--shadow-hover); }

.result-image {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light);
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-body { flex: 1; min-width: 0; }

.result-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.result-name a { color: inherit; }
.result-name a:hover { color: var(--gold2); }

.result-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.result-tag {
  background: var(--light);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
}

.result-description {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.result-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
}

.result-cta:hover { background: var(--gold2); color: var(--white); }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 24px 0;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
}

.page-link:hover,
.page-link.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.page-link.active { pointer-events: none; }

/* ---- Affiliate Banners ---- */
.ter-banner-container {
  text-align: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 24px 0;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  margin-top: 48px;
  padding: 40px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand .footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .footer-logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .header-search { display: none; }
  .site-nav ul { overflow-x: auto; }
  .providers-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .search-result-item { flex-direction: column; }
  .result-image { width: 100%; height: 200px; }
  .provider-profile-name { font-size: 1.4rem; }
  .page-banner h1 { font-size: 1.5rem; }
}

/* ---- Utility Classes ---- */
.text-navy  { color: var(--navy); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.gap-8 { gap: 8px; }
.align-center { align-items: center; }
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.no-results h3 { color: var(--navy); margin-bottom: 8px; }

/* Age verification overlay */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-box {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.age-gate-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.age-gate-logo span { color: var(--gold); }

.age-gate h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.age-gate p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.age-gate-btns { display: flex; gap: 12px; justify-content: center; }

.age-btn {
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.age-btn-yes {
  background: var(--navy);
  color: var(--white);
}

.age-btn-yes:hover { background: var(--gold2); }

.age-btn-no {
  background: var(--light);
  color: var(--muted);
}
