:root {
  --navy-950: #082f50;
  --navy-900: #0b416f;
  --navy-800: #0b4f86;
  --navy-700: #17649e;
  --navy-100: #e9f2f8;
  --red-700: #ba1f2e;
  --red-600: #d32031;
  --red-100: #fff0f1;
  --yellow-500: #f5c242;
  --yellow-100: #fff8dc;
  --ink-900: #132638;
  --ink-700: #3b5268;
  --ink-600: #536a7e;
  --line: #d9e2ea;
  --line-strong: #b8c8d5;
  --surface: #ffffff;
  --surface-soft: #f5f8fa;
  --surface-blue: #f0f6fa;
  --success: #18734d;
  --success-bg: #ecf9f3;
  --warning: #8f3b12;
  --warning-bg: #fff7ed;
  --shadow-sm: 0 3px 12px rgba(8, 47, 80, 0.08);
  --shadow-md: 0 12px 34px rgba(8, 47, 80, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --page: 1180px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink-900);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
label,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--navy-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red-700);
}

button:focus-visible,
input:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(245, 194, 66, 0.95);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.16;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.16rem;
}

.page-width {
  width: min(calc(100% - 40px), var(--page));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--navy-950);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[hidden] {
  display: none !important;
}

.trust-bar {
  background: var(--navy-950);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 650;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 42px;
}

.trust-bar span span {
  margin-right: 6px;
  color: var(--yellow-500);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 28px;
}

.brand-link {
  flex: 0 1 360px;
}

.brand-logo {
  width: min(360px, 100%);
  height: auto;
}

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

.secure-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #bdd1df;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-link {
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 72px;
  background:
    radial-gradient(circle at 88% 8%, rgba(245, 194, 66, 0.25), transparent 18rem),
    radial-gradient(circle at 6% 90%, rgba(23, 100, 158, 0.1), transparent 24rem),
    linear-gradient(145deg, #f9fcfe 0%, #eef6fb 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 55px solid rgba(11, 79, 134, 0.04);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--red-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--ink-700);
  font-size: 1.13rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero__facts > div {
  display: flex;
  flex: 1 1 170px;
  flex-direction: column;
  min-width: 0;
  padding: 15px 17px;
  border: 1px solid rgba(11, 79, 134, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.hero__facts strong {
  color: var(--navy-950);
  font-size: 1rem;
}

.hero__facts span {
  color: var(--ink-600);
  font-size: 0.83rem;
}

.special-order-banner {
  display: flex;
  align-items: center;
  max-width: 720px;
  gap: 13px;
  padding: 14px 17px;
  border-left: 4px solid var(--red-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--red-100);
}

.special-order-banner p {
  margin: 0;
  color: #6c1c24;
}

.special-order-banner__icon {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  color: white;
  font-weight: 900;
}

.hero__security-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 24px 60px rgba(8, 47, 80, 0.28);
  color: #fff;
}

.hero__security-card::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  content: "";
  pointer-events: none;
}

.hero__security-card h2 {
  position: relative;
  color: white;
  font-size: 1.45rem;
}

.security-shield {
  position: relative;
  width: 68px;
  height: 76px;
  margin-bottom: 18px;
}

.security-shield svg path:first-child {
  fill: rgba(245, 194, 66, 0.15);
  stroke: var(--yellow-500);
  stroke-width: 3;
}

.security-shield svg path:last-child {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.check-list {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #eaf3f8;
  font-size: 0.94rem;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--navy-950);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.status-section {
  padding-top: 28px;
}

.status-panel {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid;
  border-radius: var(--radius-md);
}

.status-panel h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.status-panel p:last-child {
  margin-bottom: 0;
}

.status-panel--success {
  border-color: #9ed4bd;
  background: var(--success-bg);
}

.status-panel--notice {
  border-color: #edc789;
  background: var(--yellow-100);
}

.status-panel__icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-weight: 900;
}

.success-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #b8decc;
}

.success-details div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.success-details span {
  color: var(--ink-600);
}

.order-section {
  padding: 62px 0 88px;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 355px;
  align-items: start;
  gap: 40px;
}

.order-form {
  min-width: 0;
}

.form-step {
  padding: clamp(24px, 4vw, 38px);
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.step-heading {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 28px;
}

.step-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.step-heading p {
  margin-bottom: 0;
  color: var(--ink-600);
}

.step-number {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-800);
  color: white;
  font-weight: 800;
}

.option-grid {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  border: 0;
}

.option-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  cursor: pointer;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.option-card:hover {
  border-color: #9ab8cb;
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.option-card:has(input:checked) {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(23, 100, 158, 0.12);
}

.option-card:has(input:focus-visible) {
  outline: 3px solid rgba(245, 194, 66, 0.95);
  outline-offset: 3px;
}

.option-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.option-card__check {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: white;
}

.option-card:has(input:checked) .option-card__check {
  border: 6px solid var(--navy-700);
}

.option-card__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 22px;
}

.option-card__title {
  padding-right: 26px;
  color: var(--navy-950);
  font-size: 1.08rem;
  font-weight: 800;
}

.option-card__price {
  margin: 6px 0 10px;
  color: var(--red-700);
  font-size: 0.94rem;
  font-weight: 800;
}

.option-card__text {
  color: var(--ink-600);
  font-size: 0.9rem;
}

.option-card--visual {
  flex-direction: column;
  overflow: hidden;
}

