:root {
  --paper: #f7f4ec;
  --paper-2: #efebe1;
  --ink: #030303;
  --muted: rgba(3, 3, 3, 0.58);
  --line: rgba(3, 3, 3, 0.14);
  --mint: #c9fff0;
  --rose: #e7aeb8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 64% 22%, rgba(201, 255, 240, 0.28), transparent 22rem),
    radial-gradient(circle at 17% 72%, rgba(231, 174, 184, 0.18), transparent 25rem),
    linear-gradient(135deg, #fbf8f0 0%, var(--paper) 45%, var(--paper-2) 100%);
  font-family: "Arial Rounded MT Bold", "Avenir Next Rounded", "Nunito", "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    repeating-linear-gradient(178deg, rgba(3, 3, 3, 0.032) 0 1px, transparent 1px 18px),
    radial-gradient(ellipse at center, transparent 0%, rgba(247, 244, 236, 0.72) 78%);
  animation: water-sheet 16s ease-in-out infinite alternate;
}

a {
  color: inherit;
}

button,
select,
input {
  font: inherit;
}

.store-shell {
  min-height: 100svh;
  padding: 96px clamp(18px, 4vw, 54px) 54px;
}

.store-footer {
  padding: 0 clamp(18px, 4vw, 54px) clamp(22px, 3vw, 34px);
  color: rgba(3, 3, 3, 0.54);
  font-size: clamp(0.72rem, 1.1vw, 0.86rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.08em;
}

.store-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 34px) clamp(20px, 5vw, 62px);
  background: linear-gradient(180deg, rgba(247, 244, 236, 0.82), rgba(247, 244, 236, 0));
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  width: clamp(96px, 12vw, 150px);
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-skull {
  position: absolute;
  top: clamp(15px, 2.6vw, 30px);
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(38px, 4.2vw, 56px);
  transform: translateX(-50%);
}

.nav-skull img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.12));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.nav-links a,
.back-link {
  position: relative;
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.nav-links a::after,
.back-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.08rem;
  bottom: -0.44rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink), var(--mint), var(--rose));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 280ms ease;
}

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

.shop-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(22px, 5vw, 60px) 0 clamp(24px, 4vw, 44px);
}

.shop-title {
  margin: 0;
  max-width: 950px;
  font-size: clamp(3.8rem, 13vw, 12rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
}

.shop-note {
  max-width: 330px;
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.4vw, 1.04rem);
  font-weight: 800;
  line-height: 1.35;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.filter {
  min-height: 36px;
  padding: 0.64rem 0.86rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 252, 244, 0.46);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.filter:hover,
.filter.is-active {
  border-color: rgba(3, 3, 3, 0.35);
  background: rgba(255, 252, 244, 0.82);
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.product-card {
  min-width: 0;
}

.product-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 6 / 7;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.38);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.product-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.product-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 48%, rgba(201, 255, 240, 0.2), transparent 44%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 420ms ease;
}

.product-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

.product-card:hover .product-image-link::after {
  opacity: 1;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  padding: 13px 2px 0;
}

.product-name,
.product-price {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  font-weight: 950;
  line-height: 1;
}

.product-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(26px, 4vw, 68px);
  align-items: start;
  max-width: 1480px;
  margin: clamp(28px, 6vw, 76px) auto 0;
}

.detail-media {
  position: sticky;
  top: 98px;
}

.detail-media img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 132px);
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.44);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
}

.detail-panel {
  padding-top: clamp(12px, 5vw, 58px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-title {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
}

.detail-price {
  margin: 24px 0 0;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 950;
}

.detail-copy {
  max-width: 560px;
  margin: 22px 0 28px;
  color: rgba(3, 3, 3, 0.68);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
}

.spec {
  min-height: 70px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.45);
}

.spec span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.1;
}

.purchase {
  display: grid;
  gap: 12px;
  max-width: 440px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field select,
.field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(3, 3, 3, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 252, 244, 0.72);
  font-weight: 900;
}

