:root {
  color-scheme: dark;
  --bg: #05070b;
  --panel: #10141d;
  --panel-2: #151b27;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f2eb;
  --muted: #a7a0a0;
  --soft: #d8d0c5;
  --accent: #f5f0e8;
  --accent-soft: rgba(245, 240, 232, 0.14);
  --accent-glow: rgba(245, 240, 232, 0.18);
  --cart-accent: #376a8f;
  --cart-accent-soft: rgba(55, 106, 143, 0.18);
  --cart-accent-glow: rgba(55, 106, 143, 0.26);
  /* Change these values to adjust the product card glow/tint color. */
  --card-glow-color: rgba(55, 106, 143, 0.28);
  --card-glow-hover-color: rgba(55, 106, 143, 0.42);
  --danger: #f5f0e8;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 16% 9%, rgba(55, 106, 143, 0.12), transparent 30rem),
    radial-gradient(circle at 74% 18%, rgba(55, 106, 143, 0.075), transparent 34rem),
    radial-gradient(circle at 92% 58%, rgba(55, 106, 143, 0.055), transparent 30rem),
    radial-gradient(ellipse at 8% 84%, rgba(55, 106, 143, 0.075), transparent 38rem),
    linear-gradient(180deg, #07090e 0%, var(--bg) 44%, #030407 100%);
  color: var(--text);
}

body.drawer-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-footer,
main {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 11px max(20px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 12, 16, 0.78);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px) saturate(112%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.brand:hover,
.brand:focus-visible,
.cart-trigger:hover,
.cart-trigger:focus-visible {
  transform: translateY(-1px);
  border-color: var(--cart-accent);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 4px var(--cart-accent-soft);
}

.brand:focus-visible,
.cart-trigger:focus-visible {
  outline: none;
}

.main-nav,
.site-footer nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 18px);
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
}

.main-nav {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
}

.main-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.site-footer a:hover,
.main-nav a[aria-current="page"] {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.cart-trigger,
.button,
.product-footer button,
.quantity-controls button,
.remove-button,
.icon-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.cart-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 76px;
  min-height: 36px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 500;
}

.cart-trigger strong {
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: rgba(55, 106, 143, 0.82);
  color: #f7fbff;
  font-size: 0.66rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  font-weight: 600;
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button.primary {
  border-color: transparent;
  background: var(--text);
  color: #07080b;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

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

.button:hover:not(:disabled),
.product-footer button:hover,
.quantity-controls button:hover,
.remove-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent-glow);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  align-items: center;
  min-height: 520px;
  padding: 78px 0 70px;
  text-align: center;
}

.hero::selection {
  background: rgba(55, 106, 143, 0.34);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 100vw;
  height: 260px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 46% 50%, rgba(55, 106, 143, 0.18), transparent 46%),
    radial-gradient(circle at 66% 40%, rgba(93, 145, 181, 0.09), transparent 28%),
    radial-gradient(circle at 28% 62%, rgba(55, 106, 143, 0.08), transparent 34%);
  filter: blur(24px);
  opacity: 0.78;
  transform: translate3d(-50%, -50%, 0) scaleX(0.96);
  animation: heroBlueDrift 13s ease-in-out infinite alternate;
}

.hero::after {
  width: min(760px, 86vw);
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 62% 48%, rgba(93, 145, 181, 0.14), transparent 58%),
    radial-gradient(circle at 22% 56%, rgba(55, 106, 143, 0.08), transparent 34%);
  filter: blur(22px);
  opacity: 0.34;
  transform: translate3d(-50%, -42%, 0) rotate(-2deg);
  animation: heroBluePulse 16s ease-in-out infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
}

@keyframes heroBlueDrift {
  0% {
    opacity: 0.58;
    transform: translate3d(-54%, -52%, 0) scaleX(0.9) scaleY(0.92);
  }

  100% {
    opacity: 0.86;
    transform: translate3d(-46%, -48%, 0) scaleX(1.06) scaleY(1.03);
  }
}

