/*
Theme Name: Sedation Certification
Theme URI: https://sedationcertification.com
Author: Sedation Certification
Author URI: https://sedationcertification.com
Description: Custom theme for Sedation Certification — CSRN™ online training for healthcare professionals.
Version: 2.0.0-dev
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: Proprietary
Text Domain: sedation-certification
*/

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

:root {
  --navy: #0B2545;
  --navy-mid: #1B3A6B;
  --teal: #0E7C6B;
  --teal-light: #12A68F;
  --teal-pale: #E6F7F4;
  --gold: #C9882A;
  --gold-pale: #FDF4E3;
  --gray-50: #F8F9FB;
  --gray-100: #EEF0F4;
  --gray-200: #D9DCE5;
  --gray-400: #8B909E;
  --gray-700: #3D4455;
  --gray-900: #1A1D26;
  --white: #FFFFFF;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-logo { display: flex; align-items: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin-left: 2.5rem;
  margin-right: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--teal-light);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 14px;
  transition: background 0.15s !important;
}

.nav-cta:hover { background: var(--teal) !important; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 120px 2rem 110px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(14,124,107,0.15);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(14,124,107,0.10);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(14,124,107,0.25);
  border: 1px solid rgba(14,166,143,0.4);
  color: #5DDFC8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--teal-light);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  border: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--teal); transform: translateY(-1px); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: inline-block;
}

.btn-outline:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Merriweather', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ─── APPROVED STRIP ─── */
.approved-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 2rem;
  text-align: center;
}

.approved-text {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

.approved-text strong { color: var(--gray-700); }

/* ─── SECTIONS ─── */
.section { padding: 80px 2rem; }
.section-alt { background: var(--gray-50); }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-700);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ─── PATHWAY CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 36px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card.featured { border-color: var(--teal); border-width: 2px; }

.card-badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.card-icon.teal { background: var(--teal-pale); }
.card-icon.gold { background: var(--gold-pale); }
.card-icon.navy { background: #E8EDF4; }

.card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }

.card p { font-size: 14px; color: var(--gray-700); line-height: 1.65; flex: 1; margin-bottom: 24px; }

.card ul { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }

.card ul li {
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.card ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.card-price { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.card-price span { font-size: 14px; font-weight: 500; color: var(--gray-400); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
  border: 1.5px solid var(--teal);
  display: inline-block;
  text-align: center;
  width: 100%;
}

.btn-outline-teal:hover { background: var(--teal-pale); color: var(--teal); }

/* ─── CURRICULUM ─── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.module-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.15s;
}

.module-card:hover { border-color: var(--teal); }

.module-num {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.module-num.teal-bg { background: var(--teal); }

.module-text h4 { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.35; }
.module-text p { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* ─── SPECIALTIES STRIP ─── */
.specialties-strip {
  background: var(--navy);
  padding: 56px 2rem;
  color: var(--white);
}

.specialties-inner { max-width: 1100px; margin: 0 auto; }

.specialties-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  text-align: center;
}

.specialties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.specialty-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 20px;
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature { display: flex; gap: 18px; align-items: flex-start; }

.feature-icon {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--gray-700); line-height: 1.65; }