.buy-button {
  min-height: 52px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.buy-button:hover,
.buy-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.back-row {
  max-width: 1480px;
  margin: 18px auto 0;
}

.not-found {
  max-width: 720px;
  margin: 20vh auto;
  text-align: center;
}

.not-found h1 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.82;
}

.bones-shell {
  padding-bottom: 72px;
}

.bones-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: 24px;
  align-items: end;
  margin: clamp(22px, 5vw, 62px) 0 clamp(24px, 4vw, 42px);
}

.bones-kicker {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bones-title {
  margin: 0;
  font-size: clamp(4.4rem, 18vw, 16rem);
  font-weight: 950;
  line-height: 0.74;
  letter-spacing: 0;
}

.bones-note {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  font-weight: 850;
  line-height: 1.35;
}

.bones-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}

.bones-card {
  min-width: 0;
}

.bones-card.is-featured {
  grid-column: 1 / -1;
}

.bones-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 10 / 7;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.075);
}

.bones-card.is-featured .bones-image-link {
  aspect-ratio: 16 / 7;
}

.bones-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 560ms ease, filter 560ms ease;
}

.bones-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(201, 255, 240, 0.22), transparent 44%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 420ms ease;
}

.bones-card:hover .bones-image-link img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.bones-card:hover .bones-image-link::after {
  opacity: 1;
}

.bones-card-copy {
  display: grid;
  gap: 8px;
  padding-top: 14px;
}

.bones-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bones-card-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4.5vw, 4.8rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
}

.bones-card:not(.is-featured) .bones-card-copy h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.8rem);
}

.bones-card-copy p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(3, 3, 3, 0.66);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.45;
}

.bone-article {
  max-width: 1480px;
  margin: clamp(28px, 5vw, 58px) auto 0;
}

.bone-article-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(22px, 3vw, 38px);
}

.bone-article-head .bones-meta {
  grid-column: 1 / -1;
}

.bone-article-head h1 {
  margin: 0;
  font-size: clamp(3.6rem, 12vw, 11rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
}

.bone-article-head p:last-child {
  margin: 0 0 0.5rem;
  color: rgba(3, 3, 3, 0.66);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 850;
  line-height: 1.45;
}

.bone-hero-image {
  display: block;
  width: 100%;
  max-height: 76svh;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.09);
}

.bone-body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 4vw, 66px);
  margin-top: clamp(26px, 4vw, 48px);
}

.bone-body > p {
  margin: 0;
  color: rgba(3, 3, 3, 0.72);
  font-size: clamp(1.08rem, 1.9vw, 1.6rem);
  font-weight: 850;
  line-height: 1.42;
}

.bone-specs {
  margin: 0;
}

.drop-page {
  min-height: 100svh;
  overflow-x: hidden;
}

.drop-page::after {
  content: "";
  position: fixed;
  inset: auto -12% -18% -12%;
  z-index: -1;
  height: 46svh;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 54% 50%, rgba(201, 255, 240, 0.26), transparent 48%),
    radial-gradient(ellipse at 42% 54%, rgba(231, 174, 184, 0.18), transparent 52%);
  filter: blur(34px);
}

.drop-shell {
  min-height: 100svh;
  padding: 102px clamp(18px, 4vw, 54px) 46px;
}

.drop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: calc(100svh - 160px);
  max-width: 1540px;
  margin: 0 auto;
}

.drop-hero.is-card-only {
  grid-template-columns: minmax(320px, 520px);
  justify-content: center;
  min-height: calc(100svh - 190px);
}

.drop-hero.is-card-only .drop-card {
  width: 100%;
}

.drop-copy {
  min-width: 0;
}

.drop-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drop-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.7rem, 10vw, 10.8rem);
  font-weight: 950;
  line-height: 0.76;
  letter-spacing: 0;
}

.drop-lede {
  max-width: 700px;
  margin: clamp(20px, 3vw, 34px) 0 0;
  color: rgba(3, 3, 3, 0.68);
  font-size: clamp(1.04rem, 1.8vw, 1.55rem);
  font-weight: 850;
  line-height: 1.32;
}