@keyframes heroBluePulse {
  0% {
    opacity: 0.2;
    transform: translate3d(-52%, -40%, 0) rotate(-4deg) scaleX(0.92);
  }

  100% {
    opacity: 0.42;
    transform: translate3d(-48%, -46%, 0) rotate(3deg) scaleX(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after {
    animation: none;
  }
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin: 0 auto 18px;
  font-size: clamp(2.75rem, 5.6vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
}

.hero-text {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.trust-row article,
.faq-item,
.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 28, 40, 0.82), rgba(13, 17, 25, 0.74));
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.trust-row article,
.faq-item {
  border-color: color-mix(in srgb, var(--card-glow-color) 54%, rgba(255, 255, 255, 0.11));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--card-glow-color) 44%, transparent),
    0 18px 58px -28px var(--card-glow-color),
    0 22px 68px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.trust-row article:hover,
.faq-item:hover,
.faq-item:focus-within,
.faq-item.is-open {
  border-color: var(--card-glow-hover-color);
  box-shadow:
    0 0 0 1px var(--card-glow-hover-color),
    0 24px 76px -24px var(--card-glow-hover-color),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.trust-row {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 70px;
}

.feature-slider-window,
.feature-slider-track {
  display: contents;
}

.feature-slider-controls {
  display: none;
}

.feature-slide-clone {
  display: none;
}

.trust-row::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 500px;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 44%, rgba(55, 106, 143, 0.13), transparent 34%),
    radial-gradient(ellipse at 58% 28%, rgba(55, 106, 143, 0.07), transparent 42%),
    radial-gradient(circle at 86% 66%, rgba(55, 106, 143, 0.05), transparent 30%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.trust-row article {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.trust-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.trust-row span {
  color: rgba(167, 160, 160, 0.36);
  font-weight: 900;
}

.trust-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(55, 106, 143, 0.48);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 0 1px rgba(55, 106, 143, 0.12),
    0 12px 28px -22px rgba(55, 106, 143, 0.7);
  color: rgba(245, 240, 232, 0.72);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.trust-row article:hover .trust-icon {
  border-color: rgba(55, 106, 143, 0.72);
  background: rgba(55, 106, 143, 0.08);
  box-shadow:
    0 0 0 1px rgba(55, 106, 143, 0.24),
    0 14px 34px -18px rgba(55, 106, 143, 0.82);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-row strong {
  display: block;
  margin: 14px 0 8px;
}

.trust-row p,
.section-heading p,
.product-body p,
.faq-panel p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  padding: 18px 0 26px;
}

.section-heading.compact {
  display: block;
}

.section-heading.section-heading-single {
  grid-template-columns: 1fr;
}

.section-heading code,
.legal-card code {
  color: var(--accent);
}

.product-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  padding-bottom: 86px;
}

.product-grid::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 480px;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 34%, rgba(55, 106, 143, 0.15), transparent 34%),
    radial-gradient(ellipse at 38% 72%, rgba(55, 106, 143, 0.07), transparent 42%),
    radial-gradient(circle at 10% 24%, rgba(55, 106, 143, 0.045), transparent 28%);
  filter: blur(12px);
  transform: translateX(-50%);
}

.product-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--card-glow-color) 72%, rgba(255, 255, 255, 0.12));
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(26, 33, 48, 0.92), rgba(12, 16, 24, 0.94));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--card-glow-color) 62%, transparent),
    0 18px 60px -22px var(--card-glow-color),
    0 20px 56px rgba(0, 0, 0, 0.27);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: var(--card-glow-hover-color);
  box-shadow:
    0 0 0 1px var(--card-glow-hover-color),
    0 24px 80px -18px var(--card-glow-hover-color),
    0 24px 62px rgba(0, 0, 0, 0.3);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 10px;
  overflow: hidden;
  border-radius: 14px;
  background: #0d1017;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-wrap span {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.7);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-body {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 8px 16px 3px;
}