.key-illustration {
  display: grid;
  min-height: 128px;
  place-items: center;
  padding: 22px 44px 10px;
  background: linear-gradient(180deg, #f5f9fc, #fff);
}

.key-illustration svg {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.key-illustration circle,
.key-illustration path {
  fill: none;
  stroke: var(--navy-800);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.illustration-note {
  margin: 10px 0 0;
  color: var(--ink-600);
  font-size: 0.8rem;
}

.option-card--compact {
  min-height: 140px;
}

.service-card {
  min-height: 320px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 7px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-700);
  font-size: 0.84rem;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.service-card--premium {
  border-color: #e9c966;
  background: linear-gradient(180deg, #fffdf5, #fff);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.small-print {
  margin-top: auto;
  padding-top: 14px;
  color: var(--ink-600);
  font-size: 0.72rem;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  font-weight: 800;
}

.field-group input[type="text"] {
  width: 100%;
  min-height: 58px;
  padding: 13px 16px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink-900);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

.field-group input[type="text"]:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(23, 100, 158, 0.12);
}

.field-group input[aria-invalid="true"] {
  border-color: var(--red-600);
}

.field-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  color: var(--ink-600);
  font-size: 0.82rem;
}

.field-meta p {
  margin-bottom: 0;
}

.field-meta a {
  flex: 0 0 auto;
  font-weight: 700;
}

.warning-box,
.exclusion-box,
.information-box {
  margin-top: 18px;
  border-radius: var(--radius-sm);
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid #efb1b7;
  background: var(--red-100);
  color: #6e222a;
}

.warning-box > span {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--red-600);
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
}

.warning-box p {
  margin: 0;
}

.exclusion-box {
  padding: 13px 16px;
  border: 1px solid #e8c879;
  background: var(--yellow-100);
  color: #5d4910;
}

.information-box {
  padding: 20px;
  border: 1px solid #a8c8dc;
  background: var(--surface-blue);
}

.information-box h3 {
  margin-bottom: 10px;
}

.information-box p:last-child {
  margin-bottom: 0;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 50px 72px 50px;
  align-items: stretch;
  overflow: hidden;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
}

.quantity-control button {
  border: 0;
  background: var(--surface-soft);
  color: var(--navy-950);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
}

.quantity-control button:hover {
  background: var(--navy-100);
}

.quantity-control input {
  width: 72px;
  min-height: 50px;
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: center;
  appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.confirmation-list {
  display: grid;
  gap: 8px;
}

.check-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.check-row:hover {
  border-color: #a8c0d0;
  background: var(--surface-soft);
}

.check-row:has(input:checked) {
  border-color: #96b9d0;
  background: var(--surface-blue);
}

.check-row input {
  width: 21px;
  height: 21px;
  margin: 1px 0 0;
  accent-color: var(--navy-700);
}

.field-error {
  min-height: 0;
  margin: 7px 0 0;
  color: var(--red-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.field-error:empty {
  display: none;
}

.error-summary {
  padding: 20px 22px;
  margin-bottom: 24px;
  border: 2px solid var(--red-600);
  border-radius: var(--radius-md);
  background: var(--red-100);
}

.error-summary h2 {
  margin-bottom: 8px;
  color: #6d1d25;
  font-size: 1.2rem;
}

.error-summary ul {
  margin: 0;
  padding-left: 20px;
}

.turnstile-wrap {
  margin-top: 20px;
}

.checkout-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--red-600), #ad1726);
  box-shadow: 0 8px 20px rgba(186, 31, 46, 0.22);
  color: white;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.checkout-button:hover:not(:disabled) {
  box-shadow: 0 12px 26px rgba(186, 31, 46, 0.3);
  transform: translateY(-1px);
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.checkout-button.is-loading .checkout-button__spinner {
  display: block;
}

.checkout-button__spinner {
  display: none;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.checkout-note {
  margin: 10px 0 0;
  color: var(--ink-600);
  font-size: 0.8rem;
  text-align: center;
}

.order-summary {
  position: sticky;
  top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-md);
}

.summary-toggle {
  display: none;
}

.summary-content {
  padding: 26px;
}

.summary-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.summary-heading h2 {
  margin: 0;
  font-size: 1.42rem;
}

.summary-lock {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-blue);
}

.summary-list {
  display: grid;
  gap: 0;
  margin: 20px 0;
}

.summary-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, 1.1fr);
  gap: 12px;
  padding: 8px 0;
}

.summary-list dt {
  color: var(--ink-600);
}

.summary-list dd {
  margin: 0;
  color: var(--ink-900);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: right;
}

.summary-prices {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.summary-prices > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.summary-prices span {
  color: var(--ink-600);
}

.summary-total {
  align-items: baseline;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 2px solid var(--navy-950);
}

.summary-total span {
  color: var(--navy-950);
  font-weight: 800;
}

.summary-total strong {
  color: var(--navy-950);
  font-size: 1.55rem;
  transition: transform 150ms ease;
}

.summary-total strong.is-updated {
  transform: scale(1.06);
}

.summary-timescale {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-top: 20px;
  border-radius: var(--radius-sm);
  background: var(--yellow-100);
  color: #5d4910;
}

.summary-timescale > span {
  font-size: 1.45rem;
}

.summary-timescale p {
  margin: 0;
  font-size: 0.84rem;
}

.summary-international {
  margin: 15px 0 0;
  color: var(--ink-600);
  font-size: 0.76rem;
  text-align: center;
}

.benefits-section {
  padding: 88px 0;
  background: var(--navy-950);
}

.benefits-section .section-heading h2,
.benefits-section .section-heading p:not(.eyebrow) {
  color: white;
}

.section-heading {
  max-width: 650px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--ink-600);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.benefit-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.benefit-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-size: 1.2rem;
  font-weight: 900;
}

.benefit-card h3 {
  margin-bottom: 8px;
  color: white;
}

.benefit-card p {
  margin: 0;
  color: #cbdbe6;
  font-size: 0.9rem;
}

.faq-section {
  padding: 92px 0;
  background: var(--surface-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: 70px;
}

.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-top: 8px;
  border: 2px solid var(--navy-800);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
}

.secondary-button:hover {
  background: var(--navy-800);
  color: white;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.faq-list summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--navy-800);
  content: "+";
  font-size: 1.45rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
  background: var(--surface-blue);
}

.faq-list details p {
  padding: 18px 20px;
  margin: 0;
  color: var(--ink-700);
}

.site-footer {
  padding: 58px 0 18px;
  background: #061f35;
  color: #c9d8e3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.85fr;
  gap: 60px;
}

.footer-brand img {
  width: 300px;
  max-width: 100%;
  height: auto;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: white;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 18px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: white;
  font-size: 1rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.site-footer a {
  color: #d9e6ee;
}

.site-footer a:hover {
  color: var(--yellow-500);
}

.footer-security p {
  font-size: 0.9rem;
}

.stripe-badge {
  display: inline-block;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* SEO PRODUCT PHOTOS */
.product-photo-section {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.product-photo-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.55fr)
    minmax(240px, 0.45fr);
  gap: 20px;
  margin-top: 38px;
}

.product-photo-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.product-photo-card--main {
  grid-row: span 3;
}

.product-photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #fff;
}

.product-photo-card--main img {
  height: 100%;
  min-height: 520px;
}

.product-photo-card figcaption {
  padding: 13px 15px;
  color: var(--ink-700);
  font-size: 0.88rem;
}

