/** Shopify CDN: Minification failed

Line 1016:0 All "@import" rules must come first

**/
/* ============================================================
   Entro DTC — storefront skin for the Ariadne theme
   assets/entro-dtc.css

   Written against the Entronix Ariadne export: Bootstrap grid,
   .container / .navbar-nav / .yv-* classes, and the theme's own
   CSS variables from snippets/style-variables.liquid.

   Install: Assets → New file → entro-dtc.css, then add this as the
   LAST stylesheet line in snippets/theme-style.liquid:
     {{ 'entro-dtc.css' | asset_url | stylesheet_tag }}

   Palette: red / blue / white / black. Color is applied as stroke,
   rule and underline — not as filled slabs.
   ============================================================ */

:root {
  --ed-ink:       #101014;
  --ed-ground:    #ffffff;
  --ed-mat:       #f2f3f5;
  --ed-red:       #c8102e;
  --ed-red-deep:  #8a0a1f;   /* safe for body-size text */
  --ed-red-tint:  #fdecee;
  --ed-red-soft:  #f2a3ad;   /* for dark grounds */
  --ed-blue:      #1b3a8c;
  --ed-blue-deep: #11265d;
  --ed-blue-tint: #eaeffb;
  --ed-hair:      rgba(16, 16, 20, 0.15);
  --ed-n100:      #f7f7f8;
  --ed-n200:      #ebebee;
  --ed-n500:      #96969f;
  --ed-n600:      #74747d;
  --ed-n700:      #54545c;
  --ed-n800:      #33333a;
  --ed-radius:    4px;
}

/* ---------- 1. Announcement bar with dispatch clock ---------------- */

.ed-announce {
  background: var(--ed-ink);
  color: #ffffff;
  width: 100%;
}

.ed-announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 10px 20px;
  min-height: 58px;
}

.ed-announce__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: none;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.ed-announce__arrow:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.ed-announce__arrow:focus-visible {
  outline: 2px solid var(--ed-red-soft);
  outline-offset: 2px;
}

.ed-announce__stack {
  text-align: center;
  line-height: 1.5;
  min-width: 0;
}

.ed-announce__message {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}

a.ed-announce__message:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ed-announce__message[hidden] { display: none; }

.ed-announce__ship {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
}

.ed-announce__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ed-red);
  flex: none;
}

.ed-announce__clock {
  font-family: var(--heading-font-family);
  font-size: 17px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: #ffffff;
}

.ed-announce__cutoff { color: rgba(255, 255, 255, 0.42); }

.ed-announce.is-urgent .ed-announce__clock { color: var(--ed-red-soft); }

@media screen and (max-width: 749px) {
  .ed-announce__inner { gap: 10px; padding: 9px 10px; }
  .ed-announce__message { font-size: 11px; letter-spacing: 0.07em; }
  .ed-announce__ship { font-size: 11.5px; gap: 6px; }
  .ed-announce__clock { font-size: 15px; }
  .ed-announce__cutoff { display: none; }
}

/* ---------- 2. Shared section furniture --------------------------- */

.ed-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

.ed-head__title {
  margin: 0;
  font-family: var(--heading-font-family);
  font-weight: var(--medium, 500);
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--colorTextBody, var(--ed-ink));
}

.ed-head__note {
  font-size: 13.5px;
  color: var(--ed-n600);
  max-width: 40ch;
  text-align: right;
  margin: 0;
}

.ed-head__link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-red-deep);
  border-bottom: 1px solid var(--ed-red);
  padding-bottom: 3px;
  white-space: nowrap;
  text-decoration: none;
}

.ed-head__link:hover { color: var(--ed-red); text-decoration: none; }

.ed-kicker {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ed-red-deep);
  margin-bottom: 8px;
}

.ed-rule {
  height: 1px;
  background: var(--ed-hair);
  border: 0;
  margin: 0 0 28px;
  opacity: 1;
}

.ed-bordered {
  border-top: 1px solid var(--ed-hair);
  border-bottom: 1px solid var(--ed-hair);
}

@media screen and (max-width: 749px) {
  .ed-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ed-head__note { text-align: left; }
}

/* ---------- 3. Fit finder ---------------------------------------- */

.ed-fit {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  border: 1px solid var(--ed-hair);
  border-radius: var(--ed-radius);
  background: var(--ed-ground);
}

.ed-fit__rail {
  border-right: 1px solid var(--ed-hair);
  padding: 18px 0;
}

.ed-fit__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ed-n500);
  padding: 0 20px 12px;
}

.ed-fit__panel { padding: 18px 24px 20px; }
.ed-fit__panel .ed-fit__label { padding: 0 0 14px; }

.ed-fit__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 10px 20px;
  background: transparent;
  border: 0;
  border-left: 2px solid transparent;
  font-family: var(--font-family);
  font-size: 14.5px;
  text-align: left;
  color: var(--ed-n800);
  cursor: pointer;
}

