:root {
  --brand-red: #c41e3a;
  --brand-navy: #1e3a5f;
  --brand-blue-light: #e8f4fc;
  --brand-blue: #d0e8f5;
  --brand-blue-dark: #1a6b9a;
  --brand-green: #2e7d32;
  --text-muted: rgba(30, 58, 95, 0.7);
  --text-muted-light: rgba(30, 58, 95, 0.5);
  --max-width: 72rem;
  --radius: 1rem;
  --radius-full: 9999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--brand-navy);
  background: linear-gradient(180deg, var(--brand-blue-light) 0%, #ffffff 40%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  flex: 1;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1rem;
}

.page-narrow {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

h1 {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  margin: 0;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

.card-shadow {
  box-shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
  transition: box-shadow 0.2s;
}

.card-shadow:hover {
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.12);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(208, 232, 245, 0.6);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

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

.logo-badge {
  display: inline-block;
  border: 2px solid var(--brand-navy);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.logo-fill { color: var(--brand-red); }
.logo-sight { color: var(--brand-navy); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(30, 58, 95, 0.8);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-red);
}

.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--brand-red);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
}

.btn-cart:hover {
  background: rgba(196, 30, 58, 0.9);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--brand-navy);
  color: white;
  font-size: 0.75rem;
  align-items: center;
  justify-content: center;
}

.cart-badge-sm {
  width: 1rem;
  height: 1rem;
  font-size: 0.625rem;
  top: 0;
  right: 0;
  background: var(--brand-red);
}

.nav-mobile-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-icon-mobile {
  position: relative;
  padding: 0.5rem;
  color: var(--brand-navy);
}

.menu-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--brand-navy);
  cursor: pointer;
}

.menu-toggle:hover {
  background: var(--brand-blue-light);
}