@media (max-width: 820px) {
  .product-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-photo-card--main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .product-photo-card--main img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  .product-photo-grid {
    grid-template-columns: 1fr;
  }

  .product-photo-card--main {
    grid-column: auto;
  }

  .product-photo-card img,
  .product-photo-card--main img {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }
}

@media (max-width: 1040px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 40px;
  }

  .order-layout {
    grid-template-columns: minmax(0, 1fr) 315px;
    gap: 26px;
  }

  .option-grid--three {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card .option-card__content {
    padding-right: 42px;
  }

  .service-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
  }
}

@media (max-width: 820px) {
  .page-width {
    width: min(calc(100% - 30px), var(--page));
  }

  .trust-bar__inner {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
    scrollbar-width: none;
  }

  .trust-bar__inner::-webkit-scrollbar {
    display: none;
  }

  .trust-bar__inner > span {
    flex: 0 0 auto;
  }

  .site-header__inner {
    min-height: 92px;
  }

  .brand-link {
    flex-basis: 280px;
  }

  .secure-label {
    display: none;
  }

  .hero {
    padding: 54px 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__security-card {
    max-width: 620px;
  }

  .order-layout {
    display: flex;
    flex-direction: column;
  }

  .order-form {
    width: 100%;
    order: 2;
  }

  .order-summary {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    order: 1;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .summary-toggle {
    display: grid;
    width: 100%;
    min-height: 62px;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 0;
    background: var(--navy-950);
    color: white;
    cursor: pointer;
    text-align: left;
  }

  .summary-toggle strong {
    font-size: 1.1rem;
  }

  .summary-toggle__chevron {
    font-size: 1.3rem;
    transition: transform 160ms ease;
  }

  .summary-toggle[aria-expanded="true"] .summary-toggle__chevron {
    transform: rotate(180deg);
  }

  .summary-content {
    display: none;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .summary-toggle[aria-expanded="true"] + .summary-content {
    display: block;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header__inner {
    align-items: center;
  }

  .brand-link {
    flex: 1 1 auto;
    max-width: 245px;
  }

  .header-link {
    font-size: 0.8rem;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__facts > div {
    flex-basis: auto;
  }

  .option-grid--two {
    grid-template-columns: 1fr;
  }

  .service-card ul {
    grid-template-columns: 1fr;
  }

  .field-meta {
    flex-direction: column;
    gap: 8px;
  }

  .success-details {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .page-width {
    width: min(calc(100% - 22px), var(--page));
  }

  .site-header__inner {
    min-height: 82px;
    gap: 10px;
  }

  .brand-link {
    max-width: 205px;
  }

  .header-link {
    max-width: 75px;
    text-align: right;
  }

  .hero {
    padding: 42px 0;
  }

  .hero__security-card,
  .form-step {
    padding: 23px 18px;
  }

  .step-heading {
    gap: 12px;
  }

  .step-number {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .key-illustration {
    min-height: 105px;
    padding-inline: 36px;
  }

  .summary-content {
    padding: 20px 17px;
  }

  .summary-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .summary-list dd {
    text-align: left;
  }

  .check-row {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* PRODUCT IMAGE LIGHTBOX */
.product-photo-card__image--interactive {
  cursor: zoom-in;
}

.product-photo-card__image--interactive:focus-visible {
  outline: 4px solid currentColor;
  outline-offset: -4px;
}

.product-lightbox {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 16px;
  background: transparent;
}

.product-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(3px);
}

.product-lightbox__panel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.product-lightbox__image-wrap {
  display: grid;
  min-height: 280px;
  place-items: center;
  background: #f5f5f5;
}

.product-lightbox__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  touch-action: pan-y;
  user-select: none;
}

.product-lightbox__close,
.product-lightbox__navigation {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  cursor: pointer;
}

.product-lightbox__close:hover,
.product-lightbox__navigation:hover {
  background: rgba(0, 0, 0, 0.9);
}

.product-lightbox__close:focus-visible,
.product-lightbox__navigation:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.product-lightbox__close {
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.product-lightbox__navigation {
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  font-size: 2.7rem;
  line-height: 1;
}

.product-lightbox__navigation--previous {
  left: 16px;
}

.product-lightbox__navigation--next {
  right: 16px;
}

.product-lightbox__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}

.product-lightbox__caption,
.product-lightbox__count {
  margin: 0;
}

.product-lightbox__caption {
  font-weight: 600;
}

.product-lightbox__count {
  flex: 0 0 auto;
  color: #555555;
  font-size: 0.9rem;
}

@media (max-width: 620px) {
  .product-lightbox {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
  }

  .product-lightbox__navigation {
    width: 44px;
    height: 44px;
    font-size: 2.2rem;
  }

  .product-lightbox__navigation--previous {
    left: 8px;
  }

  .product-lightbox__navigation--next {
    right: 8px;
  }

  .product-lightbox__close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
  }

  .product-lightbox__footer {
    align-items: flex-start;
    padding: 13px 15px;
  }
}

/* SEO GUIDE LINKS */
.seo-guides {
  padding-top: 72px;
  padding-bottom: 72px;
}

.seo-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.seo-guide-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.seo-guide-card strong {
  font-size: 1.05rem;
}

.seo-guide-card span {
  color: var(--ink-700);
}

.seo-guide-card:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

@media (max-width: 850px) {
  .seo-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .seo-guide-grid {
    grid-template-columns: 1fr;
  }
}

/* KEY TYPE PHOTOGRAPH CARDS */
.key-illustration--photo {
  display: grid;
  width: 100%;
  min-height: 190px;
  place-items: center;
  overflow: hidden;
  padding: 14px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(11, 79, 134, 0.16);
}

.key-illustration--photo img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
  transition: transform 180ms ease;
}

.option-card--visual:hover .key-illustration--photo img {
  transform: scale(1.025);
}

.option-card--visual input:checked ~ .key-illustration--photo {
  box-shadow: inset 0 0 0 3px #b4121b;
}

@media (max-width: 620px) {
  .key-illustration--photo {
    min-height: 160px;
    padding: 10px;
  }

  .key-illustration--photo img {
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .key-illustration--photo img {
    transition: none;
  }

  .option-card--visual:hover .key-illustration--photo img {
    transform: none;
  }
}



/* Standard vs Premium comparison */
.service-comparison {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.service-comparison__heading { padding: 22px 24px 14px; }
.service-comparison__heading h3 { margin: 0 0 6px; color: var(--navy-950); }
.service-comparison__heading p { margin: 0; color: var(--ink-700); }
.service-comparison__scroll { overflow-x: auto; }
.service-comparison table { width: 100%; min-width: 680px; border-collapse: collapse; }
.service-comparison th, .service-comparison td { padding: 13px 16px; border-top: 1px solid var(--line); text-align: left; vertical-align: middle; }
.service-comparison thead th { background: var(--navy-950); color: #fff; border-top: 0; }
.service-comparison thead th:not(:first-child), .service-comparison tbody td { text-align: center; }
.service-comparison tbody th { width: 48%; color: var(--navy-950); font-weight: 700; }
.service-comparison tbody td { font-size: 1.1rem; font-weight: 850; }
.service-comparison small { display: block; margin-top: 4px; color: #d9e8f3; font-weight: 600; }
.service-badge--inline {
  position: static;
  display: table;
  margin: 0 auto 7px;
  padding-left: 11px;
  padding-right: 11px;
  white-space: nowrap;
}
@media (max-width: 680px) {
  .service-comparison__heading { padding: 18px; }
  .service-comparison table { min-width: 620px; }
}

/* ============================================================
   BULLDOG SECURE STORE — MULTI-PRODUCT STOREFRONT FOUNDATION
   Reuses the approved Spare Keys visual tokens above while
   keeping catalogue components isolated from the legacy form UI.
   ============================================================ */

.storefront-page {
  background: #fff;
}

.store-trust-bar {
  justify-content: space-between;
}

.store-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.store-header__top {
  display: grid;
  grid-template-columns: minmax(220px, 330px) 1fr auto;
  align-items: center;
  min-height: 105px;
  gap: 24px;
}

.store-brand img {
  width: min(330px, 100%);
  height: auto;
}

.store-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.store-header__support {
  font-weight: 750;
  text-decoration: none;
}

.store-basket-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid #c5d5e1;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
}

.store-basket-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding-inline: 6px;
  border-radius: 999px;
  background: var(--red-600);
  color: #fff;
  font-size: 0.75rem;
}

.store-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--navy-950);
  font-size: 1.3rem;
}

.store-nav {
  border-top: 1px solid var(--line);
  background: var(--navy-950);
}

.store-nav__inner {
  display: flex;
  align-items: stretch;
  min-height: 54px;
  gap: 4px;
}

.store-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 3px solid transparent;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
}

.store-nav__link:hover,
.store-nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.store-nav__link.is-active {
  border-bottom-color: var(--yellow-500);
  background: rgba(255, 255, 255, 0.08);
}

.store-breadcrumbs {
  padding-block: 18px;
  font-size: 0.86rem;
}

.store-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.store-breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  color: #7b8d9d;
  content: "/";
}

.store-breadcrumbs a {
  color: var(--ink-700);
}

.store-page-hero {
  padding: 70px 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 194, 66, 0.22), transparent 18rem),
    linear-gradient(145deg, #f9fcfe 0%, #eaf4fa 100%);
}

.store-page-hero--compact {
  padding: 54px 0 50px;
}

.store-page-hero h1,
.store-home-hero h1,
.store-product-buybox h1 {
  margin-bottom: 18px;
}

.store-page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-700);
  font-size: 1.08rem;
}

