*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes atmospherePan {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.08) translate3d(-1.2%, -1.6%, 0);
  }
  100% {
    transform: scale(1.06) translate3d(1.4%, 1.2%, 0);
  }
}

@keyframes floatingPanelLeft {
  0% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  50% {
    transform: translate3d(24px, -18px, 0) rotate(-5deg);
  }
  100% {
    transform: translate3d(8px, 18px, 0) rotate(-9deg);
  }
}

@keyframes floatingPanelRight {
  0% {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }
  50% {
    transform: translate3d(-22px, 22px, 0) rotate(4deg);
  }
  100% {
    transform: translate3d(-8px, -18px, 0) rotate(9deg);
  }
}

@keyframes mediaDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.1) translate3d(-1.8%, 1.5%, 0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes lightSweep {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }
  100% {
    transform: translateX(220%) skewX(-18deg);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--color-foreground);
  background: #f2f5f3;
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  pointer-events: none;
}

body::before {
  top: 0;
  bottom: 0;
  z-index: -2;
  background: var(--image-page-atmosphere) center top / cover no-repeat;
}

body::after {
  top: 0;
  bottom: 0;
  z-index: -3;
  opacity: 1;
  background:
    radial-gradient(circle at 18% 12%, rgba(72, 198, 153, 0.12) 0, rgba(72, 198, 153, 0.04) 120px, transparent 121px),
    radial-gradient(circle at 84% 18%, rgba(72, 198, 153, 0.08) 0, rgba(72, 198, 153, 0.03) 160px, transparent 161px),
    radial-gradient(circle at 72% 78%, rgba(118, 214, 180, 0.08) 0, rgba(118, 214, 180, 0.02) 190px, transparent 191px);
}

.site-shell {
  position: relative;
}

.site-shell::before,
.site-shell::after {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--color-foreground);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.page-width {
  width: min(calc(100% - 32px), var(--page-width));
  margin: 0 auto;
}

.section-shell {
  padding: 36px 0;
}

.section-shell--tight {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-shell--spacious {
  padding-top: 72px;
  padding-bottom: 72px;
}

.card-surface {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 35, 37, 0.08);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(220, 152, 20, 0.15);
  color: #d17600;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.section-title {
  margin: 12px 0 0;
  font-family: "Poppins", "Avenir Next", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading h1 {
  font-size: clamp(3.1rem, 7vw, 6.2rem);
}

.section-heading h2,
.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p {
  margin: 20px 0 0;
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-foreground);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(19, 35, 37, 0.18);
}

.button--accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ff7a00 100%);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--color-foreground);
  border-color: rgba(19, 35, 37, 0.12);
}

.button--ghost {
  background: transparent;
  color: var(--color-foreground);
  border-color: rgba(19, 35, 37, 0.12);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 35, 37, 0.08);
}

.pill strong {
  font-family: "Poppins", sans-serif;
}

.stack {
  display: grid;
  gap: 20px;
}

.site-main {
  position: relative;
  isolation: isolate;
  padding-bottom: 48px;
}

.site-main::before,
.site-main::after {
  display: none;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 20;
  padding: 16px 0 0;
}

.site-header__ribbon {
  margin-bottom: 12px;
  padding: 11px 18px;
  border-radius: 18px;
  background: rgba(19, 35, 37, 0.92);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 0.9rem;
}

.site-header__shell {
  padding: 16px 22px;
  background: rgba(33, 36, 39, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
}

.site-header__logo-image {
  width: 156px;
  height: auto;
}

.site-header__brand-name {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-header__brand-tagline {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
}

.site-header__search {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 220px;
  max-width: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  background: #16181a;
}

.site-header__search-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 16px;
  border: none;
  color: #ffffff;
  background: transparent;
}

.site-header__search-input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.site-header__search-button {
  height: 44px;
  padding: 0 18px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1;
}

.site-header__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.site-header__link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.site-header__link:hover,
.site-header__link.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__cart {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
}

.site-header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #2b1b00;
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.site-header__menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.site-header__menu-toggle span,
.site-header__menu-toggle span::before,
.site-header__menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  margin: 0 auto;
  position: relative;
}

