:root {
  --pink: #f8a9c6;
  --pink-soft: #fff0f5;
  --rose: #d92b73;
  --mint: #b9efdf;
  --sky: #bbe3ff;
  --lemon: #ffe78f;
  --ink: #171416;
  --muted: #6d6367;
  --line: #eadde3;
  --paper: #fffafd;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(63, 28, 43, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  min-width: 320px;
}

body.cart-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

:focus-visible {
  outline: 3px solid rgba(246, 62, 131, 0.42);
  outline-offset: 3px;
}

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

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

.promo {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 38px;
  padding: 6px 16px;
  color: var(--white);
  background: linear-gradient(90deg, #111111, #d92b73, #111111);
  box-shadow: 0 8px 24px rgba(63, 28, 43, 0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.promo p {
  margin: 0;
  text-align: center;
}

.promo__arrow,
.icon-button,
.cart-button,
.filter {
  border: 0;
  cursor: pointer;
}

.promo__arrow {
  width: 24px;
  height: 24px;
  color: inherit;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.promo__arrow:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 38px;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 253, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(160px, 220px) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px 14px;
}

.brand {
  color: var(--ink);
  font-size: clamp(25px, 3.4vw, 38px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.brand--footer {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 34px;
}

.search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.search input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(246, 62, 131, 0.12);
}

.quick-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.cart-button:hover,
.quick-add:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(88, 36, 58, 0.13);
}

.cart-button span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--pink-soft);
  font-size: 12px;
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 52px);
  border-top: 1px solid rgba(234, 216, 223, 0.65);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.category-nav a {
  position: relative;
}

.category-nav a::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 3px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.category-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 24px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 116px));
  overflow: hidden;
  background: #fbf7f9;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 253, 0.98) 0%, rgba(255, 250, 253, 0.82) 40%, rgba(255, 250, 253, 0.26) 74%),
    linear-gradient(0deg, rgba(255, 250, 253, 0.72) 0%, rgba(255, 250, 253, 0) 28%);
  content: "";
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(560px, calc(100% - 40px));
  min-height: min(680px, calc(100vh - 116px));
  margin-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  padding: 64px 0 84px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 9vw, 124px);
  font-weight: 1000;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero__copy {
  max-width: 500px;
  margin: 24px 0 0;
  color: #44393e;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

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

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__proof span {
  border: 1px solid rgba(217, 43, 115, 0.2);
  border-radius: 999px;
  padding: 9px 12px;
  color: #4b3f44;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(88, 36, 58, 0.13);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.strip span {
  min-height: 58px;
  border-right: 1px solid var(--line);
  padding: 18px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.strip span:last-child {
  border-right: 0;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 24px;
}

.section--tight {
  padding-bottom: 34px;
}

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

.section-heading h2,
.feature-band h2,
.journal h2,
.newsletter h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.text-link {
  border-bottom: 2px solid currentColor;
  color: var(--rose);
  font-weight: 950;
  text-transform: uppercase;
}

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

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--pink-soft);
  box-shadow: 0 14px 30px rgba(63, 28, 43, 0.08);
  transform: translateZ(0);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: 20% 50%;
  transition: transform 220ms ease;
}

.category-card--blue img {
  object-position: 72% 48%;
}

.category-card--green img {
  object-position: 50% 80%;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 20, 22, 0.56), transparent 62%);
  content: "";
}

.category-card::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 0;
  content: "";
  pointer-events: none;
}

.category-card span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  color: var(--white);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.category-card:hover img {
  transform: scale(1.04);
}

.section-heading--shop {
  align-items: center;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.filter:hover {
  border-color: rgba(246, 62, 131, 0.5);
  color: var(--ink);
  transform: translateY(-1px);
}

.filter.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.product-status {
  min-height: 22px;
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(63, 28, 43, 0.07);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(217, 43, 115, 0.28);
  box-shadow: 0 20px 38px rgba(63, 28, 43, 0.12);
  transform: translateY(-3px);
}

.product-card__media {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  background: var(--product-bg, var(--pink-soft));
}

.product-card__media img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  object-position: var(--product-pos, center);
  mix-blend-mode: normal;
  transition: transform 220ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lemon);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.product-card__body {
  padding: 16px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 3px;
  min-height: 18px;
  color: var(--rose);
  font-size: 13px;
  letter-spacing: 0;
}

.stars span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.product-card h3 {
  min-height: 48px;
  margin: 8px 0 10px;
  font-size: 17px;
  line-height: 1.2;
}

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

.price {
  color: var(--rose);
  font-size: 20px;
  font-weight: 1000;
}

.quick-add {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 220px;
  border: 1px dashed rgba(246, 62, 131, 0.35);
  border-radius: 0;
  padding: 34px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
  text-align: center;
}

.empty-state strong {
  color: var(--ink);
  font-size: 22px;
}

.feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 34px 0;
  padding: 72px max(24px, calc((100vw - 1240px) / 2 + 24px));
  border-block: 1px solid rgba(217, 43, 115, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 240, 245, 0.98), rgba(255, 250, 253, 0.76)),
    var(--pink-soft);
}

.feature-band p {
  max-width: 660px;
  margin: 16px 0 0;
  color: #44393e;
  font-size: 18px;
  line-height: 1.5;
}

.sale-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  max-width: 1240px;
  border: 1px solid rgba(217, 43, 115, 0.16);
  border-radius: 18px;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 231, 143, 0.58), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 245, 0.78));
  box-shadow: 0 16px 36px rgba(63, 28, 43, 0.08);
}

.sale-strip h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.sale-strip__deals {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.sale-strip__deals span {
  border: 1px solid rgba(217, 43, 115, 0.2);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.journal {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 40px;
}

.journal__columns {
  display: grid;
  gap: 14px;
}

.journal article {
  display: grid;
  grid-template-columns: 48px 160px 1fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.journal article:last-child {
  border-bottom: 1px solid var(--line);
}

.journal article span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 1000;
}

.journal h3 {
  margin: 0;
  font-size: 19px;
}

.journal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 470px);
  gap: 28px;
  align-items: center;
  padding: 54px max(24px, calc((100vw - 1240px) / 2 + 24px));
  background: var(--white);
}

.newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
}

.newsletter input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(246, 62, 131, 0.12);
}

.footer {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 30px;
  padding: 54px max(24px, calc((100vw - 1240px) / 2 + 24px));
  color: var(--white);
  background: var(--ink);
}

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

.footer h2 {
  margin: 0 0 16px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 9px 0;
}

.cart {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  background: rgba(29, 27, 28, 0);
  transition: background 180ms ease;
}

.cart.is-open {
  pointer-events: auto;
  background: rgba(29, 27, 28, 0.35);
}

.cart__panel {
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100%;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart.is-open .cart__panel {
  transform: translateX(0);
}

.cart__header,
.cart__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.cart__footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart__header h2 {
  margin: 0;
  font-size: 28px;
}

.cart__items {
  flex: 1;
  overflow: auto;
  padding: 12px 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.cart-item__thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--product-bg, var(--pink-soft));
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.empty {
  margin: 30px 0;
  color: var(--muted);
  text-align: center;
}

.promo__arrow,
.icon-button,
.menu-toggle span,
.cart-button,
.cart-button span,
.search input,
.newsletter input,
.button,
.filter,
.hero__proof span,
.category-card,
.category-card::before,
.product-card,
.product-card__badge,
.quick-add,
.empty-state,
.feature-band,
.sale-strip,
.sale-strip__deals span,
.cart__panel,
.cart-item__thumb,
.qty button {
  border-radius: 0;
}

.product-card,
.category-card,
.sale-strip {
  box-shadow: none;
}

.product-card:hover,
.category-card:hover,
.button:hover,
.quick-add:hover,
.cart-button:hover {
  box-shadow: none;
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
  }

  .search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .quick-links a {
    display: none;
  }

  .category-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: var(--white);
  }

  .category-nav.is-open {
    display: flex;
  }

  .category-nav a {
    border-bottom: 1px solid var(--line);
    padding: 16px 24px;
  }

  .category-nav a::after {
    display: none;
  }

  .strip,
  .category-grid,
  .product-grid,
  .journal,
  .sale-strip,
  .newsletter,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .sale-strip__deals {
    justify-content: flex-start;
  }

  .product-grid {
    gap: 14px;
  }

  .journal article {
    grid-template-columns: 36px 1fr;
  }

  .journal article p {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .promo {
    min-height: 34px;
    font-size: 11px;
  }

  .site-header {
    top: 34px;
  }

  .header-main {
    padding: 14px 16px 12px;
  }

  .brand {
    font-size: 31px;
  }

  .hero {
    min-height: 660px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(255, 248, 251, 0.96) 0%, rgba(255, 248, 251, 0.7) 58%, rgba(255, 248, 251, 0.16) 100%),
      linear-gradient(90deg, rgba(255, 248, 251, 0.92), rgba(255, 248, 251, 0.2));
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__content {
    justify-content: end;
    min-height: 660px;
    margin: 0 auto;
    padding: 210px 18px 44px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 74px);
  }

  .hero__copy {
    font-size: 16px;
  }

  .strip,
  .category-grid,
  .product-grid,
  .sale-strip,
  .newsletter,
  .footer {
    grid-template-columns: 1fr;
  }

  .strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 48px 16px;
  }

  .section-heading,
  .section-heading--shop,
  .feature-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    justify-content: flex-start;
  }

  .product-card__media,
  .product-card__media img {
    min-height: 260px;
    height: 260px;
  }

  .feature-band {
    padding: 50px 16px;
  }

  .sale-strip {
    margin: 0 16px;
    padding: 28px 20px;
  }

  .journal {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .newsletter {
    padding: 44px 16px;
  }

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

  .footer {
    padding: 44px 16px;
  }
}

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