:root {
  --ink: #091735;
  --ink-soft: #44516c;
  --blue: #0759e6;
  --blue-deep: #063ca8;
  --blue-night: #061d57;
  --sky: #edf5ff;
  --line: #dbe5f2;
  --white: #ffffff;
  --yellow: #ffc928;
  --red: #e52935;
  --surface: #f7f9fc;
  --display: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --utility: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 20px 50px rgba(9, 33, 82, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.announcement {
  color: var(--white);
  background: linear-gradient(90deg, #063599, #0873e6 55%, #063599);
  font-size: 0.82rem;
  font-weight: 650;
}

.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement p {
  margin: 0;
}

.announcement__star {
  color: var(--yellow);
}

.announcement a {
  margin-left: 8px;
  padding: 4px 12px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.22em;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand::before {
  content: '';
  flex-shrink: 0;
  width: 0.9em;
  height: 0.9em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 20'%3E%3Cpath d='M11 1L1 9.5h2.5V19h5.5v-5.5h4V19H18.5V9.5H21L11 1z' fill='%23e52935'/%3E%3Crect x='8' y='4' width='6' height='4' rx='1' fill='%23e52935' opacity='0'/%3E%3C/svg%3E") no-repeat center / contain;
}

.brand span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand strong {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 0.92rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 32px 0 27px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--blue);
  border-radius: 3px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--blue);
  border: 1px solid #a9c7fb;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 570px;
  margin-top: 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 38, 111, 0.98) 0%, rgba(3, 76, 174, 0.92) 31%, rgba(4, 68, 150, 0.32) 59%, rgba(4, 30, 76, 0.04) 100%),
    linear-gradient(0deg, rgba(4, 31, 75, 0.18), transparent 55%);
}

.hero::after {
  position: absolute;
  z-index: 2;
  top: -50px;
  left: 48%;
  width: 1px;
  height: 680px;
  content: "";
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(13deg);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(620px, 62%);
  padding: 84px 0 76px 58px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

.eyebrow--blue {
  color: var(--blue);
}

.eyebrow--blue span {
  background: var(--blue);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  max-width: 650px;
  font-size: clamp(3.8rem, 6.6vw, 5.9rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.047em;
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 650;
  letter-spacing: -0.038em;
}

.hero__intro {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 27px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 25px rgba(0, 0, 0, 0.18);
}

.button--light {
  color: var(--blue-deep);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  font-size: 1.15em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.text-link--light {
  color: var(--white);
}

.hero__note {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 27px;
  min-width: 164px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  color: var(--white);
  background: rgba(4, 24, 63, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  backdrop-filter: blur(14px);
}

.hero__note strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
}

.hero__note span {
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-route {
  position: relative;
  padding: 112px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 15%, rgba(7, 89, 230, 0.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  max-width: 760px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.042em;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 3px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.route-line {
  position: relative;
  height: 2px;
  margin: 0 24px 34px;
  background: linear-gradient(90deg, transparent, #a9c8f8 12%, #a9c8f8 88%, transparent);
}

.route-line::after {
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  content: "";
  background: var(--yellow);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--blue);
}

.category-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  --category: var(--blue);
  position: relative;
  min-height: 280px;
  padding: 24px 22px 22px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--category);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(8, 29, 72, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(24, 54, 102, 0.06);
  isolation: isolate;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.category-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 20, 52, 0.1) 0%, rgba(4, 20, 52, 0.3) 42%, rgba(4, 20, 52, 0.92) 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--category) 48%, transparent), transparent 68%);
  transition: background 220ms ease;
}

.category-card:hover {
  border-color: var(--category);
  box-shadow: 0 24px 45px color-mix(in srgb, var(--category) 22%, transparent);
  transform: translateY(-8px);
}

.category-card:hover::before {
  background:
    linear-gradient(180deg, rgba(4, 20, 52, 0.05) 0%, rgba(4, 20, 52, 0.24) 38%, rgba(4, 20, 52, 0.95) 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--category) 58%, transparent), transparent 72%);
}

.category-card--blue {
  background-image: url("../images/categories/shopping-grocery.png");
}

.category-card--green {
  background-image: url("../images/categories/hotels-travel.png");
}

.category-card--violet {
  background-image: url("../images/categories/fashion-apparel.png");
}

.category-card--orange {
  background-image: url("../images/categories/food-delivery.png");
}

.category-card--teal {
  background-image: url("../images/categories/home-furniture.png");
}

.category-card--cyan {
  background-image: url("../images/categories/electronics-mobile.png");
}

.category-card--leaf {
  background-image: url("../images/categories/health-pharmacy.png");
}

.category-card--navy {
  background-image: url("../images/categories/banking-payments.png");
}

.category-card--amber {
  background-image: url("../images/categories/pets-supplies.png");
}