.site-header__menu-toggle span::before,
.site-header__menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-header__menu-toggle span::before {
  top: -6px;
}

.site-header__menu-toggle span::after {
  top: 6px;
}

.hero-cleaning__shell {
  position: relative;
  isolation: isolate;
  padding: 36px;
  overflow: hidden;
  background: var(--image-hero-backdrop) center / cover no-repeat;
  color: #ffffff;
}

.hero-cleaning__shell::before,
.hero-cleaning__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-cleaning__shell::before {
  z-index: -2;
  opacity: 1;
  background:
    radial-gradient(circle at 18% 18%, rgba(72, 198, 153, 0.14) 0, rgba(72, 198, 153, 0.07) 82px, transparent 83px),
    radial-gradient(circle at 82% 24%, rgba(72, 198, 153, 0.12) 0, rgba(72, 198, 153, 0.05) 112px, transparent 113px),
    radial-gradient(circle at 64% 78%, rgba(118, 214, 180, 0.08) 0, rgba(118, 214, 180, 0.03) 138px, transparent 139px),
    linear-gradient(135deg, rgba(246, 249, 247, 0.97) 0%, rgba(235, 243, 238, 0.94) 100%);
}

.hero-cleaning__shell::after {
  z-index: -1;
  background: none;
}

.hero-cleaning__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.hero-cleaning__content,
.hero-stage {
  min-width: 0;
}

.hero-cleaning__content .section-heading {
  max-width: 34rem;
}

.hero-cleaning__shell .section-heading h1 {
  max-width: 8.4ch;
  font-size: clamp(2.55rem, 4.6vw, 4.85rem);
  line-height: 0.92;
  overflow-wrap: break-word;
  text-shadow: 0 8px 28px rgba(12, 16, 19, 0.28);
}

.hero-cleaning__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-cleaning__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  margin-top: 12px;
  border-radius: calc(var(--radius-large) + 8px);
  background:
    radial-gradient(circle at top center, rgba(220, 152, 20, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(49, 53, 57, 0.98) 0%, rgba(29, 33, 37, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-stage::after {
  content: "";
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0.55;
  pointer-events: none;
  animation: lightSweep 11s linear infinite;
}

.hero-stage__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(14, 106, 84, 0.16);
}

.hero-stage__orbit--one {
  inset: 30px;
}

.hero-stage__orbit--two {
  inset: 90px;
}

.hero-stage__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-weight: 700;
  z-index: 3;
}

.hero-stage__badge--top {
  top: 8px;
  left: 20px;
}

.hero-stage__badge--bottom {
  right: 8px;
  bottom: 26px;
}

.hero-stage__visual {
  position: absolute;
  inset: 78px 24px 78px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(188px, 0.48fr);
  gap: 18px;
  z-index: 1;
}

.hero-stage__rail {
  display: grid;
  gap: 18px;
}

.hero-stage__panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stage__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: mediaDrift 18s ease-in-out infinite alternate;
}

.hero-stage__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 13, 16, 0.04) 24%, rgba(10, 13, 16, 0.78) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 34%);
}

.hero-stage__panel--main {
  min-height: 100%;
  animation: riseIn 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both, heroFloat 14s ease-in-out 1s infinite;
}

.hero-stage__panel--tile {
  min-height: 0;
  animation: riseIn 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both, heroFloat 16s ease-in-out 1.2s infinite;
}

.hero-stage__panel--tile:nth-child(2) {
  animation-delay: 0.24s, 1.8s;
}

.hero-stage__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.hero-stage__caption span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage__caption span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(220, 152, 20, 0.92);
}

.hero-stage__caption strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.05;
}

