/* ============================================================
   Maine Cat Central — mainecatcentral.com
   Brand: warm, premium, trustworthy. Forest green + honey gold.
   ============================================================ */

:root {
  /* Brand palette — from BUSY-BEE-DESIGN.md */
  --primary:        #1A3C34;   /* Deep Forest Green */
  --primary-dark:   #102621;
  --primary-light:  #2A5A4F;
  --secondary:      #D4A017;   /* Honey Gold */
  --secondary-dark: #B8870C;
  --secondary-light:#F0C84D;
  --accent:         #C44D2F;   /* Rust */
  --accent-dark:    #9C3A22;
  --bg:             #F8F4ED;   /* Soft Cream */
  --bg-alt:         #FFFFFF;
  --text:           #2C2C2C;   /* Dark Charcoal */
  --text-muted:     #5C5C5C;

  --gray-50:  #faf8f3;
  --gray-100: #f1ede4;
  --gray-200: #e2dccd;
  --gray-300: #c9c0ab;
  --gray-400: #9b927d;
  --gray-500: #6e6757;
  --gray-600: #4d4839;
  --gray-700: #34302a;
  --gray-800: #1f1c17;
  --gray-900: #0f0d0a;

  --success: #2F7D5B;
  --danger:  #B23A2A;
  --warning: #D4A017;

  --shadow-sm: 0 1px 2px 0 rgb(26 60 52 / 0.06);
  --shadow:    0 1px 3px 0 rgb(26 60 52 / 0.1), 0 1px 2px -1px rgb(26 60 52 / 0.08);
  --shadow-md: 0 4px 6px -1px rgb(26 60 52 / 0.12), 0 2px 4px -2px rgb(26 60 52 / 0.08);
  --shadow-lg: 0 10px 15px -3px rgb(26 60 52 / 0.12), 0 4px 6px -4px rgb(26 60 52 / 0.08);
  --shadow-xl: 0 20px 25px -5px rgb(26 60 52 / 0.15), 0 8px 10px -6px rgb(26 60 52 / 0.08);

  --radius-sm: 0.375rem;
  --radius:    0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style-position: inside; }

/* ===== A11Y ===== */
:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--primary); color: #fff;
  padding: .75rem 1.25rem; z-index: 99999; font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
  transform: translateY(-100%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); top: 0; color: #fff; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.625rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; }
p  { margin-bottom: 1rem; }
.lead { font-size: 1.125rem; color: var(--text-muted); }
.text-center { text-align: center; }

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 1.25rem; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 0.75rem; }
.section-subtitle { text-align: center; max-width: 700px; margin: 0 auto 3rem; color: var(--text-muted); font-size: 1.0625rem; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--primary);
  color: var(--secondary-light);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .813rem;
  font-weight: 500;
  letter-spacing: .03em;
}
.announcement-bar strong { color: #fff; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem; height: 68px; gap: 1rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.375rem; font-weight: 800;
  color: var(--primary); display: flex; align-items: center; gap: .55rem;
  letter-spacing: -0.02em;
}
.logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 100%;
}
.footer .logo img { height: 70px; }
@media (max-width: 520px) {
  .logo img { height: 42px; }
}
.logo-mark {
  width: 38px; height: 38px; flex: 0 0 38px;
  background: var(--secondary);
  color: var(--primary);
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}
.logo span { color: var(--secondary-dark); }

.nav-links { display: flex; gap: .15rem; align-items: center; }
.nav-links a {
  color: var(--gray-700); font-size: .875rem; font-weight: 600;
  padding: .55rem .75rem; border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  background: var(--bg); color: var(--primary);
}
.nav-actions { display: flex; align-items: center; gap: .35rem; }
.nav-icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; color: var(--gray-700);
  transition: background .2s, color .2s;
}
.nav-icon-btn:hover { background: var(--bg); color: var(--primary); }
.cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--accent); color: #fff;
  font-size: .65rem; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px; display: grid; place-items: center;
  border: 2px solid var(--bg-alt);
}
.nav-cart { position: relative; }
.mobile-toggle { display: none; }

