:root {
  --np-bg: #050505;
  --np-bg-soft: #0f0f10;
  --np-surface: #ffffff;
  --np-text: #f5f5f0;
  --np-text-dark: #101010;
  --np-muted: rgba(255, 255, 255, 0.72);
  --np-border: rgba(255, 255, 255, 0.14);
  --np-shadow: 0 22px 90px rgba(0, 0, 0, 0.35);
  --np-page-margin: clamp(16px, 3vw, 40px);
  --np-grid-gap: clamp(16px, 2vw, 24px);
  --np-header-offset: 26px;
}

html {
  scroll-behavior: smooth;
}

html.np-surface-open,
body.np-surface-open {
  overflow: hidden;
}

body.np-home {
  margin: 0;
  background: var(--np-bg);
  color: var(--np-text);
  font-family: "Inter", sans-serif;
}

body.np-home.admin-bar {
  --np-admin-offset: 32px;
}

@media (max-width: 782px) {
  body.np-home.admin-bar {
    --np-admin-offset: 46px;
  }
}

body.np-home .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.np-home-shell {
  min-height: 100vh;
  background: var(--np-bg);
}

.np-marquee {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 26px;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.np-home.admin-bar .np-marquee {
  top: var(--np-admin-offset, 0px);
}

.np-marquee__track {
  display: inline-flex;
  gap: 22px;
  min-width: max-content;
  padding-left: 22px;
  animation: np-marquee 28s linear infinite;
}

.np-header {
  position: sticky;
  top: 26px;
  z-index: 55;
  transition: background-color 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease, color 220ms ease;
}

body.np-home.admin-bar .np-header {
  top: calc(26px + var(--np-admin-offset, 0px));
}

.np-header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.np-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px var(--np-page-margin);
}

.np-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.np-nav__item {
  position: relative;
}

.np-nav__item > a,
.np-mobile-nav a,
.np-footer a,
.np-link-button,
.np-brand {
  color: inherit;
  text-decoration: none;
}

.np-nav__item > a {
  font-size: 15px;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.np-nav__item.has-panel:hover .np-nav__panel,
.np-nav__item.has-panel:focus-within .np-nav__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.np-nav__panel {
  position: absolute;
  top: calc(100% + 18px);
  left: -16px;
  display: grid;
  gap: 10px;
  min-width: 180px;
  padding: 16px;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.np-nav__panel a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.np-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  line-height: 0;
}

.np-brand__logo {
  display: block;
  width: var(--np-brand-logo-width, 176px);
  max-width: 100%;
  height: auto;
}

.np-brand--invert .np-brand__logo {
  filter: brightness(0) invert(1);
}

.np-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.np-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  color: inherit;
  border: 0;
  cursor: pointer;
}

.np-icon-button svg {
  width: 20px;
  height: 20px;
}

.np-cart-button__count {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.np-cart-button__count.is-empty {
  opacity: 0;
  transform: scale(0.72);
}

.np-cart-button__count.is-animated {
  animation: np-cart-bump 360ms ease;
}

.np-mobile-toggle {
  display: none;
}

@media (min-width: 1025px) {
  body.np-front-page .np-header {
    position: fixed;
    top: 26px;
    left: 0;
    right: 0;
    color: #fff;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  body.np-front-page.admin-bar .np-header {
    top: calc(26px + var(--np-admin-offset, 0px));
  }

  body.np-front-page .np-header__inner {
    width: min(1269px, calc(100% - 16px));
    margin: 0 auto;
    padding: 11px 30px;
    box-sizing: border-box;
  }

  body.np-front-page .np-nav {
    gap: 22px;
  }

  body.np-front-page .np-nav__item > a {
    font-size: 14px;
    letter-spacing: 0;
  }

  body.np-front-page .np-brand__logo {
    width: 100px;
  }

  body.np-front-page .np-actions {
    gap: 6px;
  }

  body.np-front-page .np-icon-button {
    width: 44px;
    height: 44px;
  }

  body.np-front-page .np-icon-button svg {
    width: 19px;
    height: 19px;
  }

  body.np-front-page .np-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    color: #111;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(8px);
  }

  body.np-front-page .np-header.is-scrolled .np-brand--invert .np-brand__logo {
    filter: none;
  }

  body.np-front-page .np-header.is-scrolled .np-nav__panel {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(17, 17, 17, 0.08);
  }

  body.np-front-page .np-header.is-scrolled .np-nav__panel a {
    color: rgba(17, 17, 17, 0.82);
  }
}

.np-main {
  background: #fff;
  color: var(--np-text-dark);
}

.np-hero {
  position: relative;
  min-height: min(82vh, 720px);
  overflow: hidden;
  background: #000;
}

.np-hero__video,
.np-editorial__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-hero__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.np-hero__video.is-ready {
  opacity: 1;
}

.np-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 122, 68, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.68));
}

.np-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  min-height: min(82vh, 720px);
  padding: 110px var(--np-page-margin) 80px;
  text-align: center;
}