.ed-fit__brand:hover { color: var(--ed-red-deep); }

.ed-fit__brand.is-active {
  background: var(--ed-red-tint);
  border-left-color: var(--ed-red);
  color: var(--ed-red-deep);
}

.ed-fit__brand:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: -2px;
}

.ed-fit__brand svg { flex: none; }

.ed-fit__models {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
  min-height: 96px;
}

.ed-fit__models[hidden] { display: none; }

.ed-fit__model {
  padding: 9px 16px;
  border: 1px solid var(--ed-hair);
  border-radius: var(--ed-radius);
  background: transparent;
  font-family: var(--font-family);
  font-size: 13.5px;
  color: var(--ed-n700);
  cursor: pointer;
}

.ed-fit__model:hover { border-color: var(--ed-n500); color: var(--ed-ink); }

.ed-fit__model.is-active {
  border-color: var(--ed-ink);
  color: var(--ed-ink);
}

.ed-fit__model:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 2px;
}

.ed-fit__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--ed-hair);
  margin-top: 18px;
  padding-top: 16px;
}

.ed-fit__result { font-size: 14px; color: var(--ed-n700); }

.ed-fit__count {
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-weight: var(--semibold, 600);
  color: var(--ed-ink);
  margin-right: 4px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.ed-fit__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 48px;
  padding: 0 26px;
  border: 1px solid var(--ed-red);
  border-radius: var(--ed-radius);
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: var(--semibold, 600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ed-red-deep);
  text-decoration: none;
  white-space: nowrap;
}

.ed-fit__cta:hover {
  background: var(--ed-red-tint);
  color: var(--ed-red-deep);
  text-decoration: none;
}

.ed-fit__cta svg { flex: none; }

@media screen and (max-width: 749px) {
  .ed-fit { grid-template-columns: minmax(0, 1fr); }
  .ed-fit__rail {
    border-right: 0;
    border-bottom: 1px solid var(--ed-hair);
    display: flex;
    overflow-x: auto;
    padding: 12px;
    gap: 8px;
  }
  .ed-fit__rail .ed-fit__label { display: none; }
  .ed-fit__brand {
    width: auto;
    border: 1px solid var(--ed-hair);
    border-left-width: 1px;
    border-radius: var(--ed-radius);
    padding: 8px 14px;
    white-space: nowrap;
  }
  .ed-fit__brand.is-active { border-color: var(--ed-red); }
  .ed-fit__brand svg { display: none; }
  .ed-fit__foot { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------- 4. Protection specs ---------------------------------- */

.ed-specs {
  display: grid;
  grid-template-columns: repeat(var(--ed-specs-columns, 4), minmax(0, 1fr));
}

.ed-spec {
  padding: 0 26px;
  border-right: 1px solid var(--ed-hair);
  min-width: 0;
}

.ed-spec:first-child { padding-left: 0; }
.ed-spec:last-child { padding-right: 0; border-right: 0; }

.ed-spec__kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ed-red-deep);
  margin-bottom: 14px;
}

.ed-spec__figure { display: flex; align-items: baseline; gap: 6px; }

.ed-spec__value {
  font-family: var(--heading-font-family);
  font-size: 46px;
  font-weight: var(--medium, 500);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.ed-spec__unit {
  font-family: var(--heading-font-family);
  font-size: 17px;
  color: var(--ed-n600);
}

.ed-spec__title {
  font-family: var(--heading-font-family);
  font-size: 19px;
  font-weight: var(--semibold, 600);
  margin-top: 12px;
  line-height: 1.25;
}

.ed-spec__body {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ed-n600);
  margin: 6px 0 0;
}

@media screen and (max-width: 989px) {
  .ed-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
  .ed-spec:nth-child(2n) { padding-right: 0; border-right: 0; }
  .ed-spec:nth-child(2n+1) { padding-left: 0; }
}

@media screen and (max-width: 575px) {
  .ed-specs { grid-template-columns: minmax(0, 1fr); }
  .ed-spec { padding: 0; border-right: 0; }
  .ed-spec__value { font-size: 38px; }
}

/* ---------- 5. Shop by device (round) ---------------------------- */

.ed-devices {
  display: grid;
  grid-template-columns: repeat(var(--ed-devices-columns, 4), minmax(0, 1fr));
  gap: 24px;
}

.ed-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1;
  min-width: 0;
  padding: 24px;
  background: var(--ed-ground);
  border: 1px solid var(--ed-hair);
  border-radius: 50%;
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.ed-device:hover { border-color: var(--ed-red); text-decoration: none; }

.ed-device:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 2px;
}

.ed-device__image {
  width: 60%;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--ed-n200);
}

.ed-device__image .image-wrapper { border-radius: 50%; }

