@charset "utf-8";

/* ─── Font ────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── Variables ───────────────────────────────────────────── */
:root {
  --primary: #3e80de;
  --primary-hover: #2d6bc4;
  --primary-light: rgba(62, 128, 222, 0.08);
  --primary-border: rgba(62, 128, 222, 0.2);
  --bg: #ffffff;
  --bg-surface: #f8f9fb;
  --bg-elevated: #ffffff;
  --bg-hover: #f0f3f7;
  --text: #1a1d23;
  --text-secondary: #5c6370;
  --text-tertiary: #8b919a;
  --border: #e4e7ec;
  --border-light: #eef1f5;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --header-bg: #ffffff;
  --header-border: #e4e7ec;
  --table-header-bg: #f4f6f9;
  --table-row-hover: #f8fafc;
  --table-border: #eef1f5;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --yellow-bg: #fbbf24;
  --yellow-text: #1a1d23;
  --feature-icon-bg: rgba(62, 128, 222, 0.08);
  --feature-icon-color: #3e80de;
}

[data-theme="dark"] {
  --bg: #0f1117;
  --bg-surface: #161821;
  --bg-elevated: #1c1e2a;
  --bg-hover: #252836;
  --text: #e8eaed;
  --text-secondary: #9ba1ad;
  --text-tertiary: #6b7280;
  --border: #2a2d3a;
  --border-light: #22253a;
  --header-bg: #12141c;
  --header-border: #2a2d3a;
  --table-header-bg: #1c1e2a;
  --table-row-hover: #1f2233;
  --table-border: #252836;
  --primary-light: rgba(62, 128, 222, 0.12);
  --primary-border: rgba(62, 128, 222, 0.25);
  --yellow-bg: #fbbf24;
  --yellow-text: #1a1d23;
  --feature-icon-bg: rgba(62, 128, 222, 0.12);
  --feature-icon-color: #5a9aee;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-hover); }
::placeholder { color: var(--text-tertiary); }
.text-muted { color: var(--text-tertiary); }

/* ─── Layout ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ─── Header ──────────────────────────────────────────────── */
.header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  z-index: 100;
  position: relative;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-svg { height: 28px; width: auto; }
.logo-svg .cls-3 { fill: var(--text); transition: fill 0.3s; }

.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-links a {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  border-radius: var(--radius-sm); transition: all 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: var(--bg-hover); }
.nav-links a svg.nav-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Tools Dropdown ──────────────────────────────────────── */
.dropdown { position: relative; }

.dropdown-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; font-size: 14px; font-weight: 500;
  color: var(--text-secondary); background: none; border: none; outline: none;
  cursor: pointer; transition: all 0.2s; font-family: var(--font); border-radius: var(--radius-sm);
}
.dropdown-trigger:hover { color: var(--text); background: var(--bg-hover); }
.dropdown-trigger:focus { outline: none; }
.dropdown-trigger svg.nav-icon { width: 16px; height: 16px; flex-shrink: 0; }
.dropdown-trigger svg.chevron-icon { width: 14px; height: 14px; transition: transform 0.2s; }
.dropdown-trigger.open svg.chevron-icon { transform: rotate(180deg); }

.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px; min-width: 520px; z-index: 200;
}
.dropdown-menu.open { display: block; }

.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.dropdown-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: var(--radius-sm); color: var(--text); font-size: 13px;
  font-weight: 500; transition: background 0.15s;
}
.dropdown-item:hover { background: var(--bg-hover); color: var(--text); }

.dropdown-icon {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: var(--primary-light); border-radius: var(--radius-sm); flex-shrink: 0; color: var(--primary);
}
.dropdown-icon svg { width: 16px; height: 16px; }

/* ─── Buy Me a Coffee (header) ────────────────────────────── */
.btn-coffee {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: var(--yellow-bg); color: var(--yellow-text);
  font-size: 13px; font-weight: 600; border-radius: var(--radius-sm);
  transition: all 0.2s; white-space: nowrap;
}
.btn-coffee:hover { background: #f5b820; color: var(--yellow-text); transform: translateY(-1px); }
.btn-coffee svg { width: 16px; height: 16px; }

/* ─── Theme toggle — Desktop (two-button radio in header) ─── */
.theme-toggle-desktop {
  display: flex; align-items: center; gap: 2px;
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 3px;
}

.theme-btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: none; background: transparent;
  color: var(--text-tertiary); border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
.theme-btn:hover { color: var(--text); }
.theme-btn.active { background: var(--bg-elevated); color: var(--text); }
.theme-btn svg { width: 16px; height: 16px; }

/* ─── Theme toggle — Mobile (single icon button in header) ── */
.theme-toggle-mobile {
  display: none; /* hidden on desktop, shown via media query */
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s;
}
.theme-toggle-mobile:hover { color: var(--primary); }
.theme-toggle-mobile svg { width: 20px; height: 20px; }

/* Show moon icon in light mode, sun icon in dark mode */
.theme-toggle-mobile .theme-icon-sun { display: none; }
.theme-toggle-mobile .theme-icon-moon { display: block; }
[data-theme="dark"] .theme-toggle-mobile .theme-icon-sun { display: block; }
[data-theme="dark"] .theme-toggle-mobile .theme-icon-moon { display: none; }

/* ─── Mobile menu ─────────────────────────────────────────── */
.mobile-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: none; background: transparent;
  color: var(--text); border-radius: var(--radius-sm); cursor: pointer;
}
.mobile-toggle svg { width: 22px; height: 22px; }