.product-body h3 {
  font-size: 1.02rem;
}

.product-body p {
  flex: 1;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 16px 18px;
}

.product-footer strong {
  color: var(--accent);
}

.product-footer button {
  min-width: 102px;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform 160ms ease, border-color 180ms ease, background 160ms ease, color 160ms ease, box-shadow 180ms ease;
}

.product-footer button:hover,
.product-footer button:focus-visible {
  border-color: rgba(55, 106, 143, 0.75);
  box-shadow:
    0 0 0 1px rgba(55, 106, 143, 0.45),
    0 0 22px rgba(55, 106, 143, 0.35);
}

.product-footer button:focus-visible {
  outline: none;
}

.faq-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding-bottom: 32px;
}

.faq-section::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  z-index: 0;
  width: 100vw;
  height: 520px;
  pointer-events: none;
  background:
    radial-gradient(circle at 48% 78%, rgba(55, 106, 143, 0.115), transparent 34%),
    radial-gradient(ellipse at 18% 44%, rgba(55, 106, 143, 0.06), transparent 38%),
    radial-gradient(circle at 90% 62%, rgba(55, 106, 143, 0.055), transparent 30%);
  filter: blur(12px);
  transform: translateX(-50%);
}

.faq-section > * {
  position: relative;
  z-index: 1;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item > button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 18px 20px;
  text-align: left;
}

.faq-item > button:focus-visible {
  outline: none;
}

.faq-item > button strong {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
}

.faq-panel {
  display: none;
  padding: 0 20px 18px;
}

.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 10px;
}

.faq-links a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.faq-links a:hover,
.faq-links a:focus-visible {
  color: var(--accent);
}

.faq-links .faq-button-link {
  min-height: 36px;
  padding: 0 14px;
  text-decoration: none;
  font-size: 0.86rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 180ms ease;
}

.cart-drawer.is-open .cart-backdrop {
  background: rgba(0, 0, 0, 0.62);
}