.mobile-menu {
  display: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--gray-200);
  padding: .5rem 1rem 1rem;
}
.mobile-menu a {
  display: block; padding: .85rem .5rem;
  color: var(--gray-700); font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu.open { display: block; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .mobile-toggle { display: grid; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: var(--radius);
  font-weight: 700; font-size: .9375rem;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  text-align: center;
  min-height: 44px;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary    { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary  { background: var(--secondary); color: var(--primary); }
.btn-secondary:hover { background: var(--secondary-dark); color: #fff; }
.btn-accent     { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-outline    {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(135deg, rgba(26,60,52,.86) 0%, rgba(16,38,33,.78) 100%),
    radial-gradient(at 20% 30%, var(--secondary) 0%, transparent 55%),
    var(--primary);
  color: #fff;
  padding: 5rem 1.25rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
}
@media (max-width: 880px) { .hero-inner { grid-template-columns: 1fr; } .hero { padding: 3rem 1.25rem 4rem; } }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 span { color: var(--secondary-light); font-style: italic; }
.hero p { color: rgba(255,255,255,.92); font-size: 1.125rem; margin-bottom: 2rem; max-width: 560px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-badge {
  background: rgba(255,255,255,.14);
  color: #fff;
  padding: .375rem .75rem;
  border-radius: 999px;
  font-size: .75rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .35rem;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-badge svg { width: 14px; height: 14px; color: var(--secondary-light); }
.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--bg-alt);
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  position: relative;
}
.hero-image .placeholder-art {
  font-family: var(--font-head);
  font-size: 9rem;
  color: var(--secondary);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
}

/* ===== FEATURE / VALUE GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-alt);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--bg);
  color: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 1rem;
}
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p { color: var(--text-muted); margin-bottom: 0; }

/* ===== KITTEN / PRODUCT CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.kitten-card, .product-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.kitten-card:hover, .product-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.card-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg) 0%, var(--gray-100) 100%);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--secondary);
  position: relative;
  overflow: hidden;
}
.card-image .card-emoji {
  font-size: 2.5rem;
  opacity: .55;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.08));
}
.card-image > img,
.card-image picture,
.card-image picture img,
.hero-image > img,
.hero-image picture,
.hero-image picture img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.card-image .card-badge,
.hero-image .card-badge { z-index: 2; }
.kitten-card:hover .card-image > img,
.kitten-card:hover .card-image picture img,
.product-card:hover .card-image > img,
.product-card:hover .card-image picture img {
  transform: scale(1.04);
}
.card-image > img,
.card-image picture img { transition: transform .4s ease; }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: .3rem .65rem;
  border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em;
}
.card-badge.gold { background: var(--secondary); color: var(--primary); }
.card-badge.green { background: var(--success); color: #fff; }
.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-cat {
  font-size: .75rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: .35rem;
}
.card-body h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.card-body h3 a { color: var(--primary); }
.card-meta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  font-size: .8125rem; color: var(--text-muted);
  margin-bottom: .75rem;
}
.card-meta span { display: inline-flex; align-items: center; gap: .25rem; }
.card-desc { color: var(--text-muted); font-size: .9375rem; margin-bottom: 1rem; flex: 1; }
.card-price {
  font-size: 1.25rem; font-weight: 800; color: var(--primary);
  margin-bottom: 1rem;
}
.card-price .from { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.card-actions { padding: 0 1.25rem 1.25rem; display: flex; gap: .5rem; }
.card-actions .btn { flex: 1; padding: .65rem .75rem; font-size: .875rem; }

.health-badges {
  display: flex; gap: .35rem; flex-wrap: wrap;
  margin-bottom: .75rem;
}
.health-badge {
  font-size: .65rem; font-weight: 700;
  background: var(--bg); color: var(--success);
  padding: .25rem .5rem; border-radius: 4px;
  border: 1px solid var(--gray-200);
  text-transform: uppercase; letter-spacing: .04em;
}

/* ===== CATEGORIES (Care guides, tools, etc.) ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.category-card {
  background: var(--bg-alt);
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  color: var(--primary);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.category-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--secondary); color: var(--primary);
}
.category-card .cat-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.category-card h3 { font-size: 1.125rem; margin-bottom: .25rem; }
.category-card p { color: var(--text-muted); font-size: .875rem; margin-bottom: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--secondary);
}
.testimonial-stars { color: var(--secondary); font-size: 1.125rem; margin-bottom: .75rem; letter-spacing: .15em; }
.testimonial-card p { font-style: italic; color: var(--text); }
.testimonial-author { font-weight: 700; color: var(--primary); margin-top: .75rem; margin-bottom: 0; font-style: normal; }
.testimonial-role { font-size: .8125rem; color: var(--text-muted); margin-bottom: 0; font-style: normal; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 4rem 1.25rem;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto 2rem; font-size: 1.0625rem; }

/* ===== NEWSLETTER ===== */
.nl-section {
  background: var(--secondary);
  color: var(--primary);
  padding: 3.5rem 1.25rem;
}
.nl-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.nl-inner h2 { color: var(--primary); margin-bottom: .5rem; }
.nl-inner h2 strong { background: var(--primary); color: var(--secondary-light); padding: .1rem .5rem; border-radius: .35rem; }
.nl-sub { color: var(--primary-dark); margin-bottom: 1.5rem; }
.nl-form {
  display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
}
.nl-form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: .85rem 1rem;
  border: 2px solid var(--primary); border-radius: var(--radius);
  font-size: .9375rem; background: #fff; color: var(--text);
}
.nl-form input[type="email"]:focus { outline: 3px solid var(--accent); outline-offset: 2px; }
.nl-btn {
  background: var(--primary); color: #fff;
  padding: .85rem 1.75rem; border-radius: var(--radius);
  font-weight: 700; font-size: .9375rem;
  transition: background .2s, transform .15s;
}
.nl-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.nl-success, .nl-error { margin-top: .75rem; font-weight: 600; min-height: 1.5em; }
.nl-success { color: var(--success); }
.nl-error { color: var(--accent-dark); }
.nl-disclaimer { font-size: .75rem; color: var(--primary-dark); margin-top: .75rem; opacity: .8; }

/* ===== FORMS ===== */
.form-grid { display: grid; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-weight: 600; color: var(--primary); font-size: .9375rem; }
.form-group .required { color: var(--accent); }
.form-group input, .form-group select, .form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit;
  background: #fff; color: var(--text);
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 3px solid var(--secondary); outline-offset: 1px; border-color: var(--primary);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-help { font-size: .8125rem; color: var(--text-muted); }
.form-error { font-size: .8125rem; color: var(--accent-dark); font-weight: 600; }
.form-success-msg {
  background: #e8f3ed; color: var(--success);
  padding: 1rem 1.25rem; border-radius: var(--radius);
  border-left: 4px solid var(--success);
  display: none;
}
.form-success-msg.show { display: block; }

/* ===== TABLES ===== */
.data-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-alt);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table th, .data-table td {
  padding: .85rem 1rem; text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.data-table th {
  background: var(--primary); color: #fff;
  font-weight: 700; font-size: .875rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) { background: var(--gray-50); }

/* ===== ARTICLE / BLOG CONTENT ===== */
.article {
  max-width: 760px; margin: 0 auto;
  padding: 3rem 1.25rem;
}
.article h2 { margin-top: 2.25rem; margin-bottom: .75rem; }
.article h3 { margin-top: 1.75rem; margin-bottom: .5rem; }
.article p, .article li { font-size: 1.0625rem; line-height: 1.75; }
.article ul, .article ol { margin: 1rem 0 1.25rem 1.25rem; }
.article li { margin-bottom: .35rem; }
.article-meta {
  color: var(--text-muted); font-size: .875rem;
  margin-bottom: 2rem; display: flex; gap: 1rem; flex-wrap: wrap;
}
.article blockquote {
  border-left: 4px solid var(--secondary);
  padding: .5rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-muted);
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ===== FAQ ===== */
.faq-list { display: grid; gap: .75rem; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 700; color: var(--primary);
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
  font-family: var(--font-head);
  font-size: 1.0625rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; color: var(--accent);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  padding: 4rem 1.25rem 1.5rem;
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; } }
.footer .logo { color: #fff; margin-bottom: 1rem; }
.footer .logo span { color: var(--secondary-light); }
.footer-brand p { color: rgba(255,255,255,.75); font-size: .9375rem; }
.footer h4 {
  color: var(--secondary-light); font-family: var(--font-head);
  font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: .5rem; }
.footer ul a {
  color: rgba(255,255,255,.78); font-size: .9375rem;
  transition: color .2s;
}
.footer ul a:hover { color: var(--secondary-light); }
.footer-bottom {
  max-width: var(--container); margin: 3rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .8125rem; color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: var(--primary); color: #fff;
  padding: .85rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  font-weight: 600; font-size: .9375rem;
  z-index: 9999; transition: transform .3s;
  max-width: calc(100% - 2rem);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== SCROLL-TO-TOP ===== */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--primary); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .25s, transform .25s, background .2s;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--primary-dark); }

/* ===== FADE-IN ===== */
.fade-on-scroll { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.fade-on-scroll.fade-in { opacity: 1; transform: translateY(0); }

/* ===== PAGE HEADER (sub-pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff; text-align: center;
  padding: 4rem 1.25rem 3rem;
}
.page-header h1 { color: #fff; margin-bottom: .75rem; }
.page-header p { color: rgba(255,255,255,.9); max-width: 720px; margin: 0 auto; font-size: 1.0625rem; }
.breadcrumb {
  font-size: .8125rem; color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--secondary-light); }

/* ===== FILTER BAR ===== */
.filter-bar {
  background: var(--bg-alt);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  margin-bottom: 2rem;
}
.filter-bar label { font-weight: 600; color: var(--primary); font-size: .875rem; }
.filter-bar select, .filter-bar input {
  padding: .55rem .75rem; border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm); background: #fff; color: var(--text);
  font-size: .875rem; min-height: 40px;
}
.result-count { margin-left: auto; color: var(--text-muted); font-size: .875rem; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 1.25rem;
}
.trust-strip-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1.5rem;
  text-align: center;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  color: var(--primary); font-weight: 600; font-size: .875rem;
}
.trust-item svg { color: var(--secondary-dark); }

/* ===== UTILITY ===== */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
