:root {
  --bg: #d8d8d8;
  --text: #141414;
  --muted: rgba(20, 20, 20, 0.55);
  --white: #fff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  --canvas-bg-1: radial-gradient(1200px 700px at 50% 35%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 60%);
  --canvas-bg-2: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0) 35%);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  min-height: 100dvh;
}

.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.hero__header {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 28px 44px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  gap: 4px;
  text-decoration: none;
  color: var(--text);
  order: 1;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  max-width: 44px;
  max-height: 44px;
  width: auto;
  height: auto;
}

.brand__mark {
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  font-size: 28px;
}

.brand__tm {
  font-size: 12px;
  line-height: 1;
  margin-top: 3px;
  opacity: 0.9;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 0;
  flex-wrap: wrap;
  row-gap: 8px;
  order: 3;
  flex: 1 1 420px;
}

.nav__link {
  white-space: nowrap;
}

.nav__link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: rgba(20, 20, 20, 0.45);
  transition: color 160ms ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: rgba(20, 20, 20, 0.85);
}

.nav__link.is-active {
  color: rgba(20, 20, 20, 0.92);
}

.actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  order: 2;
  flex: 0 0 auto;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.icon-btn--dark {
  background: rgba(25, 25, 25, 0.92);
  color: var(--white);
}

.icon-btn--dark:hover {
  background: rgba(25, 25, 25, 1);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #df1111;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translate(20%, -10%);
}

.cart-badge.is-hidden {
  display: none;
}

.hero__canvas {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 0 44px 44px;
  background-color: var(--bg);
  background-image: var(--canvas-bg-1), var(--canvas-bg-2);
}

.hero__bgtext {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: clamp(10px, 2.2vw, 24px);
  padding: 0 44px;
  z-index: 1;
  pointer-events: none;
}

.hero__bgtextLine {
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: clamp(72px, 10.6vw, 210px);
  line-height: 0.86;
  color: rgba(255, 255, 255, 0.42);
  user-select: none;
  white-space: nowrap;
  transform: translateY(-2%);
  filter: blur(0.1px);
}

.hero__script {
  position: absolute;
  z-index: 3;
  font-family: "Great Vibes", cursive;
  font-size: clamp(56px, 8vw, 160px);
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-6%) rotate(-2deg);
  user-select: none;
  pointer-events: none;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.models {
  position: relative;
  width: min(1180px, 100%);
  height: min(640px, 62vh);
  z-index: 2;
}

.model {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.model img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter:
    saturate(0.98)
    contrast(1.03)
    drop-shadow(0 26px 55px rgba(0, 0, 0, 0.18));
}

.model--left {
  left: 4%;
  bottom: 0;
  width: clamp(240px, 22vw, 360px);
  height: min(52vh, 520px);
}

.model--center {
  left: 50%;
  bottom: -2%;
  transform: translateX(-50%);
  width: clamp(320px, 34vw, 520px);
  height: min(60vh, 640px);
}

.model--right {
  right: 4%;
  bottom: 0;
  width: clamp(240px, 22vw, 360px);
  height: min(52vh, 520px);
}

.model--right img {
  object-fit: contain;
  object-position: center;
}

.video-tile {
  position: absolute;
  left: 44px;
  bottom: 44px;
  z-index: 4;
  width: 190px;
  height: 116px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.video-tile:hover {
  transform: translateY(-2px);
}

.video-tile__thumb {
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05)),
    url("https://images.unsplash.com/photo-1520975958225-13d01d6d66ab?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
  filter: contrast(1.08) saturate(0.95);
}

