/* Phase 37: clean, database-driven public homepage. Scoped to the homepage only. */
.mw-home-clean-page main.mobile-app-main {
  padding-block: 0 !important;
  background: #fff;
}

.mw-home-clean {
  overflow: hidden;
  background: #fff;
  color: var(--mw-text);
}

.mw-home-clean__shell {
  width: min(calc(100% - 32px), 1460px);
  margin-inline: auto;
}

.mw-home-clean__announcement {
  border-bottom: 1px solid #d8ece8;
  background: #edf9f6;
  color: #174b48;
}

.mw-home-clean__announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 42px;
  padding-block: .55rem;
  font-size: .84rem;
}

.mw-home-clean__announcement-icon {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #d7f1eb;
  color: var(--mw-primary);
}

.mw-home-clean__announcement p {
  margin: 0;
  font-weight: 750;
  text-align: center;
}

.mw-home-clean__announcement a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex: 0 0 auto;
  color: var(--mw-primary);
  font-weight: 850;
  text-decoration: none;
}

.mw-home-clean__hero {
  position: relative;
  padding: clamp(2rem, 4.6vw, 5rem) 0 0;
  background:
    radial-gradient(circle at 86% 14%, rgb(15 118 110 / .11), transparent 28%),
    radial-gradient(circle at 5% 4%, rgb(14 165 233 / .07), transparent 24%),
    linear-gradient(180deg, #f8fbfb 0%, #fff 78%);
}

.mw-home-clean__hero::after {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dce8e8 20%, #dce8e8 80%, transparent);
  content: "";
}

.mw-home-clean__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .78fr);
  align-items: center;
  gap: clamp(2.25rem, 5vw, 6.5rem);
}

.mw-home-clean__hero-copy {
  max-width: 760px;
}

.mw-home-clean__market-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 34px;
  padding: .45rem .75rem;
  border: 1px solid #d4e8e4;
  border-radius: var(--mw-r-pill);
  background: rgb(255 255 255 / .88);
  color: #52666a;
  font-size: .78rem;
  box-shadow: 0 5px 18px rgb(15 23 42 / .04);
}

.mw-home-clean__market-pill i,
.mw-home-clean__market-pill strong {
  color: var(--mw-primary);
}

.mw-home-clean__eyebrow {
  margin: 0 0 .55rem;
  color: var(--mw-primary);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mw-home-clean__hero-copy > .mw-home-clean__eyebrow {
  margin-top: 1.5rem;
}

.mw-home-clean__hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #172b36;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 930;
  letter-spacing: -.055em;
  line-height: .98;
  text-wrap: balance;
}

.mw-home-clean__hero h1 span {
  display: block;
  color: var(--mw-primary);
}

.mw-home-clean__hero-lead {
  max-width: 62ch;
  margin: 1.25rem 0 0;
  color: #5f7077;
  font-size: clamp(.98rem, 1.3vw, 1.12rem);
  line-height: 1.75;
}

.mw-home-clean__search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .7rem;
  width: min(100%, 700px);
  margin-top: 1.7rem;
  padding: .38rem .38rem .38rem 1rem;
  border: 1px solid #d6e2e3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 38px rgb(18 58 66 / .1);
}

[dir="rtl"] .mw-home-clean__search {
  padding: .38rem 1rem .38rem .38rem;
}

.mw-home-clean__search > i {
  color: #839398;
}

.mw-home-clean__search input {
  min-width: 0;
  height: 48px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--mw-text);
  font: inherit;
}

.mw-home-clean__search input::placeholder {
  color: #8a989d;
}

.mw-home-clean__search button {
  min-height: 48px;
  padding-inline: 1.35rem;
  border: 0;
  border-radius: 12px;
  background: var(--mw-primary);
  color: #fff;
  font-weight: 850;
  transition: background var(--mw-transition), transform var(--mw-transition);
}

.mw-home-clean__search button:hover,
.mw-home-clean__search button:focus-visible {
  background: var(--mw-primary-600);
  transform: translateY(-1px);
}

.mw-home-clean__hero-actions,
.mw-home-clean__closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.3rem;
}

.mw-home-clean__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform var(--mw-transition), box-shadow var(--mw-transition), border-color var(--mw-transition), background var(--mw-transition), color var(--mw-transition);
}