.ed-device__image img,
.ed-device__image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ed-device__title {
  font-family: var(--heading-font-family);
  font-size: 22px;
  font-weight: var(--medium, 500);
  color: var(--colorTextBody, var(--ed-ink));
  line-height: 1.15;
}

.ed-device__meta {
  font-size: 12.5px;
  color: var(--ed-n600);
  margin-top: 3px;
}

@media screen and (max-width: 989px) {
  .ed-devices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media screen and (max-width: 575px) {
  .ed-device__title { font-size: 17px; }
  .ed-device__meta { font-size: 11px; }
}

/* ---------- 6. Category tiles ----------------------------------- */

.ed-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 214px;
  gap: 22px;
}

.ed-tile {
  position: relative;
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
  border: 6px solid var(--ed-mat);
  outline: 1px solid var(--ed-hair);
  background: var(--ed-n200);
  text-decoration: none;
}

.ed-tile:hover { text-decoration: none; }

.ed-tile:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 2px;
}

.ed-tile--span-2 { grid-column: span 2; }
.ed-tile--span-3 { grid-column: span 3; }
.ed-tile--span-6 { grid-column: span 6; }
.ed-tile--tall   { grid-row: span 2; }

.ed-tile__image { position: absolute; inset: 0; }

.ed-tile__image .image-wrapper { height: 100%; padding-bottom: 0 !important; }

.ed-tile__image img,
.ed-tile__image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ed-tile__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ed-ground);
  border-top: 1px solid var(--ed-hair);
  border-right: 1px solid var(--ed-hair);
  padding: 13px 22px 11px;
  pointer-events: none;
}

.ed-tile__title {
  display: block;
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-weight: var(--medium, 500);
  color: var(--ed-ink);
  line-height: 1.1;
}

.ed-tile--tall .ed-tile__title { font-size: 30px; }

.ed-tile__meta {
  display: block;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ed-red-deep);
  margin-top: 2px;
}

/* Promo tile — bordered, never a filled slab */
.ed-tile--promo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ed-ground);
  border: 1px solid var(--ed-blue);
  outline: 0;
  border-radius: var(--ed-radius);
  padding: 24px;
}

.ed-tile--promo:hover { border-color: var(--ed-red); }

.ed-tile__kicker {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ed-blue-deep);
  border-bottom: 1px solid var(--ed-blue);
  padding-bottom: 10px;
}

.ed-tile__promo-title {
  display: block;
  font-family: var(--heading-font-family);
  font-size: 32px;
  font-weight: var(--normal, 400);
  line-height: 1.05;
  color: var(--ed-ink);
}

.ed-tile__cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-red-deep);
  border-bottom: 1px solid var(--ed-red);
  padding-bottom: 3px;
}

@media screen and (max-width: 989px) {
  .ed-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 190px; }
  .ed-tile,
  .ed-tile--span-2,
  .ed-tile--span-3,
  .ed-tile--span-6 { grid-column: span 2; }
  .ed-tile--tall { grid-row: span 1; }
  .ed-tile__promo-title { font-size: 26px; }
}

@media screen and (max-width: 575px) {
  .ed-tiles { grid-template-columns: minmax(0, 1fr); grid-auto-rows: 170px; }
  .ed-tile,
  .ed-tile--span-2,
  .ed-tile--span-3,
  .ed-tile--span-6 { grid-column: span 1; }
  .ed-tile__title,
  .ed-tile--tall .ed-tile__title { font-size: 20px; }
}

/* ---------- 7. Creator strip -------------------------------------
   Styles sections/entro-creator-strip.liquid — vertical 9:16 tiles
   with inline video playback.
   ---------------------------------------------------------------- */

.ed-creators__aside {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: none;
}

.ed-creators__note {
  font-size: 13.5px;
  color: var(--ed-n600);
}

.ed-creators__note p { margin: 0; }
.ed-creators__note strong { color: var(--ed-ink); font-weight: var(--semibold, 600); }

.ed-creators__follow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid var(--ed-ink);
  border-radius: var(--ed-radius);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-ink);
  text-decoration: none;
  white-space: nowrap;
}

.ed-creators__follow:hover {
  border-color: var(--ed-red);
  color: var(--ed-red-deep);
  text-decoration: none;
}

.ed-creators__follow svg { flex: none; }

.ed-creators__grid {
  display: grid;
  grid-template-columns: repeat(var(--ed-creators-columns, 5), minmax(0, 1fr));
  gap: 20px;
}

.ed-creator { min-width: 0; }

.ed-creator__frame {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  min-width: 0;
  border: 6px solid var(--ed-mat);
  outline: 1px solid var(--ed-hair);
  background: var(--ed-n200);
  overflow: hidden;
  text-decoration: none;
}

.ed-creator__frame:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 2px;
}

.ed-creator__media {
  position: absolute;
  inset: 0;
  display: block;
}