.category-card--green { --category: #159b55; }
.category-card--violet { --category: #8852dd; }
.category-card--orange { --category: #ee7519; }
.category-card--teal { --category: #10999f; }
.category-card--cyan { --category: #087bd8; }
.category-card--leaf { --category: #2ca65a; }
.category-card--navy { --category: #173f94; }
.category-card--amber { --category: #b36a00; }

.category-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(3, 22, 58, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: color 220ms ease, background 220ms ease;
}

.category-card:hover .category-card__icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.category-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card__index {
  position: absolute;
  top: 27px;
  right: 21px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--utility);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.category-card strong {
  margin-top: 56px;
  display: block;
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.category-card small {
  margin-top: 12px;
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  transition: color 220ms ease;
}

.category-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 17px;
  font-size: 1.2rem;
  color: var(--white);
}

.popular-brands {
  padding: 105px 0 120px;
}

.brand-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(190px, auto));
  gap: 16px;
}

.brand-feature {
  position: relative;
  min-height: 396px;
  grid-column: span 5;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(5, 34, 91, 0.04), rgba(4, 25, 66, 0.94)),
    url("../images/shared/featured-shopping-v2.png") center 58% / cover;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(9, 33, 82, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand-feature::after {
  position: absolute;
  right: -42px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.06);
}

.brand-feature:hover {
  box-shadow: 0 30px 60px rgba(9, 33, 82, 0.23);
  transform: translateY(-5px);
}

.brand-feature__top,
.brand-tile__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-chip,
.brand-tile__category {
  width: max-content;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-family: var(--utility);
  font-size: 0.61rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.brand-chip {
  color: var(--ink);
  background: var(--yellow);
}

.brand-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.brand-feature:hover .brand-arrow,
.brand-tile:hover .brand-arrow {
  color: var(--ink);
  background: var(--white);
  transform: rotate(8deg);
}

.brand-feature__content {
  position: relative;
  z-index: 2;
  max-width: 360px;
}

.brand-feature__mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  padding: 19px;
  background: var(--white);
  border-radius: 21px;
  box-shadow: 0 16px 35px rgba(4, 24, 63, 0.25);
}

.brand-feature__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-feature__content p {
  max-width: 330px;
  margin: 22px 0 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  line-height: 1.6;
}

.brand-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-feature__link span {
  font-size: 1.15em;
}

.brand-tile {
  --brand-accent: var(--blue);
  --brand-tint: #edf5ff;
  position: relative;
  min-height: 190px;
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: space-between;
  gap: 20px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 105% 110%, color-mix(in srgb, var(--brand-accent) 18%, transparent) 0 34%, transparent 35%),
    linear-gradient(135deg, var(--white), var(--brand-tint));
  border: 1px solid color-mix(in srgb, var(--brand-accent) 18%, var(--line));
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(24, 54, 102, 0.07);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.brand-tile:nth-of-type(2) {
  grid-column: span 4;
}

.brand-tile:nth-of-type(3) {
  grid-column: span 3;
}

.brand-tile:nth-of-type(4) {
  grid-column: span 3;
}

.brand-tile:nth-of-type(5),
.brand-tile:nth-of-type(6) {
  grid-column: span 2;
}

.brand-tile::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  content: "";
  background: var(--brand-accent);
  border-radius: 0 0 4px 4px;
}

.brand-tile:hover {
  border-color: color-mix(in srgb, var(--brand-accent) 48%, var(--line));
  box-shadow: 0 22px 42px color-mix(in srgb, var(--brand-accent) 15%, transparent);
  transform: translateY(-5px);
}

.brand-tile--expedia {
  --brand-accent: #0a3d91;
  --brand-tint: #f0f6ff;
}

.brand-tile--nike {
  --brand-accent: #171717;
  --brand-tint: #f4f4f4;
}

.brand-tile--doordash {
  --brand-accent: #eb1700;
  --brand-tint: #fff2ef;
}

.brand-tile--ikea {
  --brand-accent: #0058a3;
  --brand-tint: #fff9d9;
}

.brand-tile--apple {
  --brand-accent: #555;
  --brand-tint: #f2f4f7;
}

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

.brand-tile__category {
  color: var(--brand-accent);
  background: color-mix(in srgb, var(--brand-accent) 9%, white);
}

.brand-tile .brand-arrow {
  color: var(--brand-accent);
  border-color: color-mix(in srgb, var(--brand-accent) 32%, transparent);
}

.brand-tile__mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  align-self: end;
  padding: 10px;
  background: var(--white);
  border: 1px solid color-mix(in srgb, var(--brand-accent) 15%, var(--line));
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(9, 33, 82, 0.08);
}

.brand-tile__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-tile__mark--wide {
  padding: 7px;
}

.brand-tile__copy {
  align-self: end;
  min-width: 0;
}

.brand-tile__copy h3,
.brand-tile__copy p {
  margin: 0;
}

.brand-tile__copy h3 {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.brand-tile__copy p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.45;
}

.about-strip {
  color: var(--white);
  background: var(--blue-night);
}

.about-strip__inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  align-items: center;
  gap: 100px;
}

.about-strip__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.3vw, 5rem);
  font-weight: 750;
  line-height: 0.96;
  letter-spacing: -0.046em;
}

.trust-points {
  display: grid;
  gap: 26px;
}

.trust-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.trust-points article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trust-points__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.2rem;
}

.trust-points h3,
.trust-points p {
  margin: 0;
}

.trust-points h3 {
  font-size: 1rem;
}