.mw-home-clean__button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.mw-home-clean__button--primary {
  background: var(--mw-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgb(15 118 110 / .2);
}

.mw-home-clean__button--primary:hover {
  background: var(--mw-primary-600);
  color: #fff;
  box-shadow: 0 14px 30px rgb(15 118 110 / .25);
}

.mw-home-clean__button--secondary {
  border-color: #d2dfe1;
  background: #fff;
  color: #30444c;
}

.mw-home-clean__button--secondary:hover {
  border-color: #a9c9c5;
  color: var(--mw-primary);
}

.mw-home-clean__button--light {
  background: #fff;
  color: #0d655e;
  box-shadow: 0 12px 30px rgb(0 43 52 / .18);
}

.mw-home-clean__button--outline-light {
  border-color: rgb(255 255 255 / .55);
  background: rgb(255 255 255 / .08);
  color: #fff;
}

.mw-home-clean__button--outline-light:hover {
  border-color: #fff;
  background: rgb(255 255 255 / .16);
  color: #fff;
}

.mw-home-clean__quick-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.2rem;
  color: #74858a;
  font-size: .76rem;
}

.mw-home-clean__quick-links > span {
  font-weight: 800;
}

.mw-home-clean__quick-links a {
  padding: .34rem .62rem;
  border-radius: var(--mw-r-pill);
  background: #eef4f4;
  color: #53686d;
  font-weight: 750;
  text-decoration: none;
}

.mw-home-clean__quick-links a:hover {
  background: var(--mw-primary-soft);
  color: var(--mw-primary);
}

.mw-home-clean__spotlight {
  min-width: 0;
}

.mw-home-clean__spotlight-card {
  position: relative;
  display: block;
  min-height: clamp(390px, 38vw, 550px);
  overflow: hidden;
  border: 1px solid #d8e5e5;
  border-radius: 28px;
  background: #edf6f5;
  color: #fff;
  box-shadow: 0 28px 70px rgb(20 61 67 / .15);
  text-decoration: none;
  isolation: isolate;
}

.mw-home-clean__spotlight-card:hover {
  color: #fff;
  text-decoration: none;
}

.mw-home-clean__spotlight-media,
.mw-home-clean__spotlight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mw-home-clean__spotlight-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #eef8f6, #d8ebe8);
}

.mw-home-clean__spotlight-media img {
  object-fit: cover;
  transition: transform .55s ease;
}

.mw-home-clean__spotlight-card:hover .mw-home-clean__spotlight-media img {
  transform: scale(1.025);
}

.mw-home-clean__spotlight-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(7 34 39 / .04) 20%, rgb(7 34 39 / .88) 100%);
}

.mw-home-clean__spotlight-content {
  position: absolute;
  inset-inline: clamp(1.3rem, 3vw, 2rem);
  bottom: clamp(1.3rem, 3vw, 2rem);
  z-index: 2;
  display: grid;
  gap: .4rem;
}

.mw-home-clean__spotlight-content small {
  color: #b9f2e7;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mw-home-clean__spotlight-content strong {
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.mw-home-clean__spotlight-content > span {
  max-width: 44ch;
  color: rgb(255 255 255 / .82);
  line-height: 1.45;
}

.mw-home-clean__spotlight-content em {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .55rem;
  color: #fff;
  font-style: normal;
  font-weight: 850;
}

.mw-home-clean__spotlight-content--product {
  inset-inline: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / .65);
  border-radius: 18px;
  background: rgb(255 255 255 / .92);
  color: #17323a;
  box-shadow: 0 16px 40px rgb(15 23 42 / .16);
  backdrop-filter: blur(14px);
}

.mw-home-clean__spotlight-content--product small,
.mw-home-clean__spotlight-content--product em {
  color: var(--mw-primary);
}

.mw-home-clean__spotlight-content--product strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.mw-home-clean__spotlight-content--product > span {
  color: #65767b;
}

.mw-home-clean__spotlight-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #7eb8b1;
  font-size: clamp(5rem, 12vw, 10rem);
}

.mw-home-clean__spotlight-card--empty {
  color: #17323a;
}

.mw-home-clean__metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(2.3rem, 5vw, 4.5rem);
  border: 1px solid #dce8e8;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: rgb(255 255 255 / .94);
  box-shadow: 0 -8px 30px rgb(15 23 42 / .04);
}