.ed-creator__media .image-wrapper {
  height: 100%;
  padding-bottom: 0 !important;
}

.ed-creator__media img,
.ed-creator__media svg,
.ed-creator__media video,
.ed-creator__media .ed-creator__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ed-creator__media video::-webkit-media-controls { opacity: 0; transition: opacity 0.15s ease; }
.ed-creator__frame.is-playing .ed-creator__media video::-webkit-media-controls { opacity: 1; }

.ed-creator__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.ed-creator__frame.is-playing .ed-creator__play {
  opacity: 0;
  pointer-events: none;
}

.ed-creator__play:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: -4px;
}

.ed-creator__play-disc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(16, 16, 20, 0.42);
  color: #ffffff;
}

.ed-creator__frame:hover .ed-creator__play-disc {
  background: rgba(200, 16, 46, 0.72);
  border-color: #ffffff;
}

.ed-creator__views {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--ed-ground);
  border-top: 1px solid var(--ed-hair);
  border-right: 1px solid var(--ed-hair);
  padding: 7px 12px 6px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: var(--ed-n700);
  pointer-events: none;
}

.ed-creator__views svg { color: var(--ed-red); flex: none; }

.ed-creator__frame.is-playing .ed-creator__views { opacity: 0; }

.ed-creator__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.ed-creator__handle {
  font-family: var(--heading-font-family);
  font-size: 17px;
  font-weight: var(--semibold, 600);
  color: var(--colorTextBody, var(--ed-ink));
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ed-creator__platform {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ed-n500);
  flex: none;
}

.ed-creator__caption {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ed-n600);
  margin: 4px 0 8px;
}

.ed-creator__product {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ed-red-deep);
  border-bottom: 1px solid var(--ed-red);
  padding-bottom: 2px;
  text-decoration: none;
}

.ed-creator__product:hover {
  color: var(--ed-red);
  text-decoration: none;
}

@media screen and (max-width: 989px) {
  .ed-creators__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ed-creators__aside { flex-wrap: wrap; }
}

@media screen and (max-width: 575px) {
  .ed-creators__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .ed-creator__handle { font-size: 15px; }
  .ed-creator__caption { font-size: 12px; }
}

/* Legacy: restyles the theme's native Social media gallery, if you'd
   rather use that section instead of mine. */

.ed-creator-strip .yv-social-media-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.ed-creator-strip .yv-social-media-gallery-item { min-width: 0; }

.ed-creator-strip .yv-social-media-gallery-img {
  border: 6px solid var(--ed-mat);
  outline: 1px solid var(--ed-hair);
  overflow: hidden;
}

/* 9:16 instead of the theme's square */
.ed-creator-strip .yv-social-media-gallery-img .image-wrapper {
  padding-bottom: 177.78% !important;
}

.ed-creator-strip .yv-site-title {
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: var(--semibold, 600);
  letter-spacing: 0.02em;
}

.ed-creator-strip .yv-social-media-desc { color: var(--ed-n600); }

@media screen and (max-width: 989px) {
  .ed-creator-strip .yv-social-media-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 575px) {
  .ed-creator-strip .yv-social-media-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- 8. Two-panel category menu ---------------------------
   A CSS layer over the theme's own dropdown markup (snippets/
   nav-menu-items.liquid). Requires Header → Menu type = "Dropdown"
   (not Mega menu) and a menu built three levels deep.

   Add `ed-panel-menu` to the <header> class list in
   sections/header.liquid. Remove it and the menu reverts to stock.
   ---------------------------------------------------------------- */

@media screen and (min-width: 990px) {
  .ed-panel-menu .nav-item-mega-menu > details-disclousre > .yv-dropdown-detail > .yv-dropdown-menus-outer,
  .ed-panel-menu .dropdown-menu-list > details-disclousre > .yv-dropdown-detail > .yv-dropdown-menus-outer {
    min-width: 720px;
  }

  .ed-panel-menu .yv-dropdown-menus.menu-list-type-dropdown {
    display: grid;
    grid-template-columns: 232px minmax(0, 1fr);
    align-items: stretch;
    padding: 22px 0;
  }

  /* Second level becomes the left rail */
  .ed-panel-menu .menu-list-type-dropdown > ul > li,
  .ed-panel-menu .menu-list-type-dropdown > ul > .dropdown-item {
    display: contents;
  }

  .ed-panel-menu .menu-list-type-dropdown > ul {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0 22px 0 0;
    border-right: 1px solid var(--ed-hair);
    list-style: none;
  }

  .ed-panel-menu .menu-list-type-dropdown > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 12px;
    font-size: 14.5px;
    color: var(--ed-n800);
    border-radius: 3px;
    text-decoration: none;
  }

  .ed-panel-menu .menu-list-type-dropdown > ul > li > a:hover {
    color: var(--ed-red-deep) !important;
    background: var(--ed-red-tint);
  }

  /* Third level sits in the panel beside the rail */
  .ed-panel-menu .menu-list-type-dropdown > ul > li > ul {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: start;
    columns: 3;
    column-gap: 30px;
    margin: 0;
    padding: 0 0 0 30px;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease;
  }

  .ed-panel-menu .menu-list-type-dropdown > ul > li:first-child > ul,
  .ed-panel-menu .menu-list-type-dropdown > ul > li:hover > ul,
  .ed-panel-menu .menu-list-type-dropdown > ul > li:focus-within > ul {
    opacity: 1;
    pointer-events: auto;
  }

  .ed-panel-menu .menu-list-type-dropdown > ul > li:hover ~ li:first-child > ul { opacity: 0; }

  .ed-panel-menu .menu-list-type-dropdown > ul > li > ul > li { break-inside: avoid; }

  .ed-panel-menu .menu-list-type-dropdown > ul > li > ul > li > a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    color: var(--ed-n800);
    text-decoration: none;
  }

  .ed-panel-menu .menu-list-type-dropdown > ul > li > ul > li > a:hover {
    color: var(--ed-red) !important;
  }
}

