/* ============================================
   RxLabelFinder — Shared Styles
   ============================================ */

/* ============ CUSTOM PROPERTIES ============ */
:root {
  --navy: #0B1D3A;
  --navy-mid: #132B52;
  --navy-light: #1A3A6E;
  --teal: #00897B;
  --teal-light: #4DB6AC;
  --teal-dark: #00695C;
  --teal-bg: #E0F2F1;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray-50: #F8FAFC;
  --gray-100: #EEF1F6;
  --gray-200: #D8DDE6;
  --gray-300: #B0B8C9;
  --gray-500: #6B7A94;
  --gray-700: #3D4F6A;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --amber-dark: #92400E;
  --green-light: #DCFCE7;
  --green: #16A34A;
  --red-subtle: #FEE2E2;
  --red: #DC2626;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(11,29,58,0.06);
  --shadow-md: 0 4px 16px rgba(11,29,58,0.08);
  --shadow-lg: 0 8px 32px rgba(11,29,58,0.12);
  --shadow-xl: 0 16px 48px rgba(11,29,58,0.16);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============ UTILITIES ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { height: 1px; background: var(--gray-200); margin: 28px 0; }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--navy);
  color: var(--gray-300);
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left svg { flex-shrink: 0; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar a {
  color: var(--teal-light);
  text-decoration: none;
  font-weight: 500;
}
.topbar a:hover { color: var(--white); }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,137,123,0.15);
  border: 1px solid rgba(0,137,123,0.3);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============ HEADER / NAV ============ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
  color: var(--navy);
}
.logo-rx {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
  color: var(--teal);
  line-height: 1;
}
.logo-text {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  margin-left: 1px;
  vertical-align: super;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav a:hover { color: var(--navy); }
.nav a.active { color: var(--navy); font-weight: 600; }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  padding: 0;
}

/* ============ BUTTONS ============ */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--navy); background: var(--off-white); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-lg); }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
}
.breadcrumb-list a { color: var(--gray-500); text-decoration: none; }
.breadcrumb-list a:hover { color: var(--teal); }
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb-current { color: var(--navy); font-weight: 500; }

/* ============ BADGES & CHIPS ============ */
.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-teal { background: var(--teal-bg); color: var(--teal-dark); }
.badge-amber { background: var(--amber-light); color: var(--amber-dark); }
.badge-green { background: var(--green-light); color: var(--green); }

.chip {
  padding: 10px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.chip:hover { border-color: var(--teal); color: var(--navy); }
.chip.active {
  border-color: var(--teal);
  background: var(--teal-bg);
  color: var(--teal-dark);
  font-weight: 600;
}

/* ============ HERO (HOMEPAGE) ============ */
.hero {
  background: linear-gradient(168deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,137,123,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,137,123,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,137,123,0.12);
  border: 1px solid rgba(77,182,172,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal-light);
}
.hero p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-300);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.hero-btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* Hero shop entry cards */
.shop-entry {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shop-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  text-decoration: none;
  display: block;
}
.shop-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(77,182,172,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.shop-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.shop-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(0,137,123,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.shop-card:hover .shop-card-arrow {
  background: var(--teal);
  transform: translateX(2px);
}
.shop-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.shop-card p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.5;
  margin: 0;
}
.shop-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.shop-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  color: var(--gray-300);
  letter-spacing: 0.02em;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============ SECTIONS & HEADERS ============ */
.section { padding: 80px 0; }
.section-dark { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-header .eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* How it works steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, var(--gray-200), var(--teal-light), var(--gray-200));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--teal);
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.step-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============ PRODUCT CARDS (GRID LISTINGS) ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.product-img {
  width: 100%;
  height: 180px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-img-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-info { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
}
.product-compat {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.4;
}
.product-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-quote {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-autoship {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--amber-light);
  color: #92400E;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============ PRODUCT PAGE LAYOUT ============ */
.product-page { padding: 40px 0 80px; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Product details */
.product-details { display: flex; flex-direction: column; gap: 0; }
.product-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 8px;
}
.product-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px;
}
.product-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}

/* Compatible printer tags */
.compat-section { margin-bottom: 28px; }
.compat-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 5px;
}
.compat-tag svg { color: var(--green); }