/* ─── CREDENTIAL ─── */
.credential-box {
  background: var(--gold-pale);
  border: 1px solid #E8C87A;
  border-radius: var(--radius-md);
  padding: 36px 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.credential-icon { font-size: 48px; flex-shrink: 0; }

.credential-box h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.credential-box p { font-size: 14px; color: var(--gray-700); line-height: 1.7; }

.credential-detail {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.credential-detail-item { font-size: 13px; font-weight: 600; color: var(--navy); }
.credential-detail-item span { display: block; font-weight: 400; color: var(--gray-400); font-size: 12px; margin-top: 2px; }

/* ─── FAQ ─── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
  font-family: 'Inter', system-ui, sans-serif;
}

.faq-question:hover { background: var(--gray-50); }

.faq-chevron {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  transition: transform 0.2s, background 0.15s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--teal-pale); color: var(--teal); }

.faq-answer {
  display: none;
  padding: 16px 24px 20px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}

.faq-item.open .faq-answer { display: block; }

/* ─── RESOURCES ─── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.resource-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }

.resource-icon { font-size: 24px; margin-bottom: 12px; }
.resource-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.resource-card p { font-size: 13px; color: var(--gray-400); line-height: 1.5; }

/* ─── CONTACT FORM ─── */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--teal-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-info-label { font-size: 13px; color: var(--gray-400); font-weight: 500; margin-bottom: 2px; }
.contact-info-value { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-info-sub { font-size: 13px; color: var(--gray-400); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-900);
  outline: none;
  transition: border-color 0.15s;
  background: white;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal-light);
}

.form-textarea { resize: vertical; }

.form-select { appearance: none; cursor: pointer; }

.form-submit {
  width: 100%;
  background: var(--teal-light);
  color: white;
  padding: 13px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}

.form-submit:hover { background: var(--teal); }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--teal-pale);
  border-radius: 8px;
  font-size: 14px;
  color: var(--teal);
  font-weight: 500;
  text-align: center;
}

/* ─── CTA STRIP ─── */
.contact-strip {
  background: var(--teal);
  padding: 60px 2rem;
  text-align: center;
  color: var(--white);
}

.contact-strip h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 12px;
}

.contact-strip p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }

.btn-white {
  background: var(--white);
  color: var(--teal);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: opacity 0.15s;
}

.btn-white:hover { opacity: 0.9; color: var(--teal); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 2rem 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.4px;
}

.footer-col p { font-size: 13px; line-height: 1.7; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item { font-size: 13px; margin-bottom: 8px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--white); }

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1100px;
  margin: 0 auto 24px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-disclaimer {
  max-width: 1100px;
  margin: 20px auto 0;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--gray-100); }
  .section { padding: 56px 1.25rem; }
  .credential-box { flex-direction: column; gap: 16px; padding: 28px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 1.25rem 56px; }
  .form-row { grid-template-columns: 1fr; }
}


.nav-links > li > a { white-space: nowrap; }


/* ════════════════════════════════════════════════════════════════════════
   v2.0.0 EXTENSIONS (build/theme-v2) — dropdown nav · WooCommerce · state pages
   ════════════════════════════════════════════════════════════════════════ */

/* ─── DROPDOWN / SUBMENU NAV ─── */
.nav-links li { position: relative; }
.nav-links .menu-item-has-children > a::after {
  content: "▾"; font-size: 10px; margin-left: 6px; opacity: 0.6;
}
.nav-links .sub-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu,
.nav-links li.submenu-open > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-links .sub-menu li { width: 100%; }
.nav-links .sub-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--gray-700) !important;
  font-size: 13.5px;
  white-space: nowrap;
}
.nav-links .sub-menu a:hover { background: var(--teal-pale); color: var(--navy) !important; }
/* second level (rare) opens to the side */
.nav-links .sub-menu .sub-menu { top: 0; left: 100%; }