.trust-points p {
  max-width: 500px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.site-footer {
  padding: 54px 0 24px;
  color: var(--ink-soft);
  background: var(--surface);
}

.footer__top {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 45px;
}

.brand--footer {
  font-size: 1.7rem;
}

.footer__top > p {
  max-width: 370px;
  margin: 0;
  font-size: 0.84rem;
}

.footer__top nav {
  justify-self: end;
  display: flex;
  gap: 26px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 750;
}

.footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 55px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.67rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom p:last-child {
  justify-self: end;
  max-width: 680px;
  text-align: right;
}

.category-page {
  background: #fbfcff;
}

.shopping-page main {
  background:
    radial-gradient(circle at 8% 31%, rgba(255, 201, 40, 0.13), transparent 310px),
    radial-gradient(circle at 92% 57%, rgba(7, 89, 230, 0.11), transparent 390px),
    linear-gradient(180deg, #fbfcff 0%, #f1f6fe 31%, #edf4fd 72%, #fbfcff 100%);
}

.travel-page main {
  background:
    radial-gradient(circle at 8% 31%, rgba(52, 184, 150, 0.13), transparent 330px),
    radial-gradient(circle at 92% 57%, rgba(7, 89, 230, 0.1), transparent 390px),
    linear-gradient(180deg, #fbfcff 0%, #eff9f8 34%, #edf5fc 72%, #fbfcff 100%);
}

.fashion-page main {
  background:
    radial-gradient(circle at 8% 31%, rgba(124, 69, 231, 0.12), transparent 330px),
    radial-gradient(circle at 94% 58%, rgba(229, 41, 53, 0.07), transparent 400px),
    linear-gradient(180deg, #fbfcff 0%, #f6f1fd 34%, #f1f5fc 72%, #fbfcff 100%);
}

.food-page main {
  background:
    radial-gradient(circle at 7% 31%, rgba(240, 123, 34, 0.14), transparent 330px),
    radial-gradient(circle at 93% 57%, rgba(255, 201, 40, 0.12), transparent 400px),
    linear-gradient(180deg, #fffdfb 0%, #fff5ec 34%, #f4f6fc 72%, #fbfcff 100%);
}

.travel-page .category-switcher a.is-current,
.travel-page .category-switcher a:hover {
  color: #159576;
}

.travel-page .category-switcher a.is-current::after {
  background: #159576;
}

.fashion-page .category-switcher a.is-current,
.fashion-page .category-switcher a:hover {
  color: #7041c9;
}

.fashion-page .category-switcher a.is-current::after {
  background: #7041c9;
}

.food-page .category-switcher a.is-current,
.food-page .category-switcher a:hover {
  color: #e96d1b;
}

.food-page .category-switcher a.is-current::after {
  background: #e96d1b;
}

.category-switcher {
  position: relative;
  z-index: 10;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-bottom: 1px solid #dfe8f4;
  box-shadow: 0 8px 24px rgba(17, 51, 101, 0.045);
}

.category-switcher__track {
  min-height: 134px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: stretch;
  gap: 4px;
}

.category-switcher a {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 6px 17px;
  color: var(--ink-soft);
  text-align: center;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.category-switcher a::after {
  position: absolute;
  right: 24%;
  bottom: 0;
  left: 24%;
  height: 3px;
  content: "";
  background: var(--blue);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.category-switcher a:hover,
.category-switcher a.is-current {
  color: var(--blue);
  background: linear-gradient(180deg, rgba(7, 89, 230, 0), rgba(7, 89, 230, 0.055));
}

.category-switcher a.is-current::after {
  transform: scaleX(1);
}

.category-switcher__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: var(--white);
  border: 1px solid #dbe7f5;
  border-radius: 50%;
  box-shadow:
    0 8px 18px rgba(18, 55, 109, 0.08),
    inset 0 0 0 5px #f8fbff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-switcher__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-switcher a:hover .category-switcher__icon,
.category-switcher a.is-current .category-switcher__icon {
  border-color: color-mix(in srgb, var(--blue) 32%, #dbe7f5);
  box-shadow:
    0 11px 24px rgba(7, 89, 230, 0.14),
    inset 0 0 0 5px #f5f9ff;
  transform: translateY(-3px);
}

.category-switcher__label {
  font-family: var(--display);
  font-size: 0.67rem;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

.category-breadcrumb {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 650;
}

.category-breadcrumb a:hover {
  color: var(--blue);
}

.category-breadcrumb span:last-child {
  color: var(--blue);
}

.category-hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.category-hero__image,
.category-hero__shade {
  position: absolute;
  inset: 0;
}

.travel-page .category-hero__shade {
  background:
    linear-gradient(90deg, rgba(3, 63, 83, 0.98), rgba(8, 114, 126, 0.88) 39%, rgba(7, 78, 112, 0.22) 72%, transparent),
    linear-gradient(0deg, rgba(3, 38, 58, 0.25), transparent 55%);
}

.fashion-page .category-hero__shade {
  background:
    linear-gradient(90deg, rgba(44, 20, 92, 0.98), rgba(102, 52, 173, 0.89) 39%, rgba(81, 43, 128, 0.22) 72%, transparent),
    linear-gradient(0deg, rgba(35, 17, 66, 0.25), transparent 55%);
}

.food-page .category-hero__shade {
  background:
    linear-gradient(90deg, rgba(116, 39, 6, 0.98), rgba(211, 83, 20, 0.9) 39%, rgba(137, 51, 12, 0.22) 72%, transparent),
    linear-gradient(0deg, rgba(69, 24, 5, 0.26), transparent 55%);
}

.category-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.category-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 34, 103, 0.98) 0%, rgba(4, 72, 173, 0.9) 38%, rgba(4, 54, 128, 0.24) 72%, rgba(4, 25, 64, 0.05) 100%),
    linear-gradient(0deg, rgba(3, 29, 72, 0.24), transparent 55%);
}

.category-hero__content {
  position: relative;
  z-index: 2;
  width: min(610px, 60%);
  padding: 72px 0 66px 58px;
}

.category-hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.047em;
}

.category-hero__content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.03rem;
  line-height: 1.65;
}

.category-hero__stamp {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(4, 27, 70, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  backdrop-filter: blur(12px);
}

.category-hero__stamp svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shopping-path {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 75px;
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 58px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(204, 219, 239, 0.82);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(23, 55, 103, 0.08);
  backdrop-filter: blur(12px);
}

.category-path {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 75px;
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 58px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(204, 219, 239, 0.82);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(23, 55, 103, 0.08);
  backdrop-filter: blur(12px);
}

.category-path::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--category-accent, var(--blue)) 0 72%, var(--yellow) 72%);
}

.travel-page { --category-accent: #159576; }
.fashion-page { --category-accent: #7041c9; }
.food-page { --category-accent: #e96d1b; }

.category-path__intro h2 {
  max-width: 440px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.042em;
}

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

.category-path__items article {
  position: relative;
  min-height: 220px;
  padding: 26px 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(24, 54, 102, 0.06);
}

.category-path__items article::after {
  position: absolute;
  right: -40px;
  bottom: -65px;
  width: 140px;
  height: 140px;
  content: "";
  background: color-mix(in srgb, var(--category-accent) 8%, white);
  border-radius: 50%;
}

.category-path__number {
  position: relative;
  z-index: 1;
  min-width: 52px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--category-accent);
  background: color-mix(in srgb, var(--category-accent) 8%, white);
  border: 1px solid color-mix(in srgb, var(--category-accent) 22%, white);
  border-radius: 12px;
  font-family: var(--utility);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
}

.category-path__items h3 {
  margin: 40px 0 8px;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.15;
}

.category-path__items p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.shopping-path::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--blue) 0 62%, var(--yellow) 62% 82%, var(--red) 82%);
}

.shopping-path__intro h2 {
  max-width: 440px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.042em;
}

.shopping-path__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.shopping-path__items article {
  position: relative;
  min-height: 220px;
  padding: 26px 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(24, 54, 102, 0.06);
}

.shopping-path__items article::after {
  position: absolute;
  right: -40px;
  bottom: -65px;
  width: 140px;
  height: 140px;
  content: "";
  background: var(--sky);
  border-radius: 50%;
}

.shopping-path__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 40px;
  padding: 0 10px;
  color: var(--blue);
  background: #edf5ff;
  border: 1px solid #cfe1f7;
  border-radius: 12px;
  font-family: var(--utility);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.shopping-path__items h3 {
  margin: 40px 0 8px;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.15;
}

.shopping-path__items p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.shopping-brands {
  padding: 0 0 52px;
  background: transparent;
  border-top: 0;
}

.category-brands {
  padding: 0 0 52px;
}

.category-brands > .site-shell {
  position: relative;
  padding: 66px 54px 58px;
  overflow: hidden;
  background:
    linear-gradient(color-mix(in srgb, var(--category-accent) 4%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--category-accent) 4%, transparent) 1px, transparent 1px),
    rgba(255, 255, 255, 0.84);
  background-size: 32px 32px;
  border: 1px solid rgba(204, 219, 239, 0.9);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(18, 48, 96, 0.09);
  backdrop-filter: blur(14px);
}