.hero-stage__caption p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.hero-cleaning__content .eyebrow,
.hero-cleaning__content .section-heading,
.hero-cleaning__actions,
.hero-cleaning__stats {
  animation: riseIn 0.82s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-cleaning__content .section-heading {
  animation-delay: 0.1s;
}

.hero-cleaning__actions {
  animation-delay: 0.18s;
}

.hero-cleaning__stats {
  animation-delay: 0.26s;
}

.hero-stage__note {
  position: absolute;
  right: 24px;
  top: 160px;
  width: min(220px, 42%);
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(220, 152, 20, 0.96), rgba(191, 116, 9, 0.96));
  color: #ffffff;
  z-index: 3;
}

.hero-stage__note strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.hero-stage__note p {
  margin: 10px 0 0;
  line-height: 1.6;
  font-size: 0.96rem;
}

.trust-strip__grid,
.step-grid,
.testimonial-grid,
.footer-links,
.collection-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

.trust-strip__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip__item,
.step-card,
.testimonial-card,
.comparison-table__wrap,
.benefit-split__art,
.benefit-split__content,
.collection-hero__card,
.cart-summary,
.main-page__card,
.list-collections__card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 35, 37, 0.08);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.trust-strip__item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
}

.trust-strip__item p,
.step-card p,
.testimonial-card p,
.benefit-split__content p,
.comparison-table__caption,
.site-footer p,
.cart-summary p,
.main-page__card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.hero-cleaning__shell .section-heading p {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 4px 18px rgba(12, 16, 19, 0.24);
}

.hero-cleaning__shell .pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.trust-strip,
.category-grid,
.featured-collection,
.promo-banner,
.logo-cloud {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #171a1d 0%, #111417 100%);
  color: #ffffff;
}

.category-grid {
  --section-atmosphere: var(--image-category-equipment);
}

.featured-collection {
  --section-atmosphere: var(--image-page-secondary);
}

.promo-banner {
  --section-atmosphere: var(--image-category-kitchen);
}

.logo-cloud {
  --section-atmosphere: var(--image-category-laundry);
}

.category-grid::before,
.featured-collection::before,
.promo-banner::before,
.logo-cloud::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.8;
  background:
    linear-gradient(135deg, rgba(8, 12, 15, 0.92), rgba(17, 20, 23, 0.84)),
    radial-gradient(circle at top right, rgba(220, 152, 20, 0.16), transparent 28%),
    var(--section-atmosphere) center / cover no-repeat;
  animation: atmospherePan 28s ease-in-out infinite alternate;
}

.category-grid::after,
.featured-collection::after,
.promo-banner::after,
.logo-cloud::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 12, 15, 0.72), transparent 26%, transparent 74%, rgba(8, 12, 15, 0.72)),
    radial-gradient(circle at 18% 20%, rgba(255, 187, 84, 0.12), transparent 18%),
    radial-gradient(circle at 82% 72%, rgba(11, 122, 117, 0.14), transparent 18%);
}

.trust-strip__item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.trust-strip__item p,
.featured-collection__head p,
.category-grid .section-heading p,
.promo-banner .section-heading p,
.logo-cloud .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.featured-collection .button--ghost,
.promo-banner .button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.category-grid__items,
.logo-cloud__grid {
  display: grid;
  gap: 18px;
}

.category-grid__items {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-cloud__item {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 20px 16px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.category-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 320px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.26);
}

.category-card__media {
  position: relative;
  overflow: hidden;
  min-height: 168px;
}

.category-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(9, 12, 15, 0.12), rgba(9, 12, 15, 0.54)),
    var(--category-image);
  background-position: center;
  background-size: cover;
  animation: mediaDrift 19s ease-in-out infinite alternate;
}

.category-card__body {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
  padding: 18px 18px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(6, 9, 12, 0.38)),
    rgba(255, 255, 255, 0.02);
}

.category-card__icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(220, 152, 20, 0.98), rgba(255, 127, 0, 0.92));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}

.category-card strong,
.logo-cloud__item span {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  text-align: left;
}

