:root {
  --ink: #121214;
  --ink-soft: #2a2a2e;
  --paper: #f4f3f1;
  --paper-strong: #fbfaf8;
  --silver: #c6c9ce;
  --silver-dark: #878b92;
  --line: rgba(18, 18, 20, 0.14);
  --red: #b92227;
  --red-dark: #87191e;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(18, 18, 20, 0.14);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Outfit", "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(18, 18, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 20, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 80%);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  background: rgba(244, 243, 241, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.promo-bar {
  overflow: hidden;
  padding: 0;
  background: var(--ink);
  color: var(--silver);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 9px 0;
  white-space: nowrap;
  animation: promo-right 22s linear infinite;
  will-change: transform;
}

.promo-track span,
.promo-track strong {
  position: relative;
  flex: 0 0 auto;
}

.promo-track span::after,
.promo-track strong::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(clamp(28px, 5vw, 72px) * -0.58);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
  transform: translateY(-50%);
}

.promo-track strong {
  color: var(--white);
}

.nav-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(16px, 4vw, 48px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 320px;
}

.brand-mark {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 16px 34px rgba(185, 34, 39, 0.22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.12rem;
}

.brand small {
  margin-top: 5px;
  color: var(--silver-dark);
  font-size: 0.86rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--ink-soft);
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-actions {
  display: none;
}

.search-control {
  height: 42px;
  min-width: min(32vw, 310px);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--silver-dark);
}

.search-control input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.visit-button,
.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.visit-button {
  position: relative;
}

.visit-button span {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.visit-button:hover,
.icon-button:hover,
.cat-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 34, 39, 0.45);
}

.visit-button:active,
.icon-button:active,
.primary-button:active,
.secondary-button:active,
.cat-chip:active,
.text-link:active {
  transform: translateY(1px) scale(0.99);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(680px, 88dvh, 900px);
  overflow: hidden;
  background: var(--ink);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 20, 0.94) 0%, rgba(18, 18, 20, 0.78) 35%, rgba(18, 18, 20, 0.18) 72%),
    linear-gradient(0deg, rgba(18, 18, 20, 0.5), transparent 45%);
}

.hero-content {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(88px, 11vw, 150px) clamp(18px, 5vw, 72px) 160px;
  color: var(--white);
}

.eyebrow,
.feature-kicker {
  margin: 0 0 13px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb6b8;
}