/* ─── MOBILE NAV (hamburger + slide-down panel) ─── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  color: var(--white); font-size: 22px; line-height: 1;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 10px 16px 18px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { display: block; padding: 12px 8px; }
  .nav-links .sub-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    background: rgba(255,255,255,0.06);
    border: none; box-shadow: none;
    padding: 0 0 0 16px;
  }
  .nav-links li.submenu-open > .sub-menu { display: block; }
  .nav-links .sub-menu a { color: rgba(255,255,255,0.75) !important; }
  .nav-links .sub-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white) !important; }
}

/* ─── WOOCOMMERCE — styled to the design system ─── */
.woocommerce-page main.sedation-woo-wrap,
main.sedation-woo-wrap {
  max-width: 1140px; margin: 48px auto 80px; padding: 0 2rem;
}
.sedation-woo-wrap h1.page-title {
  font-family: 'Merriweather', serif; color: var(--navy);
  font-size: clamp(26px, 4vw, 38px); margin-bottom: 28px;
}
/* buttons */
.woocommerce a.button, .woocommerce button.button,
.woocommerce input.button, .woocommerce #respond input#submit,
.woocommerce a.button.alt, .woocommerce button.button.alt,
.woocommerce input.button.alt, .woocommerce #place_order {
  background: var(--teal); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  font-weight: 700; font-family: 'Inter', sans-serif;
  padding: 12px 22px;
  transition: background 0.2s;
}
.woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input.button:hover, .woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,
.woocommerce #place_order:hover { background: var(--teal-light); color: var(--white); }
.woocommerce a.button.checkout, .woocommerce #place_order { background: var(--navy); }
.woocommerce a.button.checkout:hover, .woocommerce #place_order:hover { background: var(--navy-mid); }
/* product grid cards */
.woocommerce ul.products li.product {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.woocommerce ul.products li.product:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy);
}
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price {
  color: var(--teal); font-weight: 700; font-size: 18px;
}
.woocommerce div.product .product_title { font-family: 'Merriweather', serif; color: var(--navy); }
/* notices */
.woocommerce-message, .woocommerce-info {
  border-top-color: var(--teal);
  background: var(--teal-pale);
  color: var(--gray-900);
  border-radius: var(--radius-sm);
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--teal); }
.woocommerce-error { border-top-color: #C0392B; border-radius: var(--radius-sm); }
/* forms (checkout/account) */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-family: 'Inter', sans-serif;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14,124,107,0.1);
}
/* account navigation */
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; }
.woocommerce-MyAccount-navigation li a {
  display: block; padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--gray-700); font-weight: 600; font-size: 14px;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover { background: var(--teal-pale); color: var(--navy); }
/* tables (cart, orders) */
.woocommerce table.shop_table {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  border-collapse: separate; border-spacing: 0;
}
.woocommerce table.shop_table th { background: var(--gray-50); color: var(--navy); }

/* ─── STATE-PAGE TEMPLATE (page-templates/state-requirements.php) ─── */
.state-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 72px 2rem 56px;
  text-align: center;
}
.state-hero .state-badge {
  display: inline-block;
  background: rgba(18,166,143,0.18);
  border: 1px solid rgba(18,166,143,0.5);
  color: var(--teal-light);
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 18px;
}
.state-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.2; max-width: 820px; margin: 0 auto;
}
.state-content {
  max-width: 820px; margin: 0 auto; padding: 48px 2rem 40px;
  font-size: 16px; line-height: 1.8; color: var(--gray-700);
}
.state-content h2 {
  font-family: 'Merriweather', serif; color: var(--navy);
  font-size: clamp(22px, 3vw, 30px); margin: 40px 0 14px; line-height: 1.3;
}
.state-content h3 { color: var(--navy); font-size: 17px; margin: 26px 0 8px; }
.state-content p { margin: 0 0 16px; }
.state-content ul, .state-content ol { margin: 0 0 18px 22px; }
.state-content li { margin-bottom: 8px; }
.state-content table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14.5px;
}
.state-content td {
  padding: 10px 14px; border-bottom: 1px solid var(--gray-200); vertical-align: top;
}
.state-content tr td:first-child { color: var(--navy); background: var(--gray-50); width: 34%; }
.state-content blockquote {
  border-left: 3px solid var(--teal);
  background: var(--teal-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px; margin: 22px 0;
  font-style: italic; color: var(--navy);
}
.state-content blockquote cite { display: block; margin-top: 10px; font-style: normal; font-size: 13px; color: var(--gray-400); }
.state-cta {
  background: var(--navy); color: var(--white);
  text-align: center; padding: 56px 2rem; margin-top: 48px;
}
.state-cta h2 { font-family: 'Merriweather', serif; font-size: clamp(22px, 3vw, 32px); margin-bottom: 10px; }
.state-cta p { color: rgba(255,255,255,0.7); margin-bottom: 26px; }
.state-cta .btn-primary {
  display: inline-block; background: var(--teal); color: var(--white);
  font-weight: 700; padding: 14px 30px; border-radius: var(--radius-sm);
}
.state-cta .btn-primary:hover { background: var(--teal-light); }