.mw-home-clean__metrics > div {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  padding: 1.05rem 1.25rem;
}

.mw-home-clean__metrics > div + div {
  border-inline-start: 1px solid #e5eeee;
}

.mw-home-clean__metrics > div > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--mw-primary-soft);
  color: var(--mw-primary);
}

.mw-home-clean__metrics p {
  display: grid;
  gap: .05rem;
  min-width: 0;
  margin: 0;
}

.mw-home-clean__metrics strong {
  color: #1c333a;
  font-size: 1.12rem;
  line-height: 1;
}

.mw-home-clean__metrics small {
  overflow: hidden;
  color: #74858a;
  font-size: .76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mw-home-clean__section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.mw-home-clean__section--soft {
  border-block: 1px solid #e7eeee;
  background: #f8fbfb;
}

.mw-home-clean__section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.65rem;
}

.mw-home-clean__section-header > div {
  max-width: 720px;
}

.mw-home-clean__section-header h2 {
  margin: 0;
  color: #1b3038;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.1;
  text-wrap: balance;
}

.mw-home-clean__section-header p:not(.mw-home-clean__eyebrow) {
  max-width: 66ch;
  margin: .65rem 0 0;
  color: #6a7a80;
  line-height: 1.65;
}

.mw-home-clean__section-header > a,
.mw-home-clean__discovery-panel header > a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex: 0 0 auto;
  color: var(--mw-primary);
  font-size: .84rem;
  font-weight: 850;
  text-decoration: none;
}

.mw-home-clean__section-header > a:hover,
.mw-home-clean__discovery-panel header > a:hover {
  text-decoration: underline;
  text-underline-offset: .25rem;
}

.mw-home-clean__section-header--compact {
  margin-bottom: 1.2rem;
}

.mw-home-clean__department-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
}

.mw-home-clean__department {
  --department-bg: #eef6f5;
  --department-color: #0f766e;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 220px;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid #dee8e8;
  border-radius: 18px;
  background: #fff;
  color: #20363d;
  box-shadow: 0 7px 22px rgb(15 23 42 / .045);
  text-decoration: none;
  transition: transform var(--mw-transition), box-shadow var(--mw-transition), border-color var(--mw-transition);
}