/* ---------- 9. Typography — Inter Tight --------------------------
   The pairing you chose. Delete this block if you set Inter Tight in
   Theme settings → Typography instead.
   ---------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

body,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5,
.heading-font,
.body-font,
.accent-font,
.button,
.btn,
.nav-link,
.section-heading-title {
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
}

.section-heading-title,
.ed-head__title { letter-spacing: -0.02em; }

.price,
.yv-product-price,
.yv-product-compare-price,
.ed-announce__clock,
.ed-spec__value,
.ed-fit__count,
.cartCount {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* ---------- 10. Light grey ground -------------------------------
   Add `ed-ground-grey` to the <body> class list in layout/theme.liquid.
   Cards, captions and menu panels stay white so they read as plates
   sitting on the page.
   ---------------------------------------------------------------- */

body.ed-ground-grey { background: #eef0f2; }

body.ed-ground-grey .ed-device,
body.ed-ground-grey .ed-tile__caption,
body.ed-ground-grey .ed-tile--promo,
body.ed-ground-grey .ed-fit,
body.ed-ground-grey .yv-dropdown-menus,
body.ed-ground-grey .top-header,
body.ed-ground-grey .product-grid-item,
body.ed-ground-grey .yv-product-card {
  background: #ffffff;
}

/* ---------- 11. Centred logo ------------------------------------
   Only needed on header layouts 1 and 3, where the logo sits left.
   Header layouts 2 and 4 already centre it — use those first and
   skip this block. Add `ed-centre-brand` to the <header> class list.
   ---------------------------------------------------------------- */

@media screen and (min-width: 990px) {
  .ed-centre-brand .top-header .navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
  }

  .ed-centre-brand .top-header .header__heading-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 2;
  }

  .ed-centre-brand .top-header .navbar-nav {
    order: 5;
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .ed-centre-brand .top-header .form-inline { order: 9; }
}

/* ---------- 12. Header polish ----------------------------------- */

.top-header .nav-link {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12.5px;
}

.top-header .navPages-label.new-label {
  background: transparent;
  border: 1px solid var(--ed-red);
  color: var(--ed-red-deep);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
}


/* ---------- 7. Best seller spotlight ------------------------------
   sections/entro-best-seller.liquid — dark ground, matted plate,
   figures on rules. Color on this ground is the soft red / white.
   ---------------------------------------------------------------- */

.ed-section--dark { color: #ffffff; }

.ed-spot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: center;
}

.ed-spot__plate {
  min-width: 0;
  border: 8px solid rgba(255, 255, 255, 0.1);
  outline: 1px solid rgba(255, 255, 255, 0.18);
}

.ed-spot__plate .image-wrapper,
.ed-spot__plate img,
.ed-spot__plate svg { display: block; width: 100%; }

.ed-spot__body { min-width: 0; }

.ed-spot__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ed-red-soft);
}

.ed-spot__eyebrow-rule { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.22); }
.ed-spot__sold { color: rgba(255, 255, 255, 0.45); }

.ed-spot__title {
  margin: 22px 0 16px;
  font-family: var(--heading-font-family);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.ed-spot__text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  text-align: justify;
  max-width: 52ch;
  margin: 0 0 26px;
}