.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 998; opacity: 0; transition: opacity 0.3s ease;
}
.mobile-overlay.open { display: block; opacity: 1; }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 320px; max-width: 85vw;
  height: 100%; background: var(--bg-elevated); z-index: 999;
  transition: right 0.3s ease; overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { right: 0; }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.mobile-menu-title { font-size: 18px; font-weight: 700; color: var(--text); }

.mobile-close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: none; background: transparent;
  color: var(--text); border-radius: var(--radius-sm); cursor: pointer;
}
.mobile-close svg { width: 22px; height: 22px; }

.mobile-nav-section { padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.mobile-nav-section:last-child { border-bottom: none; }

.mobile-nav-link {
  display: flex; align-items: center; gap: 14px; padding: 14px 24px;
  font-size: 15px; font-weight: 500; color: var(--text); transition: background 0.15s;
}
.mobile-nav-link:hover { background: var(--bg-hover); color: var(--text); }

.mobile-nav-icon {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  color: var(--text-tertiary); flex-shrink: 0;
}
.mobile-nav-icon svg { width: 18px; height: 18px; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero { padding: 64px 0 48px; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 8px; background: var(--primary-light);
  border: 1px solid var(--primary-border); border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--primary); margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: var(--primary); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 16px;
}
.hero p {
  font-size: clamp(15px, 2vw, 17px); color: var(--text-secondary);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ─── Lookup Form ─────────────────────────────────────────── */
.lookup-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px; margin-bottom: 25px;
  transition: background-color 0.3s, border-color 0.3s;
}

.lookup-textarea {
  width: 100%; min-height: 120px; padding: 16px 20px;
  font-family: var(--font); font-size: 15px; line-height: 1.8;
  color: var(--text); background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  resize: vertical; outline: none; transition: border-color 0.2s, background-color 0.3s;
}
.lookup-textarea:focus { border-color: var(--primary); }

.lookup-hint { display: block; margin-top: 8px; font-size: 13px; color: var(--text-tertiary); }

.domain-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  transition: color 0.2s;
}
.domain-count svg { width: 14px; height: 14px; flex-shrink: 0; }
.domain-count.over-limit { color: var(--error); font-weight: 600; }

.lookup-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 20px; flex-wrap: wrap;
}
.control-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.control-item { display: flex; align-items: center; gap: 8px; }
.control-label { font-size: 13px; font-weight: 500; color: var(--text-secondary); white-space: nowrap; }

.select-styled {
  appearance: none; -webkit-appearance: none;
  padding: 8px 36px 8px 14px; font-family: var(--font);
  font-size: 14px; font-weight: 500; color: var(--text);
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; outline: none; transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235c6370' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.select-styled:focus { border-color: var(--primary); }

.checkbox-modern {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; border: 2px solid var(--border);
  border-radius: 6px; background: var(--bg-surface); cursor: pointer;
  position: relative; transition: all 0.2s; flex-shrink: 0;
}
.checkbox-modern:checked { background: var(--primary); border-color: var(--primary); }
.checkbox-modern:checked::after {
  content: ''; position: absolute; left: 5px; top: 2px;
  width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-lookup {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 32px; background: var(--primary); color: #fff;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.btn-lookup:hover:not(:disabled) { background: var(--primary-hover); transform: translateY(-1px); }
.btn-lookup:active:not(:disabled) { transform: translateY(0); }
.btn-lookup:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-lookup svg { width: 18px; height: 18px; }

.error-msg {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-sm); color: var(--error); font-size: 14px;
  font-weight: 500; margin-top: 16px;
}
.error-msg svg { width: 18px; height: 18px; flex-shrink: 0; }

.error-msg-rate {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--warning);
}

/* ─── Results Table ───────────────────────────────────────── */
.results-section { margin-bottom: 25px; }

.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
.results-count { font-size: 14px; color: var(--text-secondary); }
.results-count strong { color: var(--text); font-weight: 600; }

.results-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: background-color 0.3s, border-color 0.3s;
}

.results-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.results-table thead { background: var(--table-header-bg); }

.results-table th {
  padding: 12px 16px; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-tertiary); text-align: left; white-space: nowrap;
  border-bottom: 1px solid var(--table-border);
}

.results-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--table-border);
  color: var(--text); vertical-align: top;
}

.results-table tbody tr { transition: background 0.15s; }
.results-table tbody tr:hover { background: var(--table-row-hover); }
.results-table tbody tr:last-child td { border-bottom: none; }