.trust-strip__item,
.category-card,
.product-card {
  animation: riseIn 0.78s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.trust-strip__item:nth-child(2),
.category-card:nth-child(2),
.product-card:nth-child(2) {
  animation-delay: 0.08s;
}

.trust-strip__item:nth-child(3),
.category-card:nth-child(3),
.product-card:nth-child(3) {
  animation-delay: 0.16s;
}

.trust-strip__item:nth-child(4),
.category-card:nth-child(4),
.product-card:nth-child(4) {
  animation-delay: 0.24s;
}

.category-card:nth-child(5),
.product-card:nth-child(5) {
  animation-delay: 0.32s;
}

.category-card:nth-child(6),
.product-card:nth-child(6) {
  animation-delay: 0.4s;
}

.promo-banner__shell {
  display: grid;
  gap: 18px;
  padding: 28px 32px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(220, 152, 20, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-banner__copy p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.promo-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-cloud__grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-cloud__item span {
  color: rgba(255, 255, 255, 0.88);
}

.featured-collection__head,
.main-collection__head,
.main-list-collections__head,
.main-cart__head,
.main-page__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.featured-collection__head p {
  max-width: 50ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

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

.product-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 35, 37, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 35, 37, 0.14);
  box-shadow: 0 24px 44px rgba(16, 31, 34, 0.16);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #f5f9f4, #dbe9e2);
}

.product-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: mediaDrift 18s ease-in-out infinite alternate;
}

.product-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  z-index: 1;
  background: rgba(18, 28, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
}

.product-card__copy {
  display: grid;
  gap: 8px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.product-card__type,
.product-card__excerpt {
  color: var(--color-muted);
}

.product-card__excerpt {
  line-height: 1.65;
}

.product-card__copy .button--ghost {
  justify-self: start;
}

.price {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.placeholder-media {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(217, 247, 233, 0.88));
}

.placeholder-media--photo {
  background: none;
}

.placeholder-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: mediaDrift 18s ease-in-out infinite alternate;
}

.placeholder-media__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 15, 0.02), rgba(8, 12, 15, 0.46)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 36%);
}

.placeholder-media__bottle,
.placeholder-media__spray {
  position: absolute;
  bottom: 16%;
  border: 1px solid rgba(19, 35, 37, 0.08);
  box-shadow: var(--shadow-card);
}

.placeholder-media__bottle {
  left: 18%;
  width: 88px;
  height: 170px;
  border-radius: 22px 22px 18px 18px;
  background: linear-gradient(180deg, #fff, #dff7eb);
}

.placeholder-media__spray {
  right: 18%;
  width: 96px;
  height: 190px;
  border-radius: 26px 26px 20px 20px;
  background: linear-gradient(180deg, #fff, #cdf1df);
}

.placeholder-media__bottle::before,
.placeholder-media__spray::before {
  content: "";
  position: absolute;
  left: 28%;
  top: -14px;
  width: 44%;
  height: 18px;
  border-radius: 8px;
  background: #183534;
}

.placeholder-media__spray::after {
  content: "";
  position: absolute;
  right: 12px;
  top: -8px;
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: #183534;
}

.placeholder-media__glow {
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 178, 0.45), rgba(169, 230, 214, 0.18) 50%, transparent 70%);
}

.benefit-split__grid,
.main-product__grid,
.main-cart__layout {
  display: grid;
  gap: 24px;
}

.benefit-split__grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.benefit-split__art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 216, 184, 0.62), transparent 28%),
    linear-gradient(180deg, rgba(230, 255, 247, 0.86), rgba(255, 255, 255, 0.9));
}

.benefit-split__rings {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px dashed rgba(14, 106, 84, 0.16);
}

.benefit-split__rings::before,
.benefit-split__rings::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(14, 106, 84, 0.16);
}

.benefit-split__rings::after {
  inset: 24%;
}

.benefit-split__cluster {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  gap: 16px;
}

.benefit-split__tile {
  position: absolute;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(19, 35, 37, 0.08);
  box-shadow: var(--shadow-card);
}

.benefit-split__tile strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
}

.benefit-split__tile small {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  line-height: 1.45;
}

.benefit-split__tile--one {
  left: 12%;
  top: 18%;
}

.benefit-split__tile--two {
  right: 10%;
  top: 28%;
}

