/* ============================================
   BardeRodz — Main Stylesheet
   Clean outdoor aesthetic, mobile-first
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #478ac9;
  --blue-dark: #3a74a8;
  --blue-light: #e8f1fa;
  --slate-900: #1a1f2e;
  --slate-800: #2d3340;
  --slate-700: #3d4452;
  --slate-600: #555d6e;
  --slate-400: #8b95a5;
  --slate-300: #b0b8c5;
  --slate-200: #d1d7e0;
  --slate-100: #eef1f5;
  --slate-50: #f7f8fa;
  --white: #ffffff;
  --success: #2d8a4e;
  --error: #c94747;
  --warning: #c98a47;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --max-wide: 1400px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--slate-800);
  border: 2px solid var(--slate-300);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-white {
  background: var(--white);
  color: var(--slate-900);
}
.btn-white:hover {
  background: var(--slate-100);
  transform: translateY(-1px);
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* --- Header & Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-wide);
  margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo img { height: 44px; width: auto; }
.logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; list-style: none; gap: 0.25rem; }
.nav-desktop a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--slate-700);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-desktop a:hover, .nav-desktop a.active {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-800);
  border-bottom: 1px solid var(--slate-100);
}
.nav-mobile a:hover { color: var(--blue); }

@media (min-width: 768px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--slate-900);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 1.5rem;
}
.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(71, 138, 201, 0.2);
  color: var(--blue);
  border: 1px solid rgba(71, 138, 201, 0.3);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.hero p {
  color: var(--slate-300);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 550px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (min-width: 768px) {
  .hero-content { padding: 6rem 3rem; }
}

/* --- Section styling --- */
.section { padding: 5rem 0; }
.section-alt { background: var(--slate-50); }
.section-dark { background: var(--slate-900); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #c0c8d4; }
.section-dark .feature-item p { color: #c0c8d4; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header p {
  color: var(--slate-600);
  font-size: 1.0625rem;
  margin-top: 0.75rem;
}
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

/* --- Product Cards --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.product-card-image img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.03); }

.product-card-body { padding: 1.25rem; }
.product-card-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}
.product-card h3 { font-size: 1.25rem; margin-bottom: 0.375rem; }
.product-card .product-specs {
  font-size: 0.875rem;
  color: var(--slate-600);
  margin-bottom: 0.75rem;
}
.product-card .product-price {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.product-card .product-techniques {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.technique-tag {
  padding: 0.25rem 0.5rem;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 0.75rem;
  border-radius: 4px;
  font-weight: 500;
}

/* --- Product Line Cards (Homepage) --- */
.product-lines { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .product-lines { grid-template-columns: repeat(3, 1fr); } }

.line-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-900);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition);
}
.line-card:hover { transform: translateY(-4px); }
.line-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.line-card:hover .line-card-bg { opacity: 0.6; }
.line-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.line-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.5rem; }
.line-card p { color: var(--slate-300); font-size: 0.9375rem; margin-bottom: 1rem; }
.line-card .price-range { color: var(--blue); font-weight: 700; font-size: 1.125rem; }

/* --- Rod Detail Page --- */
.rod-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .rod-hero { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem 0; }
}