.ed-spot__text p { margin: 0 0 12px; }
.ed-spot__text p:last-child { margin-bottom: 0; }
.ed-spot__text a { color: #ffffff; text-decoration: underline; }

.ed-spot__figures {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ed-spot__figures-div { width: 1px; height: 44px; background: rgba(255, 255, 255, 0.2); }

.ed-spot__figure-value {
  font-family: var(--heading-font-family);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
}

.ed-spot__figure-label {
  margin-top: 3px;
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.ed-spot__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ed-spot__form { margin: 0; }

.ed-spot__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  background: transparent;
  border: 1px solid var(--ed-red);
  border-radius: var(--ed-radius);
  color: var(--ed-red-soft);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: var(--semibold, 600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.ed-spot__cta:hover {
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
  background: rgba(200, 16, 46, 0.18);
}

.ed-spot__cta:focus-visible { outline: 2px solid #ffffff; outline-offset: 2px; }
.ed-spot__cta[disabled] { opacity: 0.45; cursor: default; }

.ed-spot__cta--ghost {
  padding: 0 26px;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.ed-spot__cta--ghost:hover { border-color: #ffffff; background: rgba(255, 255, 255, 0.08); }

.ed-spot__foot {
  margin: 16px 0 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

@media screen and (max-width: 989px) {
  .ed-spot { gap: 40px; }
  .ed-spot__title { font-size: 40px; }
}

@media screen and (max-width: 749px) {
  .ed-spot { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .ed-spot__title { font-size: 34px; margin-top: 18px; }
  .ed-spot__text { text-align: left; font-size: 15px; }
  .ed-spot__figures { flex-wrap: wrap; gap: 18px; }
  .ed-spot__figures-div { display: none; }
  .ed-spot__figure { min-width: 30%; }
  .ed-spot__cta { width: 100%; }
}


/* ---------- 8. Fit finder hover preview ---------------------------
   sections/entro-fit-finder.liquid — matted plate floated above the
   hovered model chip. Image is the linked collection's own.
   ---------------------------------------------------------------- */

.ed-fit__panel { position: relative; }

.ed-fit__peek {
  position: absolute;
  z-index: 4;
  width: 200px;
  padding: 6px;
  background: var(--ed-ground);
  border: 1px solid var(--ed-hair);
  border-radius: var(--ed-radius);
  box-shadow: 0 12px 28px rgba(16, 16, 20, 0.14);
  pointer-events: none;
}

.ed-fit__peek[hidden] { display: none; }

.ed-fit__peek img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--ed-mat);
}

@media (hover: none) {
  .ed-fit__peek { display: none; }
}


/* ---------- 12. Fit finder — split-screen imagery ----------------- */

.ed-fit--split { grid-template-columns: 190px minmax(0, 1fr) 280px; }

.ed-fit__stage {
  border-left: 1px solid var(--ed-hair);
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ed-fit__stage-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--ed-paper, #f7f6f4);
  border: 1px solid var(--ed-hair);
  overflow: hidden;
}

.ed-fit__stage-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.ed-fit__stage-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-n500);
}

.ed-fit__stage-name {
  display: block;
  font-family: var(--heading-font-family);
  font-size: 19px;
  line-height: 1.2;
  color: var(--ed-ink);
}

.ed-fit__stage-meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ed-n600);
  font-variant-numeric: tabular-nums;
}

@media screen and (max-width: 1024px) {
  .ed-fit--split { grid-template-columns: 180px minmax(0, 1fr); }
  .ed-fit__stage { display: none; }
}

/* ---------- 13. Sub-collections (category landing) ---------------- */

.ed-subhead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--ed-hair);
}

.ed-subhead__title {
  margin: 0;
  font-family: var(--heading-font-family);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ed-ink);
}

.ed-subhead__intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ed-n700);
  max-width: 46ch;
}

.ed-subs {
  display: grid;
  gap: 26px 22px;
}

.ed-subs--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ed-subs--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ed-subs--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ed-sub { display: block; color: inherit; }
.ed-sub:hover { text-decoration: none; color: inherit; }

.ed-sub:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 3px;
}

.ed-sub__frame {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--ed-hair);
  background: var(--ed-paper, #f7f6f4);
}

.ed-sub__frame .image-wrapper { height: 100%; padding-bottom: 0 !important; }

.ed-sub__frame img,
.ed-sub__frame svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ed-sub:hover .ed-sub__frame img { transform: scale(1.04); }

.ed-sub__body { display: block; padding-top: 14px; }

.ed-sub__title {
  display: block;
  font-family: var(--heading-font-family);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ed-ink);
}

.ed-sub__blurb {
  display: block;
  margin-top: 5px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ed-n600);
}

.ed-sub__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-n500);
  font-variant-numeric: tabular-nums;
}

.ed-sub__meta svg { transition: transform 0.25s ease; }
.ed-sub:hover .ed-sub__meta { color: var(--ed-red-deep); }
.ed-sub:hover .ed-sub__meta svg { transform: translateX(3px); }

@media screen and (max-width: 989px) {
  .ed-subs--3, .ed-subs--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ed-subhead { grid-template-columns: minmax(0, 1fr); gap: 16px; }
}

@media screen and (max-width: 600px) {
  .ed-subs { gap: 20px 14px; }
  .ed-sub__title { font-size: 17px; }
}