/* Auto-Ship callout (product page) */
.autoship-callout {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid #FDE68A;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}
.autoship-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #FDE68A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.autoship-callout h4 {
  font-size: 13px; font-weight: 700; color: var(--amber-dark); margin-bottom: 2px;
}
.autoship-callout p {
  font-size: 12px; color: #78350F; line-height: 1.5;
}

/* Product CTA */
.product-cta {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}
.product-cta h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
}
.product-cta p {
  font-size: 14px;
  color: var(--gray-300);
  margin-bottom: 20px;
  line-height: 1.5;
}
.product-cta .btn-primary { width: 100%; justify-content: center; }

/* ============ PRODUCT INFO TABS ============ */
.info-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 32px;
}
.info-tab {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-sans);
}
.info-tab:hover { color: var(--navy); }
.info-tab.active { color: var(--navy); font-weight: 600; border-bottom-color: var(--teal); }

.info-panel { display: none; }
.info-panel.active { display: block; }

.info-content { max-width: 800px; }
.info-content h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--navy);
}
.info-content p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.spec-table tr { border-bottom: 1px solid var(--gray-100); }
.spec-table td {
  padding: 12px 0;
  font-size: 14px;
  vertical-align: top;
}
.spec-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 200px;
  padding-right: 24px;
}
.spec-table td:last-child { color: var(--gray-700); }

/* Software compatibility grid */
.software-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.software-check { color: var(--teal); flex-shrink: 0; }

/* ============ AUTOSHIP SECTION (HOMEPAGE) ============ */
.autoship-section { background: var(--navy); padding: 72px 0; }
.autoship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.autoship-content h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.autoship-content p {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.65;
  margin-bottom: 28px;
}
.autoship-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.autoship-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.5;
}
.autoship-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,137,123,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.autoship-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}
.schedule-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.schedule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.schedule-product {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.schedule-freq {
  font-size: 13px;
  color: var(--teal-light);
  font-weight: 500;
}

/* ============ B2B COMPLIANCE SECTION ============ */
.compliance-section { padding: 80px 0; border-bottom: 1px solid var(--gray-200); }
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.compliance-visual {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
}
.compliance-form-mock {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  max-width: 360px;
  margin: 0 auto;
}
.form-mock-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--navy);
}
.form-mock-field { margin-bottom: 14px; }
.form-mock-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 6px;
  display: block;
}
.form-mock-input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  color: var(--gray-300);
  background: var(--off-white);
  display: flex;
  align-items: center;
}
.form-mock-btn {
  width: 100%;
  height: 42px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.compliance-content h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.compliance-content p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}
.compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compliance-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}
.compliance-list svg { flex-shrink: 0; }

/* ============ COMPATIBLE SYSTEMS ============ */
.compat-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.compat-logo {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.compat-logo:hover { color: var(--navy); }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(168deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--teal-dark);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.cta-btn-white:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }

/* ============ HUB / LANDING PAGES ============ */
.hub-hero {
  background: var(--off-white);
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-200);
}
.hub-hero h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}
.hub-hero p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 620px;
}

/* Models section (printer brand pages) */
.models-bar {
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.models-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 12px;
}
.models-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.model-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
}

/* Content section (brand pages, utility pages) */
.content-section {
  padding: 64px 0;
  border-top: 1px solid var(--gray-200);
}
.content-block {
  max-width: 720px;
}
.content-block h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 16px;
}
.content-block p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.content-block p:last-child {
  margin-bottom: 0;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.hub-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--navy);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.hub-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.hub-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hub-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.hub-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 16px;
}
.hub-card-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hub-card-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-700);
  letter-spacing: 0.02em;
}
.hub-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  padding: 56px 0 32px;
  color: var(--gray-300);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 16px;
  color: var(--gray-500);
  max-width: 280px;
}
.footer h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-300);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-500);
}

/* ============ TEMPLATES COLLECTION PAGE ============ */
.page-header { padding: 48px 0 40px; border-bottom: 1px solid var(--gray-200); }
.page-header-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.page-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 8px; }
.page-title { font-family: var(--font-serif); font-size: 40px; font-weight: 400; line-height: 1.15; color: var(--navy); margin-bottom: 12px; }
.page-desc { font-size: 16px; color: var(--gray-500); line-height: 1.6; max-width: 620px; }
.page-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.page-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--gray-700); background: var(--gray-50); border: 1px solid var(--gray-100); padding: 8px 14px; border-radius: var(--radius); }