.benefit-split__tile--three {
  left: 24%;
  bottom: 16%;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.benefit-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.benefit-list__item strong {
  display: block;
  font-family: "Poppins", sans-serif;
  margin-bottom: 4px;
}

.benefit-list__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(220, 152, 20, 0.12);
  color: #d17600;
}

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

.step-card__number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(220, 152, 20, 0.12);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #d17600;
}

.step-card h3,
.testimonial-card h3,
.cart-summary h3,
.main-page__card h1,
.list-collections__card h3 {
  margin: 16px 0 10px;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.03em;
}

.comparison-table__wrap {
  overflow: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(19, 35, 37, 0.08);
  text-align: left;
}

.comparison-table th {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td strong {
  font-family: "Poppins", sans-serif;
}

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

.testimonial-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  color: #f1b95f;
}

.newsletter-banner__shell,
.collection-hero__card,
.empty-state {
  padding: 30px;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at top left, rgba(255, 230, 207, 0.55), transparent 26%),
    linear-gradient(135deg, rgba(226, 255, 247, 0.92), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(19, 35, 37, 0.08);
  box-shadow: var(--shadow-soft);
}

.newsletter-banner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
}

.newsletter-form,
.site-footer__newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.field {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(19, 35, 37, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-foreground);
}

.field:focus {
  outline: 2px solid rgba(220, 152, 20, 0.22);
  border-color: rgba(220, 152, 20, 0.38);
}

.site-footer {
  padding-bottom: 24px;
}

.site-footer__shell {
  padding: 30px;
  background: #171a1d;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(200px, 1fr));
  gap: 28px;
}

.site-footer__brand {
  display: grid;
  gap: 16px;
}

.site-footer__brand strong,
.site-footer__column-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.site-footer__logo-image {
  width: 168px;
  height: auto;
  margin-bottom: 14px;
}

.footer-links {
  grid-template-columns: 1fr;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.main-product__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-gallery__media {
  overflow: hidden;
  border-radius: var(--radius-large);
  border: 1px solid rgba(19, 35, 37, 0.08);
  background: rgba(255, 255, 255, 0.84);
  aspect-ratio: 1 / 1;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
}

.product-gallery__thumb {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(19, 35, 37, 0.08);
  background: rgba(255, 255, 255, 0.82);
  aspect-ratio: 1 / 1;
}

.product-info {
  padding: 30px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 35, 37, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 18px;
}

.product-info__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-info__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.product-info__description {
  color: var(--color-muted);
  line-height: 1.75;
}

.product-form {
  display: grid;
  gap: 16px;
}

.product-form__row {
  display: grid;
  gap: 10px;
}

.product-form__label {
  font-size: 0.92rem;
  font-weight: 700;
}

.product-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(19, 35, 37, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.quantity-selector input {
  width: 74px;
  border: none;
  background: transparent;
  text-align: center;
}

.product-note-list {
  display: grid;
  gap: 12px;
}

.product-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-muted);
}

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

.main-cart__layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 35, 37, 0.08);
  box-shadow: var(--shadow-card);
}

.cart-item__media {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f5f9f4, #e4f3ea);
}

.cart-item__copy {
  display: grid;
  gap: 10px;
}

.cart-item__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cart-summary__lines {
  display: grid;
  gap: 12px;
  margin: 16px 0 18px;
}

.cart-summary__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.empty-state {
  text-align: center;
}

.main-page__card {
  max-width: 900px;
}

.main-page__content {
  line-height: 1.8;
  color: var(--color-muted);
}

.main-page__content h2,
.main-page__content h3 {
  color: var(--color-foreground);
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.03em;
}

.main-page__content a {
  text-decoration: underline;
}

.list-collections__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.muted {
  color: var(--color-muted);
}

