.hero-shop {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}
.just-shop-band {
  padding: 3.25rem 1.25rem;
  background: linear-gradient(120deg, #eaf8f7, #fff8dd);
}
.just-shop-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}
.just-shop-grid h2 {
  margin: 0.25rem 0 0.65rem;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
}
.just-shop-grid p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}
.just-shop-aisles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.just-shop-aisles a {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 10px 28px #082d500c;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.just-shop-aisles a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px #082d501b;
}
.just-shop-aisles span {
  grid-row: 1/3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--mist);
  font-size: 1.45rem;
}
.just-shop-aisles b {
  align-self: end;
}
.just-shop-aisles small {
  color: var(--muted);
}
.short-term-product {
  border: 3px solid var(--navy) !important;
}
.product-checks {
  margin: 0.7rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.coverage-warning {
  margin: 0.8rem 0;
  padding: 0.75rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: #fff8df;
  color: #425e72;
  font-size: 0.75rem;
  line-height: 1.4;
}
.coverage-warning b {
  color: var(--navy);
}
.care-market-grid .product-top {
  background: linear-gradient(135deg, #e7f8f6, #dff0ff);
}
@media (max-width: 850px) {
  .just-shop-grid {
    grid-template-columns: 1fr;
  }
  .just-shop-aisles {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .just-shop-aisles {
    grid-template-columns: 1fr;
  }
}