.store-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.6fr);
  align-items: center;
  gap: 52px;
}

.store-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.store-hero-panel,
.store-coming-soon {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(11, 79, 134, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.store-hero-panel strong {
  color: var(--navy-950);
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 1;
}

.store-hero-panel span,
.store-coming-soon strong {
  margin-top: 8px;
  color: var(--navy-950);
  font-size: 1.1rem;
  font-weight: 800;
}

.store-hero-panel small,
.store-coming-soon span {
  margin-top: 5px;
  color: var(--ink-600);
}

.store-section {
  padding-block: 58px;
}

.store-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.store-section-heading h2,
.store-section-heading--small h2 {
  margin-bottom: 0;
}

.store-section-heading--small {
  max-width: var(--page);
  margin: 0 auto 24px;
}

.store-product-count {
  margin: 0 0 4px;
  color: var(--ink-600);
  font-weight: 700;
  white-space: nowrap;
}

.store-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.store-category-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.store-category-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--red-600);
  font-weight: 900;
}

.store-category-card p {
  color: var(--ink-700);
}

.store-category-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  color: var(--ink-600);
  font-size: 0.88rem;
}

.store-text-link {
  font-weight: 800;
  text-decoration: none;
}

.store-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.store-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.store-filter span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding-inline: 5px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink-600);
  font-size: 0.73rem;
}

.store-filter:hover,
.store-filter.is-active {
  border-color: var(--navy-800);
  background: var(--navy-950);
  color: #fff;
}

.store-filter.is-active span {
  background: var(--yellow-500);
  color: var(--navy-950);
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.store-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.store-product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-product-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f7f9fb;
}

.store-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.store-product-image-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 210px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background:
    linear-gradient(145deg, rgba(11, 79, 134, 0.07), rgba(11, 79, 134, 0.01)),
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(11, 79, 134, 0.025) 14px, rgba(11, 79, 134, 0.025) 28px);
  color: var(--navy-950);
  text-align: center;
}

.store-product-image-placeholder span {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.store-product-image-placeholder small {
  color: var(--ink-600);
  font-weight: 650;
}

.store-product-image-placeholder--large {
  min-height: 480px;
}

.store-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.store-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  gap: 12px;
  margin-bottom: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 27px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--navy-900);
  font-size: 0.74rem;
  font-weight: 800;
}

.store-badge--success {
  background: var(--success-bg);
  color: var(--success);
}

.store-sku {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.78rem;
  font-weight: 750;
}

