.road-advisor {
  --road-orange: #f7a601;
  --road-yellow: #f7a601;
  --road-ink: #171717;
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 7vw, 86px) 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 223, 0, .22), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fff8ef 100%);
}

.road-advisor::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  border: 80px solid rgba(247,166,1, .055);
  border-radius: 50%;
  pointer-events: none;
}

.road-advisor-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.road-advisor-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}

.road-advisor-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--road-orange);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.road-advisor-kicker::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--road-yellow);
}

.road-advisor-title {
  max-width: 800px;
  margin: 0;
  color: var(--road-ink);
  font-size: clamp(2rem, 4.4vw, 4.1rem) !important;
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.045em;
}

.road-advisor-title em {
  color: var(--road-orange);
  font-style: normal;
}

.road-advisor-subtitle {
  max-width: 610px;
  margin: 13px 0 0;
  color: #626262;
  font-size: 1rem;
  line-height: 1.55;
}

.road-advisor-memory {
  flex: 0 0 auto;
  display: none;
  align-items: center;
  gap: 12px;
  max-width: 430px;
  padding: 10px 10px 10px 15px;
  border: 1px solid #eadfd2;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 32px rgba(23, 23, 23, .08);
}

.road-advisor-memory.is-visible { display: flex; }

.road-memory-copy {
  color: #626262;
  font-size: .78rem;
  line-height: 1.35;
}

.road-memory-copy strong {
  display: block;
  color: var(--road-ink);
  font-size: .86rem;
}

.road-memory-btn {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--road-orange);
  color: #fff;
  font-size: .76rem !important;
  font-weight: 900;
  white-space: nowrap;
}

.road-memory-btn.is-remove {
  border: 1px solid #e3d7c9;
  background: #fff;
  color: var(--road-orange);
}

.road-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.road-scenario {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #171717;
  color: #fff;
  text-align: left;
  box-shadow: 0 18px 45px rgba(23, 23, 23, .14);
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease;
}

.road-scenario:hover,
.road-scenario:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(23, 23, 23, .23);
}

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

.road-scenario[aria-pressed="true"] {
  box-shadow: 0 0 0 5px var(--road-yellow), 0 24px 60px rgba(23, 23, 23, .23);
}

.road-scenario img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.road-scenario:hover img { transform: scale(1.035); }

.road-scenario::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(229, 249, 252, .98) 0%, rgba(229, 249, 252, .94) 38%, rgba(229, 249, 252, .62) 61%, rgba(229, 249, 252, .08) 91%);
}

.road-scenario-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 70%;
  min-height: 300px;
  padding: 25px;
}

.road-scenario-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--road-yellow);
  color: #111;
  font-size: 1.15rem;
}

.road-scenario-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 27px;
  margin-bottom: 9px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(8px);
  color: #9a5200;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.road-scenario-status:empty { display: none; }

.road-scenario.is-today .road-scenario-status {
  background: var(--road-yellow);
  color: #111;
}

.road-scenario-title {
  margin: 0 0 6px;
  color: #171717;
  font-size: clamp(1.45rem, 2vw, 2rem) !important;
  font-weight: 900;
  letter-spacing: -.035em;
}

.road-scenario-copy {
  min-height: 38px;
  color: #4b4b4b;
  font-size: .83rem;
  line-height: 1.45;
}

.road-scenario-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: 13px;
  color: #9a5200;
  font-size: .73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.road-scenario-action i { transition: transform .2s ease; }
.road-scenario:hover .road-scenario-action i { transform: translateX(4px); }

.road-products {
  display: none;
  margin-top: 22px;
  padding: clamp(20px, 3vw, 31px);
  border: 1px solid #e7dfd6;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(23, 23, 23, .08);
}

.road-products.is-visible { display: block; }

.road-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 17px;
}

.road-products-title {
  margin: 0;
  color: var(--road-ink);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem) !important;
  font-weight: 900;
}

.road-products-note {
  margin: 4px 0 0;
  color: #6a6a6a;
  font-size: .8rem;
}

.road-view-all {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--road-yellow);
  color: #171717;
  font-weight: 900;
}

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

.road-product-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e8e1d9;
  border-radius: 19px;
  background: #fffaf4;
}

.road-product-image {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 13px;
  background: #fff;
}

.road-product-image.is-fallback { object-fit: contain; padding: 10px; }
.road-product-copy { min-width: 0; }

.road-product-brand {
  overflow: hidden;
  color: var(--road-ink);
  font-size: .87rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-product-size,
.road-product-data {
  color: #69776f;
  font-size: .72rem;
}

.road-product-data {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}

.road-product-data span {
  padding: 3px 7px;
  border-radius: 7px;
  background: #fff1df;
  color: #7a4c00;
  font-weight: 800;
}

.road-product-price {
  margin-top: 7px;
  color: var(--road-orange);
  font-size: 1.05rem;
  font-weight: 900;
}

.road-product-price small { font-size: .62rem; }

.road-empty {
  grid-column: 1 / -1;
  padding: 26px;
  border: 1px dashed #e6c89d;
  border-radius: 18px;
  background: #fffaf4;
  color: #625546;
  text-align: center;
}

@media (max-width: 991.98px) {
  .road-advisor-heading { align-items: flex-start; flex-direction: column; }
  .road-scenarios { grid-template-columns: 1fr; }
  .road-scenario,
  .road-scenario-content { min-height: 245px; }
  .road-product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .road-advisor-inner { width: min(100% - 22px, 1320px); }
  .road-advisor-title { font-size: 2.2rem !important; }
  .road-advisor-memory { width: 100%; justify-content: space-between; }
  .road-scenario-content { width: 78%; padding: 20px; }
  .road-products-head { align-items: stretch; flex-direction: column; }
  .road-view-all { width: 100%; }
  .road-product-card { grid-template-columns: 76px minmax(0, 1fr); }
  .road-product-image { width: 76px; height: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  .road-scenario,
  .road-scenario img { transition: none; }
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 10px 0 17px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 223, 0, .55);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-location i { color: #f7a601; }

.payment-info {
  padding: clamp(28px, 5vw, 58px) 16px;
  background: #effafd;
}

.payment-info-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid #cfe8ed;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(12, 79, 54, .08);
}

.payment-info-kicker {
  color: #c96f00;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.payment-info h2 {
  margin: 7px 0 8px;
  color: #171717;
  font-size: clamp(1.55rem, 3vw, 2.65rem) !important;
  font-weight: 900;
  letter-spacing: -.035em;
}

.payment-info p {
  max-width: 700px;
  margin: 0;
  color: #52695e;
  line-height: 1.55;
}

.payment-info-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(145px, 1fr));
  gap: 12px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 15px 18px;
  border: 2px solid #f7a601;
  border-radius: 20px;
  color: #171717;
  background: #f8fffa;
}

.payment-method > i {
  color: #c96f00;
  font-size: 2rem;
}

.payment-method strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
}

.payment-method small {
  display: block;
  color: #62736a;
  font-size: .7rem;
}

@media (max-width: 767.98px) {
  .payment-info-inner { grid-template-columns: 1fr; }
  .payment-info-methods { width: 100%; }
}

@media (max-width: 430px) {
  .payment-info-methods { grid-template-columns: 1fr; }
}