.cart-panel {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  width: min(450px, calc(100vw - 28px));
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(13, 17, 25, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(calc(100% + 24px));
  transition: transform 220ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.cart-head h2 {
  font-size: 2rem;
}

.icon-button {
  display: grid;
  width: 44px;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.5rem;
}

.cart-items {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding: 4px 2px 18px;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.cart-thumb {
  grid-row: 1 / span 2;
  align-self: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0d1017;
  object-fit: cover;
}

.cart-line-info {
  grid-row: 1 / span 2;
  align-self: center;
  min-width: 0;
}

.cart-line h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
}

.quantity-controls {
  grid-column: 3;
  justify-self: end;
  display: grid;
  grid-template-columns: 38px 34px 38px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity-controls button {
  width: 38px;
  min-height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.quantity-controls span {
  text-align: center;
  font-weight: 800;
}

.remove-button {
  grid-column: 3;
  justify-self: end;
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-empty {
  display: none;
  margin: auto 0;
  padding: 34px 24px;
  border: 1px dashed var(--cart-accent-glow);
  border-radius: 18px;
  text-align: center;
}

.cart-empty.is-visible {
  display: block;
}

.cart-empty span {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 900;
}

.cart-empty p {
  margin-bottom: 0;
  color: var(--muted);
}

.checkout-error {
  display: none;
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--accent-soft);
  border-radius: 12px;
  background: rgba(245, 240, 232, 0.08);
  color: var(--danger);
}

.checkout-error.is-visible {
  display: block;
}

.cart-summary {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary.is-hidden,
.shipping-progress.is-hidden {
  display: none;
}

.shipping-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(55, 106, 143, 0.26);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(22, 28, 40, 0.72), rgba(10, 14, 21, 0.58));
  box-shadow:
    0 0 0 1px rgba(55, 106, 143, 0.08),
    0 18px 42px -30px rgba(55, 106, 143, 0.56);
}

.shipping-progress p {
  margin: 0;
  color: var(--soft);
  font-size: 0.9rem;
}

.shipping-progress-track {
  overflow: hidden;
  height: 9px;
  border: 1px solid rgba(55, 106, 143, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.shipping-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(55, 106, 143, 0.76), rgba(92, 147, 186, 0.94));
  box-shadow: 0 0 18px rgba(55, 106, 143, 0.46);
  transition: width 900ms ease;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
}

.cart-total-row-detail {
  display: none;
}

.cart-summary:not(.is-empty) .cart-total-row-detail {
  display: flex;
}

.cart-total-row strong {
  color: var(--text);
  font-size: 1.08rem;
}

.cart-total-row-final {
  margin: 4px 0 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.cart-total-row-final strong {
  font-size: 1.35rem;
}

.cart-summary.is-empty .cart-total-row-final {
  margin: 0;
  padding-top: 0;
  border-top: 0;
}

.cart-summary.is-empty .checkout-button {
  display: none;
}

.checkout-button {
  width: 100%;
}

.checkout-button.is-loading {
  opacity: 0.72;
}

.simple-page {
  min-height: calc(100vh - 220px);
  padding: 80px 0;
}

.legal-card {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(26px, 5vw, 52px);
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.legal-card h1 {
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.legal-card h2 {
  margin-top: 32px;
  font-size: 1.45rem;
}

.success-card {
  text-align: center;
}

.success-card .hero-actions {
  justify-content: center;
}

body[data-page="success"] .simple-page {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  min-height: calc(100vh - 92px);
  min-height: calc(100dvh - 92px);
  place-items: center;
  padding: clamp(72px, 10vh, 118px) 0 58px;
}

body[data-page="success"] .simple-page::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 0;
  width: min(780px, 92vw);
  height: 520px;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(55, 106, 143, 0.2), rgba(55, 106, 143, 0.08) 38%, transparent 70%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
}

body[data-page="success"] .success-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 760px;
  border: 1px solid rgba(55, 106, 143, 0.42);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(22, 28, 40, 0.9), rgba(12, 16, 24, 0.88));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(55, 106, 143, 0.18),
    0 0 54px -24px rgba(55, 106, 143, 0.46);
  backdrop-filter: blur(16px);
}

body[data-page="success"] .success-card::before {
  content: "";
  position: absolute;
  inset: -40% 12% auto;
  height: 240px;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(55, 106, 143, 0.18), transparent 68%);
  filter: blur(14px);
}

body[data-page="success"] .success-card > * {
  position: relative;
  z-index: 1;
}

body[data-page="success"] .success-card h1 {
  max-width: 620px;
  font-size: clamp(2.15rem, 5vw, 3.8rem);
}

body[data-page="success"] .success-card p:not(.eyebrow) {
  max-width: 590px;
  margin-inline: auto;
}

body[data-page="success"] .success-card .hero-actions {
  margin-top: 28px;
}

body[data-page="success"] .success-contact {
  margin-top: 24px;
  color: var(--muted);
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 20px 0 22px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer nav {
  position: relative;
  z-index: 1;
  justify-content: center;
}

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

@media (max-width: 899px) {
  .site-header {
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.8rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    display: block;
  }

}

@media (max-width: 699px) {
  .site-footer,
  main {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    width: 100%;
    gap: 7px;
    padding: 10px 14px;
  }

  .brand,
  .cart-trigger {
    min-height: 34px;
    padding: 0 9px;
    font-size: 0.74rem;
    font-weight: 500;
  }

  .cart-trigger {
    gap: 6px;
    min-width: 68px;
  }

  .cart-trigger strong {
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
  }

  .main-nav {
    gap: 8px;
    font-size: 0.74rem;
  }

  .hero {
    gap: 28px;
    padding: 72px 0 50px;
  }

  .hero::before {
    width: 100vw;
    height: 118px;
    background:
      radial-gradient(ellipse at 42% 54%, rgba(55, 106, 143, 0.18), transparent 48%),
      radial-gradient(circle at 74% 40%, rgba(93, 145, 181, 0.075), transparent 30%),
      radial-gradient(circle at 20% 68%, rgba(55, 106, 143, 0.065), transparent 34%);
    opacity: 0.66;
  }

  .hero::after {
    width: 86vw;
    height: 76px;
    opacity: 0.28;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.04;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .legal-card h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1;
  }

  .legal-card h2 {
    margin-top: 28px;
    font-size: 1.22rem;
  }

  body[data-page="success"] .success-card .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  body[data-page="success"] .success-card .button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 38px;
    padding: 0 8px;
    font-size: clamp(0.72rem, 3.1vw, 0.84rem);
    white-space: nowrap;
  }

  .site-footer {
    gap: 12px;
    padding: 18px 0 20px;
  }

  .site-footer nav {
    gap: 8px;
    font-size: 0.8rem;
  }

  .trust-row {
    display: block;
    padding-bottom: 58px;
  }

  .feature-slider-window {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    touch-action: pan-y;
  }

  .feature-slider-track {
    display: flex;
    transition: transform 360ms ease;
    will-change: transform;
  }

  .feature-slider-track > article {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 22px 52px;
  }

  .feature-slider-track > .feature-slide-clone {
    display: block;
  }

  .feature-slider-controls {
    position: absolute;
    inset: 0 0 58px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .feature-slider-button {
    display: grid;
    width: 38px;
    min-height: 54px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(245, 240, 232, 0.58);
    font-size: 2rem;
    line-height: 1;
    pointer-events: auto;
    transition: color 160ms ease, transform 160ms ease;
  }

  .feature-slider-button:hover,
  .feature-slider-button:focus-visible {
    transform: translateY(-1px);
    color: rgba(245, 240, 232, 0.9);
    outline: none;
  }

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

  .product-card {
    border-radius: 16px;
  }

  .product-image-wrap {
    margin: 8px;
    border-radius: 12px;
  }

  .product-image-wrap span {
    top: 8px;
    right: 8px;
    padding: 5px 7px;
    font-size: 0.66rem;
  }

  .product-body {
    padding: 7px 10px 3px;
  }

  .product-body h3 {
    font-size: 0.9rem;
  }

  .product-footer {
    gap: 6px;
    padding: 0 10px 14px;
  }

  .product-footer strong {
    font-size: 0.9rem;
  }

  .product-footer button {
    min-width: 82px;
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .cart-panel {
    inset: 8px;
    width: auto;
    padding: 18px;
  }

  .cart-line {
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
  }

  .cart-thumb {
    width: 56px;
    height: 56px;
  }

  .quantity-controls {
    grid-column: 3;
    width: fit-content;
  }

  .remove-button {
    grid-column: 3;
  }
}

@media (max-width: 379px) {
  .site-header {
    gap: 6px;
    padding-inline: 10px;
  }

  .brand,
  .cart-trigger {
    padding: 0 7px;
    font-size: 0.68rem;
  }

  .cart-trigger {
    min-width: 62px;
  }

  .main-nav {
    gap: 6px;
    font-size: 0.7rem;
  }

  .product-grid {
    gap: 10px;
  }

  .product-image-wrap {
    margin: 7px;
  }

  .product-image-wrap span {
    padding: 4px 6px;
    font-size: 0.62rem;
  }

  .product-body {
    padding-inline: 8px;
  }

  .product-body h3 {
    font-size: 0.84rem;
  }

  .product-footer {
    gap: 5px;
    padding: 0 8px 12px;
  }

  .product-footer strong {
    font-size: 0.84rem;
  }

  .product-footer button {
    min-width: 74px;
    min-height: 36px;
    padding: 0 6px;
    font-size: 0.68rem;
  }
}