/* Size tabs */
.size-nav { padding: 20px 0; border-bottom: 1px solid var(--gray-200); background: var(--gray-50); }
.size-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.size-tab { padding: 8px 18px; border: 1.5px solid var(--gray-200); border-radius: 100px; background: var(--white); font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--gray-700); cursor: pointer; text-decoration: none; transition: all 0.2s; }
.size-tab:hover { border-color: var(--teal); color: var(--navy); }
.size-tab.active { border-color: var(--teal); background: var(--teal-bg); color: var(--teal-dark); }
.size-tab-label { font-size: 13px; font-weight: 600; color: var(--gray-500); margin-right: 12px; }

/* Templates grid */
.templates-section { padding: 48px 0 80px; }
.templates-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.templates-section-title { font-size: 18px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.templates-section-count { font-size: 13px; font-weight: 500; color: var(--gray-500); }

.templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }

/* Template card */
.template-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; transition: all 0.3s; cursor: pointer; position: relative; text-decoration: none; color: var(--navy); display: block; }
.template-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.template-visual { background: var(--gray-50); padding: 24px; display: flex; justify-content: center; align-items: center; min-height: 260px; position: relative; }

/* Template card badges */
.template-badge { position: absolute; top: 12px; right: 12px; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-popular { background: var(--teal-bg); color: var(--teal-dark); }
.badge-ltc { background: var(--amber-light); color: var(--amber-dark); }
.badge-autoship { background: var(--green-light); color: var(--green); }

.template-info { padding: 18px 20px 20px; }
.template-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.template-format { font-size: 12px; color: var(--gray-500); margin-bottom: 12px; font-weight: 500; }
.template-compat { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 16px; }
.template-compat-tag { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; background: var(--gray-50); border: 1px solid var(--gray-100); color: var(--gray-700); }
.template-footer { display: flex; justify-content: space-between; align-items: center; }
.template-cta { font-size: 13px; font-weight: 700; color: var(--teal); display: flex; align-items: center; gap: 5px; text-decoration: none; }
.template-cta:hover { color: var(--teal-dark); }
.template-specs { font-size: 11px; color: var(--gray-500); display: flex; gap: 10px; }
.template-spec { display: flex; align-items: center; gap: 3px; }

/* Label mock (small — collection cards) */
.label-mock { width: 180px; height: 220px; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 4px; padding: 12px; display: flex; flex-direction: column; position: relative; box-shadow: 0 2px 8px rgba(11,29,58,0.06); }
.lm-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.lm-pharmacy { width: 60%; height: 8px; background: var(--navy); border-radius: 2px; opacity: 0.7; }
.lm-rx { font-size: 9px; font-weight: 800; color: var(--teal); letter-spacing: 0.05em; }
.lm-line { height: 5px; background: var(--gray-100); border-radius: 2px; margin-bottom: 5px; }
.lm-line.w90 { width: 90%; }
.lm-line.w80 { width: 80%; }
.lm-line.w70 { width: 70%; }
.lm-line.w60 { width: 60%; }
.lm-line.w40 { width: 40%; }
.lm-line.dark { background: var(--gray-200); height: 6px; }
.lm-line.drug { background: var(--navy); height: 8px; width: 75%; opacity: 0.6; margin-bottom: 6px; }
.lm-spacer { height: 6px; }
.lm-barcode { width: 70%; height: 20px; margin-top: auto; background: repeating-linear-gradient(90deg, var(--navy) 0px, var(--navy) 1.5px, transparent 1.5px, transparent 3px); opacity: 0.3; border-radius: 1px; }
.lm-barcode-sm { width: 50%; height: 16px; margin-top: auto; background: repeating-linear-gradient(90deg, var(--navy) 0px, var(--navy) 1px, transparent 1px, transparent 2.5px); opacity: 0.25; border-radius: 1px; }
.lm-section { border-top: 1px dashed var(--gray-200); padding-top: 6px; margin-top: 6px; }
.lm-pull-tab { position: absolute; right: -1px; top: 50%; transform: translateY(-50%); width: 18px; height: 40px; background: var(--amber-light); border: 1.5px solid #FDE68A; border-right: none; border-radius: 4px 0 0 4px; display: flex; align-items: center; justify-content: center; }
.lm-pull-tab span { font-size: 6px; font-weight: 800; color: var(--amber-dark); writing-mode: vertical-lr; text-transform: uppercase; letter-spacing: 0.1em; }
.lm-receipt { position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%); width: 60%; height: 14px; background: var(--white); border: 1px dashed var(--gray-300); border-bottom: none; border-radius: 4px 4px 0 0; display: flex; align-items: center; justify-content: center; }
.lm-receipt span { font-size: 5px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; }
.lm-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 4px; }
.lm-two-col .lm-line { margin-bottom: 0; }
.lm-aux-labels { display: flex; gap: 3px; margin-top: 4px; }
.lm-aux { width: 24px; height: 8px; border-radius: 2px; }
.lm-aux.yellow { background: #FDE68A; }
.lm-aux.orange { background: #FDBA74; }
.lm-aux.red { background: #FCA5A5; }

/* Label mock (large — detail page) */
.label-mock-lg { width: 260px; height: 340px; background: var(--white); border: 2px solid var(--gray-200); border-radius: 6px; padding: 20px; display: flex; flex-direction: column; box-shadow: 0 4px 24px rgba(11,29,58,0.08); position: relative; }
.lm-pharmacy-block { display: flex; flex-direction: column; gap: 3px; }
.lm-pharmacy-sub { height: 5px; background: var(--gray-200); border-radius: 2px; width: 80px; }
.lm-rx-badge { font-size: 11px; font-weight: 800; color: var(--teal); background: var(--teal-bg); padding: 2px 8px; border-radius: 4px; }
.lm-patient { height: 9px; background: var(--navy); border-radius: 2px; width: 70%; opacity: 0.5; margin-bottom: 10px; }
.lm-drug { height: 11px; background: var(--navy); border-radius: 2px; width: 80%; opacity: 0.65; margin-bottom: 6px; }
.lm-drug-sub { height: 7px; background: var(--gray-300); border-radius: 2px; width: 50%; margin-bottom: 14px; }
.lm-divider { border-top: 1px dashed var(--gray-200); margin: 10px 0; }
.lm-footer-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.lm-footer-left { display: flex; flex-direction: column; gap: 3px; }
.lm-footer-line { height: 5px; background: var(--gray-100); border-radius: 2px; }

/* Label mock variants */
.label-mock-compact {
  width: 180px;
  height: 140px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 8px rgba(11,29,58,0.06);
}
.label-mock-laser {
  width: 160px;
  height: 210px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 8px rgba(11,29,58,0.06);
}
.lm-laser-divider {
  border-top: 1.5px dashed var(--gray-300);
  margin: auto 0 8px;
}
.lm-laser-zone {
  font-size: 7px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

/* Annotations (detail page) */
.annotations { position: absolute; inset: 0; pointer-events: none; }
.anno { position: absolute; font-size: 10px; font-weight: 600; color: var(--teal); background: var(--white); border: 1px solid var(--teal-bg); padding: 2px 8px; border-radius: 100px; white-space: nowrap; }
.anno.top-left { top: 20px; left: 20px; }
.anno.top-right { top: 20px; right: 20px; }
.anno.bottom-left { bottom: 20px; left: 20px; }
.anno.bottom-right { bottom: 20px; right: 20px; }

/* Visual badges (detail page) */
.visual-badges { display: flex; gap: 8px; justify-content: center; }
.vbadge { font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.04em; display: flex; align-items: center; gap: 5px; }
.vbadge-stock { background: var(--gray-50); border: 1px solid var(--gray-200); color: var(--gray-700); }
.vbadge-custom { background: var(--teal-bg); border: 1px solid #B2DFDB; color: var(--teal-dark); }
.vbadge-autoship { background: var(--amber-light); border: 1px solid #FDE68A; color: var(--amber-dark); }

/* ============ TEMPLATE DETAIL PAGE ============ */
.product-visual { position: sticky; top: 96px; }
.product-visual-main { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 48px; display: flex; justify-content: center; align-items: center; min-height: 440px; margin-bottom: 16px; position: relative; }
.product-format { font-size: 14px; color: var(--gray-500); font-weight: 500; margin-bottom: 16px; }
.product-desc { font-size: 15px; color: var(--gray-700); line-height: 1.65; margin-bottom: 28px; }

/* Spec pills */
.spec-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.spec-pill { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--navy); }
.spec-pill-label { font-weight: 400; color: var(--gray-500); }

/* Option groups (detail page) */
.option-group { margin-bottom: 24px; }
.option-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 10px; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* Compat section (detail page) */
.compat-section { margin-bottom: 28px; }
.compat-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 10px; }
.compat-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.compat-tag { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 100px; background: var(--gray-50); border: 1px solid var(--gray-200); color: var(--gray-700); }
.compat-check { color: var(--teal); }

/* CTA note */
.cta-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 11px; color: var(--gray-500); }

/* Chip checkbox (auto replenish) */
.chip-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  flex-wrap: wrap;
}
.chip-checkbox:hover { border-color: var(--teal); }
.chip-checkbox-input { display: none; }
.chip-checkbox-box {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gray-200);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  color: transparent;
}
.chip-checkbox-input:checked ~ .chip-checkbox-box {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.chip-checkbox-input:checked ~ .chip-checkbox-text { color: var(--navy); font-weight: 600; }
.chip-checkbox-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}
.chip-checkbox-sub {
  width: 100%;
  font-size: 12px;
  color: var(--gray-500);
  padding-left: 34px;
  position: relative;
}
.chip-checkbox-sub::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  position: absolute;
  left: 22px;
  top: 5px;
}