.nav-mobile {
  border-top: 1px solid rgba(208, 232, 245, 0.4);
  background: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  background: var(--brand-blue-light);
  color: var(--brand-red);
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-mobile-tools { display: none; }
  .nav-mobile { display: none !important; }
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(208, 232, 245, 0.6);
  background: var(--brand-navy);
  color: white;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-logo {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.footer-muted {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.5rem 0 0;
}

.footer-heading {
  font-weight: 600;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: white;
}

.footer-legal {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary,
a.btn-primary,
button.btn-primary {
  background: var(--brand-red);
  color: #fff;
}

.btn-primary:hover:not(:disabled),
a.btn-primary:hover,
button.btn-primary:hover:not(:disabled) {
  background: rgba(196, 30, 58, 0.9);
  color: #fff;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-outline {
  background: transparent;
  color: var(--brand-navy);
  border: 2px solid var(--brand-navy);
}

.btn-outline:hover {
  background: var(--brand-navy);
  color: white;
}

.btn-block {
  width: 100%;
}

.btn-text {
  background: none;
  border: none;
  color: var(--text-muted-light);
  font-size: 0.875rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.btn-text:hover { color: var(--brand-red); }

/* Hero */
.hero {
  background: linear-gradient(135deg, #e8f4fc 0%, #d0e8f5 50%, #b8dff0 100%);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 6rem 1.5rem;
  }
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-blue-dark);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3rem);
}

.text-red { color: var(--brand-red); }

.hero-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

.hero-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-box {
  border: 1px solid rgba(208, 232, 245, 0.4);
  background: white;
  border-radius: var(--radius);
  padding: 1rem;
}

.made-in-usa {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #ffffff;
  color: var(--brand-navy);
  padding: 0.5rem 0.875rem 0.5rem 0.625rem;
  border-radius: var(--radius-full);
  border: 2px solid #B22234;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.18);
}

.made-in-usa-flag {
  width: 2.25rem;
  height: auto;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.made-in-usa-text {
  line-height: 1.2;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Sections */
.section-white {
  background: rgba(255, 255, 255, 0.6);
  padding: 4rem 0;
}

.two-col {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.two-col-reverse .col-image {
  order: 2;
}

@media (min-width: 1024px) {
  .two-col-reverse { direction: rtl; }
  .two-col-reverse > * { direction: ltr; }
}

.image-rounded {
  border-radius: var(--radius);
  overflow: hidden;
}

.image-box {
  border: 1px solid rgba(208, 232, 245, 0.4);
  background: white;
  border-radius: var(--radius);
  padding: 1rem;
}

/* Feature cards */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: white;
  border: 1px solid rgba(208, 232, 245, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--brand-blue-light);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Bullet list */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  max-width: 48rem;
  display: grid;
  gap: 0.75rem;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
}

.bullet-list svg,
.bullet-list .check-icon {
  color: var(--brand-green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Product page */
.product-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.thumb-grid img {
  height: 6rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

.spec-table {
  border: 1px solid rgba(208, 232, 245, 0.4);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(208, 232, 245, 0.4);
}

.spec-row:last-child { border-bottom: none; }
.spec-row dt { font-weight: 500; margin: 0; }
.spec-row dd { color: var(--text-muted); margin: 0; }

.kit-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.kit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.kit-list svg { color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }

.product-price {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

.product-price span {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-muted-light);
}

/* Steps */
.step-card {
  display: flex;
  gap: 1.25rem;
  background: white;
  border: 1px solid rgba(208, 232, 245, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--brand-red);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card h2 { font-size: 1.125rem; }
.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.steps-grid {
  display: grid;
  gap: 1rem;
}

.info-box {
  background: var(--brand-blue-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.info-box a:not(.btn) {
  color: var(--brand-red);
  font-weight: 500;
}

.info-box a:not(.btn):hover { text-decoration: underline; }

/* FAQ */
.faq-item {
  background: white;
  border: 1px solid rgba(208, 232, 245, 0.4);
  border-radius: var(--radius);
}

.faq-item summary {
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  color: var(--brand-red);
  transition: transform 0.2s;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(208, 232, 245, 0.3);
  padding-top: 1rem;
  margin: 0 1.5rem 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

/* About */
.about-text {
  max-width: 42rem;
  margin: 0 auto;
  padding-left: 1.5rem;
}

@media (min-width: 640px) {
  .about-text { padding-left: 2.5rem; }
}

@media (min-width: 1024px) {
  .about-text { padding-left: 4rem; }
}

.about-text p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.banner-navy {
  background: var(--brand-navy);
  color: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.banner-navy p { margin: 0; }
.banner-navy .sub { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }

/* Contact */
.contact-card {
  max-width: 28rem;
  margin: 2.5rem auto 0;
  background: white;
  border: 1px solid rgba(208, 232, 245, 0.4);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.contact-links {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.contact-links a:hover { color: var(--brand-red); }
.contact-links svg { color: var(--brand-red); }

/* Cart */
.cart-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  background: white;
  border: 1px solid rgba(208, 232, 245, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.cart-thumb {
  width: 5rem;
  border-radius: 0.5rem;
}

.cart-item-info { flex: 1; min-width: 10rem; }
.cart-total { font-size: 1.125rem; font-weight: 700; }

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.qty-controls .qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border: 1px solid rgba(208, 232, 245, 0.8);
  background: white;
  border-radius: 0.5rem;
  padding: 0;
  cursor: pointer;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  color: var(--brand-navy);
  font-family: inherit;
}

.qty-controls .qty-btn span {
  display: block;
  margin-top: -0.125rem;
}

.qty-controls .qty-btn:hover {
  background: var(--brand-blue-light);
  border-color: var(--brand-blue);
}

.qty-controls .qty-btn:focus-visible {
  outline: 2px solid rgba(196, 30, 58, 0.35);
  outline-offset: 2px;
}

.qty-display {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--brand-navy);
}

.summary-box,
.disclaimer-box {
  border-radius: var(--radius);
  padding: 1.5rem;
}

.summary-box {
  border: 1px solid rgba(208, 232, 245, 0.4);
  background: rgba(232, 244, 252, 0.5);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.disclaimer-box {
  border: 1px solid #fde68a;
  background: #fffbeb;
}

.disclaimer-box a { color: var(--brand-red); }

.disclaimer-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
}

.disclaimer-check input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  accent-color: var(--brand-red);
  cursor: pointer;
}

#checkout-hint {
  color: var(--text-muted-light);
}

/* Legal */
.legal-content {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content h2 {
  font-size: 1.25rem;
  color: var(--brand-navy);
  margin-top: 2.5rem;
}

.legal-content p { white-space: pre-line; }

/* Device icons */
.device-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.device-icons img {
  width: 4rem;
  height: 4rem;
}

.feature-sections {
  display: grid;
  gap: 4rem;
  margin-top: 4rem;
}

/* App store links */
.app-store-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .app-store-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.app-store-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border: 1px solid rgba(208, 232, 245, 0.4);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.app-store-icon {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}

.app-store-item h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--brand-navy);
}

.app-store-link {
  display: inline-block;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-red);
}

.app-store-link:hover {
  text-decoration: underline;
}

/* Documentation downloads */
.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.doc-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: white;
  border: 1px solid rgba(208, 232, 245, 0.4);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.doc-item-info {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  flex: 1;
  min-width: 12rem;
}

.doc-icon {
  color: var(--brand-red);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.doc-title {
  font-weight: 600;
  color: var(--brand-navy);
}

.doc-title:hover {
  color: var(--brand-red);
}

.doc-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

.doc-download {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  white-space: nowrap;
}

/* Sales tax exemption */
.numbered-steps {
  margin: 1rem 0 0 1.25rem;
  padding: 0;
}

.numbered-steps li {
  margin-bottom: 0.5rem;
}

.numbered-steps a {
  color: var(--brand-red);
  font-weight: 500;
}

.tax-form {
  max-width: 42rem;
  background: white;
  border: 1px solid rgba(208, 232, 245, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .tax-form { padding: 2rem; }
}

.tax-form-section {
  border: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.tax-form-section legend {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 1rem;
  padding: 0;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select {
  border: 1px solid rgba(208, 232, 245, 0.8);
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font: inherit;
  color: var(--brand-navy);
  background: white;
}

.form-field input:focus,
.form-field select:focus {
  outline: 2px solid rgba(196, 30, 58, 0.25);
  border-color: var(--brand-red);
}

.signature-wrap {
  margin-top: 0.75rem;
}

#signature-canvas {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 140px;
  border: 1px dashed rgba(208, 232, 245, 0.9);
  border-radius: 0.5rem;
  background: #fafafa;
  touch-action: none;
  cursor: crosshair;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.875rem;
  min-height: 1.25rem;
}

.form-status.success {
  color: #166534;
}

.form-status.error {
  color: var(--brand-red);
}

.cart-email-field span {
  font-weight: 500;
  color: var(--brand-navy);
}

.exemption-status {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  min-height: 1.125rem;
}

.exemption-status.approved {
  color: #166534;
  font-weight: 500;
}

/* Testimonials */
.testimonial-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid rgba(208, 232, 245, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0;
}

.testimonial-stars {
  color: #d97706;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  margin: 0;
}

.testimonial-quote {
  flex: 1;
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: normal;
}

.testimonial-author {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(208, 232, 245, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--brand-navy);
  font-size: 0.9375rem;
}

.testimonial-meta {
  font-size: 0.8125rem;
  color: var(--text-muted-light);
}