.ip-cell { font-family: var(--font-mono); font-size: 13px; color: var(--primary); }
.dns-cell { font-family: var(--font-mono); font-size: 12px; word-break: break-all; max-width: 300px; }
.dns-entry { display: block; padding: 2px 0; line-height: 1.5; }
.country-cell { display: flex; align-items: center; gap: 8px; }
.flag-img { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; }

.sortable { cursor: pointer; user-select: none; }
.sortable:hover { color: var(--text-secondary); }

.sort-icon { width: 14px; height: 14px; vertical-align: middle; margin-left: 4px; opacity: 0.35; }
.sortable:hover .sort-icon { opacity: 0.7; }
.sortable.sort-asc .sort-icon,
.sortable.sort-desc .sort-icon { opacity: 1; color: var(--primary); }

/* ─── Download section ────────────────────────────────────── */
.download-section {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: var(--bg-surface);
  border-top: 1px solid var(--table-border); flex-wrap: wrap; gap: 16px;
}
.download-checks { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.download-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); white-space: nowrap; margin-right: 4px; }
.download-check-item { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 500; color: var(--text-secondary); }

.download-btns { display: flex; gap: 10px; }
.btn-download {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; background: var(--primary); color: #fff;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s;
}
.btn-download:hover { background: var(--primary-hover); transform: translateY(-1px); }

/* ─── Duplicate notice ────────────────────────────────────── */
.duplicates-notice {
  margin-top: 20px; padding: 16px 20px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
}

.duplicates-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--warning); margin-bottom: 10px;
}
.duplicates-header svg { width: 18px; height: 18px; flex-shrink: 0; }
.duplicates-header strong { color: var(--text); }

.duplicates-list { display: flex; flex-wrap: wrap; gap: 8px; }

.dup-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: 100px; font-size: 13px; font-family: var(--font-mono);
  color: var(--text-secondary);
}

/* ─── Features ────────────────────────────────────────────── */
.features-section { padding: 15px 0; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.feature-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: background-color 0.3s, border-color 0.3s;
}

.feature-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--feature-icon-bg); border-radius: var(--radius);
  margin-bottom: 20px; color: var(--feature-icon-color);
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ─── Coffee section ──────────────────────────────────────── */
.coffee-section { padding: 0 0 15px; }

.coffee-card {
  display: flex; align-items: center; gap: 24px;
  padding: 28px 32px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: background-color 0.3s, border-color 0.3s;
}

.coffee-icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: rgba(251,191,36,0.12); border-radius: var(--radius);
  color: #d97706; flex-shrink: 0;
}
.coffee-icon svg { width: 24px; height: 24px; }

.coffee-text { flex: 1; }
.coffee-text h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.coffee-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.btn-coffee-cta {
  display: inline-flex; align-items: center; padding: 10px 24px;
  background: var(--yellow-bg); color: var(--yellow-text); font-size: 14px;
  font-weight: 600; border-radius: var(--radius-sm); white-space: nowrap;
  transition: all 0.2s;
}
.btn-coffee-cta:hover { background: #f5b820; color: var(--yellow-text); transform: translateY(-1px); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 40px 0 64px; }
.faq-section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--text); text-align: center; margin-bottom: 32px; letter-spacing: -0.02em; }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 20px 0; background: none; border: none; outline: none; cursor: pointer;
  font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--text);
  text-align: left; gap: 16px;
}
.faq-question:hover { color: var(--primary); }

.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-tertiary); transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─── Footer ──────────────────────────────────────────────── */
.footer { padding: 32px 0; border-top: 1px solid var(--border); text-align: center; font-size: 13px; color: var(--text-tertiary); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .dropdown-menu { min-width: 360px; right: -60px; }
  .dropdown-grid { grid-template-columns: 1fr; }
  .nav-links .hide-tablet { display: none; }
  .features-grid { gap: 16px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header-inner { height: 56px; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .btn-coffee { display: none; }

  /* KEY FIX: Hide the desktop 2-button toggle, show the mobile single-icon toggle */
  .theme-toggle-desktop { display: none; }
  .theme-toggle-mobile { display: flex; }

  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 26px; }
  .lookup-card { padding: 20px; border-radius: var(--radius-lg); }
  .lookup-controls { flex-direction: column; align-items: stretch; }
  .control-group { flex-direction: column; align-items: stretch; }
  .control-item { justify-content: space-between; }
  .btn-lookup { width: 100%; padding: 14px; }
  .results-card { border-radius: var(--radius); }
  .results-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .results-table { min-width: 600px; }
  .download-section { flex-direction: column; align-items: stretch; }
  .download-btns { width: 100%; }
  .btn-download { flex: 1; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 24px; }
  .dropdown { display: none; }
  .coffee-card { flex-direction: column; text-align: center; }
  .btn-coffee-cta { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 22px; }
  /* Mobile theme toggle is still visible at this breakpoint — no hiding */
}

/* ─── Utility ─────────────────────────────────────────────── */
.invisible { display: none !important; }
body.menu-open { overflow: hidden; }