.store-product-card__title {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.store-product-card__title a {
  color: var(--navy-950);
  text-decoration: none;
}

.store-product-card__desc {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 18px;
  color: var(--ink-700);
  font-size: 0.94rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.store-product-card__purchase {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.store-price,
.store-product-price {
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1;
}

.store-vat-note {
  display: block;
  margin-top: 4px;
  color: var(--ink-600);
  font-size: 0.68rem;
}

.store-availability {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 27px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
}

.availability--available {
  background: var(--success-bg);
  color: var(--success);
}

.availability--out,
.availability--unavailable {
  background: #f4f5f6;
  color: #5d6872;
}

.availability--special {
  background: var(--warning-bg);
  color: var(--warning);
}

.store-product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 18px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.store-button--primary {
  border-color: var(--red-700);
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 6px 15px rgba(186, 31, 46, 0.18);
}

.store-button--primary:hover {
  background: #b71928;
  color: #fff;
}

.store-button--secondary {
  border-color: #b8c8d5;
  background: #fff;
  color: var(--navy-900);
}

.store-button[disabled],
.store-button[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.store-button--wide {
  width: 100%;
}

.store-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: 56px;
  padding-block: 36px 70px;
}

.store-product-main-image {
  display: grid;
  place-items: center;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #f8fafb;
}

.store-product-main-image img {
  width: 100%;
  max-height: 570px;
  object-fit: contain;
  padding: 20px;
}

.store-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.store-gallery-thumbs img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: contain;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.store-product-buybox {
  align-self: start;
  position: sticky;
  top: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.store-product-buybox h1 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.store-product-lead {
  color: var(--ink-700);
  font-size: 1.03rem;
}

.store-product-price-row {
  display: flex;
  align-items: end;
  gap: 9px;
  margin: 24px 0 13px;
}

.store-product-price-row .store-vat-note {
  margin-bottom: 2px;
}

.store-product-price {
  font-size: 2rem;
}

.store-quantity-shell {
  display: grid;
  grid-template-columns: 1fr 90px;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.store-quantity-shell label,
.store-option-card label {
  color: var(--navy-950);
  font-weight: 750;
}

.store-quantity-shell input,
.store-option-card input,
.store-option-card select {
  width: 100%;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-900);
}

.store-fit-check-link {
  display: inline-block;
  margin-top: 17px;
  font-weight: 750;
}

.store-product-options {
  padding: 54px max(20px, calc((100vw - var(--page)) / 2));
  background: var(--surface-soft);
}

.store-option-list {
  display: grid;
  gap: 12px;
}

.store-option-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.45fr);
  align-items: center;
  gap: 24px;
  padding: 21px 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.store-option-card h3 {
  margin-bottom: 6px;
}

.store-option-card p {
  margin: 0;
  color: var(--ink-700);
}

.store-option-card--notice {
  border-left: 4px solid var(--navy-800);
}

.store-product-content {
  padding-block: 65px;
}

.store-product-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  gap: 60px;
}

.store-product-content p {
  color: var(--ink-700);
}

.store-spec-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.store-spec-list > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr);
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.store-spec-list dt {
  color: var(--ink-600);
  font-weight: 700;
}

.store-spec-list dd {
  margin: 0;
  color: var(--ink-900);
  font-weight: 650;
}

.store-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.store-chip {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
  text-decoration: none;
}

.store-empty-state {
  padding: 34px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  text-align: center;
}

.store-empty-state--wide {
  max-width: 780px;
  margin: 0 auto;
  padding: 55px 40px;
}

.store-empty-state__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--surface-blue);
  color: var(--navy-800);
  font-size: 1.5rem;
}

.store-muted {
  color: var(--ink-600);
}

.store-home-hero {
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 194, 66, 0.32), transparent 18rem),
    radial-gradient(circle at 5% 95%, rgba(11, 79, 134, 0.12), transparent 24rem),
    linear-gradient(140deg, #f9fcfe 0%, #eaf4fa 100%);
}

.store-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 62px;
}

.store-home-hero__lead {
  max-width: 730px;
  color: var(--ink-700);
  font-size: 1.13rem;
}

.store-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.store-home-hero__panel {
  padding: 28px;
  border: 1px solid rgba(11, 79, 134, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.store-home-hero__panel h2 {
  font-size: 1.4rem;
}

.store-home-hero__panel ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.store-home-hero__panel li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-700);
}

.store-home-hero__panel li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
  content: "✓";
}

.store-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.store-path-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.store-path-card:hover {
  border-color: #aac4d7;
  box-shadow: var(--shadow-md);
}

.store-path-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--red-600);
  font-size: 1.2rem;
  font-weight: 900;
}

.store-path-card h2 {
  font-size: 1.18rem;
}

.store-path-card p {
  color: var(--ink-700);
}

.store-path-card strong {
  margin-top: auto;
  color: var(--navy-800);
}

.store-info-band {
  padding-block: 54px;
  background: var(--navy-950);
  color: #fff;
}

.store-info-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.store-info-band h2,
.store-info-band h3 {
  color: #fff;
}

.store-info-band p {
  margin: 0;
  color: #d7e4ec;
}

.store-footer {
  padding: 52px 0 20px;
  border-top: 1px solid var(--line);
  background: #f5f8fa;
}

.store-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 38px;
}

.store-footer__brand img {
  width: min(285px, 100%);
}

.store-footer__brand p,
.store-footer__security p {
  color: var(--ink-600);
}

.store-footer nav,
.store-footer__security {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.store-footer h2 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.store-footer a {
  color: var(--ink-700);
  text-decoration: none;
}

.store-footer__bottom {
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--ink-600);
  font-size: 0.82rem;
}

.store-static-content {
  max-width: 820px;
  padding-block: 56px 70px;
}

.store-static-content h1 {
  font-size: clamp(2.15rem, 5vw, 3.6rem);
}

.store-static-content h2 {
  margin-top: 36px;
}

.store-static-content p,
.store-static-content li {
  color: var(--ink-700);
}

