.journey-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 1180px;
  margin: clamp(1rem, 3vw, 2rem) auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid color-mix(in srgb, var(--line, #c5d3cb) 78%, #287856);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #f5f8f3 0%, #eef5ee 100%);
  box-shadow: 0 18px 45px rgba(23, 62, 49, .08);
  color: var(--ink, #173e31);
}

.journey-bridge-copy h2 {
  margin: .35rem 0 .6rem;
  max-width: 22ch;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.journey-bridge-copy > p:last-child {
  max-width: 62ch;
  margin: 0;
  line-height: 1.65;
}

.journey-bridge-eyebrow {
  margin: 0;
  color: #287856;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journey-bridge-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: .8rem;
}

.journey-bridge-actions .btn {
  min-height: 48px;
  justify-content: center;
  text-align: center;
}

.journey-help-link {
  color: #174b3a;
  font-weight: 700;
  text-align: center;
  text-underline-offset: 3px;
}

.journey-trust {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: .55rem 1.1rem;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line, #c5d3cb);
  list-style: none;
  color: #31584b;
  font-size: .88rem;
  font-weight: 650;
}

.journey-trust li::before {
  content: '✓';
  margin-right: .4rem;
  color: #287856;
  font-weight: 900;
}

.affiliate-disclosure {
  max-width: 58ch;
  margin: .55rem 0 0;
  color: var(--muted-ink, #52665f);
  font-size: .78rem;
  line-height: 1.45;
}

.use-cases {
  max-width: 1180px;
  margin: clamp(1.5rem, 4vw, 3.5rem) auto;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid var(--line, #c5d3cb);
  border-radius: 1.25rem;
  background: #fff;
  color: var(--ink, #173e31);
}

.use-cases-heading {
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.use-cases-heading h2 {
  margin: .35rem 0 .55rem;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.use-cases-heading > p:last-child,
.use-cases article p {
  color: var(--muted-ink, #52665f);
  line-height: 1.6;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.use-cases article {
  padding: 1.15rem;
  border: 1px solid color-mix(in srgb, var(--line, #c5d3cb) 78%, #287856);
  border-radius: .95rem;
  background: linear-gradient(145deg, #f8faf7 0%, #f1f6f2 100%);
}

.use-cases article h3 {
  margin: 0 0 .45rem;
  font-size: 1.02rem;
  line-height: 1.3;
}

.use-cases article p {
  margin: 0;
  font-size: .92rem;
}

.affiliate-action .btn:focus-visible,
.journey-bridge a:focus-visible {
  outline: 3px solid #287856;
  outline-offset: 4px;
}

@media (max-width: 850px) {
  .journey-bridge {
    grid-template-columns: 1fr;
    margin-inline: 1rem;
  }

  .journey-trust {
    grid-column: auto;
    flex-direction: column;
  }

  .use-cases {
    margin-inline: 1rem;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-bridge *,
  .affiliate-action * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Shared product-card affordances for the static export. */
.product-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-image-link:focus-visible,
.product-card h3 a:focus-visible {
  outline: 3px solid #287856;
  outline-offset: 4px;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Desktop hover menus keep the trigger and panel in one continuous target. */
@media (min-width: 961px) and (hover: hover) and (pointer: fine) {
  .site-chrome .nav-item {
    position: relative;
  }

  .site-chrome .nav-item > .dropdown[hidden] {
    display: none !important;
  }

  .site-chrome .nav-item > .dropdown:not([hidden]) {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    min-width: 250px;
    margin: 0;
    padding: .55rem;
    border: 1px solid var(--line, #c5d3cb);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(23, 62, 49, .16);
  }

  .site-chrome .nav-item:last-child > .dropdown:not([hidden]) {
    right: 0;
    left: auto;
  }

  .site-chrome .nav-item > .catalog-dropdown:not([hidden]) {
    grid-template-columns: repeat(2, minmax(11rem, 1fr));
    min-width: 28rem;
  }

  .site-chrome .nav-item > .dropdown:not([hidden]) a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: .55rem .7rem;
    border-radius: 7px;
    white-space: normal;
    line-height: 1.35;
  }

  .site-chrome .nav-item > .dropdown:not([hidden]) a:hover,
  .site-chrome .nav-item > .dropdown:not([hidden]) a:focus-visible {
    background: #edf4ef;
  }
}

/* International-buying page: make the destination and the next action clear above the fold. */
.international-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 1160px;
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 4rem);
}

.international-hero-copy h1 {
  max-width: 14ch;
  margin: .35rem 0 .9rem;
  text-wrap: balance;
}

.international-hero-copy > p:not(.kicker) {
  max-width: 58ch;
}

.international-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
}

.international-hero-actions .btn {
  min-height: 48px;
}

.international-hero-note {
  margin: .75rem 0 0;
  color: var(--muted, #52665f);
  font-size: .82rem;
}

.international-hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line, #c5d3cb);
  border-radius: 18px;
  background: linear-gradient(145deg, #f4f8f2 0%, #e8f0e8 100%);
}

.international-hero-media::after {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  left: 1.25rem;
  height: 1px;
  background: rgba(23, 62, 49, .15);
  content: '';
}

.international-hero-media-link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.international-hero-media img {
  display: block;
  width: min(100%, 420px);
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(23, 62, 49, .18));
}

.international-hero-media figcaption,
.international-hero-media-label {
  position: absolute;
  right: 1.25rem;
  bottom: 1.2rem;
  left: 1.25rem;
  z-index: 1;
  color: #31584b;
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
}

.international-account-access {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line, #c5d3cb);
  border-radius: 10px;
  background: #f4f8f2;
}

.international-account-access p {
  margin: .25rem 0 0;
}

.international-account-access .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.international-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

@media (max-width: 760px) {
  .international-hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 1rem;
  }

  .international-hero-copy h1 {
    max-width: 18ch;
  }

  .international-hero-media {
    min-height: 260px;
  }

  .international-hero-media img {
    max-height: 250px;
  }

  .international-account-access {
    align-items: stretch;
    flex-direction: column;
  }

  .international-account-access .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card h3 a,
  .product-image-link {
    transition: none !important;
  }
}