/* ---------- 14. Tempered glass picker ----------------------------- */

.ed-glass__device {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--ed-hair);
  margin-bottom: 24px;
}

.ed-glass__device label {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ed-n500);
}

.ed-glass__device select {
  flex: 1;
  max-width: 340px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--ed-hair);
  background: #fff;
  font-size: 14px;
  color: var(--ed-ink);
  border-radius: 0;
}

.ed-glass__device select:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 2px;
}

.ed-glass__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ed-glass__card {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  border: 1px solid var(--ed-hair);
  transition: border-color 0.25s ease;
}

.ed-glass__card:hover { border-color: var(--ed-n500); }

.ed-glass__frame {
  position: relative;
  background: var(--ed-paper, #f7f6f4);
  border-right: 1px solid var(--ed-hair);
  overflow: hidden;
}

.ed-glass__frame .image-wrapper { height: 100%; padding-bottom: 0 !important; }

.ed-glass__frame img,
.ed-glass__frame svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ed-glass__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  background: #fff;
  border: 1px solid var(--ed-hair);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-ink);
}

.ed-glass__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
}

.ed-glass__title {
  margin: 0;
  font-family: var(--heading-font-family);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ed-ink);
}

.ed-glass__blurb {
  margin: 7px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ed-n600);
}

.ed-glass__points {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.ed-glass__points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ed-n700);
}

.ed-glass__points svg { flex: none; margin-top: 2px; color: var(--ed-red); }

.ed-glass__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.ed-glass__price {
  font-size: 13px;
  color: var(--ed-n600);
  font-variant-numeric: tabular-nums;
}

.ed-glass__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid var(--ed-ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ed-glass__cta:hover {
  background: var(--ed-red-tint);
  border-color: var(--ed-red);
  color: var(--ed-red-deep);
  text-decoration: none;
}

.ed-glass__cta:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 2px;
}

.ed-glass__cta svg { flex: none; }

@media screen and (max-width: 989px) {
  .ed-glass__grid { grid-template-columns: minmax(0, 1fr); }
}

@media screen and (max-width: 600px) {
  .ed-glass__card { grid-template-columns: minmax(0, 1fr); }
  .ed-glass__frame { aspect-ratio: 16 / 10; border-right: 0; border-bottom: 1px solid var(--ed-hair); }
  .ed-glass__device { flex-direction: column; align-items: flex-start; }
  .ed-glass__device select { max-width: none; width: 100%; }
  .ed-glass__foot { flex-direction: column; align-items: stretch; }
  .ed-glass__cta { justify-content: center; }
}


/* ---------- 15. Bestsellers (mid-page merchandising) -------------- */

.ed-bs__row {
  display: grid;
  gap: 26px 22px;
}

.ed-bs__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ed-bs__row--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ed-bs__row--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.ed-bs__card { display: block; color: inherit; }
.ed-bs__card:hover { text-decoration: none; color: inherit; }

.ed-bs__card:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 3px;
}

.ed-bs__frame {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--ed-hair);
  background: var(--ed-paper, #f7f6f4);
}

.ed-bs__frame .image-wrapper { height: 100%; padding-bottom: 0 !important; }

.ed-bs__frame img,
.ed-bs__frame svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ed-bs__card:hover .ed-bs__frame img { transform: scale(1.04); }

.ed-bs__rank {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--ed-hair);
  font-family: var(--heading-font-family);
  font-size: 14px;
  color: var(--ed-ink);
  font-variant-numeric: tabular-nums;
}

.ed-bs__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 9px;
  background: var(--ed-red);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.ed-bs__body { display: block; padding-top: 13px; }

.ed-bs__vendor {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-n500);
  margin-bottom: 4px;
}

.ed-bs__title {
  display: block;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ed-ink);
}

.ed-bs__card:hover .ed-bs__title { color: var(--ed-red-deep); }

.ed-bs__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 6px;
  font-size: 14px;
  color: var(--ed-ink);
  font-variant-numeric: tabular-nums;
}

.ed-bs__price s { color: var(--ed-n500); font-size: 13px; }

@media screen and (max-width: 989px) {
  .ed-bs__row--4, .ed-bs__row--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media screen and (max-width: 749px) {
  .ed-bs__row { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 20px 14px; }
  .ed-bs__title { font-size: 13.5px; }
}


/* ---------- 16. Footer -------------------------------------------- */

.ed-footer {
  background: #ffffff;
  color: var(--ed-ink);
  font-size: 14px;
  line-height: 1.55;
  border-top: 1px solid var(--ed-hair);
}

.ed-footer__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--ed-hair);
}

.ed-footer__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 26px 26px 0;
}

.ed-footer__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: none;
  border: 1px solid var(--ed-hair);
  color: var(--ed-red);
}