/* Response guarantee callout */
.response-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--teal-bg);
  border: 1px solid #B2DFDB;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.response-guarantee-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #B2DFDB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.response-guarantee-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 2px;
}
.response-guarantee-sub {
  font-size: 12px;
  color: var(--teal-dark);
  opacity: 0.8;
  line-height: 1.5;
}

/* Inline form fields (product detail page — flows with options) */
.inline-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inline-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.inline-field {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: border-color 0.2s;
}
.inline-field::placeholder { color: var(--gray-300); }
.inline-field:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,137,123,0.1);
}
.inline-textarea {
  height: 80px;
  padding: 12px 14px;
  resize: vertical;
}

/* Quote form card (product detail page) */
.quote-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 20px;
}
.quote-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}
.quote-card > p {
  font-size: 13px;
  color: var(--gray-300);
  margin-bottom: 20px;
  line-height: 1.5;
}
.quote-card .quote-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.quote-card .quote-field {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0 14px;
  height: 44px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--white);
  width: 100%;
  transition: border-color 0.2s;
}
.quote-card .quote-field::placeholder {
  color: var(--gray-500);
}
.quote-card .quote-field:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255,255,255,0.08);
}
.quote-card .quote-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quote-card textarea.quote-field {
  height: 80px;
  padding: 12px 14px;
  resize: vertical;
}
.quote-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* Trust row (detail page) */
.trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.trust-row .trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--gray-700); padding: 10px 12px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius); }