.drop-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(3, 3, 3, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 255, 240, 0.26), transparent 34%),
    linear-gradient(160deg, rgba(255, 252, 244, 0.78), rgba(239, 235, 225, 0.58));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14px);
}

.drop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image: repeating-linear-gradient(178deg, rgba(3, 3, 3, 0.05) 0 1px, transparent 1px 15px);
}

.drop-orbit {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(48vw, 164px);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border: 1px solid rgba(3, 3, 3, 0.1);
  border-radius: 50%;
  background: rgba(247, 244, 236, 0.46);
  animation: drop-float 7s ease-in-out infinite;
}

.drop-orbit img {
  display: block;
  width: 72%;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
}

.drop-card h2,
.drop-card p,
.drop-form {
  position: relative;
  z-index: 1;
}

.drop-card h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
  text-align: center;
}

.drop-card > p {
  max-width: 360px;
  margin: 18px auto 24px;
  color: rgba(3, 3, 3, 0.64);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.42;
  text-align: center;
}

.drop-form {
  display: grid;
  gap: 12px;
}

.drop-hidden-frame {
  display: none;
}

.drop-form.is-email-only {
  max-width: 360px;
  margin: 0 auto;
}

.drop-form label {
  display: grid;
  gap: 8px;
}

.drop-form span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drop-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(3, 3, 3, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 252, 244, 0.76);
  font-weight: 900;
  outline: none;
}

.drop-form input:focus {
  border-color: rgba(3, 3, 3, 0.44);
  box-shadow: 0 0 0 4px rgba(201, 255, 240, 0.38);
}

.drop-form button {
  min-height: 52px;
  margin-top: 4px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.drop-form button:hover,
.drop-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.drop-form-status {
  min-height: 18px;
  margin: 0;
  color: rgba(3, 3, 3, 0.66);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
}

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

@keyframes water-sheet {
  0% {
    transform: translate3d(0, -1.2%, 0) skewY(-0.4deg);
  }
  100% {
    transform: translate3d(0, 1.2%, 0) skewY(0.4deg);
  }
}

@media (max-width: 900px) {
  .store-shell {
    padding: 86px 16px 40px;
  }

  .store-footer {
    padding: 0 16px 22px;
    font-size: 0.68rem;
  }

  .shop-head {
    display: block;
  }

  .shop-title {
    font-size: clamp(4.2rem, 22vw, 8rem);
  }

  .shop-note {
    margin-top: 18px;
  }

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

  .detail-layout {
    display: block;
    margin-top: 22px;
  }

  .detail-media {
    position: static;
  }

  .detail-panel {
    padding-top: 28px;
  }

  .detail-title {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .bones-head,
  .bone-article-head,
  .bone-body {
    display: block;
  }

  .bones-title {
    margin-top: 10px;
    font-size: clamp(4.4rem, 23vw, 8.4rem);
  }

  .bones-note,
  .bone-article-head p:last-child {
    margin-top: 18px;
  }

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

  .bones-card.is-featured {
    grid-column: auto;
  }

  .bones-card.is-featured .bones-image-link,
  .bones-image-link {
    aspect-ratio: 10 / 7;
  }

  .bone-body {
    margin-top: 24px;
  }

  .bone-specs {
    margin-top: 24px;
  }

  .drop-shell {
    padding: 86px 16px 38px;
  }

  .drop-hero {
    display: block;
    min-height: 0;
  }

  .drop-hero.is-card-only {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    min-height: calc(100svh - 146px);
  }

  .drop-copy h1 {
    font-size: clamp(4.2rem, 22vw, 8.4rem);
  }

  .drop-lede {
    margin-top: 18px;
  }

  .drop-card {
    margin-top: 30px;
  }

  .drop-hero.is-card-only .drop-card {
    margin-top: 0;
  }

}

@media (max-width: 560px) {
  .store-nav {
    padding: 20px;
  }

  .brand {
    width: 94px;
  }

  .nav-skull {
    top: 17px;
    width: 32px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a,
  .back-link {
    font-size: 0.74rem;
  }

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

  .product-info {
    grid-template-columns: 1fr auto;
  }

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