.ed-footer__trust-title { font-weight: 600; letter-spacing: -0.005em; }
.ed-footer__trust-note { font-size: 13px; color: var(--ed-n600); }

.ed-footer__main {
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 56px;
  padding: 52px 0 46px;
}

.ed-footer__main > .ed-footer__lead,
.ed-footer__main > .ed-footer__col { position: relative; z-index: 1; }

/* Footer image — its own full-width band, edge to edge, independent of the
   newsletter. 50% is the band's own width, so calc(50% - 50vw) resolves to
   exactly minus one container gutter on each side. */
.ed-footer__band {
  grid-column: 1 / -1;
  order: -1;
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw;
  height: var(--ed-footer-band-h, 260px);
  overflow: hidden;
  margin-top: -52px;
  margin-bottom: 46px;
  background: var(--ed-paper, #f7f6f4);
}

.ed-footer__band--below {
  order: 2;
  margin-top: 46px;
  margin-bottom: -46px;
}

/* Behind the content instead of above it: the image fills the whole footer band
   and a scrim of the page ground keeps the existing dark text readable. */
.ed-footer__band--bg {
  order: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  height: auto;
  margin: 0;
  z-index: 0;
}

.ed-footer__band--bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ed-bg, #f7f8fa);
  opacity: var(--ed-footer-scrim, 0.82);
}

.ed-footer__band .image-wrapper { height: 100%; padding-bottom: 0 !important; }

.ed-footer__band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 989px) {
  .ed-footer__band {
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: -36px;
    margin-bottom: 30px;
  }
  .ed-footer__band--below {
    margin-top: 30px;
    margin-bottom: -30px;
  }
}





.ed-footer__news-title {
  margin: 0 0 10px;
  font-family: var(--heading-font-family);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ed-ink);
}

.ed-footer__news-note {
  margin: 0 0 20px;
  color: var(--ed-n600);
  max-width: 38ch;
}

.ed-footer__form { max-width: 400px; margin: 0; }

.ed-footer__field { display: flex; }

.ed-footer__field input {
  flex: 1;
  min-width: 0;
  height: 50px;
  padding: 0 15px;
  background: #ffffff;
  border: 1px solid var(--ed-n300, #d9d9de);
  border-right: 0;
  color: var(--ed-ink);
  font-size: 14px;
  border-radius: 0;
}

.ed-footer__field input:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: -2px;
}

.ed-footer__field button {
  height: 50px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid var(--ed-ink);
  color: var(--ed-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ed-footer__field button:hover {
  background: var(--ed-red);
  border-color: var(--ed-red);
  color: #ffffff;
}

.ed-footer__field button:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 2px;
}

.ed-footer__form-msg {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--ed-n500);
}

.ed-footer__form-msg.is-ok { color: var(--ed-ink); }
.ed-footer__form-msg.is-error { color: var(--ed-red-deep); }

.ed-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.ed-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ed-n300, #d9d9de);
  color: var(--ed-ink);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ed-footer__social a:hover {
  border-color: var(--ed-red);
  color: var(--ed-red);
  text-decoration: none;
}

.ed-footer__social a:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 2px;
}

.ed-footer__handle {
  font-size: 12.5px;
  color: var(--ed-n500);
  margin-left: 6px;
}

.ed-footer__col-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ed-n500);
  margin-bottom: 16px;
}

.ed-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ed-footer__col a { color: var(--ed-ink); }
.ed-footer__col a:hover { color: var(--ed-red); text-decoration: none; }

.ed-footer__col a:focus-visible {
  outline: 2px solid var(--ed-red);
  outline-offset: 2px;
}

.ed-footer__legal {
  border-top: 1px solid var(--ed-hair);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ed-footer__legal-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ed-footer__mark {
  font-family: var(--heading-font-family);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ed-ink);
}

.ed-footer__copy { font-size: 12.5px; color: var(--ed-n500); }

.ed-footer__legal-left a {
  font-size: 12.5px;
  color: var(--ed-n500);
}

.ed-footer__legal-left a:hover { color: var(--ed-red); text-decoration: none; }

.ed-footer__pay {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ed-footer__pay-icon {
  width: 44px;
  height: 28px;
  display: block;
}

@media screen and (max-width: 989px) {
  .ed-footer__trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ed-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
}

@media screen and (max-width: 749px) {
  .ed-footer__trust { grid-template-columns: minmax(0, 1fr); }
  .ed-footer__trust-item { padding: 18px 0; border-bottom: 1px solid var(--ed-hair); }
  .ed-footer__trust-item:last-child { border-bottom: 0; }
  .ed-footer__main { grid-template-columns: minmax(0, 1fr); gap: 34px; padding: 36px 0 30px; }
  .ed-footer__news-title { font-size: 26px; }
  .ed-footer__form { max-width: none; }
  .ed-footer__legal { flex-direction: column; align-items: flex-start; gap: 18px; }
}