/* Software section (detail page) */
.software-section { border-top: 1px solid var(--gray-200); padding: 56px 0; }
.software-section-header { margin-bottom: 28px; }
.software-section-header h2 { font-family: var(--font-serif); font-size: 28px; color: var(--navy); margin-bottom: 6px; }
.software-section-header p { font-size: 14px; color: var(--gray-500); }
.software-card { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius); font-size: 14px; font-weight: 500; color: var(--navy); transition: all 0.2s; }
.software-card:hover { border-color: var(--teal); background: var(--teal-bg); }
.sw-check { color: var(--teal); flex-shrink: 0; }

/* Specs section (detail page) */
.specs-section { border-top: 1px solid var(--gray-200); padding: 56px 0; }
.specs-section h2 { font-family: var(--font-serif); font-size: 28px; color: var(--navy); margin-bottom: 24px; }
.specs-table { width: 100%; max-width: 700px; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--gray-100); }
.specs-table td { padding: 14px 0; font-size: 14px; vertical-align: top; }
.specs-table td:first-child { font-weight: 600; color: var(--navy); width: 200px; padding-right: 24px; }
.specs-table td:last-child { color: var(--gray-700); }

/* Bottom CTA (detail page) */
.bottom-cta { background: var(--off-white); border-top: 1px solid var(--gray-200); padding: 56px 0; }
.bottom-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.bottom-cta-inner h2 { font-family: var(--font-serif); font-size: 28px; color: var(--navy); margin-bottom: 6px; }
.bottom-cta-inner p { font-size: 14px; color: var(--gray-500); max-width: 440px; }
.bottom-cta-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-ghost-navy { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); background: var(--white); color: var(--navy); font-family: var(--font-sans); font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.btn-ghost-navy:hover { border-color: var(--navy); background: var(--gray-50); }