.video-tile__play {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.video-tile__play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.corner-cta {
  position: absolute;
  right: 44px;
  bottom: 44px;
  z-index: 4;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  border: none;
  background: transparent;
  color: rgba(20, 20, 20, 0.75);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 160ms ease, color 160ms ease;
}

.corner-cta svg {
  width: 40px;
  height: 40px;
}

.corner-cta:hover {
  transform: translateY(-2px);
  color: rgba(20, 20, 20, 1);
}

@media (max-width: 980px) {
  .nav {
    gap: 18px;
    justify-self: center;
    overflow: auto;
    flex-wrap: wrap;
    row-gap: 8px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero__canvas {
    padding: 0 18px 22px;
  }

  .hero__bgtext {
    padding: 0 18px;
  }

  .video-tile {
    left: 18px;
    bottom: 18px;
    width: 170px;
    height: 106px;
  }

  .corner-cta {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 1160px) {
  .nav {
    gap: 22px;
    flex-wrap: wrap;
    row-gap: 8px;
    justify-content: center;
  }

  .nav__link {
    letter-spacing: 0.16em;
    font-size: 11px;
  }
}


@media (max-width: 640px) {
  .brand {
    justify-self: center;
  }

  .nav {
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }

  .actions {
    justify-self: center;
  }

  .nav__link {
    font-size: 11px;
  }

  .models {
    height: 58vh;
  }

  .model--left,
  .model--right {
    opacity: 0.85;
  }

  .model--left {
    left: -8%;
  }

  .model--right {
    right: -8%;
  }
}

/* Reviews section */
.reviews {
  background: transparent;
  padding: 48px 18px 64px;
}

.reviews__wrap {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 38px;
  padding: clamp(26px, 3.4vw, 44px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.08);
}

.reviews__top {
  text-align: center;
  padding: 18px 8px 22px;
}

.reviews__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.reviews__title span {
  font-weight: 700;
}

.trust {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: rgba(20, 20, 20, 0.72);
  font-size: 14px;
}

.trust__rating {
  color: rgba(20, 20, 20, 0.72);
}

.trust__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(20, 20, 20, 0.9);
}

.trust__star {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #00b67a;
}

.trust__star svg {
  width: 22px;
  height: 22px;
}

.trust__meta {
  color: rgba(20, 20, 20, 0.6);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(18px, 2.6vw, 40px);
  align-items: end;
  padding-top: 14px;
}

.reviews__aside {
  padding: 24px 8px 10px 12px;
}

.reviews__quote {
  font-size: 112px;
  line-height: 0.8;
  color: rgba(20, 20, 20, 0.22);
  font-weight: 700;
  margin-bottom: 10px;
}

.reviews__asideTitle {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.reviews__asideTitle span {
  font-weight: 800;
}

.reviews__controls {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 28px;
}

.reviews__btn {
  border: none;
  background: transparent;
  color: rgba(20, 20, 20, 0.75);
  cursor: pointer;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.reviews__btn:hover {
  background: rgba(20, 20, 20, 0.06);
  color: rgba(20, 20, 20, 0.95);
  transform: translateY(-1px);
}

.reviews__line {
  width: 120px;
  height: 2px;
  background: rgba(20, 20, 20, 0.18);
  border-radius: 999px;
}

.reviews__visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(20, 20, 20, 0.75);
  font-weight: 500;
  margin-top: 6px;
}

.reviews__visit span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reviews__slider {
  min-width: 0;
}

.reviews__viewport {
  overflow: hidden;
  padding: 8px 4px 18px;
}

.reviews__track {
  display: flex;
  gap: 22px;
  will-change: transform;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding: 8px 8px 18px;
  scrollbar-width: none;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.reviewCard {
  scroll-snap-align: start;
  flex: 0 0 min(360px, 78vw);
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.reviewCard__text {
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.reviewCard__stars {
  margin-top: 16px;
  color: #00b67a;
  letter-spacing: 2px;
  font-size: 14px;
}

.reviewCard__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.reviewCard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.04);
}

.reviewCard__name {
  font-weight: 700;
  color: rgba(20, 20, 20, 0.9);
}

.reviewCard__time {
  font-size: 12px;
  color: rgba(20, 20, 20, 0.55);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .reviews__aside {
    padding: 16px 6px 0 6px;
  }

  .reviews__line {
    width: 90px;
  }
}

/* Magazine grid section */
.mag {
  padding: 34px 18px 70px;
}

.mag__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.magGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  align-items: stretch;
}

.magCard {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateZ(0);
  transition: transform 160ms ease, box-shadow 160ms ease;
  min-height: 220px;
}

.magCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

.magCard__kicker {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}

.magCard__title {
  position: absolute;
  top: 52px;
  left: 18px;
  right: 18px;
  margin: 0;
  font-weight: 700;
  font-size: clamp(18px, 2.1vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.magCard__price {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(20, 20, 20, 0.75);
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.magCard__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.magCard--wide {
  grid-column: 1 / span 7;
  grid-row: 1 / span 1;
  min-height: 260px;
}

.magCard--tall {
  grid-row: 1 / span 2;
  min-height: 540px;
}

.magCard--tall.is-arch {
  grid-column: 8 / span 3;
}

.magCard--tall.is-travel {
  grid-column: 11 / span 2;
}

.magCard--small {
  grid-row: 2 / span 1;
  min-height: 260px;
}

.magCard--small.is-interior {
  grid-column: 1 / span 4;
}

.magCard--small.is-sugar {
  grid-column: 5 / span 3;
}

.magCard--wideBottom {
  grid-column: 8 / span 5;
  grid-row: 3 / span 1;
  min-height: 260px;
}

.magCard.is-food .magCard__media {
  background-image:
    radial-gradient(700px 320px at 70% 40%, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.32)),
    linear-gradient(135deg, #8fb9b3, #d6e5e3);
}

.magCard.is-food.magCard--wide .magCard__media {
  background-image:
    radial-gradient(240px 240px at 78% 46%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 65%),
    linear-gradient(135deg, #8fb9b3, #d6e5e3),
    url("https://images.unsplash.com/photo-1512568400610-62da28bc8a13?auto=format&fit=crop&w=1200&q=80");
}

.magCard.is-arch .magCard__media {
  background-image:
    radial-gradient(900px 520px at 60% 40%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.46)),
    linear-gradient(135deg, #182737, #0e1a27),
    url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?auto=format&fit=crop&w=900&q=80");
}

.magCard.is-travel .magCard__media {
  background-image:
    radial-gradient(900px 520px at 60% 40%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.35)),
    linear-gradient(135deg, #caa67f, #e7d1b6),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

.magCard.is-interior .magCard__media {
  background-image:
    radial-gradient(900px 520px at 60% 40%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.20)),
    linear-gradient(135deg, #7bb6d2, #d9edf6),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=900&q=80");
}

.magCard.is-sugar .magCard__media {
  background-image:
    radial-gradient(900px 520px at 60% 40%, rgba(255, 255, 255, 0.10), rgba(0, 0, 0, 0.18)),
    linear-gradient(135deg, #f0a7ac, #f5d5d8),
    url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?auto=format&fit=crop&w=900&q=80");
}

.magCard.is-photo .magCard__media {
  background-image:
    radial-gradient(900px 520px at 40% 35%, rgba(255, 255, 255, 0.10), rgba(0, 0, 0, 0.18)),
    linear-gradient(135deg, #6faee0, #dcecff),
    url("https://images.unsplash.com/photo-1527030280862-64139fba04ca?auto=format&fit=crop&w=1200&q=80");
}

.magCard.is-photo .magCard__title {
  max-width: 420px;
}

.magQV {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.magQV.is-open {
  display: block;
}

.magQV__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(4px);
}

.magQV__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100vw - 28px));
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.magQV__close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.magQV__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
}

.magQV__media {
  background: #f4f4f4;
  display: grid;
  place-items: center;
  padding: 18px;
}

.magQV__img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.magQV__info {
  padding: 22px 22px 18px;
}

.magQV__kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: rgba(18, 20, 26, 0.55);
}

.magQV__title {
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(18, 20, 26, 0.9);
}

.magQV__desc {
  margin: 10px 0 0;
  color: rgba(18, 20, 26, 0.55);
  line-height: 1.7;
}

.magQV__priceRow {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.magQV__price {
  font-size: 22px;
  font-weight: 800;
  color: rgba(18, 20, 26, 0.88);
}

.magQV__pill {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(236, 90, 132, 0.10);
  color: rgba(236, 90, 132, 0.9);
  font-weight: 700;
}

.magQV__controls {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.magQV__qty {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
}

.magQV__qtyBtn {
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 18px;
}

.magQV__qtyInput {
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  padding: 0 12px;
  font-size: 16px;
  text-align: center;
}

.magQV__add {
  height: 46px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: rgba(25, 25, 25, 0.92);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.magQV__note {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(18, 20, 26, 0.58);
  min-height: 18px;
}

.magQV__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.magQV__nav--prev {
  left: 10px;
}

.magQV__nav--next {
  right: 10px;
}

@media (max-width: 900px) {
  .magQV__grid {
    grid-template-columns: 1fr;
  }

  .magQV__media {
    padding: 14px;
  }
}

@media (max-width: 980px) {
  .magGrid {
    grid-template-columns: repeat(6, 1fr);
  }

  .magCard--wide {
    grid-column: 1 / -1;
  }

  .magCard--tall.is-arch {
    grid-column: 1 / span 3;
    grid-row: auto;
    min-height: 420px;
  }

  .magCard--tall.is-travel {
    grid-column: 4 / span 3;
    grid-row: auto;
    min-height: 420px;
  }

  .magCard--small.is-interior {
    grid-column: 1 / span 3;
  }

  .magCard--small.is-sugar {
    grid-column: 4 / span 3;
  }

  .magCard--wideBottom {
    grid-column: 1 / -1;
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .magGrid {
    grid-template-columns: 1fr;
  }

  .magCard,
  .magCard--tall {
    grid-column: 1 / -1 !important;
    min-height: 240px;
  }
}

/* Shop by Collection */
.collections {
  background: rgba(255, 255, 255, 0.75);
  padding: 54px 18px 64px;
}

.collections__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.collections__title {
  margin: 0 0 30px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(20, 20, 20, 0.86);
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
  align-items: start;
  justify-items: center;
}

.collectionCard {
  display: block;
  text-decoration: none;
  color: inherit;
}

.collectionCard__img {
  width: clamp(200px, 22vw, 238px);
  border: 8px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.collectionCard__img img {
  width: 100%;
  height: clamp(200px, 22vw, 238px);
  object-fit: cover;
  display: block;
}

.collectionCard__meta {
  text-align: center;
  padding: 16px 10px 0;
}

.collectionCard__name {
  font-weight: 700;
  color: rgba(20, 20, 20, 0.86);
}

.collectionCard__count {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(20, 20, 20, 0.58);
}

.collectionCard:hover .collectionCard__img {
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.12);
}

@media (max-width: 980px) {
  .collectionCard__img img {
    height: 196px;
  }
}

@media (max-width: 820px) {
  .collections__grid {
    grid-template-columns: 1fr;
  }

  .collectionCard__img img {
    height: 224px;
  }
}

/* Trending products */
.trending {
  background: rgba(255, 255, 255, 0.82);
  padding: 56px 18px 64px;
}

.trending__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.trending__title {
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(20, 20, 20, 0.86);
}

.trending__tabs {
  margin: 18px auto 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.trendTab {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: rgba(20, 20, 20, 0.62);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

.trendTab.is-active {
  color: rgba(20, 20, 20, 0.9);
  background: rgba(236, 90, 132, 0.12);
}

.trendGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
}

.trendCard {
  text-align: center;
  color: rgba(20, 20, 20, 0.82);
}

.trendCard[hidden] {
  display: none !important;
}

.trendCard__img {
  position: relative;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 14px;
}

.trendCard__img img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 10px;
}

.trendCard.is-featured .trendCard__img img {
  object-fit: cover;
}

.trendCard__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
}

.trendBadge {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trendBadge.is-blue {
  background: #4aa3ff;
}

.trendBadge.is-pink {
  background: #ec5a84;
}

.trendCard__actions {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.trendAction {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  color: rgba(20, 20, 20, 0.72);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  font-size: 14px;
}

.trendCard__img:hover .trendCard__actions {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.trendCard__name {
  margin-top: 16px;
  font-weight: 700;
}

.trendCard__sub {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(20, 20, 20, 0.55);
}

.trendCard__price {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(20, 20, 20, 0.72);
}

.trending__more {
  display: block;
  width: fit-content;
  margin: 26px auto 0;
  color: rgba(236, 90, 132, 0.9);
  text-decoration: none;
  font-weight: 600;
}

.trending__more:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .trendGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .trendGrid {
    grid-template-columns: 1fr;
  }
}

/* Quick search tiles */
.searchTiles {
  padding: 34px 18px 56px;
  background: radial-gradient(1200px 600px at 50% 10%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 60%);
}

.searchTiles__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.searchTiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  justify-items: center;
}

.searchTile {
  width: clamp(120px, 14vw, 175px);
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.9);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.searchTile:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.16);
}

.searchTile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 400px at 30% 20%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 60%);
  opacity: 0.9;
  pointer-events: none;
}

.searchTile__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  z-index: 1;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.18));
}

.searchTile__icon svg {
  width: 40px;
  height: 40px;
}

.searchTile__label {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  z-index: 1;
  opacity: 0.85;
}

.searchTile.is-cyan {
  background: linear-gradient(135deg, #37d1ff, #6a5cff);
}

.searchTile.is-purple {
  background: linear-gradient(135deg, #ff74c5, #6a5cff);
}

.searchTile.is-white {
  background: #ffffff;
  color: rgba(20, 20, 20, 0.65);
}

.searchTile.is-white::before {
  background: radial-gradient(400px 400px at 30% 20%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0) 60%);
}

.searchTile.is-mint {
  background: linear-gradient(135deg, #40f1d2, #6a5cff);
}

@media (max-width: 980px) {
  .searchTiles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .searchTiles__grid {
    grid-template-columns: 1fr;
  }
}

/* Social icon grid (neumorphic/glass) */
.social {
  padding: 26px 18px 70px;
  background: #ececec;
}

.social__wrap {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  padding: 26px 0;
}

.social__bg {
  position: absolute;
  inset: -40px -20px;
  background:
    radial-gradient(520px 520px at 22% 35%, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0) 60%),
    radial-gradient(520px 520px at 78% 80%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0) 60%);
  opacity: 0.75;
  pointer-events: none;
}

.social__grid {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 6px 10px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.social__grid::-webkit-scrollbar {
  display: none;
}

.socialIcon {
  --glow: rgba(86, 132, 255, 0.35);
  width: clamp(66px, 8.2vw, 92px);
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  display: grid;
  place-items: center;
  text-decoration: none;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.socialIcon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120px 120px at 35% 30%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 55%),
    radial-gradient(160px 160px at 70% 80%, var(--glow), rgba(255, 255, 255, 0) 60%);
  opacity: 0.9;
  pointer-events: none;
}

.socialIcon:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.socialIcon__img {
  width: 44%;
  height: 44%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
  opacity: 0.95;
}

.socialIcon.is-fb {
  --glow: rgba(24, 119, 242, 0.45);
}
.socialIcon.is-yt {
  --glow: rgba(255, 0, 0, 0.45);
}
.socialIcon.is-ig {
  --glow: rgba(193, 53, 132, 0.40);
}
.socialIcon.is-x {
  --glow: rgba(29, 161, 242, 0.40);
}
.socialIcon.is-wa {
  --glow: rgba(37, 211, 102, 0.40);
}
.socialIcon.is-tt {
  --glow: rgba(255, 0, 80, 0.30);
}
.socialIcon.is-sc {
  --glow: rgba(255, 252, 0, 0.35);
}
.socialIcon.is-in {
  --glow: rgba(10, 102, 194, 0.40);
}
.socialIcon.is-sk {
  --glow: rgba(0, 175, 240, 0.35);
}
.socialIcon.is-rd {
  --glow: rgba(255, 69, 0, 0.35);
}
.socialIcon.is-tg {
  --glow: rgba(34, 158, 217, 0.35);
}
.socialIcon.is-be {
  --glow: rgba(23, 105, 255, 0.35);
}

/* FAQ */
.faq {
  background: #f6f6f6;
  padding: 70px 18px 90px;
}

.faq__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.faq__title {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 66px);
  letter-spacing: -0.03em;
  font-weight: 800;
  color: rgba(18, 20, 26, 0.92);
}

.faq__list {
  margin-top: 34px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.faqItem {
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.faqItem__q {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 26px 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  color: rgba(18, 20, 26, 0.9);
  text-align: left;
}

.faqItem__q:focus-visible {
  outline: 3px solid rgba(58, 108, 255, 0.35);
  outline-offset: 4px;
  border-radius: 10px;
}

.faqItem__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #2f57ff;
  position: relative;
}

.faqItem__icon::before,
.faqItem__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 999px;
}

.faqItem__icon::before {
  width: 22px;
  height: 3px;
}

.faqItem__icon::after {
  width: 3px;
  height: 22px;
}

.faqItem.is-open .faqItem__icon::after {
  height: 0;
}

.faqItem__a {
  padding: 0 6px 24px;
  max-width: 72ch;
  color: rgba(18, 20, 26, 0.62);
  font-size: 18px;
  line-height: 1.75;
}

.faqItem__a p {
  margin: 0;
}

@media (max-width: 720px) {
  .faqItem__q {
    font-size: 18px;
    padding: 20px 6px;
  }

  .faqItem__a {
    font-size: 16px;
  }
}

/* Coupon modal (25% off) */
.coupon {
  padding: 0 0 60px;
}

.cp {
  position: relative;
}

.cp__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cp__modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(0.98);
  width: min(980px, calc(100vw - 28px));
  border-radius: 22px;
  background: linear-gradient(180deg, #f4c6d9, #eeb0c7);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
  padding: clamp(22px, 3.2vw, 44px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.cp.is-open .cp__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cp.is-open .cp__modal {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cp__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.0);
  color: rgba(255, 255, 255, 0.9);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.cp__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cp__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.cp__timeBlock {
  text-align: center;
}

.cp__timeNum {
  width: 130px;
  height: 112px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0 56%, #e8e8e8 56% 100%);
  display: grid;
  place-items: center;
  font-size: 58px;
  font-weight: 500;
  color: rgba(20, 20, 20, 0.86);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.cp__timeLabel {
  margin-top: 10px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cp__timeSep {
  font-size: 60px;
  color: rgba(20, 20, 20, 0.72);
  margin-top: -24px;
}

.cp__title {
  margin: 34px 0 0;
  text-align: center;
  font-size: clamp(34px, 5vw, 66px);
  letter-spacing: 0.02em;
  font-weight: 700;
  color: rgba(20, 20, 20, 0.75);
}

.cp__title span {
  color: #b63b3b;
}

.cp__desc {
  margin: 10px 0 0;
  text-align: center;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.86);
}

.cp__form {
  margin: 26px auto 0;
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  align-items: center;
  justify-content: center;
}

.cp__input {
  height: 56px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 16px;
  font-size: 20px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
}

.cp__btn {
  height: 56px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: #e1b33a;
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.cp__btn:hover {
  filter: brightness(1.03);
}

.cp__fine {
  margin-top: 18px;
  text-align: center;
  font-size: 20px;
  color: rgba(20, 20, 20, 0.55);
}

.cp__modal::before,
.cp__modal::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.75;
}

.cp__modal::before {
  left: -50px;
  top: 70px;
  background: radial-gradient(circle at 30% 30%, #bde7bf, #8bd08f);
}

.cp__modal::after {
  right: -60px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, #ffe29c, #ffbd5c);
}

@media (max-width: 860px) {
  .cp__timeNum {
    width: 112px;
    height: 98px;
    font-size: 48px;
  }

  .cp__timeLabel {
    font-size: 18px;
  }

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

/* About us */
.about {
  padding: 86px 18px 96px;
  background: #fbfbfb;
}

.about__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.about__left {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
  align-items: start;
}

.aboutCard {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.aboutCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aboutCard--img1 {
  grid-column: 1 / span 1;
  grid-row: 1 / span 2;
  aspect-ratio: 1 / 1.12;
  background: #e8ddff;
}

.aboutCard--stat {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
  padding: 20px 20px 18px;
}

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

.aboutStat__num {
  font-size: 26px;
  font-weight: 800;
  color: rgba(18, 20, 26, 0.92);
}

.aboutStat__trend {
  color: #29b36b;
  font-weight: 900;
}

.aboutStat__desc {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(18, 20, 26, 0.55);
}

.aboutStat__line {
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  margin: 14px 0 14px;
}

.aboutStat__avatars {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.aboutStat__avatars .av {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cbb7ff, #f7c7dd);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.aboutCard--img2 {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
  aspect-ratio: 1 / 1.05;
  background: #e8ddff;
}

.aboutCard--rating {
  position: absolute;
  left: 28px;
  bottom: -18px;
  width: 240px;
  padding: 18px 18px 16px;
}

.aboutRating__title {
  font-weight: 800;
  color: rgba(18, 20, 26, 0.82);
}

.aboutRating__emojis {
  margin-top: 10px;
  letter-spacing: 0.18em;
  opacity: 0.9;
}

.about__kicker {
  letter-spacing: 0.45em;
  font-weight: 700;
  color: rgba(124, 96, 202, 0.9);
}

.about__title {
  margin: 10px 0 0;
  font-size: clamp(38px, 5.4vw, 72px);
  letter-spacing: -0.02em;
  font-weight: 900;
  color: rgba(18, 20, 26, 0.9);
}

.about__text {
  margin: 18px 0 0;
  color: rgba(18, 20, 26, 0.55);
  font-size: 14px;
  line-height: 1.9;
  max-width: 56ch;
}

.about__btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  border-radius: 10px;
  background: #9a7ad8;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 18px 55px rgba(154, 122, 216, 0.32);
}

.about__btn:hover {
  filter: brightness(1.03);
}

@media (max-width: 980px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .aboutCard--rating {
    position: static;
    width: auto;
  }
}

/* Contact us */
.contact {
  padding: 86px 18px 96px;
  background: radial-gradient(1100px 700px at 100% 35%, rgba(255, 223, 190, 0.55), rgba(255, 255, 255, 0) 60%),
    linear-gradient(90deg, #eef5ff, #ffffff 55%);
}

.contact__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.contact__title {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  font-weight: 900;
  color: rgba(18, 20, 26, 0.92);
}

.contact__desc {
  margin: 14px 0 0;
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(18, 20, 26, 0.55);
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  gap: 22px;
}

.contactItem {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
}

.contactItem__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #f39a4d;
}

.contactItem__icon svg {
  width: 22px;
  height: 22px;
}

.contactItem__text {
  color: rgba(18, 20, 26, 0.76);
  font-size: 18px;
  line-height: 1.45;
}

.contactForm {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contactField {
  display: block;
  margin: 0 0 16px;
}

.contactInput {
  width: 100%;
  height: 56px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.96);
  padding: 0 18px;
  font-size: 16px;
  outline: none;
}

.contactInput::placeholder {
  color: rgba(18, 20, 26, 0.45);
}

.contactInput:focus {
  border-color: rgba(154, 122, 216, 0.55);
  box-shadow: 0 0 0 4px rgba(154, 122, 216, 0.18);
}

.contactInput--area {
  height: 140px;
  padding: 14px 18px;
  resize: none;
}

.contactBtn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(90deg, #7c4dff, #ff6a00);
  box-shadow: 0 22px 60px rgba(124, 77, 255, 0.22);
}

.contactBtn:hover {
  filter: brightness(1.03);
}

@media (max-width: 980px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* Glossy infographic card */
.glossy {
  padding: 40px 18px 90px;
  background: #ffffff;
}

.glossy__wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.glossyCard {
  width: min(520px, 100%);
  border-radius: 30px;
  background: #cfe6f4;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
}

.glossyCard__canvas {
  position: relative;
  padding: 28px 24px 10px;
  min-height: 640px;
}

.glossyCallout {
  position: absolute;
  width: 190px;
  color: rgba(18, 20, 26, 0.78);
  font-size: 12px;
  line-height: 1.35;
}

.glossyCallout__label {
  display: inline-block;
  background: rgba(243, 174, 198, 0.8);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 6px 10px;
  border-radius: 2px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.glossyCallout__text {
  margin-top: 10px;
  max-width: 22ch;
}

.glossyCallout--tl {
  left: 22px;
  top: 70px;
}

.glossyCallout--tr {
  right: 22px;
  top: 84px;
  text-align: right;
}

.glossyCallout--bl {
  left: 22px;
  bottom: 180px;
}

.glossyCallout--br {
  right: 22px;
  bottom: 185px;
  text-align: right;
}

.glossySwoosh {
  position: absolute;
  left: 38px;
  top: 250px;
  width: 170px;
  height: 90px;
  border-radius: 999px;
  border: 16px solid rgba(255, 255, 255, 0.78);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(8deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.10));
}

.glossyProduct {
  position: absolute;
  left: 50%;
  top: 280px;
  transform: translateX(-50%) rotate(16deg);
  width: 260px;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
}

.glossyProduct img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.glossyArrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

.glossyArrows path {
  fill: none;
  stroke: rgba(18, 20, 26, 0.7);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  marker-end: none;
}

.glossyCard__footer {
  padding: 16px 18px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.glossyBrand__title {
  font-size: 30px;
  font-weight: 800;
  color: rgba(18, 20, 26, 0.85);
}

.glossyBrand__title span {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.glossyActions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.glossyVisit {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(18, 20, 26, 0.85);
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.glossyVisit span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.glossyRefresh {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(18, 20, 26, 0.85);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.glossyRefresh svg {
  width: 24px;
  height: 24px;
}

.glossyRefresh:hover {
  filter: brightness(1.03);
}

/* Team section */
.team {
  padding: 70px 18px 86px;
  background: #ffffff;
}

.team__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.team__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.team__title {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  color: rgba(18, 20, 26, 0.9);
}

.team__desc {
  margin: 12px auto 0;
  color: rgba(18, 20, 26, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: end;
}

.teamCard {
  position: relative;
  border-radius: 18px;
  padding: 40px 16px 18px;
  text-align: center;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.teamCard__avatar {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: -34px;
  transform: translateX(-50%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 6px solid rgba(255, 255, 255, 0.92);
}

.teamCard__name {
  margin-top: 18px;
  font-weight: 800;
  color: rgba(18, 20, 26, 0.86);
}

.teamCard__role {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(18, 20, 26, 0.55);
}

.teamCard.is-pink {
  background: rgba(236, 171, 230, 0.22);
}

.teamCard.is-blue {
  background: rgba(169, 205, 255, 0.22);
}

.teamCard.is-mint {
  background: rgba(166, 241, 215, 0.22);
}

.teamCard.is-peach {
  background: rgba(255, 209, 169, 0.22);
}

.teamCard.is-slate {
  background: rgba(195, 212, 240, 0.22);
}

@media (max-width: 1100px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .team__grid {
    grid-template-columns: 1fr;
  }
}

/* Clients */
.clients {
  padding: 80px 18px 96px;
  background: #f6f9fc;
}

.clients__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.clients__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.clients__title {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(18, 20, 26, 0.86);
}

.clients__desc {
  margin: 12px 0 0;
  color: rgba(18, 20, 26, 0.55);
  line-height: 1.7;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.clientLogo {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  height: 110px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.clientLogo__mark {
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.03em;
  color: rgba(18, 20, 26, 0.86);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.clientLogo__mark span {
  font-weight: 700;
  opacity: 0.75;
}

.clientLogo__mark--purple {
  color: #6e48c8;
}

.clientLogo__mark--magenta {
  color: #a63a7e;
}

.clientLogo__mark--green {
  color: #3aa86a;
}

.clientLogo__badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a00, #ff2d6c);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}

.clientLogo__muted {
  font-weight: 800;
  opacity: 0.55;
  letter-spacing: 0.06em;
  font-size: 22px;
}

.clientLogo__fox {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 18px solid #f05a2a;
  transform: rotate(45deg);
  margin-right: 2px;
}

.clientLogo__circle {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 6px solid rgba(18, 20, 26, 0.78);
  border-left-color: #f0b429;
  box-sizing: border-box;
}

@media (max-width: 820px) {
  .clients__grid {
    grid-template-columns: 1fr;
  }
}

/* Match section backgrounds to hero canvas */
.collections,
.trending,
.searchTiles,
.social,
.about,
.contact,
.glossy,
.team,
.clients,
.testimonial {
  background-color: var(--bg);
  background-image: var(--canvas-bg-1), var(--canvas-bg-2);
}

/* Testimonial */
.testimonial {
  padding: 80px 18px 96px;
  background: #ffffff;
}

.testimonial__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.testimonial__head {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 920px;
}

.testimonial__kicker {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(18, 20, 26, 0.48);
  margin-bottom: 10px;
}

.testimonial__title {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800;
  color: rgba(18, 20, 26, 0.88);
}

.testimonial__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.tCard {
  background: #f6f7fb;
  border-radius: 16px;
  padding: 18px 18px 22px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.tCard.is-featured {
  background: #ffffff;
  border: 2px solid rgba(116, 98, 210, 0.45);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.08);
}

.tCard__avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  margin: 6px auto 0;
  display: block;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.tCard__name {
  margin-top: 14px;
  font-weight: 800;
  color: rgba(18, 20, 26, 0.86);
}

.tCard__role {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(116, 98, 210, 0.75);
}

.tCard__stars {
  margin-top: 14px;
  color: #f4b400;
  letter-spacing: 2px;
  font-size: 14px;
}

.tCard__text {
  margin: 14px auto 0;
  color: rgba(18, 20, 26, 0.55);
  font-size: 13px;
  line-height: 1.7;
  max-width: 28ch;
}

.tCard__link {
  margin-top: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  color: rgba(18, 20, 26, 0.9);
}

.tCard__link span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1100px) {
  .testimonial__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial__grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background-color: var(--bg);
  background-image: var(--canvas-bg-1), var(--canvas-bg-2);
  padding: 56px 18px 24px;
}

.footer__wrap {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(220, 235, 255, 0.55);
  border-radius: 16px;
  font-size: 1.3em;
  padding: 36px 36px 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  align-items: start;
}

.footerBrand__name {
  font-weight: 900;
  font-size: 22px;
  color: rgba(18, 20, 26, 0.9);
}

.footerBrand__meta {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(18, 20, 26, 0.55);
}

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

.footerCol__title {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(18, 20, 26, 0.7);
  margin-bottom: 10px;
}

.footerLink {
  display: block;
  text-decoration: none;
  color: rgba(18, 20, 26, 0.55);
  font-size: 12px;
  line-height: 1.85;
}

.footerLink:hover {
  color: rgba(18, 20, 26, 0.85);
}

.footerCol__hint {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(18, 20, 26, 0.55);
  margin-bottom: 12px;
}

.footerSub {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
}

.footerSub__input {
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.9);
  padding: 0 12px;
  font-size: 12px;
  outline: none;
}

.footerSub__btn {
  height: 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: rgba(58, 108, 255, 0.9);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.footerSub__btn:hover {
  filter: brightness(1.03);
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(18, 20, 26, 0.52);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footerSocial {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(18, 20, 26, 0.75);
  font-weight: 800;
  font-size: 12px;
}

.footerSocial:hover {
  filter: brightness(1.03);
}

@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .footerCols {
    grid-template-columns: 1fr;
  }

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