.np-hero__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.np-hero__title {
  display: grid;
  gap: 10px;
  margin: 0;
  color: #fff;
  line-height: 0.9;
  text-transform: uppercase;
}

.np-hero__title span:first-child {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.6em;
}

.np-hero__title span:last-child {
  font-size: clamp(64px, 12vw, 180px);
  letter-spacing: -0.06em;
  font-weight: 900;
}

.np-pill-button,
.np-link-button,
.np-footer__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.np-pill-button:hover,
.np-link-button:hover,
.np-footer__form button:hover {
  transform: translateY(-1px);
}

.np-products,
.np-spotlight,
.np-collections {
  padding: 34px var(--np-page-margin) 48px;
}

.np-product-grid,
.np-spotlight__grid,
.np-collections__grid {
  display: grid;
  gap: var(--np-grid-gap);
}

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

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

.np-product-card {
  position: relative;
  display: grid;
  gap: 10px;
}

.np-product-card__media {
  --np-card-media-inset: clamp(10px, 1.2vw, 18px);
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
  transform: scale(1);
  transition: transform 240ms ease;
}

.np-product-card__media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.np-product-card:hover .np-product-card__media {
  transform: scale(1.015);
}

.np-product-card__image {
  position: absolute;
  inset: var(--np-card-media-inset);
  width: calc(100% - (var(--np-card-media-inset) * 2));
  height: calc(100% - (var(--np-card-media-inset) * 2));
  object-fit: contain;
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
  transform: scale(1.01);
}

.np-product-card__image.is-active {
  opacity: 1;
  transform: scale(1);
}

.np-product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 7;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.np-card-arrow {
  position: absolute;
  top: 50%;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.np-card-arrow svg {
  width: 16px;
  height: 16px;
}

.np-product-card:hover .np-card-arrow,
.np-product-card:focus-within .np-card-arrow {
  opacity: 1;
}

.np-card-arrow--prev {
  left: 14px;
}

.np-card-arrow--next {
  right: 14px;
}

.np-product-card__meta {
  display: grid;
  gap: 5px;
  color: #111;
}

.np-product-card__meta h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.np-product-card__meta h2 a {
  color: inherit;
  text-decoration: none;
}

.np-product-card__price {
  font-size: 14px;
}

.np-product-card__price .amount {
  font-weight: 500;
}

.np-editorial {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 36vw, 500px);
  max-height: 500px;
  background: #000;
}

.np-editorial__image,
.np-editorial__wash {
  position: absolute;
  inset: 0;
}

.np-editorial__wash {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 50%);
}

.np-editorial__marquee {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  overflow: hidden;
}

.np-editorial__marquee-track {
  display: inline-flex;
  gap: 42px;
  min-width: max-content;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(28px, 4.6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  animation: np-marquee 18s linear infinite;
}

.np-editorial__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: inherit;
  padding: clamp(22px, 4vw, 44px);
  color: #fff;
}

.np-editorial__content p,
.np-spotlight__heading p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.np-editorial__content h2,
.np-spotlight__heading h3,
.np-collections__heading h3,
.np-location h2,
.np-footer h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.np-editorial__content h2 {
  max-width: 11ch;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 0.92;
}

.np-link-button {
  width: fit-content;
  min-height: 52px;
}

.np-spotlight {
  display: grid;
  gap: 24px;
}

.np-spotlight__heading,
.np-collections__heading {
  display: grid;
  gap: 10px;
}

.np-collections {
  padding-bottom: 70px;
}

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

.np-collection-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #111;
}

.np-collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
}

.np-collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 260ms ease;
}

.np-collection-card:hover img {
  transform: scale(1.045);
}

.np-collection-card span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.np-location {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 var(--np-page-margin) 54px;
  text-align: center;
}

.np-location p,
.np-footer p {
  margin: 0;
  font-size: 15px;
}

.np-footer {
  display: grid;
  gap: 20px;
  padding: 0 var(--np-page-margin) 44px;
  background: #fff;
  color: #111;
}

.np-overlay__input {
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  font: inherit;
  color: #111;
  background: #fff;
}

.np-footer__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  padding-top: 22px;
}

.np-footer__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.np-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.np-footer__socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.np-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  color: #111;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.np-footer__social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.np-footer__social:hover {
  background: #111;
  border-color: #111;
  color: #fff;
  transform: translateY(-1px);
}

.np-overlay,
.np-mobile-menu,
.np-sidecart {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.np-overlay__backdrop,
.np-mobile-menu__backdrop,
.np-sidecart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(8px);
}

.np-overlay__panel,
.np-mobile-menu__panel {
  position: relative;
  margin-left: auto;
  display: grid;
  align-content: start;
  gap: 18px;
  width: min(520px, calc(100vw - 20px));
  height: 100%;
  padding: 22px;
  background: #fff;
  color: #111;
  box-shadow: var(--np-shadow);
}

.np-mobile-menu__panel {
  width: min(420px, calc(100vw - 20px));
}