/* Custom label CTA (collection page) */
.custom-cta { background: var(--navy); border-radius: var(--radius-xl); padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.custom-cta-content h2 { font-family: var(--font-serif); font-size: 30px; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.custom-cta-content p { font-size: 15px; color: var(--gray-300); line-height: 1.6; margin-bottom: 24px; }
.custom-cta-steps { display: flex; flex-direction: column; gap: 12px; }
.custom-step { display: flex; align-items: center; gap: 12px; }
.custom-step-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(0,137,123,0.15); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 14px; font-style: italic; color: var(--teal-light); flex-shrink: 0; }
.custom-step-text { font-size: 14px; color: var(--gray-300); }
.custom-cta-visual { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.upload-zone { border: 2px dashed rgba(255,255,255,0.15); border-radius: var(--radius-lg); padding: 32px 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 16px; }
.upload-zone-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(0,137,123,0.15); display: flex; align-items: center; justify-content: center; }
.upload-zone-title { font-size: 14px; font-weight: 600; color: var(--white); }
.upload-zone-sub { font-size: 12px; color: var(--gray-500); }
.upload-fields { display: flex; flex-direction: column; gap: 8px; }
.upload-field { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 10px 14px; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-300); }

/* ============ FEATURES GRID (AUTO-SHIP, UTILITY PAGES) ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ============ FORM STYLING (REQUEST-QUOTE, CUSTOM-LABELS) ============ */
.form-section {
  padding: 64px 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 8px;
  display: block;
}
.form-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,137,123,0.1);
}
.form-select {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7A94' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-textarea {
  width: 100%;
  min-height: 120px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  resize: vertical;
}
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,137,123,0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
}

/* ============ COMING SOON BADGE ============ */
.badge-coming-soon {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============ HOW IT WORKS PAGE ============ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.how-step { text-align: left; }
.how-step-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-style: italic;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.9;
}
.how-step h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.how-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-300);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.2s;
}
.benefit:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(11,29,58,0.06); }
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.benefit p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}

.network-trust-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.network-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.network-trust-item svg { color: var(--teal); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.6s ease-out; }
.shop-entry { animation: fadeUp 0.6s ease-out 0.15s both; }
.shop-card { animation: fadeUp 0.5s ease-out both; }
.shop-card:nth-child(2) { animation-delay: 0.25s; }
.product-details { animation: fadeUp 0.5s ease-out; }
.product-visual { animation: fadeUp 0.5s ease-out 0.1s both; }
.template-card { animation: fadeUp 0.5s ease-out both; }
.template-card:nth-child(2) { animation-delay: 0.05s; }
.template-card:nth-child(3) { animation-delay: 0.1s; }
.template-card:nth-child(4) { animation-delay: 0.15s; }
.template-card:nth-child(5) { animation-delay: 0.2s; }
.template-card:nth-child(6) { animation-delay: 0.25s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .autoship-grid,
  .compliance-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-visual { position: static; }
  .software-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-hero h1 { font-size: 36px; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-cta { grid-template-columns: 1fr; }
  .page-header-grid { grid-template-columns: 1fr; }
  .bottom-cta-inner { flex-direction: column; text-align: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(11,29,58,0.12);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    z-index: 99;
  }
  .nav.nav-open { display: flex; }
  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 16px;
  }
  .nav a:last-child { border-bottom: none; }
  .nav a.active::after { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .hero { padding: 56px 0 64px; }
  .hero h1 { font-size: 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-header h2 { font-size: 30px; }
  .product-title { font-size: 28px; }
  .software-grid { grid-template-columns: 1fr; }
  .info-tabs { overflow-x: auto; }
  .hub-hero h1 { font-size: 30px; }
  .hub-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: 1fr; }
  .page-title { font-size: 30px; }
  .trust-row { grid-template-columns: 1fr; }
  .spec-pills { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .inline-field-row { grid-template-columns: 1fr; }
}