.category-brands > .site-shell::before {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 360px;
  height: 360px;
  content: "";
  background: radial-gradient(circle, color-mix(in srgb, var(--category-accent) 12%, transparent), transparent 68%);
  pointer-events: none;
}

.category-brands .section-heading,
.category-brands .directory-grid {
  position: relative;
  z-index: 1;
}

.shopping-brands > .site-shell {
  position: relative;
  padding: 66px 54px 58px;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 89, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 89, 230, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.82);
  background-size: 32px 32px;
  border: 1px solid rgba(204, 219, 239, 0.9);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(18, 48, 96, 0.09);
  backdrop-filter: blur(14px);
}

.shopping-brands > .site-shell::before {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 360px;
  height: 360px;
  content: "";
  background: radial-gradient(circle, rgba(7, 89, 230, 0.1), transparent 68%);
  pointer-events: none;
}

.shopping-brands .section-heading,
.shopping-brands .directory-grid {
  position: relative;
  z-index: 1;
}

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

.directory-card {
  --directory-accent: var(--blue);
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 105% 103%, color-mix(in srgb, var(--directory-accent) 12%, transparent) 0 29%, transparent 30%),
    var(--white);
  border: 1px solid color-mix(in srgb, var(--directory-accent) 16%, var(--line));
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(18, 48, 96, 0.07);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.directory-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 4px;
  content: "";
  background: var(--directory-accent);
  border-radius: 0 0 4px 4px;
}