.mw-home-clean__department:hover {
  border-color: color-mix(in srgb, var(--department-color) 28%, #dee8e8);
  color: #20363d;
  box-shadow: 0 16px 34px rgb(15 23 42 / .09);
  transform: translateY(-3px);
  text-decoration: none;
}

.mw-home-clean__department--rose { --department-bg: #fff0f3; --department-color: #be4965; }
.mw-home-clean__department--green { --department-bg: #ebf8ef; --department-color: #31855a; }
.mw-home-clean__department--amber { --department-bg: #fff6df; --department-color: #a46b12; }
.mw-home-clean__department--blue { --department-bg: #ebf4ff; --department-color: #3777b7; }
.mw-home-clean__department--violet { --department-bg: #f4efff; --department-color: #7354ad; }

.mw-home-clean__department-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--department-bg);
  color: var(--department-color);
  font-size: 1.1rem;
}

.mw-home-clean__department-copy {
  display: grid;
  gap: .45rem;
  margin-top: 1.15rem;
}

.mw-home-clean__department-copy strong {
  font-size: 1rem;
  font-weight: 900;
}

.mw-home-clean__department-copy small {
  display: -webkit-box;
  min-height: 3.9em;
  overflow: hidden;
  color: #718087;
  font-size: .78rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.mw-home-clean__department-copy em {
  margin-top: .3rem;
  color: var(--department-color);
  font-size: .75rem;
  font-style: normal;
  font-weight: 850;
}

.mw-home-clean__department-arrow {
  position: absolute;
  inset-inline-end: 1rem;
  bottom: 1rem;
  color: #a4b1b5;
  font-size: .78rem;
  transition: transform var(--mw-transition), color var(--mw-transition);
}

.mw-home-clean__department:hover .mw-home-clean__department-arrow {
  color: var(--department-color);
  transform: translateX(3px);
}

[dir="rtl"] .mw-home-clean__department:hover .mw-home-clean__department-arrow {
  transform: translateX(-3px);
}

.mw-home-clean__category-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e1eaea;
  border-radius: 16px;
  background: #fafcfc;
}

.mw-home-clean__category-row > span {
  flex: 0 0 auto;
  padding-top: .35rem;
  color: #53676d;
  font-size: .78rem;
  font-weight: 850;
}

.mw-home-clean__category-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.mw-home-clean__category-row a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .58rem;
  border: 1px solid #e0e9e9;
  border-radius: var(--mw-r-pill);
  background: #fff;
  color: #53676d;
  font-size: .75rem;
  font-weight: 750;
  text-decoration: none;
}

.mw-home-clean__category-row a:hover {
  border-color: #b8d4d0;
  color: var(--mw-primary);
}

.mw-home-clean__category-row small {
  color: #94a1a5;
}

.mw-home-clean__product-scroll {
  display: grid;
  grid-auto-columns: minmax(225px, calc((100% - 3rem) / 4));
  grid-auto-flow: column;
  gap: 1rem;
  padding: .15rem .15rem 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: #b8cfcc transparent;
  scrollbar-width: thin;
}

.mw-home-clean__product-scroll:focus-visible {
  border-radius: 14px;
  outline: 3px solid rgb(15 118 110 / .16);
  outline-offset: 4px;
}

.mw-home-clean__product-scroll::-webkit-scrollbar {
  height: 7px;
}

.mw-home-clean__product-scroll::-webkit-scrollbar-thumb {
  border-radius: var(--mw-r-pill);
  background: #bdd0ce;
}

.mw-home-clean__product-item {
  min-width: 0;
  scroll-snap-align: start;
}

.mw-home-clean .mw-product-card--home {
  border-radius: 17px;
  box-shadow: 0 6px 20px rgb(15 23 42 / .055);
}

.mw-home-clean .mw-product-card--home .mw-product-card__media {
  aspect-ratio: 1 / 1.08;
}

.mw-home-clean .mw-product-card--home .mw-product-card__content {
  gap: .48rem;
  padding: .9rem;
}

.mw-home-clean .mw-product-card--home .mw-product-card__title {
  min-height: 2.55em;
  font-size: .92rem;
}

.mw-home-clean .mw-product-card--home .mw-product-card__footer {
  align-items: center;
}

.mw-home-clean .mw-product-card--home .mw-product-card__details-link span {
  display: none;
}

.mw-home-clean__promotion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mw-home-clean__promotion {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .6fr) minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  border: 1px solid #dfe9e9;
  border-radius: 20px;
  background: #f6faf9;
  color: #1c343b;
  text-decoration: none;
  transition: transform var(--mw-transition), box-shadow var(--mw-transition), border-color var(--mw-transition);
}

.mw-home-clean__promotion:hover {
  border-color: #bcd7d3;
  color: #1c343b;
  box-shadow: 0 16px 38px rgb(15 23 42 / .09);
  transform: translateY(-2px);
  text-decoration: none;
}

.mw-home-clean__promotion-media {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #d9efeb, #eef8f6);
  color: #7eb4ad;
  font-size: 3rem;
  place-items: center;
}

.mw-home-clean__promotion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.mw-home-clean__promotion:hover .mw-home-clean__promotion-media img {
  transform: scale(1.03);
}

.mw-home-clean__promotion-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .45rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.mw-home-clean__promotion-content small {
  color: var(--mw-primary);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mw-home-clean__promotion-content strong {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.mw-home-clean__promotion-content > span {
  color: #6a7a80;
  line-height: 1.5;
}

.mw-home-clean__promotion-content em {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .45rem;
  color: var(--mw-primary);
  font-size: .82rem;
  font-style: normal;
  font-weight: 850;
}

.mw-home-clean__discovery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mw-home-clean__discovery-grid--single {
  grid-template-columns: 1fr;
}

.mw-home-clean__discovery-panel {
  min-width: 0;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  border: 1px solid #dfe8e8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 26px rgb(15 23 42 / .05);
}

.mw-home-clean__discovery-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8eeee;
}

.mw-home-clean__discovery-panel > header > div {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}

.mw-home-clean__discovery-panel > header > div > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: var(--mw-primary-soft);
  color: var(--mw-primary);
}

.mw-home-clean__discovery-panel h3 {
  margin: 0;
  color: #20363d;
  font-size: 1.05rem;
  font-weight: 900;
}

.mw-home-clean__discovery-panel header p {
  margin: .15rem 0 0;
  color: #74858a;
  font-size: .76rem;
  line-height: 1.4;
}

.mw-home-clean__restaurant-list {
  display: grid;
  gap: .15rem;
  margin-top: .65rem;
}

.mw-home-clean__restaurant-list > a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  padding: .62rem;
  border-radius: 12px;
  color: #263b42;
  text-decoration: none;
  transition: background var(--mw-transition);
}

.mw-home-clean__restaurant-list > a:hover {
  background: #f4f8f8;
  color: #263b42;
  text-decoration: none;
}

.mw-home-clean__restaurant-media {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 12px;
  background: #edf6f5;
  color: var(--mw-primary);
}

.mw-home-clean__restaurant-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mw-home-clean__restaurant-list > a > span:nth-child(2) {
  display: grid;
  gap: .12rem;
  min-width: 0;
}

.mw-home-clean__restaurant-list strong {
  overflow: hidden;
  font-size: .86rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mw-home-clean__restaurant-list small {
  overflow: hidden;
  color: #7a898e;
  font-size: .73rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mw-home-clean__restaurant-list > a > i {
  color: #a0adb1;
  font-size: .65rem;
}

.mw-home-clean__vendor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
  margin-top: .85rem;
}

.mw-home-clean__vendor-list > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  min-width: 0;
  padding: .8rem .55rem;
  border: 1px solid #e5ecec;
  border-radius: 13px;
  color: #2b4148;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--mw-transition), background var(--mw-transition), transform var(--mw-transition);
}

.mw-home-clean__vendor-list > a:hover {
  border-color: #bfd8d4;
  background: #f7fbfa;
  color: #2b4148;
  transform: translateY(-2px);
  text-decoration: none;
}

.mw-home-clean__vendor-list > a > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 14px;
  background: #edf6f5;
  color: var(--mw-primary);
}