@media (max-width: 980px) {
  .store-trust-bar span:nth-child(3) {
    display: none;
  }

  .store-header__top {
    grid-template-columns: minmax(190px, 290px) 1fr auto;
  }

  .store-header__support {
    display: none;
  }

  .store-product-grid,
  .store-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-product-detail,
  .store-product-content__grid,
  .store-home-hero__grid,
  .store-page-hero__grid {
    grid-template-columns: 1fr;
  }

  .store-product-buybox {
    position: static;
  }

  .store-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-width {
    width: min(calc(100% - 28px), var(--page));
  }

  .store-trust-bar {
    justify-content: center;
    min-height: 38px;
  }

  .store-trust-bar span:nth-child(n + 2) {
    display: none;
  }

  .store-header__top {
    grid-template-columns: minmax(160px, 1fr) auto auto;
    min-height: 82px;
    gap: 10px;
  }

  .store-brand img {
    max-width: 220px;
  }

  .store-basket-link {
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .store-nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .store-nav {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    border-top: 0;
    box-shadow: var(--shadow-md);
  }

  .store-nav.is-open {
    display: block;
  }

  .store-nav__inner {
    flex-direction: column;
    padding-block: 8px;
  }

  .store-nav__link {
    min-height: 48px;
    padding: 10px 16px;
    border-bottom: 0;
    border-left: 3px solid transparent;
  }

  .store-nav__link.is-active {
    border-left-color: var(--yellow-500);
  }

  .store-page-hero,
  .store-home-hero {
    padding: 50px 0;
  }

  .store-product-grid,
  .store-category-grid,
  .store-path-grid,
  .store-info-band__grid,
  .store-footer__grid {
    grid-template-columns: 1fr;
  }

  .store-product-card__actions {
    grid-template-columns: 1fr;
  }

  .store-product-card__purchase {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 7px;
    scrollbar-width: thin;
  }

  .store-filter {
    flex: 0 0 auto;
  }

  .store-product-detail {
    gap: 28px;
    padding-block: 24px 45px;
  }

  .store-product-main-image,
  .store-product-image-placeholder--large {
    min-height: 330px;
  }

  .store-product-buybox {
    padding: 22px;
  }

  .store-option-card {
    grid-template-columns: 1fr;
  }

  .store-product-options {
    padding-inline: 14px;
  }

  .store-spec-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .store-footer__grid {
    gap: 28px;
  }
}

/* ==========================================================
   BULLDOG SECURE STORE — MULTI-PRODUCT STOREFRONT FOUNDATION
   ========================================================== */
.store-header{position:sticky;top:0;z-index:30;background:rgba(255,255,255,.98);border-bottom:1px solid var(--line);box-shadow:0 3px 14px rgba(8,47,80,.05)}
.store-header__inner{min-height:92px;display:flex;align-items:center;gap:28px}.store-header .brand-link{width:260px;flex:0 0 auto}.store-header .brand-logo{width:260px;max-height:86px;object-fit:contain}.primary-nav{margin-left:auto;display:flex;align-items:center;gap:4px}.primary-nav>a{padding:11px 10px;border-radius:8px;color:var(--navy-950);font-size:.92rem;font-weight:750;text-decoration:none}.primary-nav>a:hover{background:var(--surface-blue);color:var(--red-700)}.basket-link{display:inline-flex!important;align-items:center;gap:7px}.basket-count{display:inline-grid;place-items:center;min-width:23px;height:23px;padding:0 6px;border-radius:99px;background:var(--red-600);color:white;font-size:.74rem}.nav-toggle{display:none;margin-left:auto;border:1px solid var(--line-strong);border-radius:9px;background:white;color:var(--navy-950);padding:9px 12px;font-size:1.35rem}
.page-hero{padding:70px 0;background:linear-gradient(135deg,var(--surface-blue),#fff 72%);border-bottom:1px solid var(--line)}.page-hero--compact{padding:46px 0}.page-hero .eyebrow,.section-heading .eyebrow{margin-bottom:10px;color:var(--red-700);font-weight:800;text-transform:uppercase;letter-spacing:.11em;font-size:.77rem}.page-hero h1{margin-bottom:14px}.page-hero .hero__lead{max-width:760px;color:var(--ink-700);font-size:1.1rem}.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}.hero-grid-store{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:46px;align-items:center}.hero-panel{padding:28px;border:1px solid #bdd1df;border-radius:var(--radius-lg);background:#fff;box-shadow:var(--shadow-md)}.hero-panel h2{font-size:1.3rem}.hero-panel ul{padding-left:20px;color:var(--ink-700)}
.button{display:inline-flex;justify-content:center;align-items:center;min-height:44px;padding:10px 18px;border-radius:9px;border:1px solid transparent;font-weight:800;text-decoration:none;cursor:pointer}.button--primary{background:var(--red-600);color:white}.button--primary:hover{background:var(--red-700);color:white}.button--secondary{background:var(--navy-900);color:white}.button--secondary:hover{background:var(--navy-950);color:white}.button--ghost{border-color:var(--line-strong);background:white;color:var(--ink-600)}.button:disabled{opacity:.52;cursor:not-allowed}
.store-section,.catalogue-section,.related-products{padding-top:58px;padding-bottom:64px}.section-heading{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:28px}.section-heading>div{max-width:740px}.section-heading p{color:var(--ink-700)}
.category-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.category-card{display:flex;flex-direction:column;gap:18px;min-height:270px;padding:24px;border:1px solid var(--line);border-radius:var(--radius-md);background:#fff;box-shadow:var(--shadow-sm)}.category-card__icon{display:grid;place-items:center;width:46px;height:46px;border-radius:12px;background:var(--navy-950);color:var(--yellow-500);font-size:1.35rem;font-weight:900}.category-card h2{font-size:1.25rem;margin-bottom:8px}.category-card h2 a{text-decoration:none}.category-card p{color:var(--ink-700)}.category-card span{color:var(--ink-600);font-size:.9rem;font-weight:700}.category-card>.button{margin-top:auto;align-self:flex-start}
.product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.product-card{overflow:hidden;border:1px solid var(--line);border-radius:var(--radius-md);background:#fff;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;min-width:0}.product-card__media{display:grid;place-items:center;aspect-ratio:4/3;background:var(--surface-soft);text-decoration:none;overflow:hidden}.product-card__image{width:100%;height:100%;object-fit:contain;padding:18px}.product-card__placeholder{display:grid;place-items:center;text-align:center;color:var(--navy-950);gap:3px}.product-card__placeholder span{font-size:1.45rem;font-weight:900}.product-card__placeholder small{color:var(--ink-600)}.product-card__body{padding:20px;display:flex;flex-direction:column;flex:1}.product-card__meta{display:flex;align-items:center;gap:10px;color:var(--ink-600);font-size:.8rem;font-weight:750}.sku-badge{padding:4px 8px;border-radius:6px;background:var(--navy-100);color:var(--navy-950)}.product-card h3{margin:12px 0 9px}.product-card h3 a{text-decoration:none}.product-card__description{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;color:var(--ink-700);font-size:.93rem}.product-card__purchase{margin-top:auto;padding-top:18px;border-top:1px solid var(--line)}.product-card__purchase>div:first-child{display:flex;justify-content:space-between;gap:10px;align-items:center}.product-card__price{font-size:1.35rem;color:var(--navy-950)}.product-card__actions{display:flex;gap:8px;margin-top:15px}.product-card__actions .button{flex:1;padding-inline:11px;font-size:.84rem}
.availability{display:inline-flex;padding:4px 8px;border-radius:99px;font-size:.75rem;font-weight:800}.availability--available{background:var(--success-bg);color:var(--success)}.availability--out_of_stock,.availability--unavailable{background:var(--red-100);color:var(--red-700)}.availability--special_order{background:var(--warning-bg);color:var(--warning)}
.filter-bar{display:flex;gap:8px;overflow:auto;padding:4px 2px 14px;margin-bottom:14px;scrollbar-width:thin}.filter-chip{flex:0 0 auto;border:1px solid var(--line-strong);border-radius:999px;background:#fff;color:var(--navy-950);padding:9px 14px;font-weight:750;cursor:pointer}.filter-chip span{margin-left:4px;color:var(--ink-600)}.filter-chip.is-active{background:var(--navy-950);color:#fff;border-color:var(--navy-950)}.filter-chip.is-active span{color:#fff}.catalogue-toolbar{display:flex;justify-content:space-between;align-items:center;gap:15px;margin-bottom:20px;color:var(--ink-600)}
.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:8px;list-style:none;padding:0;margin:0 0 18px;font-size:.85rem;color:var(--ink-600)}.breadcrumbs li:not(:last-child)::after{content:"/";margin-left:8px;color:var(--line-strong)}.product-code{color:var(--ink-700)}
.product-detail{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.85fr);gap:50px;padding-top:48px;padding-bottom:42px}.product-detail__media{min-width:0}.product-detail__placeholder{min-height:430px;display:grid;place-items:center;align-content:center;gap:4px;border:1px solid var(--line);border-radius:var(--radius-lg);background:var(--surface-soft);color:var(--navy-950)}.product-detail__placeholder strong{font-size:2rem}.product-detail__placeholder span{color:var(--ink-600)}.product-gallery__main{width:100%;max-height:560px;object-fit:contain;border:1px solid var(--line);border-radius:var(--radius-lg);background:white;padding:24px}.product-gallery__thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:10px}.product-gallery__thumbs img{aspect-ratio:1;object-fit:contain;border:1px solid var(--line);border-radius:8px;padding:6px}.product-detail__summary{padding-top:4px}.product-detail__price{margin:14px 0;font-size:2.15rem;font-weight:900;color:var(--navy-950)}.product-detail__lead{font-size:1.08rem;color:var(--ink-700)}.quantity-shell{display:grid;grid-template-columns:120px 1fr;gap:10px;margin:22px 0}.quantity-shell label{font-weight:750}.quantity-shell input,.option-card input,.option-card select{width:100%;margin-top:6px;padding:10px;border:1px solid var(--line-strong);border-radius:8px;background:#fff}.product-options{margin-top:28px}.product-options>h2{font-size:1.35rem}.option-card{display:grid;grid-template-columns:1fr minmax(120px,.45fr);gap:12px;align-items:center;margin-top:12px;padding:17px;border:1px solid var(--line);border-radius:var(--radius-md);background:var(--surface-soft)}.option-card h3{margin-bottom:5px}.option-card p{margin:0;color:var(--ink-700);font-size:.9rem}.option-card>strong{grid-column:2;text-align:right;color:var(--navy-950)}.option-card--info{border-left:4px solid var(--navy-700);grid-template-columns:1fr auto}
.product-content{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(300px,.6fr);gap:44px;padding-top:28px;padding-bottom:64px}.product-content__main>p{color:var(--ink-700);white-space:pre-line}.spec-panel{padding:24px;border:1px solid var(--line);border-radius:var(--radius-md);background:var(--surface-soft)}.spec-panel h2{font-size:1.25rem}.spec-panel dl{margin:0}.spec-panel dl>div{padding:11px 0;border-bottom:1px solid var(--line)}.spec-panel dt{font-weight:800}.spec-panel dd{margin:3px 0 0;color:var(--ink-700)}.product-taxonomy{margin-top:18px}.product-taxonomy p{color:var(--ink-700)}.finder-callout{margin-top:32px;padding:24px;border-radius:var(--radius-md);background:var(--navy-100)}.finder-callout h2{font-size:1.25rem}.finder-callout p{color:var(--ink-700)}
.empty-state{padding:34px;border:1px dashed var(--line-strong);border-radius:var(--radius-md);background:var(--surface-soft);text-align:center}.empty-state--wide{grid-column:1/-1}.empty-state p{max-width:700px;margin-inline:auto;color:var(--ink-700)}
.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.info-card{padding:23px;border:1px solid var(--line);border-radius:var(--radius-md);background:white}.info-card p{color:var(--ink-700)}
.store-footer{margin-top:50px;padding:45px 0 20px;background:var(--navy-950);color:#dbe8f1}.store-footer__grid{display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:35px}.footer-logo{width:190px;filter:brightness(0) invert(1);opacity:.95}.store-footer h2{color:white;font-size:1rem}.store-footer a{display:block;margin:7px 0;color:#dbe8f1;text-decoration:none}.store-footer a:hover{color:white;text-decoration:underline}.store-footer__bottom{margin-top:32px;padding-top:18px;border-top:1px solid rgba(255,255,255,.15);font-size:.85rem}
@media(max-width:980px){.nav-toggle{display:block}.primary-nav{display:none;position:absolute;top:100%;left:0;right:0;flex-direction:column;align-items:stretch;padding:12px 20px 20px;background:white;border-bottom:1px solid var(--line);box-shadow:var(--shadow-md)}.primary-nav.is-open{display:flex}.primary-nav>a{padding:12px}.hero-grid-store,.product-detail,.product-content{grid-template-columns:1fr}.category-grid,.product-grid{grid-template-columns:repeat(2,1fr)}.store-footer__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.page-width{width:min(calc(100% - 28px),var(--page))}.trust-bar__inner{justify-content:flex-start;gap:16px;overflow:auto;white-space:nowrap}.store-header__inner{min-height:76px}.store-header .brand-link,.store-header .brand-logo{width:190px}.page-hero{padding:44px 0}.page-hero h1{font-size:2.35rem}.category-grid,.product-grid,.info-grid{grid-template-columns:1fr}.product-card__actions{flex-direction:column}.section-heading{display:block}.quantity-shell{grid-template-columns:1fr}.option-card,.option-card--info{grid-template-columns:1fr}.option-card>strong{grid-column:1;text-align:left}.store-footer__grid{grid-template-columns:1fr 1fr}.hero-actions .button{width:100%}}

/* ==========================================================
   BULLDOG SECURE STORE — TYRE SIZE FINDER
   ========================================================== */

.tyre-search{
  position:relative;
  max-width:620px;
  margin:12px 0 16px;
}

.tyre-search__input{
  width:100%;
  min-height:56px;
  padding:14px 48px 14px 16px;
  border:2px solid var(--line-strong);
  border-radius:10px;
  background:#fff;
  color:var(--navy-950);
  font:inherit;
  font-size:1.05rem;
  font-weight:700;
  transition:border-color .15s ease,box-shadow .15s ease;
}

.tyre-search__input:focus{
  outline:none;
  border-color:var(--navy-700);
  box-shadow:0 0 0 4px rgba(11,79,134,.12);
}

.tyre-search__input::placeholder{
  color:var(--ink-600);
  font-weight:500;
}

.tyre-search__results{
  position:absolute;
  z-index:40;
  top:calc(100% + 6px);
  left:0;
  right:0;
  max-height:330px;
  overflow-y:auto;
  border:1px solid var(--line-strong);
  border-radius:10px;
  background:#fff;
  box-shadow:0 14px 34px rgba(8,47,80,.18);
}

.tyre-search__result{
  display:block;
  width:100%;
  padding:13px 16px;
  border:0;
  border-bottom:1px solid var(--line);
  background:#fff;
  color:var(--navy-950);
  text-align:left;
  font:inherit;
  font-weight:750;
  cursor:pointer;
}

.tyre-search__result:last-child{
  border-bottom:0;
}

.tyre-search__result:hover,
.tyre-search__result.is-active{
  background:var(--surface-blue);
  color:var(--red-700);
}

.tyre-search__empty{
  padding:16px;
  color:var(--ink-700);
}

[data-finder-form]>.button{
  margin-top:4px;
}

.finder-progress-note{
  margin:14px 0;
  color:var(--ink-700);
  font-size:.92rem;
}

.finder-question{
  margin:24px 0;
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:#fff;
  box-shadow:var(--shadow-sm);
}

.finder-question>.eyebrow{
  margin-bottom:8px;
  color:var(--red-700);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.finder-question h2{
  margin-bottom:18px;
  font-size:1.35rem;
  color:var(--navy-950);
}

.finder-choice-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.finder-choice{
  position:relative;
  display:block;
  cursor:pointer;
}

.finder-choice input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.finder-choice span{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:12px 18px;
  border:2px solid var(--line-strong);
  border-radius:10px;
  background:#fff;
  color:var(--navy-950);
  font-weight:800;
  text-align:center;
  transition:border-color .15s ease,background .15s ease,color .15s ease,box-shadow .15s ease;
}

.finder-choice:hover span{
  border-color:var(--navy-700);
  background:var(--surface-blue);
}

.finder-choice input:checked+span{
  border-color:var(--navy-950);
  background:var(--navy-950);
  color:#fff;
  box-shadow:0 0 0 3px rgba(11,79,134,.12);
}

.finder-choice input:focus-visible+span{
  outline:3px solid var(--yellow-500);
  outline-offset:2px;
}

.finder-numeric-input{
  display:flex;
  align-items:stretch;
  max-width:320px;
  margin-top:8px;
}

.finder-numeric-input input{
  width:100%;
  min-height:54px;
  padding:12px 14px;
  border:2px solid var(--line-strong);
  border-radius:10px 0 0 10px;
  background:#fff;
  color:var(--navy-950);
  font:inherit;
  font-size:1.05rem;
  font-weight:750;
}

.finder-numeric-input input:focus{
  outline:none;
  border-color:var(--navy-700);
  box-shadow:0 0 0 4px rgba(11,79,134,.12);
}

.finder-numeric-input span{
  display:grid;
  place-items:center;
  min-width:62px;
  padding:0 14px;
  border:2px solid var(--navy-900);
  border-left:0;
  border-radius:0 10px 10px 0;
  background:var(--navy-900);
  color:#fff;
  font-weight:800;
}

.finder-result-card{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.finder-result-status{
  padding:14px 16px;
  border:1px solid var(--line);
  border-bottom:0;
  border-radius:var(--radius-md) var(--radius-md) 0 0;
  background:var(--surface-blue);
}

.finder-result-status strong{
  display:block;
  margin-bottom:4px;
  color:var(--navy-950);
}

.finder-result-status p{
  margin:0;
  color:var(--ink-700);
  font-size:.88rem;
}

.finder-result-card>.product-card{
  flex:1;
  border-radius:0 0 var(--radius-md) var(--radius-md);
}

#finder-fitment-question .finder-callout{
  max-width:780px;
  margin-inline:auto;
}

#finder-results .finder-callout{
  margin-bottom:26px;
}

@media(max-width:640px){
  .tyre-search{
    max-width:none;
  }

  .tyre-search__input{
    min-height:54px;
    font-size:1rem;
  }

  .finder-question{
    padding:18px;
  }

  .finder-choice-grid{
    grid-template-columns:1fr;
  }

  .finder-choice span{
    min-height:54px;
  }

  .finder-numeric-input{
    max-width:none;
  }

  [data-finder-form]>.button{
    width:100%;
  }
}


/* Tyre Finder autocomplete — compact refinement */
.tyre-search{
  max-width:560px;
}

.tyre-search__input{
  min-height:52px;
  padding:12px 44px 12px 15px;
  font-size:1rem;
}

.tyre-search__results{
  max-height:255px;
}

.tyre-search__result{
  padding:10px 14px;
  font-size:.96rem;
}

.tyre-search__empty{
  padding:13px 14px;
  font-size:.94rem;
}

@media(max-width:640px){
  .tyre-search{
    max-width:none;
  }

  .tyre-search__results{
    max-height:240px;
  }
}



/* Tyre Finder — single-card journey */
#finder-fitment-question.catalogue-section{
  padding-top:20px;
  padding-bottom:30px;
}

#finder-fitment-question .finder-callout{
  max-width:none;
  margin:0;
  padding:24px;
}

#finder-fitment-question .finder-question{
  margin:16px 0;
}

#finder-fitment-question .finder-question h2{
  margin-bottom:14px;
}

#finder-fitment-question .finder-progress-note{
  margin:12px 0;
}

@media(max-width:640px){
  #finder-fitment-question.catalogue-section{
    padding-top:14px;
    padding-bottom:22px;
  }

  #finder-fitment-question .finder-callout{
    padding:18px;
  }

  #finder-fitment-question .finder-question{
    margin:14px 0;
  }
}


/* Tyre Finder — keep workflow in view */
#finder-workspace{
  scroll-margin-top:110px;
}

/* Finder results — restore spacing after workspace rename */
#finder-workspace .finder-callout + .product-grid{
  margin-top:24px;
}

#finder-workspace .product-grid + .finder-callout{
  margin-top:28px;
}