.np-sidecart {
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.np-sidecart.is-open {
  opacity: 1;
  pointer-events: auto;
}

.np-sidecart__panel {
  position: relative;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  width: min(400px, calc(100vw - 20px));
  height: 100%;
  background: #fff;
  color: #111;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.np-sidecart.is-open .np-sidecart__panel {
  transform: translateX(0);
}

.np-sidecart__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
}

.np-sidecart__content.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.np-sidecart__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 0;
}

.np-sidecart__title-wrap {
  display: grid;
  gap: 5px;
}

.np-sidecart__eyebrow {
  color: rgba(17, 17, 17, 0.58);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.np-sidecart__title,
.np-sidecart__empty-title {
  margin: 0;
  color: #111;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.np-sidecart__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.np-sidecart__close svg {
  width: 18px;
  height: 18px;
}

.np-sidecart__empty {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px 28px;
  text-align: center;
}

.np-sidecart__empty-copy {
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.np-sidecart__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.np-sidecart__items {
  display: grid;
  gap: 24px;
  flex: 1;
  padding: 18px 24px 26px;
  overflow-y: auto;
}

.np-sidecart-item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.np-sidecart-item__media {
  display: block;
  aspect-ratio: 0.82;
  background: #fff;
}

.np-sidecart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.np-sidecart-item__content {
  display: grid;
  gap: 14px;
}

.np-sidecart-item__top {
  display: grid;
  gap: 10px;
}

.np-sidecart-item__top h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.np-sidecart-item__top h3 a {
  color: inherit;
  text-decoration: none;
}

.np-sidecart-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.np-sidecart-item__remove {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.68);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.np-sidecart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.np-sidecart-item__qty {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  width: 104px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
}

.np-sidecart-item__qty button,
.np-sidecart-item__qty input {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
}

.np-sidecart-item__qty button {
  height: 100%;
  color: #111;
  font-size: 20px;
  cursor: pointer;
}

.np-sidecart-item__qty input {
  width: 100%;
  min-width: 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #111 !important;
  -webkit-text-fill-color: #111;
  opacity: 1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  appearance: none;
  box-shadow: none !important;
  box-sizing: border-box;
}

.np-sidecart-item__price {
  color: #111;
  font-size: 14px;
  line-height: 1.5;
}

.np-sidecart__footer {
  display: grid;
  gap: 12px;
  padding: 18px 24px 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
}

.np-sidecart__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
}

.np-sidecart__summary strong {
  font-size: 16px;
}

.np-sidecart__primary,
.np-sidecart__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 14px;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.np-sidecart__primary {
  background: #000;
  color: #fff;
}

.np-sidecart__secondary {
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: #111;
}

.np-sidecart__primary:hover,
.np-sidecart__secondary:hover {
  transform: translateY(-1px);
}

.np-overlay__close {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.np-overlay__close svg {
  width: 20px;
  height: 20px;
}

.np-overlay__results {
  display: grid;
  gap: 10px;
}

.np-search-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.np-search-result img {
  width: 70px;
  height: 88px;
  object-fit: cover;
}

.np-search-result__meta {
  display: grid;
  gap: 4px;
}

.np-search-result__meta strong {
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.np-mobile-nav {
  display: grid;
  gap: 20px;
}

.np-mobile-nav__group {
  display: grid;
  gap: 10px;
}

.np-mobile-nav__group > a {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.np-mobile-nav__children {
  display: grid;
  gap: 10px;
  padding-left: 4px;
}

.np-mobile-nav__children a {
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
  letter-spacing: 0.08em;
}

@keyframes np-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes np-cart-bump {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.18);
  }
}

@media (max-width: 1100px) {
  .np-product-grid,
  .np-collections__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .np-nav--desktop {
    display: none;
  }

  .np-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .np-brand {
    justify-self: center;
  }

  .np-brand__logo {
    width: var(--np-brand-logo-width-mobile, 120px);
  }

  .np-mobile-toggle {
    display: inline-flex;
  }

  .np-hero__content {
    padding-top: 140px;
  }

  .np-spotlight__grid,
  .np-footer__meta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .np-footer__end {
    justify-content: space-between;
  }
}

@media (max-width: 700px) {
  .np-hero {
    min-height: 88vh;
  }

  .np-products,
  .np-spotlight,
  .np-collections,
  .np-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .np-product-grid,
  .np-spotlight__grid,
  .np-collections__grid {
    grid-template-columns: 1fr;
  }

  .np-collection-card {
    min-height: 300px;
  }

  .np-footer__meta,
  .np-footer__end,
  .np-footer__links,
  .np-footer__socials {
    justify-content: flex-start;
  }

  .np-sidecart__panel {
    width: calc(100vw - 19.5px);
  }

  .np-sidecart__header {
    padding: 16px 16px 0;
  }

  .np-sidecart__empty,
  .np-sidecart__items,
  .np-sidecart__footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .np-sidecart-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .np-card-arrow {
    opacity: 1;
    width: 34px;
    height: 34px;
  }
}