.mw-home-clean__vendor-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mw-home-clean__vendor-list strong {
  width: 100%;
  overflow: hidden;
  font-size: .76rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mw-home-clean__vendor-list small {
  color: var(--mw-success);
  font-size: .67rem;
  font-weight: 800;
}

.mw-home-clean__closing {
  padding-top: 1rem;
}

.mw-home-clean__closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.7rem, 4vw, 3.4rem);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 15%, rgb(94 234 212 / .22), transparent 25%),
    linear-gradient(135deg, #0b4e4c, #0f766e 58%, #168d82);
  color: #fff;
  box-shadow: 0 24px 58px rgb(15 118 110 / .2);
}

.mw-home-clean__closing-card > div:first-child {
  max-width: 690px;
}

.mw-home-clean__closing .mw-home-clean__eyebrow {
  color: #9ff1e5;
}

.mw-home-clean__closing h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.mw-home-clean__closing p:not(.mw-home-clean__eyebrow) {
  margin: .75rem 0 0;
  color: rgb(255 255 255 / .78);
  line-height: 1.65;
}

.mw-home-clean__closing-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.mw-home-clean__empty {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  min-height: 190px;
  padding: 2rem;
  border: 1px dashed #ccdada;
  border-radius: 18px;
  background: #fafcfc;
  color: #74858a;
  text-align: center;
}

.mw-home-clean__empty i {
  margin-bottom: .65rem;
  color: #91b8b3;
  font-size: 2rem;
}

.mw-home-clean__empty strong,
.mw-home-clean__empty span {
  display: block;
}

.mw-home-clean__empty strong {
  color: #334a51;
}

.mw-home-clean__empty span {
  margin-top: .25rem;
  font-size: .82rem;
}

@media (max-width: 1199px) {
  .mw-home-clean__hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .7fr);
    gap: 2.5rem;
  }

  .mw-home-clean__department-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mw-home-clean__department:nth-child(4),
  .mw-home-clean__department:nth-child(5) {
    min-height: 190px;
  }

  .mw-home-clean__product-scroll {
    grid-auto-columns: minmax(220px, calc((100% - 2rem) / 3));
  }
}

