:root {
  --color-navy: #0c1c49;
  --color-navy-2: #10296a;
  --color-footer: #333333;
  --color-text: #111827;
  --color-muted: #4b5563;
  --color-border: #e5e7eb;
  --page-width: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-text);
  background: #ffffff;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

.shopify-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 28, 73, 0.96);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100%, calc(var(--page-width) + 40px));
  min-height: 72px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 112px;
  text-decoration: none;
}

.site-logo img {
  display: block;
  width: 172px;
  max-height: 52px;
  border-radius: 10px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.primary-nav > a,
.nav-dropdown > button {
  min-height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.primary-nav > a:hover,
.nav-dropdown > button:hover,
.nav-dropdown.open > button {
  background: rgba(255, 255, 255, 0.12);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
  display: none;
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  padding: 11px 12px;
  border-radius: 4px;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
}

.provider-menu {
  grid-template-columns: 1fr 1fr;
  min-width: 340px;
}

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

.search-toggle,
.mobile-nav-toggle {
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.search-toggle {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  display: inline-grid;
  place-items: center;
}

.search-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.search-toggle img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.locale-label {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-search {
  width: min(100%, calc(var(--page-width) + 40px));
  margin: 0 auto;
  padding: 0 20px 18px;
}

.site-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-search input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 0 14px;
  background: #ffffff;
  color: #111827;
  font: inherit;
}

.search-results {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.search-results a {
  display: block;
  padding: 9px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
}

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  place-items: center;
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.site-main {
  overflow: hidden;
}

.site-main section {
  max-width: 100%;
}

.static-hero,
.policy-page,
.contact-layout,
.search-list {
  width: min(100% - 40px, var(--page-width));
  margin: 28px auto;
}

.static-hero {
  padding: 42px 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a 55%, #0ea5e9);
  color: #ffffff;
}

.static-hero h1,
.static-hero p {
  max-width: 840px;
}

.static-hero h1,
.policy-page h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
}

.static-hero p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
}

.static-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.static-button,
.contact-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: start;
}

.contact-card,
.contact-form,
.policy-page,
.search-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.contact-card,
.contact-form,
.policy-page {
  padding: 28px;
}

.contact-card h2,
.policy-page h2 {
  margin: 0 0 12px;
}

.contact-card p,
.policy-page p,
.policy-page li {
  color: var(--color-muted);
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.signup-form input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 12px 13px;
  font: inherit;
}

.contact-form button {
  justify-self: start;
  margin-top: 8px;
  background: var(--color-navy);
  color: #ffffff;
}

.policy-updated {
  margin-top: -6px;
  font-size: 14px;
}

.search-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.search-card {
  padding: 18px;
  text-decoration: none;
}

.search-card strong,
.search-card span {
  display: block;
}

.search-card span {
  margin-top: 8px;
  color: var(--color-muted);
  line-height: 1.5;
}

.shopify-footer {
  margin-top: 42px;
  background: var(--color-footer);
  color: #ffffff;
}

.footer-inner {
  width: min(100%, calc(var(--page-width) + 40px));
  margin: 0 auto;
  padding: 34px 20px 28px;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.footer-column h3,
.footer-column h4 {
  margin: 0 0 12px;
  color: #ffffff;
}

.footer-column p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.footer-column a {
  color: #ffffff;
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 750;
}

.signup-row {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  overflow: hidden;
}

.signup-row input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
}

.signup-row input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.signup-row button {
  width: 48px;
  border: 0;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
}

.footer-utilities {
  width: min(100%, calc(var(--page-width) + 40px));
  margin: 0 auto;
  padding: 0 20px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.footer-utilities p {
  margin: 0;
}

.footer-utilities nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-utilities a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-utilities a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .mobile-nav-toggle {
    display: inline-grid;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: rgba(12, 28, 73, 0.98);
  }

  .shopify-header.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav > a,
  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin: 0 0 8px;
    box-shadow: none;
  }

  .provider-menu {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-utilities {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-layout,
  .search-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 66px;
    gap: 10px;
    padding: 0 14px;
  }

  .primary-nav {
    top: 66px;
  }

  .site-logo img {
    width: 104px;
  }

  .locale-label {
    display: none;
  }

  .static-hero,
  .policy-page,
  .contact-layout,
  .search-list {
    width: min(100% - 24px, var(--page-width));
    margin: 18px auto;
  }

  .static-hero,
  .contact-card,
  .contact-form,
  .policy-page {
    padding: 22px 16px;
  }
}


.footer-contact h4 { letter-spacing: 0.01em; }




/* Header restore + logo-only alignment fix */
.header-inner {
  gap: 22px;
}

.primary-nav {
  gap: 4px;
}

.primary-nav > a,
.nav-dropdown > button {
  padding: 0 12px;
  font-size: 14px;
}

.site-logo {
  min-width: 155px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo img {
  width: 150px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  display: block;
  border-radius: 0;
}

@media screen and (max-width: 989px) {
  .site-logo {
    min-width: 145px;
  }

  .site-logo img {
    width: 140px;
    max-height: 44px;
  }
}

@media screen and (max-width: 749px) {
  .site-logo {
    min-width: 132px;
  }

  .site-logo img {
    width: 128px;
    max-height: 40px;
  }
}