.hero h1 {
  width: min(790px, 90vw);
  margin: 0;
  font-size: clamp(3.1rem, 7.2vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.slogan {
  width: fit-content;
  margin: 28px 0 0;
  padding: 8px 12px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.08);
  color: var(--silver);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 700;
}

.hero-copy {
  width: min(610px, 88vw);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button,
.text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.primary-button {
  border: 0;
  background: var(--red);
  color: var(--white);
  padding: 0 20px;
}

.primary-button:hover {
  background: var(--red-dark);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  padding: 0 18px;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.18);
}

.text-link {
  min-height: auto;
  color: var(--red);
}

.hero-stat {
  position: absolute;
  right: clamp(16px, 6vw, 86px);
  bottom: 34px;
  min-width: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(18, 18, 20, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  color: var(--white);
}

.hero-stat span,
.hero-stat strong {
  display: block;
}

.hero-stat span {
  color: var(--silver);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-stat strong {
  margin-top: 6px;
  font-size: 2rem;
}

.quick-cats {
  position: relative;
  width: min(100% - 32px, 1180px);
  margin: -64px auto 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(251, 250, 248, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cat-chip {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  padding: 0 16px;
  font-weight: 800;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.cat-chip.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.shop-intro,
.deal-band,
.feature-grid,
.storefront,
.sell-panel {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
}

.shop-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 84px 0 24px;
}

.shop-intro h2,
.deal-band h2,
.storefront h2,
.sell-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.select-wrap {
  display: grid;
  gap: 7px;
  color: var(--silver-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.select-wrap select {
  min-width: 210px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
}

.catalog-shell {
  width: min(100% - 32px, 1240px);
  min-height: 580px;
  margin: 0 auto;
  padding-bottom: 54px;
}

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

.product-card,
.skeleton-grid span {
  min-height: 460px;
  border: 1px solid rgba(18, 18, 20, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.product-card {
  grid-column: span 4;
  display: grid;
  grid-template-rows: 1fr auto;
}

.product-card:nth-child(4n + 1) {
  grid-column: span 5;
}

.product-card:nth-child(4n + 2) {
  grid-column: span 3;
}

.product-card:nth-child(4n + 3),
.product-card:nth-child(4n + 4) {
  grid-column: span 4;
}

.product-art {
  min-height: 300px;
  background-image: url("assets/product-sprite.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  background-color: #e7e5e1;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.product-card:hover .product-art {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-top,
.product-meta,
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
}

.price {
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 800;
}

.product-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  color: var(--silver-dark);
  font-size: 0.88rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(198, 201, 206, 0.14);
  color: var(--ink-soft);
  font-weight: 700;
}

.product-actions .secondary-button {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.product-actions .secondary-button:hover {
  background: var(--paper);
}

.product-actions .primary-button {
  min-width: 94px;
}

.skeleton-grid span {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  background: #e6e4e0;
}

.skeleton-grid span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  animation: shimmer 1.05s infinite;
}

.empty-state {
  min-height: 420px;
  display: grid;
  place-items: center;
  justify-items: center;
  gap: 14px;
  padding: 48px 20px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  text-align: center;
}

.empty-state svg {
  width: 42px;
  height: 42px;
  color: var(--red);
}

.empty-state h3,
.empty-state p {
  margin: 0;
}

.empty-state p {
  color: var(--silver-dark);
}

.empty-state .secondary-button {
  border-color: var(--line);
  color: var(--ink);
}

.deal-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 7vw, 96px);
  align-items: end;
  padding: 70px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.44);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  color: var(--white);
}

.deal-copy p {
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  padding: 72px 0;
}

.feature-panel {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-panel-large {
  grid-row: span 2;
  min-height: 540px;
  background:
    linear-gradient(145deg, rgba(185, 34, 39, 0.86), rgba(18, 18, 20, 0.92)),
    url("assets/hero-boutique.png") center / cover;
  color: var(--white);
}

.feature-panel h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.feature-panel p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

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

.storefront {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 36px;
  align-items: stretch;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.storefront-copy p,
.sell-panel p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.storefront-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-strong);
}

.storefront-details div {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.storefront-details div:last-child {
  border-right: 0;
}

.storefront-details span {
  color: var(--silver-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.storefront-details strong {
  color: var(--red);
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  line-height: 1;
}

.sell-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 72px;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form label {
  font-weight: 800;
}

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

.form-row input {
  min-height: 48px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  outline: 0;
}

.form-row input:focus {
  border-color: rgba(185, 34, 39, 0.58);
  box-shadow: 0 0 0 4px rgba(185, 34, 39, 0.1);
}

.newsletter-form small {
  color: var(--silver-dark);
}

.newsletter-form small.is-error {
  color: var(--red);
  font-weight: 700;
}

.newsletter-form small.is-success {
  color: #2d6f52;
  font-weight: 700;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 16;
  width: min(330px, calc(100vw - 40px));
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(18, 18, 20, 0.92);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: toast-in 0.38s var(--ease) both;
}

.toast span {
  color: var(--silver);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 18, 20, 0.72);
}

.quick-modal {
  position: relative;
  width: min(960px, 100%);
  max-height: min(760px, 92dvh);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  overflow: auto;
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
}

.modal-image {
  min-height: 520px;
}

.modal-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 5vw, 52px);
}

.modal-copy h2,
.modal-copy p {
  margin: 0;
}

.modal-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.modal-copy p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.modal-copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.modal-copy dl div {
  min-height: 82px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.modal-copy dt {
  color: var(--silver-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-copy dd {
  margin: 8px 0 0;
  font-weight: 800;
}

.site-footer {
  margin-top: 90px;
  background:
    linear-gradient(135deg, rgba(185, 34, 39, 0.12), transparent 42%),
    var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

.footer-main {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr 1.1fr;
  gap: clamp(28px, 4vw, 58px);
  padding: 72px 0 58px;
}

.footer-column {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.footer-brand strong,
.footer-brand small {
  display: block;
  line-height: 1;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.08rem;
}

.footer-brand small {
  margin-top: 7px;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-column h3 {
  margin: 0 0 19px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand-block p {
  max-width: 310px;
  margin: 0 0 26px;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 34, 39, 0.58);
  border-radius: 8px;
  color: #ffb6b8;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  align-content: start;
}

.footer-links a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-links a svg {
  width: 16px;
  height: 16px;
  color: #ffb6b8;
  transition: transform 0.25s var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  transform: translateX(2px);
}

.footer-links a:hover svg,
.footer-links a:focus-visible svg {
  transform: translateX(2px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  line-height: 1.45;
}

.footer-contact p svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #ffb6b8;
}

.footer-signup {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.footer-signup label {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-signup div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.footer-signup input {
  min-width: 0;
  min-height: 52px;
  border: 0;
  outline: 0;
  padding: 0 15px;
  background: transparent;
  color: var(--white);
}

.footer-signup input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.footer-signup button {
  border: 0;
  background: var(--red);
  color: var(--white);
  padding: 0 16px;
  font-weight: 800;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-signup button:hover {
  background: var(--red-dark);
}

.footer-signup button:active {
  transform: translateY(1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d0d0f;
}

.footer-bottom-inner {
  width: min(100% - 32px, 1240px);
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.7;
}

.footer-bottom strong {
  color: var(--white);
}

.footer-credits a {
  color: #ffb6b8;
  font-weight: 800;
}

.footer-credits a:hover,
.footer-credits a:focus-visible {
  color: var(--white);
}

[hidden] {
  display: none !important;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes promo-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .nav-shell {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    position: relative;
  }

  .brand {
    min-width: 0;
    order: 1;
  }

  .mobile-actions {
    order: 2;
    display: flex;
    gap: 10px;
    position: static;
    margin-left: 8px;
  }

  .nav-toggle {
    display: inline-grid;
    order: 2;
  }

  .nav-links {
    order: 4;
    width: 100%;
    display: none;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .nav-actions {
    order: 3;
    flex: 0 0 100%;
    width: auto;
    max-width: 100%;
    display: block;
  }

  .search-control {
    width: 100%;
    min-width: 0;
  }

  .nav-actions .visit-button {
    display: none;
  }

  .product-card,
  .product-card:nth-child(4n + 1),
  .product-card:nth-child(4n + 2),
  .product-card:nth-child(4n + 3),
  .product-card:nth-child(4n + 4),
  .skeleton-grid span {
    grid-column: span 6;
  }

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

@media (max-width: 820px) {
  .promo-track {
    animation-duration: 17s;
  }

  .hero {
    min-height: 760px;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 18, 20, 0.94), rgba(18, 18, 20, 0.52)),
      linear-gradient(0deg, rgba(18, 18, 20, 0.68), transparent 50%);
  }

  .hero-content {
    padding-bottom: 190px;
  }

  .hero-stat {
    right: auto;
    left: 18px;
    bottom: 76px;
  }

  .shop-intro,
  .deal-band,
  .feature-grid,
  .storefront,
  .sell-panel {
    grid-template-columns: 1fr;
  }

  .shop-intro {
    display: grid;
    align-items: start;
    padding-top: 64px;
  }

  .storefront-details {
    grid-template-columns: 1fr;
  }

  .storefront-details div {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .storefront-details div:last-child {
    border-bottom: 0;
  }

  .feature-panel-large {
    min-height: 420px;
  }

  .form-row,
  .quick-modal,
  .modal-copy dl {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 380px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 58px 0 46px;
  }

  .footer-bottom-inner {
    min-height: 110px;
  }
}

@media (max-width: 620px) {
  .hero-content {
    width: 100%;
    max-width: 100vw;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-copy {
    width: 100%;
    max-width: min(342px, calc(100vw - 48px));
    overflow-wrap: break-word;
  }

  .brand span:last-child {
    display: none;
  }

  .hero h1 {
    width: min(100%, 340px);
    font-size: clamp(2.45rem, 12vw, 3.15rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .shop-intro h2,
  .deal-band h2,
  .storefront h2,
  .sell-panel h2 {
    max-width: min(342px, calc(100vw - 48px));
    font-size: clamp(1.85rem, 9vw, 2.35rem);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .product-grid,
  .skeleton-grid {
    gap: 14px;
  }

  .product-card,
  .product-card:nth-child(4n + 1),
  .product-card:nth-child(4n + 2),
  .product-card:nth-child(4n + 3),
  .product-card:nth-child(4n + 4),
  .skeleton-grid span {
    grid-column: 1 / -1;
  }

  .product-card,
  .skeleton-grid span {
    min-height: 420px;
  }

  .product-art {
    min-height: 270px;
  }

  .product-top,
  .product-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-actions .primary-button,
  .product-actions .secondary-button {
    width: 100%;
  }

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

  .footer-signup button {
    min-height: 46px;
  }
}