@media screen and (max-width: 1100px) {
  .site-shell::before,
  .site-shell::after,
  .site-main::before,
  .site-main::after {
    opacity: 0.18;
    width: min(22vw, 240px);
  }

  .hero-cleaning__grid,
  .benefit-split__grid,
  .main-product__grid,
  .main-cart__layout,
  .newsletter-banner__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .collection-grid,
  .list-collections__grid,
  .testimonial-grid,
  .category-grid__items,
  .logo-cloud__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip__grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 960px) {
  .site-header__inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .site-header__brand {
    order: 1;
    flex: 1 1 auto;
  }

  .site-header__logo-image {
    width: clamp(118px, 32vw, 148px);
  }

  .site-header__search {
    order: 3;
    flex: 1 0 100%;
    min-width: 0;
  }

  .site-header__search-input {
    width: 100%;
  }

  .site-shell::before,
  .site-shell::after,
  body::after,
  .site-main::before,
  .site-main::after {
    display: none;
  }

  .site-header__menu-toggle {
    order: 2;
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .site-header__nav {
    order: 4;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    padding: 18px;
    border-radius: 24px;
    background: rgba(33, 36, 39, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-menu-open .site-header__nav {
    display: flex;
  }

  .site-header__links,
  .site-header__search,
  .site-header__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__search {
    max-width: none;
    width: 100%;
    order: 3;
  }

  .site-header__actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 480px;
    margin-top: 0;
  }

  .hero-stage__visual {
    inset: 84px 20px 74px 20px;
    grid-template-columns: 1fr;
  }

  .hero-stage__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage__note {
    right: 18px;
    width: min(240px, 54%);
  }
}

@media screen and (max-width: 749px) {
  .page-width {
    width: min(calc(100% - 20px), var(--page-width));
  }

  .section-shell {
    padding: 28px 0;
  }

  .section-shell--spacious {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-cleaning__shell,
  .site-footer__shell,
  .newsletter-banner__shell,
  .product-info {
    padding: 22px;
  }

  .hero-cleaning__content .section-heading {
    max-width: none;
    margin-bottom: 20px;
    padding: 14px 14px 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(244, 249, 246, 0.58));
    border: 1px solid rgba(19, 35, 37, 0.08);
    backdrop-filter: blur(10px);
  }

  .hero-cleaning__shell .section-heading h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 11.6vw, 3.1rem);
    line-height: 0.96;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    color: #1d3438;
    text-shadow: 0 8px 20px rgba(255, 255, 255, 0.42);
  }

  .hero-cleaning__shell .section-heading p {
    font-size: 0.98rem;
    line-height: 1.58;
    color: rgba(29, 52, 56, 0.88);
    text-shadow: none;
  }

  .hero-cleaning__shell .pill {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(19, 35, 37, 0.08);
    color: #1d3438;
  }

  .featured-collection__head,
  .main-collection__head,
  .main-list-collections__head,
  .main-cart__head,
  .main-page__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid,
  .collection-grid,
  .list-collections__grid,
  .testimonial-grid,
  .category-grid__items,
  .logo-cloud__grid,
  .trust-strip__grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 480px;
    margin-top: 0;
  }

  .hero-stage::after {
    display: none;
  }

  .hero-stage__visual {
    position: relative;
    inset: auto;
    padding: 72px 14px 14px;
    grid-template-columns: 1fr;
  }

  .hero-stage__badge,
  .hero-stage__note {
    position: static;
    margin: 14px;
    width: auto;
  }

  .hero-stage__rail {
    grid-template-columns: 1fr;
  }

  .hero-stage__panel--main {
    min-height: 230px;
  }

  .hero-stage__panel--tile {
    min-height: 160px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .site-header__brand-tagline {
    display: none;
  }

  .site-header__logo-image {
    width: 128px;
  }

  .site-header__shell {
    padding: 14px 14px 16px;
  }

  .site-header__ribbon {
    padding: 10px 14px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .site-header__search {
    margin-top: 12px;
    padding: 8px;
    gap: 8px;
    border-radius: 16px;
    overflow: visible;
  }

  .site-header__search-input {
    height: 74px;
    padding: 0 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
  }

  .site-header__search-button {
    height: 42px;
    border-radius: 10px;
  }

  .site-header__search-button {
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .site-header__nav {
    left: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