.directory-card:hover {
  border-color: color-mix(in srgb, var(--directory-accent) 45%, var(--line));
  box-shadow: 0 24px 42px color-mix(in srgb, var(--directory-accent) 14%, transparent);
  transform: translateY(-7px);
}

.directory-card--walmart { --directory-accent: #0874d1; }
.directory-card--target { --directory-accent: #cc0000; }
.directory-card--costco { --directory-accent: #005daa; }
.directory-card--kroger { --directory-accent: #0b57a4; }
.directory-card--whole-foods { --directory-accent: #006747; }
.directory-card--trader-joes { --directory-accent: #bd1e2d; }
.directory-card--aldi { --directory-accent: #003b7a; }
.directory-card--sams { --directory-accent: #0067a0; }

.directory-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--directory-accent);
  font-family: var(--utility);
  font-size: 0.59rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.directory-card__arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--directory-accent) 34%, transparent);
  border-radius: 50%;
  font-size: 0.86rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.directory-card:hover .directory-card__arrow {
  color: var(--white);
  background: var(--directory-accent);
  transform: rotate(8deg);
}

.directory-card__logo,
.directory-card__wordmark {
  height: 60px;
  margin-top: 34px;
  display: flex;
  align-items: center;
  color: var(--directory-accent);
}

.directory-card__logo img {
  height: 100%;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

.directory-card__wordmark {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.directory-card__wordmark small {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.directory-card__wordmark--sans {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.directory-card__wordmark--serif {
  font-size: 1.2rem;
}

/* Branded color marks — self-contained colored shapes, background IS the brand identity */
.directory-card__wordmark--navy {
  height: 60px;
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  background: #123d74;
  justify-content: center;
  text-align: center;
}

.directory-card__wordmark--uniqlo {
  width: 70px;
  height: 70px;
  padding: 8px;
  border-radius: 10px;
  color: white;
  background: #e60012;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  justify-content: center;
}

.directory-card__wordmark--dominos {
  width: 120px;
  height: 56px;
  padding: 8px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, #006491 0 52%, #e31837 52%);
  justify-content: center;
}

.directory-card__wordmark--round {
  width: 68px;
  height: 68px;
  padding: 8px;
  color: white;
  background: #00754a;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.06em;
  justify-content: center;
  text-align: center;
}

.directory-card__wordmark--arches {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  color: #ffbc0d;
  background: #da291c;
  font-family: Arial, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  justify-content: center;
}

.directory-card__wordmark--aldi {
  width: 68px;
  height: 68px;
  padding: 8px;
  border-radius: 10px;
  color: #fff;
  background: #003b7a;
  border: 6px solid #f0a800;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  justify-content: center;
}

.directory-card__body {
  margin-top: auto;
  padding-top: 32px;
}

.directory-card__body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.directory-card__body p {
  min-height: 72px;
  margin: 8px 0 18px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.directory-card__body ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.directory-card__body li {
  padding: 6px 9px;
  color: var(--directory-accent);
  background: color-mix(in srgb, var(--directory-accent) 7%, white);
  border-radius: 999px;
  font-size: 0.59rem;
  font-weight: 750;
}

.category-next {
  min-height: 310px;
  margin-top: 90px;
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
  padding: 48px 58px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(4, 37, 108, 0.98), rgba(7, 89, 230, 0.84)),
    url("../images/categories/hotels-travel.png") center / cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.travel-page .category-next {
  background:
    linear-gradient(115deg, rgba(3, 62, 82, 0.98), rgba(21, 149, 118, 0.82)),
    url("../images/categories/fashion-apparel.png") center / cover;
}

.fashion-page .category-next {
  background:
    linear-gradient(115deg, rgba(50, 21, 100, 0.98), rgba(112, 65, 201, 0.84)),
    url("../images/categories/food-delivery.png") center / cover;
}

.food-page .category-next {
  background:
    linear-gradient(115deg, rgba(105, 36, 6, 0.98), rgba(226, 93, 21, 0.84)),
    url("../images/categories/home-furniture.png") center / cover;
}

.category-next h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.6vw, 4.4rem);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.category-next > a {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 20px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, transform 180ms ease;
}

.category-next > a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.category-next > a span:first-child {
  font-family: var(--utility);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.category-next > a strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.category-next > a span:last-child {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: 1.7rem;
}

@media (max-width: 960px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 540px;
  }

  .hero__content {
    width: 68%;
    padding-left: 42px;
  }

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

  .route-line {
    display: none;
  }

  .brand-board {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .brand-feature {
    min-height: 420px;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .brand-board .brand-tile {
    min-height: 200px;
    grid-column: span 1;
  }

  .about-strip__inner {
    gap: 60px;
  }

  .category-switcher__track {
    overflow-x: auto;
    justify-content: flex-start;
    grid-template-columns: repeat(8, 142px);
    scrollbar-width: none;
  }

  .category-switcher a {
    min-width: 142px;
  }

  .category-hero__content {
    width: 68%;
    padding-left: 42px;
  }

  .shopping-path,
  .category-path {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 54px 44px;
  }

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

  .category-next {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .banking-guide {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 54px 44px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(1180px, calc(100% - 28px));
  }

  .announcement__inner {
    min-height: 42px;
    gap: 7px;
    text-align: center;
  }

  .announcement p {
    font-size: 0.7rem;
  }

  .announcement a {
    display: none;
  }

  .header__inner {
    min-height: 72px;
  }

  .menu-toggle {
    justify-self: end;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before,
  .menu-toggle__lines::after {
    width: 19px;
    height: 2px;
    display: block;
    content: "";
    background: currentColor;
    border-radius: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle__lines {
    position: relative;
  }

  .menu-toggle__lines::before {
    position: absolute;
    top: -6px;
  }

  .menu-toggle__lines::after {
    position: absolute;
    top: 6px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 30;
    top: 114px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 28px 20px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.8rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 660px;
    margin-top: 14px;
    border-radius: 22px;
  }

  .hero__media img {
    object-position: 66% center;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(3, 44, 126, 0.92) 0%, rgba(3, 58, 143, 0.84) 52%, rgba(3, 40, 99, 0.38) 100%);
  }

  .hero::after {
    display: none;
  }

  .hero__content {
    width: 100%;
    padding: 52px 25px 0;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(3.2rem, 14vw, 4.4rem);
    line-height: 0.98;
  }

  .hero__intro {
    font-size: 0.98rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero__note {
    right: 16px;
    bottom: 16px;
  }

  .category-route,
  .popular-brands {
    padding: 82px 0;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 2.65rem;
    line-height: 1.05;
  }

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

  .category-card {
    min-height: 214px;
  }

  .brand-board {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand-feature {
    min-height: 430px;
    padding: 22px;
  }

  .brand-feature__content p {
    max-width: 290px;
  }

  .brand-board .brand-tile {
    min-height: 185px;
    grid-column: 1;
  }

  .about-strip__inner {
    padding: 76px 0;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .category-switcher__track {
    scrollbar-width: none;
  }

  .category-switcher__track::-webkit-scrollbar {
    display: none;
  }

  .category-breadcrumb {
    min-height: 54px;
    overflow: hidden;
    white-space: nowrap;
  }

  .category-hero {
    min-height: 610px;
    border-radius: 22px;
  }

  .category-hero__image img {
    object-position: 58% center;
  }

  .category-hero__shade {
    background: linear-gradient(180deg, rgba(3, 43, 124, 0.95), rgba(3, 53, 135, 0.76) 58%, rgba(3, 30, 77, 0.48));
  }

  .category-hero__content {
    width: 100%;
    padding: 48px 24px 0;
  }

  .category-hero h1 {
    font-size: clamp(3rem, 13vw, 4.15rem);
    line-height: 1;
  }

  .category-hero__content > p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .category-hero__stamp {
    right: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
  }

  .shopping-path,
  .category-path {
    margin-top: 42px;
    margin-bottom: 42px;
    padding: 48px 24px;
    border-radius: 22px;
  }

  .shopping-path__items,
  .category-path__items {
    grid-template-columns: 1fr;
  }

  .shopping-path__items article,
  .category-path__items article {
    min-height: 190px;
  }

  .shopping-path__items h3,
  .category-path__items h3 {
    margin-top: 40px;
  }

  .shopping-brands,
  .category-brands {
    padding: 0 0 24px;
  }

  .shopping-brands > .site-shell,
  .category-brands > .site-shell {
    padding: 48px 20px 22px;
    border-radius: 24px;
  }

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

  .directory-card {
    min-height: 370px;
  }

  .category-next {
    min-height: 440px;
    margin: 60px auto;
    padding: 40px 24px;
  }

  .category-next h2 {
    font-size: 3rem;
  }

  .about-strip__copy h2 {
    font-size: 3.75rem;
  }

  .footer__top,
  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer__top nav {
    justify-self: start;
    flex-wrap: wrap;
  }

  .footer__bottom p:last-child {
    justify-self: start;
    text-align: left;
  }

  .banking-guide {
    margin-top: 42px;
    margin-bottom: 42px;
    padding: 48px 24px;
    border-radius: 22px;
  }

  .banking-guide__items {
    grid-template-columns: 1fr;
  }

  .banking-guide__items article {
    min-height: 190px;
  }

  .banking-brands {
    padding: 0 0 24px;
  }

  .banking-brands > .site-shell {
    padding: 48px 20px 22px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Banking & Payments category page */

.banking-page main {
  background:
    radial-gradient(circle at 7% 28%, rgba(23, 63, 148, 0.12), transparent 320px),
    radial-gradient(circle at 94% 62%, rgba(109, 30, 212, 0.07), transparent 380px),
    linear-gradient(180deg, #fbfcff 0%, #f0f4fb 35%, #eaeff9 72%, #fbfcff 100%);
}

.banking-guide {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 75px;
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 64px 58px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(204, 219, 239, 0.82);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(23, 55, 103, 0.08);
  backdrop-filter: blur(12px);
}

.banking-guide::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #173f94, #117aca 50%, #6d1ed4);
}

.banking-guide__intro h2 {
  max-width: 440px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.042em;
}

.banking-guide__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.banking-guide__items article {
  position: relative;
  min-height: 220px;
  padding: 26px 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(24, 54, 102, 0.06);
}

.banking-guide__items article::after {
  position: absolute;
  right: -40px;
  bottom: -65px;
  width: 140px;
  height: 140px;
  content: "";
  background: linear-gradient(135deg, #edf5ff, transparent);
  border-radius: 50%;
}

.banking-guide__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf5ff;
  border: 1px solid #cfe1f7;
  border-radius: 50%;
}

.banking-guide__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.banking-guide__items h3 {
  margin: 28px 0 8px;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.15;
}

.banking-guide__items p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.banking-brands {
  padding: 0 0 52px;
}

.banking-brands > .site-shell {
  position: relative;
  padding: 66px 54px 58px;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 63, 148, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 63, 148, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.82);
  background-size: 32px 32px;
  border: 1px solid rgba(204, 219, 239, 0.9);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(18, 48, 96, 0.09);
  backdrop-filter: blur(14px);
}

.banking-brands > .site-shell::before {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 360px;
  height: 360px;
  content: "";
  background: radial-gradient(circle, rgba(23, 63, 148, 0.08), transparent 68%);
  pointer-events: none;
}

.banking-brands .section-heading,
.banking-brands .directory-grid,
.banking-brands .banking-disclaimer {
  position: relative;
  z-index: 1;
}

.directory-card--chase { --directory-accent: #117aca; }
.directory-card--boa { --directory-accent: #e31837; }
.directory-card--wells-fargo { --directory-accent: #d71e28; }
.directory-card--capital-one { --directory-accent: #004977; }
.directory-card--citi { --directory-accent: #003b70; }
.directory-card--paypal { --directory-accent: #003087; }
.directory-card--venmo { --directory-accent: #3d95ce; }
.directory-card--zelle { --directory-accent: #6d1ed4; }



.banking-disclaimer {
  margin: 36px 0 0;
  padding: 18px 22px;
  color: var(--ink-soft);
  background: #f5f8fd;
  border: 1px solid #dbe7f5;
  border-radius: 12px;
  font-size: 0.74rem;
  line-height: 1.6;
}

.banking-next {
  background:
    linear-gradient(115deg, rgba(4, 37, 108, 0.98), rgba(23, 63, 148, 0.88)),
    url("../images/categories/shopping-grocery.png") center / cover;
}

/* Brand detail pages */

.brand-detail-page main {
  padding-bottom: 90px;
  background:
    radial-gradient(circle at 5% 24%, rgba(255, 201, 40, 0.14), transparent 330px),
    radial-gradient(circle at 96% 56%, rgba(7, 89, 230, 0.1), transparent 430px),
    linear-gradient(180deg, #fbfcff, #eff5fd 44%, #f8fbff 100%);
}

.brand-hero {
  position: relative;
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(125deg, #075cc4 0%, #0878d9 54%, #0b91e5 100%);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(2, 61, 142, 0.22);
  isolation: isolate;
}

.brand-hero::before,
.brand-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.brand-hero::before {
  top: -210px;
  right: -140px;
  width: 600px;
  height: 600px;
}

.brand-hero::after {
  right: 20%;
  bottom: -310px;
  width: 520px;
  height: 520px;
}

.brand-hero__content {
  align-self: center;
  padding: 62px 38px 62px 62px;
}

.brand-hero__logo {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  padding: 23px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(0, 38, 105, 0.22);
}

.brand-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-hero .eyebrow {
  margin-top: 30px;
}

.brand-hero h1 {
  max-width: 650px;
  margin: 12px 0 22px;
  font-family: var(--display);
  font-size: clamp(3.3rem, 5.6vw, 5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.052em;
}

.brand-hero__content > p:not(.eyebrow, .brand-hero__external-note) {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.68;
}

.brand-hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button--walmart {
  gap: 9px;
  color: #063b81;
  background: var(--yellow);
}

.button--outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.brand-hero__external-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.69rem;
}

.brand-hero__visual {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 55px;
  background:
    linear-gradient(180deg, rgba(0, 39, 113, 0.08), rgba(0, 39, 113, 0.22)),
    url("../images/shared/featured-shopping-v2.png") center / cover;
}

.everyday-list {
  width: min(100%, 350px);
  padding: 30px 28px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px 4px 22px 22px;
  box-shadow: 0 28px 60px rgba(2, 39, 102, 0.28);
  transform: rotate(2deg);
}

.everyday-list::after {
  display: block;
  height: 8px;
  margin: 24px -20px -32px;
  content: "";
  background: radial-gradient(circle at 8px -1px, transparent 8px, white 8.5px) 0 0 / 16px 10px repeat-x;
}

.everyday-list__top,
.everyday-list__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.everyday-list__top {
  padding-bottom: 18px;
  color: #0874d1;
  border-bottom: 2px dashed #cbd9ea;
}

.everyday-list ul {
  margin: 0;
  padding: 12px 0;
  list-style: none;
}

.everyday-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #e3eaf3;
  font-size: 0.84rem;
  font-weight: 700;
}

.everyday-list li strong {
  color: #0874d1;
  font-size: 1rem;
}

.everyday-list__bottom {
  padding-top: 14px;
  color: var(--ink-soft);
}

.everyday-list__bottom span:last-child {
  color: var(--yellow);
  font-size: 1.25rem;
  text-shadow: 0 1px #d79b00;
}

.brand-overview {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 90px;
  padding-top: 105px;
  padding-bottom: 105px;
}

.brand-overview h2,
.shopping-options h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.brand-overview__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.brand-overview__note {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d5e3f4;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(22, 54, 101, 0.09);
}

.brand-overview__note::after {
  position: absolute;
  right: -48px;
  bottom: -55px;
  width: 140px;
  height: 140px;
  content: "";
  background: #edf6ff;
  border-radius: 50%;
}

.brand-overview__note-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #073b81;
  background: var(--yellow);
  border-radius: 14px;
}

.brand-overview__note p {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.7;
}

.brand-services {
  padding: 90px 0 96px;
  background:
    linear-gradient(rgba(7, 89, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 89, 230, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.78);
  background-size: 32px 32px;
  border-block: 1px solid #dbe7f5;
}

.brand-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-service-grid article {
  min-height: 250px;
  padding: 27px 24px;
  background: var(--white);
  border: 1px solid #dbe6f3;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(17, 50, 99, 0.07);
}

.brand-service-grid article > span {
  display: inline-block;
  color: #0874d1;
  font-family: var(--utility);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand-service-grid h3 {
  margin: 54px 0 10px;
  font-family: var(--display);
  font-size: 1.18rem;
}

.brand-service-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.shopping-options {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: 60px;
  color: var(--white);
  background: #062e76;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(6, 46, 118, 0.18);
}

.shopping-options__list {
  display: grid;
  gap: 12px;
}

.shopping-options__list article {
  min-height: 110px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
}

.shopping-options__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #062e76;
  background: var(--yellow);
  border-radius: 14px;
  font-weight: 900;
}

.shopping-options__list h3,
.shopping-options__list p {
  margin: 0;
}

.shopping-options__list h3 {
  font-family: var(--display);
  font-size: 1rem;
}

.shopping-options__list p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.related-brands {
  padding-top: 105px;
}

.related-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-brand-grid > a {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid #d9e5f3;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(16, 48, 96, 0.065);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.related-brand-grid > a:hover {
  border-color: #8bb8ec;
  box-shadow: 0 20px 40px rgba(7, 89, 230, 0.11);
  transform: translateY(-5px);
}

.related-brand-grid__logo {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid #e0e8f2;
  border-radius: 17px;
}

.related-brand-grid__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-brand-grid strong,
.related-brand-grid small {
  display: block;
}

.related-brand-grid strong {
  font-family: var(--display);
  font-size: 1rem;
}

.related-brand-grid small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.related-brand-grid > a > span:last-child {
  color: var(--blue);
  font-size: 1.2rem;
}

.brand-source-note {
  margin-top: 75px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  color: #65718a;
  border-top: 1px solid #d8e3f1;
  font-size: 0.67rem;
}

.brand-source-note p {
  max-width: 560px;
  margin: 0;
}

@media (max-width: 960px) {
  .brand-hero {
    grid-template-columns: 1fr;
  }

  .brand-hero__content {
    padding: 55px 48px;
  }

  .brand-hero__visual {
    min-height: 470px;
  }

  .brand-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shopping-options {
    grid-template-columns: 1fr;
  }

  .related-brand-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-detail-page main {
    padding-bottom: 60px;
  }

  .brand-hero {
    border-radius: 22px;
  }

  .brand-hero__content {
    padding: 42px 24px 48px;
  }

  .brand-hero__logo {
    width: 92px;
    height: 92px;
    padding: 19px;
    border-radius: 22px;
  }

  .brand-hero h1 {
    font-size: clamp(3rem, 13vw, 4.1rem);
  }

  .brand-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-hero__actions .button {
    width: 100%;
  }

  .brand-hero__visual {
    min-height: 420px;
    padding: 42px 24px;
  }

  .brand-overview {
    padding-top: 75px;
    padding-bottom: 75px;
  }

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

  .brand-service-grid article {
    min-height: 215px;
  }

  .brand-service-grid h3 {
    margin-top: 48px;
  }

  .shopping-options {
    margin-top: 65px;
    gap: 36px;
    padding: 42px 22px;
    border-radius: 22px;
  }

  .shopping-options__list article {
    grid-template-columns: 1fr;
  }

  .related-brands {
    padding-top: 75px;
  }

  .related-brand-grid > a {
    grid-template-columns: auto 1fr auto;
  }

  .brand-source-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

/* ── Static pages (Privacy, Terms) ─────────────────────────────────────── */
.static-page__wrap {
  padding-top: 40px;
  padding-bottom: 80px;
}

.static-page__article {
  max-width: 760px;
  margin: 0 auto;
}

.static-page__header {
  margin-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 32px;
}

.static-page__header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-heading);
  margin: 8px 0 12px;
  line-height: 1.15;
}

.static-page__meta {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.static-page__article section {
  margin-bottom: 40px;
}

.static-page__article h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 12px;
  padding-top: 8px;
}

.static-page__article h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  margin: 20px 0 8px;
}

.static-page__article p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 12px;
}

.static-page__article ul {
  margin: 8px 0 16px 20px;
  padding: 0;
}

.static-page__article ul li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  list-style: disc;
  margin-bottom: 4px;
}

.static-page__article a {
  color: var(--color-primary);
  text-decoration: underline;
}

.static-page__article a:hover {
  color: var(--color-primary-dark);
}

/* Footer privacy/terms links */
.site-footer .footer__top nav a {
  white-space: nowrap;
}