@media (max-width: 991px) {
  .mw-home-clean__hero-grid {
    grid-template-columns: 1fr;
  }

  .mw-home-clean__hero-copy {
    max-width: 820px;
  }

  .mw-home-clean__hero h1 {
    max-width: 14ch;
  }

  .mw-home-clean__spotlight {
    width: min(100%, 700px);
  }

  .mw-home-clean__spotlight-card {
    min-height: 410px;
  }

  .mw-home-clean__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mw-home-clean__metrics > div:nth-child(3) {
    border-inline-start: 0;
    border-top: 1px solid #e5eeee;
  }

  .mw-home-clean__metrics > div:nth-child(4) {
    border-top: 1px solid #e5eeee;
  }

  .mw-home-clean__promotion-grid,
  .mw-home-clean__discovery-grid {
    grid-template-columns: 1fr;
  }

  .mw-home-clean__closing-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .mw-home-clean__shell {
    width: min(calc(100% - 24px), 1460px);
  }

  .mw-home-clean__announcement-inner {
    justify-content: flex-start;
  }

  .mw-home-clean__announcement p {
    text-align: start;
  }

  .mw-home-clean__announcement a {
    margin-inline-start: auto;
  }

  .mw-home-clean__hero {
    padding-top: 2.2rem;
  }

  .mw-home-clean__hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.8rem);
  }

  .mw-home-clean__search {
    grid-template-columns: auto minmax(0, 1fr);
    padding: .7rem .8rem;
  }

  .mw-home-clean__search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .mw-home-clean__spotlight-card {
    min-height: 370px;
    border-radius: 22px;
  }

  .mw-home-clean__section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: .7rem;
  }

  .mw-home-clean__department-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mw-home-clean__department {
    min-height: 200px;
  }

  .mw-home-clean__category-row {
    flex-direction: column;
    gap: .6rem;
  }

  .mw-home-clean__product-scroll {
    grid-auto-columns: minmax(210px, 72vw);
  }

  .mw-home-clean__promotion {
    grid-template-columns: minmax(120px, .48fr) minmax(0, 1fr);
  }

  .mw-home-clean__vendor-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .mw-home-clean__shell {
    width: min(calc(100% - 20px), 1460px);
  }

  .mw-home-clean__announcement-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .45rem .6rem;
  }

  .mw-home-clean__announcement p {
    flex: 1 1 calc(100% - 2.4rem);
  }

  .mw-home-clean__announcement a {
    margin-inline-start: 2.35rem;
  }

  .mw-home-clean__hero-actions .mw-home-clean__button {
    width: 100%;
  }

  .mw-home-clean__quick-links > span {
    width: 100%;
  }

  .mw-home-clean__spotlight-card {
    min-height: 340px;
  }

  .mw-home-clean__metrics {
    border-radius: 16px 16px 0 0;
  }

  .mw-home-clean__metrics > div {
    padding: .85rem;
  }

  .mw-home-clean__metrics > div > span {
    width: 34px;
    height: 34px;
  }

  .mw-home-clean__metrics strong {
    font-size: .98rem;
  }

  .mw-home-clean__metrics small {
    font-size: .68rem;
  }

  .mw-home-clean__section {
    padding: 3.2rem 0;
  }

  .mw-home-clean__department-grid {
    grid-template-columns: 1fr;
  }

  .mw-home-clean__department,
  .mw-home-clean__department:nth-child(4),
  .mw-home-clean__department:nth-child(5) {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: .85rem;
    min-height: 0;
    padding: 1rem;
  }

  .mw-home-clean__department-copy {
    gap: .18rem;
    margin-top: 0;
  }

  .mw-home-clean__department-copy small {
    display: none;
    min-height: 0;
  }

  .mw-home-clean__department-copy em {
    margin-top: 0;
  }

  .mw-home-clean__department-arrow {
    position: static;
  }

  .mw-home-clean__promotion {
    grid-template-columns: 1fr;
  }

  .mw-home-clean__promotion-media {
    min-height: 180px;
  }

  .mw-home-clean__discovery-panel > header {
    align-items: flex-start;
  }

  .mw-home-clean__discovery-panel > header > a {
    font-size: 0;
  }

  .mw-home-clean__discovery-panel > header > a i {
    font-size: .8rem;
  }

  .mw-home-clean__closing-actions,
  .mw-home-clean__closing-actions .mw-home-clean__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mw-home-clean *,
  .mw-home-clean *::before,
  .mw-home-clean *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