.rod-gallery {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.rod-gallery img { max-height: 400px; object-fit: contain; }

.rod-info .rod-series {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.8125rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.rod-info h1 { margin-bottom: 0.75rem; }
.rod-info .rod-tagline {
  font-size: 1.125rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
}
.rod-info .rod-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}

/* --- Specs Table --- */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.specs-table tr { border-bottom: 1px solid var(--slate-100); }
.specs-table td {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
}
.specs-table td:first-child {
  color: var(--slate-400);
  font-weight: 500;
  width: 40%;
}
.specs-table td:last-child {
  font-weight: 600;
  color: var(--slate-900);
}

/* --- Techniques List --- */
.perfect-for {
  margin-bottom: 2rem;
}
.perfect-for h4 { margin-bottom: 0.75rem; }
.technique-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}
.technique-list li {
  padding: 0.375rem 0.875rem;
  background: var(--slate-100);
  color: var(--slate-700);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
.feature-item { text-align: center; padding: 1.5rem; }
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.feature-item h4 { margin-bottom: 0.5rem; }
.feature-item p { color: var(--slate-600); font-size: 0.9375rem; }

/* --- Accessories --- */
.sleeve-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .sleeve-hero { grid-template-columns: 1fr 1fr; } }

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.bundle-card {
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.bundle-card:hover { border-color: var(--blue); }
.bundle-card.featured { border-color: var(--blue); position: relative; }
.bundle-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.bundle-card h4 { margin-bottom: 0.5rem; }
.bundle-card .bundle-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}
.bundle-card .bundle-per-unit {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-bottom: 0.25rem;
}
.bundle-card .bundle-shipping {
  font-size: 0.8125rem;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* --- Technique Guide --- */
.technique-section { margin-bottom: 3rem; }
.technique-section h3 { margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--blue); display: inline-block; }
.technique-rod-list { list-style: none; }
.technique-rod-list li {
  padding: 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: border-color var(--transition);
}
.technique-rod-list li:hover { border-color: var(--blue); }
.technique-rod-list .rod-name { font-weight: 700; color: var(--slate-900); }
.technique-rod-list .rod-why { color: var(--slate-600); font-size: 0.9375rem; margin-top: 0.25rem; }

/* --- Forms --- */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--slate-800);
  font-size: 0.9375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(71, 138, 201, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Policies / Content Pages --- */
.content-page { padding: 3rem 0; }
.content-page h1 { margin-bottom: 2rem; }
.content-page h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.content-page h3 { margin: 2rem 0 0.75rem; font-size: 1.25rem; }
.content-page p { margin-bottom: 1rem; color: var(--slate-700); }
.content-page ul, .content-page ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.content-page li {
  margin-bottom: 0.5rem;
  color: var(--slate-700);
}

/* --- Brand Story --- */
.brand-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .brand-story { grid-template-columns: 1fr 1fr; }
}
.brand-story-text h2 { margin-bottom: 1.5rem; }
.brand-story-text p { color: var(--slate-600); font-size: 1.0625rem; line-height: 1.8; }

/* --- Footer --- */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p { max-width: 300px; margin-top: 1rem; font-size: 0.875rem; line-height: 1.7; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo img { filter: brightness(10); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--slate-400);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--slate-800);
  border-radius: 50%;
  color: var(--slate-400);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}
.footer-bottom a { color: var(--slate-400); }
.footer-bottom a:hover { color: var(--white); }

/* --- Status Pages (success/cancel) --- */
.status-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.status-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.status-page h1 { margin-bottom: 1rem; }
.status-page p { color: var(--slate-600); max-width: 500px; margin: 0 auto 2rem; }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--blue);
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 550px; margin: 0 auto 2rem; font-size: 1.0625rem; }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
}
.breadcrumb a { color: var(--slate-400); }
.breadcrumb span { color: var(--slate-600); margin: 0 0.5rem; }

/* --- Compare table (technique page) --- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.compare-table th {
  background: var(--slate-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.compare-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--slate-100);
}
.compare-table tr:hover { background: var(--slate-50); }

/* --- Responsive adjustments --- */
@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .section { padding: 3rem 0; }
  .product-grid { grid-template-columns: 1fr; }
  .bundle-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Loading spinner --- */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Scroll animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Page header bar --- */
.page-header {
  background: var(--slate-900);
  padding: 3rem 0;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-header p { color: var(--slate-400); font-size: 1.0625rem; }

/* --- Repair page --- */
.repair-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}
@media (min-width: 768px) { .repair-steps { grid-template-columns: repeat(3, 1fr); } }
.repair-step {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  counter-increment: step;
}
.repair-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 1rem;
}
.repair-step h4 { margin-bottom: 0.5rem; }
.repair-step p { color: var(--slate-600); font-size: 0.9375rem; }

/* --- Notification toast --- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--slate-900);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: var(--error); }
.toast.success { background: var(--success); }

/* --- Focus-visible accessibility --- */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
