:root {
  color-scheme: dark;
  --black: #050507;
  --black-2: #0b0b10;
  --ink: #f7f7f2;
  --muted: #aaaab4;
  --muted-2: #777782;
  --cement: #1d1d24;
  --cement-2: #2b2b34;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --purple: #3b1d63;
  --purple-hot: #a548ff;
  --silver: #c8c8d0;
  --rose-deep: #8d315e;
  --success: #8ff0bd;
  --warn: #f0cf72;
  --danger: #ff7f7f;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1240px;
  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:
    radial-gradient(circle at 70% 0%, rgba(91, 35, 154, 0.18), transparent 34rem),
    linear-gradient(180deg, #030304, #09090d 34rem, #050507);
  letter-spacing: 0;
}

body.panel-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #000;
  background: #fff;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 18px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
  transition:
    min-height 180ms ease,
    padding 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  padding-block: 10px;
  border-color: var(--line);
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  width: max-content;
}

.brand-word {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.brand-word span {
  position: relative;
  display: inline-block;
  padding-left: 2px;
  color: #fff;
}

.brand-word span::after {
  position: absolute;
  left: 1px;
  right: -2px;
  top: 49%;
  height: 2px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, var(--silver), var(--purple-hot));
  content: "";
}

.brand-sub {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--purple-hot);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

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

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.counter {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  color: #fff;
  background: var(--purple-hot);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 20px;
}

.ico-search,
.ico-user,
.ico-heart,
.ico-bag,
.ico-menu {
  position: relative;
  display: block;
  width: 19px;
  height: 19px;
}

.ico-search {
  border: 2px solid currentColor;
  border-radius: 999px;
}

.ico-search::after {
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  transform: rotate(45deg);
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.ico-user::before,
.ico-user::after,
.ico-heart::before,
.ico-heart::after,
.ico-bag::before,
.ico-menu::before,
.ico-menu::after,
.close-panel::before,
.close-panel::after {
  position: absolute;
  content: "";
}

.ico-user::before {
  left: 5px;
  top: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.ico-user::after {
  left: 2px;
  bottom: 0;
  width: 15px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 14px 14px 4px 4px;
}

.ico-heart::before,
.ico-heart::after {
  top: 4px;
  width: 10px;
  height: 15px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.ico-heart::before {
  left: 3px;
  transform: rotate(-45deg);
}

.ico-heart::after {
  right: 3px;
  transform: rotate(45deg);
}

.ico-bag {
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.ico-bag::before {
  left: 4px;
  top: -8px;
  width: 7px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.ico-menu,
.ico-menu::before,
.ico-menu::after {
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.ico-menu {
  width: 20px;
}

.ico-menu::before,
.ico-menu::after {
  left: 0;
  width: 20px;
}

.ico-menu::before {
  top: -7px;
}

.ico-menu::after {
  top: 7px;
}

.mobile-menu-btn {
  display: none;
}

.close-panel::before,
.close-panel::after {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.close-panel::before {
  transform: rotate(45deg);
}

.close-panel::after {
  transform: rotate(-45deg);
}

#app {
  min-height: 70vh;
}

.page {
  animation: fadeUp 420ms ease both;
}

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

.section {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(54px, 8vw, 104px) 0;
}

.section-tight {
  padding-block: clamp(38px, 5vw, 64px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--silver);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.kicker.purple {
  color: var(--purple-hot);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 10vw, 9rem);
  line-height: 0.86;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: 0.92;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.muted {
  color: var(--muted);
  line-height: 1.65;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
}

.hero img,
.hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.66) 43%, rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(5, 5, 7, 0.85) 0%, rgba(5, 5, 7, 0.06) 52%, rgba(5, 5, 7, 0.15));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(760px, calc(100% - 32px));
  margin-left: clamp(16px, 6vw, 76px);
  padding: 140px 0 86px;
}

.hero-brand-signature {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(22px, 8vw, 88px);
  z-index: 2;
  display: grid;
  gap: 6px;
  justify-items: end;
  color: #fff;
  pointer-events: none;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
}

.hero-brand-signature span {
  font-size: clamp(1.8rem, 4vw, 4.6rem);
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.hero-brand-signature span span {
  color: var(--purple-hot);
}

.hero-brand-signature small {
  color: var(--silver);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.42em;
}

.hero-content .muted {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions,
.button-row,
.product-actions,
.filter-actions,
.music-links,
.output-actions,
.social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  border-color: var(--purple-hot);
  background: var(--purple-hot);
}

.btn-drop {
  position: relative;
  border-color: rgba(170, 92, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(170, 92, 255, 0.22), rgba(255, 255, 255, 0.045) 48%, rgba(170, 92, 255, 0.12));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 24px rgba(170, 92, 255, 0.16);
}

.btn-drop::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-radius: 999px;
  background: var(--purple-hot);
  box-shadow: 0 0 16px var(--purple-hot);
}

.btn-light {
  color: #050507;
  border-color: #fff;
  background: #fff;
}

.btn-quiet {
  color: var(--ink);
  background: #101017;
}

.btn-full {
  width: 100%;
}

.info-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.info-bar div {
  display: flex;
  width: min(var(--max), calc(100% - 32px));
  min-height: 56px;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--silver);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.store-update-note {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(170, 92, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(155, 79, 255, 0.12), rgba(255, 255, 255, 0.025) 42%, rgba(255, 255, 255, 0.055)),
    rgba(9, 9, 12, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.store-update-note h3 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.store-update-note p:last-child {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.store-update-note + .catalog-empty-card {
  margin-top: 14px;
}

.quick-shop-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-shop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--silver);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-shop-nav a:hover,
.quick-shop-nav a.is-active {
  border-color: var(--purple-hot);
  color: #fff;
  background: rgba(155, 79, 255, 0.2);
}

.artist-proof {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.78fr) minmax(220px, 0.48fr);
  gap: 16px;
  align-items: stretch;
}

.artist-proof-photo,
.artist-proof-copy {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.artist-proof-photo {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.artist-proof-photo::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58)),
    linear-gradient(120deg, rgba(165, 72, 255, 0.18), transparent 48%);
  content: "";
}

.artist-proof-photo::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
  pointer-events: none;
}

.photo-brand-lockup {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  width: max-content;
  max-width: calc(100% - 36px);
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 7, 0.56);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.photo-brand-lockup span {
  color: var(--purple-hot);
}

.photo-brand-lockup small {
  color: var(--silver);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
}

.photo-brand-lockup--dz {
  font-size: 1.5rem;
}

.cap-photo {
  background-image: url("assets/dannyz-artist-cap.jpg");
  background-position: 52% 22%;
}

.bw-photo {
  background-image: url("assets/dannyz-artist-lookbook.jpg");
  background-position: 38% center;
  filter: contrast(1.05);
}

.artist-proof-copy {
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(165, 72, 255, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.artist-proof-copy h2 {
  max-width: 11ch;
}

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

.category-card {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
}

.category-card::before,
.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.category-card::before {
  background-image: var(--cat-image, url("assets/dannyz-categories.png"));
  background-position: center;
  background-size: cover;
  transition: transform 420ms ease;
}

.category-card::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 62%);
}

.category-card:hover::before {
  transform: scale(1.055);
}

.category-card > div {
  position: relative;
  z-index: 1;
  max-width: 88%;
}

.category-index {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1.8;
  text-align: right;
}

.category-index em {
  color: var(--purple-hot);
  font-style: normal;
}

.category-card h3 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

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

.product-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.026);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  cursor: pointer;
}

.product-card a,
.product-card button {
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(165, 72, 255, 0.28);
  background: rgba(255, 255, 255, 0.042);
}

.product-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 46% 34%, rgba(255, 255, 255, 0.13), transparent 24%),
    radial-gradient(circle at 76% 70%, rgba(165, 72, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #202025, #0c0c10 48%, #030305);
}

.product-card .product-photo {
  border-color: rgba(255, 255, 255, 0.1);
}

.product-shot-img,
.product-worn-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 420ms ease,
    filter 180ms ease;
}

.product-worn-img {
  filter: saturate(0.96) contrast(1.04);
}

.mockup-cap .product-worn-img[src*="dannyz-signature-cap"],
.product-detail-page .gallery-frame .product-worn-img[src*="dannyz-signature-cap"] {
  object-fit: contain;
  padding: clamp(10px, 4%, 26px);
}

.mockup-phone .product-worn-img[src*="dannyz-phone-case"],
.product-detail-page .gallery-frame .product-worn-img[src*="dannyz-phone-case"],
.worn-summary-thumb .product-worn-img[src*="dannyz-phone-case"] {
  object-fit: contain;
  padding: clamp(12px, 5%, 34px);
}

.mockup-bracelet .product-worn-img[src*="dannyz-signature-bracelet"],
.product-detail-page .gallery-frame .product-worn-img[src*="dannyz-signature-bracelet"],
.worn-summary-thumb .product-worn-img[src*="dannyz-signature-bracelet"] {
  object-fit: contain;
  padding: clamp(10px, 4%, 28px);
}

.product-detail-page .phone-case-gallery-frame {
  width: min(100%, 68vh);
  max-width: 760px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
}

.product-detail-page .bracelet-gallery-frame {
  width: min(100%, 68vh);
  max-width: 760px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
}

.product-detail-page .phone-case-gallery-frame .product-worn-img[src*="dannyz-phone-case"] {
  padding: clamp(8px, 3.2%, 24px);
}

.product-detail-page .bracelet-gallery-frame .product-worn-img[src*="dannyz-signature-bracelet"] {
  padding: clamp(8px, 3.2%, 24px);
}

.campaign-product .product-worn-img,
.campaign-gallery-frame .product-worn-img,
.thumb .product-worn-img[src*="product-hero"] {
  object-position: center;
  filter: saturate(0.98) contrast(1.06) brightness(1.01);
}

.colorway-render {
  isolation: isolate;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 74% 66%, rgba(165, 72, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #202127, #0e0e13 52%, #050506);
}

.colorway-render .colorway-light,
.colorway-render .colorway-grid,
.colorway-render .colorway-pedestal {
  position: absolute;
  pointer-events: none;
  content: "";
}

.colorway-render .colorway-light {
  inset: -18% -10% 30%;
  z-index: 0;
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 78% 44%, rgba(165, 72, 255, 0.32), transparent 28%);
  filter: blur(2px);
}

.colorway-render .colorway-grid {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(165, 72, 255, 0.14) 59% 60%, transparent 61%),
    repeating-linear-gradient(158deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 42px);
  opacity: 0.76;
}

.colorway-render .colorway-pedestal {
  left: 12%;
  right: 12%;
  bottom: 8%;
  z-index: 1;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.16), rgba(165, 72, 255, 0.1) 32%, transparent 68%);
  filter: blur(6px);
}

.colorway-render .garment-mockup {
  inset: 7% 4% 8%;
  z-index: 2;
  transform: scale(1.04);
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.58));
}

.colorway-render .garment-piece {
  box-shadow:
    inset 0 0 0 1px var(--garment-stitch, rgba(255, 255, 255, 0.1)),
    inset 0 18px 28px rgba(255, 255, 255, 0.08),
    inset 0 -48px 54px rgba(0, 0, 0, 0.32),
    0 28px 56px rgba(0, 0, 0, 0.52);
}

.colorway-render .garment-graphic {
  inset: 24% 18% 17%;
  z-index: 3;
}

.colorway-render.colorway-front .garment-graphic {
  inset: 30% 21% 22%;
}

.colorway-render.mockup-hoodie .garment-graphic {
  inset: 34% 18% 16%;
}

.colorway-render.mockup-hoodie.colorway-front .garment-graphic {
  inset: 40% 22% 20%;
}

.colorway-render.mockup-cap .garment-graphic {
  inset: 34% 26% 43%;
}

.colorway-render.mockup-beanie .garment-graphic {
  inset: 50% 28% 32%;
}

.colorway-render.mockup-bag .garment-graphic,
.colorway-render.mockup-phone .garment-graphic,
.colorway-render.mockup-keychain .garment-graphic,
.colorway-render.mockup-bracelet .garment-graphic,
.colorway-render.mockup-accessory .garment-graphic {
  inset: 34% 26% 28%;
}

.colorway-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card .colorway-caption,
.thumb .colorway-caption,
.mini-product .colorway-caption,
.summary-thumb .colorway-caption,
.line-thumb .colorway-caption {
  display: none;
}

.product-worn-back {
  opacity: 0;
  transform: scale(1.015);
}

.photo-product,
.photo-product-frame,
.photo-product-thumb,
.worn-product,
.worn-product-frame,
.worn-product-thumb,
.worn-summary-thumb {
  background: #101014;
}

.product-photo.photo-product .product-shot-img,
.photo-product-thumb .product-shot-img {
  transform: scale(1.18);
}

.gallery-frame.photo-product-frame .product-shot-img {
  transform: scale(1.08);
}

.photo-product::before,
.photo-product::after,
.photo-product-frame::before,
.photo-product-frame::after,
.photo-product-thumb::before,
.photo-product-thumb::after,
.worn-product::before,
.worn-product::after,
.worn-product-frame::before,
.worn-product-frame::after,
.worn-product-thumb::before,
.worn-product-thumb::after,
.worn-summary-thumb::before {
  display: none;
}

.product-card:hover .photo-product .product-shot-img,
.gallery-frame.photo-product-frame:hover .product-shot-img,
.product-card:hover .worn-product .product-worn-img,
.gallery-frame.worn-product-frame:hover .product-worn-img {
  filter: contrast(1.04) brightness(1.03);
}

.product-card:hover .worn-product .product-worn-front {
  opacity: 0;
  transform: scale(1.015);
}

.product-card:hover .worn-product.single-photo .product-worn-front {
  opacity: 1;
  transform: scale(1.035);
}

.product-card:hover .worn-product .product-worn-back {
  opacity: 1;
  transform: scale(1.035);
}

.product-card:hover .photo-product .product-shot-img {
  transform: scale(1.22);
}

.gallery-frame.photo-product-frame:hover .product-shot-img {
  transform: scale(1.1);
}

.gallery-frame.worn-product-frame:hover .product-worn-img {
  transform: scale(1.018);
}

.gallery-frame.campaign-gallery-frame:hover .product-worn-img {
  transform: scale(1.025);
}

.product-photo::before,
.gallery-frame::before,
.thumb::before,
.summary-thumb::before,
.line-thumb::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(ellipse at 50% 92%, rgba(255, 255, 255, 0.16), transparent 42%),
    repeating-linear-gradient(158deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px);
  content: "";
}

.product-photo::after,
.gallery-frame::after {
  position: absolute;
  left: -16%;
  right: 10%;
  bottom: 12%;
  z-index: 0;
  height: 2px;
  transform: rotate(-8deg);
  background: linear-gradient(90deg, transparent, var(--purple-hot), rgba(255, 255, 255, 0.9), transparent);
  box-shadow: 0 0 18px rgba(165, 72, 255, 0.7);
  content: "";
  opacity: 0.82;
}

.sprite {
  position: absolute;
  inset: 0;
  background-image: url("assets/dannyz-products-front.png");
  background-position: var(--x, 0%) var(--y, 0%);
  background-size: 400% 300%;
  transition:
    opacity 220ms ease,
    transform 420ms ease,
    filter 220ms ease;
}

.sprite.alt {
  background-image: url("assets/dannyz-products-back.png");
  opacity: 0;
}

.product-photo .sprite,
.gallery-frame .sprite,
.thumb .sprite,
.summary-thumb .sprite,
.line-thumb .sprite {
  display: none;
}

.editorial-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background-image: var(--editorial-image);
  background-position: var(--editorial-position, center);
  background-size: cover;
  filter: saturate(0.9) contrast(1.06);
  transition:
    transform 420ms ease,
    filter 220ms ease;
}

.has-editorial::before {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 56%);
  pointer-events: none;
}

.has-editorial::after {
  z-index: 2;
  pointer-events: none;
}

.product-photo.has-editorial:not(.exact-product) .garment-mockup,
.product-photo.has-editorial:not(.exact-product) .garment-graphic {
  display: none;
}

.exact-product .editorial-photo {
  opacity: 0.22;
  filter: saturate(0.65) contrast(1.14) brightness(0.75);
}

.exact-product .garment-mockup {
  inset: 7% 4% 9%;
  z-index: 3;
  transform: scale(1.03);
}

.exact-product .garment-graphic {
  z-index: 4;
  inset: 15% 13% 12%;
}

.product-card .exact-product .garment-mockup {
  inset: 10% 2% 8%;
}

.product-card .exact-product .garment-graphic {
  inset: 16% 11% 11%;
}

.product-card .badges,
.product-card .wish-btn,
.product-card .quick-add {
  z-index: 6;
}

.real-photo-mark {
  position: absolute;
  left: 14px;
  right: 58px;
  bottom: 16px;
  z-index: 3;
  display: grid;
  gap: 4px;
  align-content: end;
  justify-items: start;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

.real-photo-mark b {
  display: inline-flex;
  max-width: 100%;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 0.96;
  text-transform: uppercase;
}

.real-photo-mark small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.real-drop-frame .real-photo-mark {
  right: 24px;
  bottom: 64px;
}

.real-drop-frame .real-photo-mark b {
  font-size: clamp(1rem, 2.4vw, 1.8rem);
}

.real-drop-frame .real-photo-mark small {
  font-size: clamp(0.68rem, 1vw, 0.9rem);
}

.product-card:hover .has-editorial .editorial-photo,
.gallery-frame.has-editorial:hover .editorial-photo {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.1);
}

.preview-count {
  position: absolute;
  top: 54px;
  right: 16px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.preview-colorways {
  position: absolute;
  right: 14px;
  bottom: 52px;
  z-index: 4;
  display: grid;
  gap: 7px;
}

.preview-colorways span {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: var(--swatch);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.42);
}

.preview-colorways small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 900;
}

.product-card .real-photo-mark,
.product-card .preview-count,
.product-card .preview-colorways {
  display: none;
}

.garment-mockup {
  position: absolute;
  inset: 10% 8%;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.garment-piece {
  position: absolute;
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 20%),
    radial-gradient(circle at 42% 12%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 58% 72%, rgba(0, 0, 0, 0.24), transparent 30%),
    repeating-linear-gradient(92deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px),
    var(--garment-panel, var(--garment-base));
  box-shadow:
    inset 0 0 0 1px var(--garment-stitch, rgba(255, 255, 255, 0.08)),
    inset 0 16px 18px rgba(255, 255, 255, 0.06),
    inset 0 -42px 42px rgba(0, 0, 0, 0.22),
    0 28px 42px rgba(0, 0, 0, 0.42);
}

.piece-chain {
  display: none;
}

.mockup-tee .piece-main,
.mockup-hoodie .piece-main,
.garment-tee .piece-main,
.garment-hoodie .piece-main {
  left: 24%;
  top: 19%;
  width: 52%;
  height: 66%;
  border-radius: 16px 16px 8px 8px;
  clip-path: polygon(18% 0, 82% 0, 100% 18%, 86% 100%, 14% 100%, 0 18%);
}

.mockup-tee .piece-left,
.mockup-tee .piece-right,
.garment-tee .piece-left,
.garment-tee .piece-right {
  top: 20%;
  width: 24%;
  height: 30%;
  border-radius: 12px;
}

.mockup-tee .piece-left,
.garment-tee .piece-left {
  left: 10%;
  transform: rotate(18deg);
  clip-path: polygon(32% 0, 100% 12%, 78% 100%, 0 72%);
}

.mockup-tee .piece-right,
.garment-tee .piece-right {
  right: 10%;
  transform: rotate(-18deg);
  clip-path: polygon(0 12%, 68% 0, 100% 72%, 22% 100%);
}

.mockup-tee .piece-detail,
.garment-tee .piece-detail {
  left: 40%;
  top: 19%;
  width: 20%;
  height: 9%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  background: transparent;
  box-shadow: none;
}

.mockup-hoodie .piece-main,
.garment-hoodie .piece-main {
  top: 25%;
  height: 61%;
  border-radius: 20px 20px 10px 10px;
}

.mockup-hoodie .piece-left,
.mockup-hoodie .piece-right,
.garment-hoodie .piece-left,
.garment-hoodie .piece-right {
  top: 29%;
  width: 26%;
  height: 50%;
  border-radius: 16px;
}

.mockup-hoodie .piece-left,
.garment-hoodie .piece-left {
  left: 8%;
  transform: rotate(12deg);
  clip-path: polygon(40% 0, 100% 8%, 76% 100%, 0 94%);
}

.mockup-hoodie .piece-right,
.garment-hoodie .piece-right {
  right: 8%;
  transform: rotate(-12deg);
  clip-path: polygon(0 8%, 60% 0, 100% 94%, 24% 100%);
}

.mockup-hoodie .piece-detail,
.garment-hoodie .piece-detail {
  left: 36%;
  top: 9%;
  width: 28%;
  height: 27%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px 999px 22px 22px;
  background:
    radial-gradient(circle at 50% 72%, transparent 0 34%, rgba(0, 0, 0, 0.28) 35% 100%),
    var(--garment-panel, var(--garment-base));
}

.mockup-cap .garment-mockup,
.garment-cap {
  inset: 18% 10%;
}

.mockup-cap .piece-main,
.garment-cap .piece-main {
  left: 20%;
  top: 26%;
  width: 60%;
  height: 31%;
  border-radius: 999px 999px 16px 16px;
  clip-path: ellipse(48% 46% at 50% 54%);
}

.mockup-cap .piece-left,
.garment-cap .piece-left {
  left: 28%;
  top: 50%;
  width: 44%;
  height: 13%;
  border-radius: 0 0 999px 999px;
  transform: perspective(110px) rotateX(24deg);
}

.mockup-cap .piece-right,
.mockup-cap .piece-detail,
.garment-cap .piece-right,
.garment-cap .piece-detail {
  display: none;
}

.mockup-accessory .piece-main,
.garment-accessory .piece-main {
  left: 31%;
  top: 18%;
  width: 38%;
  height: 58%;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 22%),
    linear-gradient(160deg, #111116, #3a3a42 44%, #101014 100%);
  clip-path: polygon(18% 0, 82% 0, 100% 22%, 82% 100%, 18% 100%, 0 22%);
}

.mockup-accessory .piece-left,
.garment-accessory .piece-left {
  left: 44%;
  top: 9%;
  width: 12%;
  height: 18%;
  border: 4px solid var(--silver);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  background: transparent;
  box-shadow: none;
}

.mockup-accessory .piece-right,
.mockup-accessory .piece-detail,
.garment-accessory .piece-right,
.garment-accessory .piece-detail {
  display: none;
}

.mockup-keychain .piece-main,
.garment-keychain .piece-main {
  left: 31%;
  top: 22%;
  width: 38%;
  height: 52%;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 22%),
    linear-gradient(160deg, #111116, #3a3a42 44%, #101014 100%);
  clip-path: polygon(18% 0, 82% 0, 100% 22%, 82% 100%, 18% 100%, 0 22%);
}

.mockup-keychain .piece-left,
.garment-keychain .piece-left {
  left: 43%;
  top: 10%;
  width: 14%;
  height: 20%;
  border: 4px solid var(--silver);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  background: transparent;
  box-shadow: none;
}

.mockup-keychain .piece-right,
.mockup-keychain .piece-detail,
.garment-keychain .piece-right,
.garment-keychain .piece-detail {
  display: none;
}

.mockup-beanie .garment-mockup,
.garment-beanie {
  inset: 18% 12%;
}

.mockup-beanie .piece-main,
.garment-beanie .piece-main {
  left: 17%;
  top: 22%;
  width: 66%;
  height: 46%;
  border-radius: 999px 999px 18px 18px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 8px),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.16), transparent 24%),
    var(--garment-panel, var(--garment-base));
  clip-path: polygon(12% 100%, 10% 52%, 22% 18%, 50% 0, 78% 18%, 90% 52%, 88% 100%);
}

.mockup-beanie .piece-left,
.garment-beanie .piece-left {
  left: 16%;
  top: 58%;
  width: 68%;
  height: 18%;
  border-radius: 12px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 9px),
    var(--garment-base);
}

.mockup-beanie .piece-detail,
.garment-beanie .piece-detail {
  left: 40%;
  top: 61%;
  width: 20%;
  height: 8%;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.34);
}

.mockup-beanie .piece-right,
.garment-beanie .piece-right {
  display: none;
}

.mockup-bag .piece-main,
.garment-bag .piece-main {
  left: 24%;
  top: 28%;
  width: 52%;
  height: 48%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 26%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 7px),
    var(--garment-base);
}

.mockup-bag .piece-left,
.garment-bag .piece-left {
  left: 60%;
  top: 8%;
  width: 10%;
  height: 74%;
  border-radius: 999px;
  transform: rotate(-28deg);
  transform-origin: center;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 10px),
    var(--garment-panel);
}

.mockup-bag .piece-right,
.garment-bag .piece-right {
  left: 29%;
  top: 38%;
  width: 42%;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.08);
}

.mockup-bag .piece-detail,
.garment-bag .piece-detail {
  left: 42%;
  top: 54%;
  width: 16%;
  height: 12%;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.42);
}

.mockup-phone .piece-main,
.garment-phone .piece-main {
  left: 34%;
  top: 13%;
  width: 32%;
  height: 70%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.22), transparent 9%),
    radial-gradient(circle at 25% 26%, rgba(255, 255, 255, 0.18), transparent 8%),
    radial-gradient(circle at 38% 15%, rgba(255, 255, 255, 0.14), transparent 7%),
    var(--garment-panel, var(--garment-base));
}

.mockup-phone .piece-left,
.garment-phone .piece-left {
  left: 37%;
  top: 18%;
  width: 16%;
  height: 16%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.42);
}

.mockup-phone .piece-right,
.mockup-phone .piece-detail,
.garment-phone .piece-right,
.garment-phone .piece-detail {
  display: none;
}

.mockup-bracelet .piece-chain,
.garment-bracelet .piece-chain {
  display: block;
  left: 21%;
  top: 33%;
  width: 58%;
  height: 32%;
  border: 9px double var(--silver);
  border-radius: 999px;
  background: transparent;
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.16),
    0 24px 34px rgba(0, 0, 0, 0.48);
}

.mockup-bracelet .piece-main,
.garment-bracelet .piece-main {
  left: 38%;
  top: 43%;
  width: 24%;
  height: 12%;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--silver), #2d2d34 58%, #0c0c10);
}

.mockup-bracelet .piece-left,
.mockup-bracelet .piece-right,
.mockup-bracelet .piece-detail,
.garment-bracelet .piece-left,
.garment-bracelet .piece-right,
.garment-bracelet .piece-detail {
  display: none;
}

.garment-graphic {
  --design-accent: var(--purple-hot);
  --design-soft: rgba(255, 255, 255, 0.16);
  position: absolute;
  inset: 16% 13%;
  z-index: 2;
  display: grid;
  pointer-events: none;
}

.theme-core {
  --design-accent: #f4f4ef;
}

.theme-purple,
.theme-signature {
  --design-accent: var(--purple-hot);
}

.theme-metal {
  --design-accent: var(--silver);
}

.theme-rise {
  --design-accent: #ffffff;
  --design-soft: rgba(165, 72, 255, 0.24);
}

.theme-radar {
  --design-accent: #cfd0d8;
  --design-soft: rgba(165, 72, 255, 0.3);
}

.theme-blind {
  --design-accent: #d9d9df;
  --design-soft: rgba(255, 255, 255, 0.22);
}

.theme-burn {
  --design-accent: #cfc5b4;
  --design-soft: rgba(141, 49, 94, 0.25);
}

.theme-message {
  --design-accent: #f4f4ef;
  --design-soft: rgba(255, 255, 255, 0.14);
}

.theme-night {
  --design-accent: var(--purple-hot);
  --design-soft: rgba(255, 255, 255, 0.2);
}

.theme-solo {
  --design-accent: var(--rose-deep);
  --design-soft: rgba(141, 49, 94, 0.24);
}

.graphic-side {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 14px;
  color: var(--garment-ink, #fff);
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.graphic-side::before {
  position: absolute;
  inset: 3% -3%;
  border: 1px solid var(--design-soft);
  background:
    linear-gradient(var(--design-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--design-soft) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.2;
}

.graphic-frame {
  position: absolute;
  inset: 2%;
  z-index: 0;
  border: 1px solid var(--design-soft);
  border-radius: 5px;
  opacity: 0.72;
}

.graphic-frame::before,
.graphic-frame::after {
  position: absolute;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--design-accent), transparent);
  content: "";
}

.graphic-frame::before {
  left: 8%;
  top: 12%;
}

.graphic-frame::after {
  right: 8%;
  bottom: 12%;
}

.graphic-micro {
  position: absolute;
  z-index: 1;
  color: var(--garment-ink, rgba(255, 255, 255, 0.7));
  opacity: 0.68;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.graphic-micro-a {
  left: 7%;
  top: 8%;
}

.graphic-micro-b {
  right: 7%;
  bottom: 8%;
}

.graphic-back {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.garment-graphic.is-fixed .graphic-side,
.graphic-side.is-visible {
  opacity: 1;
  transform: none;
}

.product-card:hover .garment-graphic.is-swap .graphic-front,
.gallery-frame:hover .garment-graphic.is-swap .graphic-front {
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
}

.product-card:hover .garment-graphic.is-swap .graphic-back,
.gallery-frame:hover .garment-graphic.is-swap .graphic-back {
  opacity: 1;
  transform: none;
}

.graphic-lockup,
.graphic-side strong,
.graphic-side small {
  position: relative;
  z-index: 1;
}

.graphic-lockup {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  color: var(--garment-ink, var(--design-accent));
  background: rgba(0, 0, 0, 0.36);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}

.mini-wordmark span {
  position: relative;
  display: inline-block;
  color: #fff;
}

.mini-wordmark span::after {
  position: absolute;
  left: 0;
  right: -2px;
  top: 48%;
  height: 2px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, var(--silver), var(--design-accent));
  content: "";
}

.graphic-side strong {
  max-width: 14ch;
  color: var(--garment-ink, #fff);
  font-size: 0.94rem;
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.graphic-side small {
  color: var(--garment-ink, rgba(255, 255, 255, 0.62));
  opacity: 0.62;
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-frame .garment-graphic {
  inset: 15% 14%;
}

.gallery-frame .graphic-lockup {
  min-height: 42px;
  padding-inline: 13px;
  font-size: 1.2rem;
}

.gallery-frame .graphic-side strong {
  max-width: 16ch;
  font-size: 1.72rem;
}

.gallery-frame .graphic-side small {
  font-size: 0.72rem;
}

.thumb .garment-graphic,
.mini-product .garment-graphic,
.summary-thumb .garment-graphic,
.line-thumb .garment-graphic {
  inset: 12%;
}

.thumb .graphic-side,
.mini-product .graphic-side,
.summary-thumb .graphic-side,
.line-thumb .graphic-side {
  gap: 2px;
  padding: 4px;
}

.thumb .graphic-lockup,
.mini-product .graphic-lockup,
.summary-thumb .graphic-lockup,
.line-thumb .graphic-lockup {
  min-height: 16px;
  padding-inline: 4px;
  border-radius: 3px;
  font-size: 0.42rem;
}

.thumb .graphic-side strong,
.mini-product .graphic-side strong,
.summary-thumb .graphic-side strong,
.line-thumb .graphic-side strong {
  max-width: 12ch;
  font-size: 0.42rem;
  line-height: 0.98;
}

.thumb .graphic-side small,
.mini-product .graphic-side small,
.summary-thumb .graphic-side small,
.line-thumb .graphic-side small {
  display: none;
}

.thumb .graphic-micro,
.mini-product .graphic-micro,
.summary-thumb .graphic-micro,
.line-thumb .graphic-micro {
  display: none;
}

.motif-shape,
.motif-shape::before,
.motif-shape::after {
  position: absolute;
  content: "";
}

.motif-shape {
  inset: 10%;
  opacity: 0.72;
}

.motif-slash .motif-shape,
.motif-signature .motif-shape {
  left: 18%;
  right: 18%;
  top: 48%;
  bottom: auto;
  height: 3px;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, transparent, var(--design-accent), transparent);
  box-shadow: 0 16px 0 rgba(255, 255, 255, 0.12);
}

.motif-grid .motif-shape {
  border: 1px solid var(--design-soft);
  background:
    linear-gradient(var(--design-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--design-soft) 1px, transparent 1px);
  background-size: 22px 22px;
}

.motif-up .motif-shape {
  left: 50%;
  right: auto;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(0deg, transparent, var(--design-accent));
}

.motif-up .motif-shape::before {
  left: -9px;
  top: 0;
  width: 18px;
  height: 18px;
  border-left: 2px solid var(--design-accent);
  border-top: 2px solid var(--design-accent);
  transform: rotate(45deg);
}

.motif-radar .motif-shape {
  inset: 18%;
  border: 1px solid var(--design-accent);
  border-radius: 999px;
  box-shadow:
    0 0 0 16px rgba(255, 255, 255, 0.05),
    0 0 0 34px rgba(165, 72, 255, 0.08);
}

.motif-radar .motif-shape::after {
  left: 50%;
  top: 50%;
  width: 42%;
  height: 2px;
  transform: rotate(-25deg);
  transform-origin: left center;
  background: var(--design-accent);
}

.motif-blind .motif-shape {
  top: 46%;
  bottom: auto;
  height: 18px;
  border: 1px solid var(--design-soft);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.motif-burn .motif-shape {
  inset: 22% 18%;
  border: 1px solid var(--design-soft);
  background:
    linear-gradient(135deg, transparent 0 36%, rgba(207, 197, 180, 0.2) 37% 44%, transparent 45%),
    linear-gradient(20deg, rgba(141, 49, 94, 0.16), transparent 55%);
}

.motif-burn .motif-shape::before,
.motif-burn .motif-shape::after {
  width: 36%;
  height: 24%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.motif-burn .motif-shape::before {
  left: -10%;
  top: 8%;
  transform: rotate(-12deg);
}

.motif-burn .motif-shape::after {
  right: -8%;
  bottom: 10%;
  transform: rotate(9deg);
}

.motif-message .motif-shape,
.motif-plan .motif-shape,
.motif-truth .motif-shape,
.motif-solo .motif-shape {
  inset: 24% 10%;
  border-top: 1px solid var(--design-soft);
  border-bottom: 1px solid var(--design-soft);
}

.motif-message .motif-shape::before,
.motif-plan .motif-shape::before,
.motif-truth .motif-shape::before,
.motif-solo .motif-shape::before {
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: var(--design-accent);
}

.motif-message .motif-shape::after {
  left: 16%;
  right: 16%;
  top: 50%;
  height: 2px;
  transform: rotate(-10deg);
  background: rgba(255, 255, 255, 0.52);
}

.motif-chrome .motif-shape {
  inset: 18% 16%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.motif-skyline .motif-shape {
  inset: auto 12% 12%;
  height: 34%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 8%, transparent 8% 13%, rgba(165, 72, 255, 0.34) 13% 20%, transparent 20% 27%, rgba(255, 255, 255, 0.14) 27% 36%, transparent 36% 45%, rgba(255, 255, 255, 0.2) 45% 55%, transparent 55% 66%, rgba(165, 72, 255, 0.26) 66% 74%, transparent 74%);
}

.photo-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.product-card:hover .sprite:first-child,
.gallery-frame:hover .sprite:first-child {
  opacity: 0;
}

.product-card:hover .sprite.alt,
.gallery-frame:hover .sprite.alt {
  opacity: 1;
}

.product-card:hover .sprite {
  transform: scale(1.035);
}

.badges {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.badge.limited {
  border-color: rgba(165, 72, 255, 0.46);
  background: rgba(80, 26, 136, 0.72);
}

.badge.web {
  color: #111;
  background: var(--silver);
}

.wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
}

.wish-btn.is-active {
  border-color: var(--purple-hot);
  color: var(--purple-hot);
  background: rgba(165, 72, 255, 0.12);
}

.quick-add {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  transform: translateY(12px);
  opacity: 0;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.product-card:hover .quick-add,
.product-card:focus-within .quick-add {
  transform: translateY(0);
  opacity: 1;
}

.product-info {
  display: grid;
  gap: 7px;
  padding: 2px 2px 4px;
}

.product-info h3 {
  margin: 0;
  min-height: 2.7em;
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.design-tag {
  display: block;
  min-height: 1.25em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--purple-hot);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
}

.product-info > .btn {
  width: 100%;
  min-height: 42px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price {
  font-weight: 950;
}

.old-price {
  color: var(--muted-2);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.swatches {
  display: flex;
  gap: 5px;
}

.swatch {
  appearance: none;
  width: 17px;
  height: 17px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: var(--swatch);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.swatch:hover,
.swatch.is-active {
  border-color: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.82),
    0 0 0 3px rgba(165, 72, 255, 0.56);
  transform: translateY(-1px);
}

.collection-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.62fr);
  gap: 18px;
  align-items: stretch;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #111117, #0b0b10);
}

.feature-panel::after {
  position: absolute;
  inset: auto -10% -20% 22%;
  height: 55%;
  background: linear-gradient(120deg, rgba(60, 28, 100, 0.58), rgba(255, 255, 255, 0.08), transparent);
  content: "";
  filter: blur(34px);
  opacity: 0.62;
}

.feature-panel > * {
  position: relative;
  z-index: 1;
}

.feature-panel h2 {
  max-width: 10ch;
}

.feature-panel .muted {
  max-width: 560px;
}

.mini-product-list {
  display: grid;
  gap: 10px;
}

.mini-product {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.mini-product .product-photo {
  width: 86px;
  aspect-ratio: 1;
}

.limited-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(165, 72, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 22, 28, 0.98), rgba(56, 26, 90, 0.52)),
    #111117;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0;
}

.countdown span {
  display: grid;
  place-items: center;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
}

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

.availability .bar {
  overflow: hidden;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.11);
}

.availability .bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--silver), var(--purple-hot));
}

.mystery-product {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.8)),
    url("assets/dannyz-cat-limited.jpg") center / cover;
}

.mystery-product::after {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 14px),
    rgba(0, 0, 0, 0.24);
  content: "";
  backdrop-filter: blur(8px);
}

.mystery-product div {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 1;
}

.lookbook {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  align-items: end;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.88)),
    url("assets/dannyz-cat-lyrics.jpg") center / cover;
}

.lookbook-tags {
  position: absolute;
  inset: 24px 24px auto auto;
  display: grid;
  gap: 8px;
  font-size: clamp(1.6rem, 4vw, 4.4rem);
  font-weight: 950;
  line-height: 0.9;
  text-align: right;
  text-transform: uppercase;
}

.music-banner,
.newsletter-band,
.account-shell,
.plain-card,
.checkout-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.music-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: center;
  padding: 28px;
}

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

.music-cover {
  display: grid;
  min-height: 150px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(165, 72, 255, 0.28), transparent),
    linear-gradient(135deg, #1a1a22, #050507);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
}

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

.newsletter-form div,
.discount-line span,
.search-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  color-scheme: dark;
  background: rgba(255, 255, 255, 0.055);
  outline: none;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

select {
  color: #fff;
  background-color: #0d0d12;
}

select option,
select optgroup {
  color: #050507;
  background: #fff;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 110px;
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(165, 72, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

label {
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero,
.page-hero {
  padding-top: 148px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(52, 26, 90, 0.2), transparent),
    #050507;
}

.product-context {
  padding-top: 86px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.96);
}

.product-context .section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-context a {
  color: #fff;
}

.product-context span::before,
.product-context strong::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.product-context strong {
  color: var(--purple-hot);
}

.shop-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 24px;
}

.filters {
  position: sticky;
  top: 82px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.filters label,
.checkout-form label,
.account-form label {
  display: grid;
  gap: 7px;
}

.filters select,
.shop-toolbar select {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #0d0d12;
}

.filters select option,
.filters select optgroup,
.shop-toolbar select option,
.shop-toolbar select optgroup {
  color: #050507 !important;
  background: #fff !important;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.columns-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.columns-toggle button {
  width: 38px;
  height: 42px;
  border: 0;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.columns-toggle button:first-child {
  border-left: 0;
}

.columns-toggle button.is-active {
  color: #050507;
  background: #fff;
}

.filter-actions {
  justify-content: space-between;
}

.load-more {
  display: grid;
  place-items: center;
  margin-top: 28px;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 32px;
  align-items: start;
}

.product-detail-page .product-page {
  padding-top: clamp(24px, 4vw, 42px);
}

.gallery {
  display: grid;
  gap: 12px;
}

.gallery-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111117;
}

.real-drop-frame {
  background:
    radial-gradient(circle at 68% 72%, rgba(165, 72, 255, 0.18), transparent 34%),
    #050507;
}

.gallery-frame.exact-product {
  background:
    radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.18), transparent 38%),
    radial-gradient(circle at 76% 22%, rgba(165, 72, 255, 0.12), transparent 28%),
    linear-gradient(145deg, #25262d, #111117 58%, #07070a);
}

.gallery-frame.exact-product .editorial-photo {
  opacity: 0.045;
  filter: grayscale(1) contrast(1.05) brightness(0.8);
}

.gallery-frame.exact-product .garment-mockup {
  inset: 4% 0 9%;
  z-index: 3;
  transform: scale(0.98);
}

.gallery-frame.exact-product .garment-graphic {
  inset: 14% 12% 12%;
  z-index: 4;
}

.gallery-frame.exact-product .graphic-side strong {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.product-packshot::before {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.13), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 42px);
}

.product-packshot::after {
  left: 16%;
  right: 16%;
  bottom: 12%;
  z-index: 2;
  height: 1px;
  transform: none;
  opacity: 0.34;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.14);
}

.packshot-stage {
  position: absolute;
  inset: 6%;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(255, 255, 255, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.product-packshot .garment-piece {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 16px 22px rgba(255, 255, 255, 0.08),
    inset 0 -48px 48px rgba(0, 0, 0, 0.28),
    0 34px 70px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.gallery-frame.product-packshot .graphic-lockup,
.gallery-frame.product-packshot .real-photo-mark b {
  background: rgba(0, 0, 0, 0.52);
}

.gallery-frame.is-front .graphic-back,
.gallery-frame.is-back .graphic-front {
  opacity: 0;
}

.gallery-frame.is-front .graphic-front,
.gallery-frame.is-back .graphic-back {
  opacity: 1;
  transform: none;
}

.editorial-showcase .editorial-photo {
  opacity: 1;
  filter: saturate(0.95) contrast(1.08);
}

.thumb.exact-product .editorial-photo {
  opacity: 0.035;
}

.thumb.exact-product .garment-mockup {
  inset: 8% 0 10%;
  z-index: 3;
}

.thumb.exact-product .garment-graphic {
  z-index: 4;
}

button.thumb {
  appearance: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.thumb.is-active {
  border-color: rgba(165, 72, 255, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(165, 72, 255, 0.34),
    0 0 0 1px rgba(165, 72, 255, 0.16);
}

.thumb-label {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 6;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drop-photo-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  max-width: calc(100% - 36px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.48);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.buyer-fit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.buyer-fit-strip span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

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

.thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111117;
}

.detail-card {
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.product-buy {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 18px;
}

.product-buy h1 {
  max-width: 100%;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.product-tagline {
  display: inline-flex;
  width: fit-content;
  border-left: 3px solid var(--purple);
  padding: 10px 14px;
  background: rgba(155, 92, 255, 0.08);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stripe-checkout-note {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  border: 1px solid rgba(165, 72, 255, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(165, 72, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.02);
}

.stripe-checkout-note strong {
  color: var(--purple-hot);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stripe-checkout-note span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.stripe-checkout-note.stripe-pending {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.035);
}

.stripe-variant-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.option-grid {
  display: grid;
  gap: 12px;
}

.size-options,
.color-options,
.qty {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selected-option-label {
  margin-top: -6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-options button,
.color-options button,
.qty button {
  min-width: 44px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.size-options button.is-active,
.color-options button.is-active {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.model-options-wrap {
  display: block;
}

.device-size-options {
  display: grid;
  gap: 14px;
}

.device-option-group {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.device-option-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.device-model-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 8px;
}

.device-model-options button {
  min-height: 44px;
  padding: 10px 12px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
}

.device-model-select {
  width: 100%;
}

.device-model-select select {
  width: 100%;
  min-height: 54px;
  padding: 15px 46px 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.86) 50%) calc(100% - 20px) 50% / 8px 8px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.86) 50%, transparent 50%) calc(100% - 15px) 50% / 8px 8px no-repeat,
    rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.device-model-select select:focus-visible {
  border-color: var(--purple-hot);
  outline: 2px solid rgba(165, 72, 255, 0.35);
  outline-offset: 3px;
}

.device-model-select optgroup,
.device-model-select option {
  background: #fff;
  color: #050507;
}

.compatibility-list {
  display: grid;
  gap: 12px;
}

.compatibility-list strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.color-options button:not(.color-choice) {
  width: 42px;
  border-radius: 999px;
  background: var(--swatch);
}

.option-grid-clean {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.032);
}

.option-summary {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.option-summary span {
  color: var(--purple-hot);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.option-summary strong {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.option-block {
  display: grid;
  gap: 8px;
}

.option-block label {
  color: #fff;
}

.color-choice-list {
  align-items: stretch;
}

.color-options .color-choice {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 128px;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-align: left;
}

.color-options .color-choice .swatch-dot {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: var(--swatch);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.15),
    0 0 14px rgba(165, 72, 255, 0.18);
}

.color-options .color-choice b {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.color-options .color-choice.is-active {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(165, 72, 255, 0.22);
}

.qty {
  align-items: center;
}

.qty span {
  min-width: 38px;
  text-align: center;
  font-weight: 900;
}

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

.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.accordion summary {
  padding: 14px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accordion details > div {
  padding: 0 14px 14px;
  color: var(--muted);
  line-height: 1.6;
}

.accordion ul {
  margin: 0;
  padding-left: 18px;
}

.accordion li + li {
  margin-top: 4px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.size-table th,
.size-table td {
  padding: 9px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 24px;
}

.plain-card,
.checkout-shell,
.account-shell {
  padding: 20px;
}

.catalog-empty-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.upcoming-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(520px, 100%);
}

.upcoming-countdown span {
  display: grid;
  place-items: center;
  min-width: 72px;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.18);
  color: var(--silver);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.upcoming-countdown strong {
  display: block;
  color: #fff;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  line-height: 1;
}

.plain-card p,
.plain-card li {
  color: var(--muted);
  line-height: 1.7;
}

.plain-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.tracking-result {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.tracking-result h3 {
  margin: 0;
  color: #fff;
}

.tracking-result-error {
  border-color: rgba(165, 72, 255, 0.45);
  background:
    linear-gradient(145deg, rgba(165, 72, 255, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.035);
}

.tracking-result-success {
  border-color: rgba(255, 255, 255, 0.24);
}

.about-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88)),
    url("assets/dannyz-artist-cap.jpg") center 22% / cover;
}

.about-image::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(165, 72, 255, 0.2), transparent 45%);
  content: "";
}

.about-image::after {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 7, 0.58);
  color: #fff;
  content: "DANNYZ OFFICIAL";
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 24px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

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

.payment-options,
.shipping-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.order-summary-lines,
.account-orders,
.wishlist-grid {
  display: grid;
  gap: 12px;
}

.summary-line,
.order-line {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.stripe-checkout-line {
  grid-template-columns: 82px minmax(0, 1fr) auto;
}

.stripe-checkout-line span {
  display: inline-flex;
  margin-top: 6px;
  color: var(--purple-hot);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stripe-checkout-line .btn {
  min-height: 42px;
  white-space: nowrap;
}

.summary-thumb,
.line-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111117;
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.account-tabs button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.account-tabs button.is-active {
  color: #050507;
  background: #fff;
}

.cart-drawer,
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 70;
  display: flex;
  width: min(440px, 100%);
  transform: translateX(105%);
  flex-direction: column;
  border-left: 1px solid var(--line);
  background: rgba(7, 7, 10, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: transform 220ms ease;
}

.mobile-menu {
  width: min(380px, 100%);
}

.cart-drawer.open,
.mobile-menu.open {
  transform: translateX(0);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-kicker,
.panel-title {
  display: block;
}

.panel-kicker {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-title {
  font-size: 1.15rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
  gap: 2px;
  padding: 12px;
}

.mobile-menu nav a {
  padding: 14px;
  border-radius: var(--radius);
  color: var(--silver);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.free-shipping {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-lines {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding: 16px;
}

.cart-line {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.cart-line h3 {
  margin: 0 0 5px;
  font-size: 0.92rem;
}

.cart-line p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-line-note {
  margin-top: 4px;
  color: var(--purple-hot);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.cart-controls button {
  min-width: 32px;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.cart-upsell {
  padding: 0 16px 16px;
}

.cart-summary {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.discount-line {
  display: grid;
  gap: 7px;
}

.discount-line button,
.newsletter-form button,
.footer-newsletter button {
  border: 1px solid #fff;
  border-radius: var(--radius);
  color: #050507;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.money-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.money-row.total {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 950;
}

.cart-stripe-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.6);
}

.search-dialog {
  width: min(740px, calc(100% - 28px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(7, 7, 10, 0.97);
  box-shadow: var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.search-shell {
  display: grid;
}

.search-field {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding: 16px;
}

.search-field input {
  border: 0;
  background: transparent;
  font-size: 1.15rem;
}

.search-results {
  display: grid;
  gap: 10px;
  max-height: 60vh;
  overflow: auto;
  padding: 0 16px 16px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 90;
  width: min(460px, calc(100% - 32px));
  transform: translate(-50%, 16px);
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(20, 20, 26, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030304;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.62fr)) minmax(260px, 1fr);
  gap: 28px;
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  padding: 56px 0 34px;
}

.footer-grid nav,
.footer-newsletter,
.footer-brand {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h2 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.footer-grid a,
.footer-grid p,
.footer-newsletter span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.82rem;
}

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

  .mobile-menu-btn {
    display: grid;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .header-actions {
    justify-self: end;
  }

  .product-grid {
    --cols: 3;
  }

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

@media (max-width: 860px) {
  .desktop-only {
    display: none;
  }

  .hero-content {
    margin-inline: auto;
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 6rem);
  }

  .section-head,
  .artist-proof,
  .collection-strip,
  .limited-panel,
  .music-banner,
  .newsletter-band,
  .shop-layout,
  .product-page,
  .page-grid,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .artist-proof-photo,
  .artist-proof-copy {
    min-height: 330px;
  }

  .filters,
  .product-buy {
    position: static;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --cols: 2;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
  }

  .columns-toggle {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 12px 14px;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.38)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16));
  }

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

  .hero-brand-signature {
    right: 18px;
    bottom: 22px;
    left: 18px;
    justify-items: start;
  }

  .info-bar div,
  .button-row,
  .hero-actions,
  .music-links {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .category-grid,
  .product-grid,
  .countdown,
  .upcoming-countdown,
  .cover-grid,
  .form-grid,
  .payment-options,
  .shipping-options,
  .footer-grid,
  .catalog-empty-card {
    grid-template-columns: 1fr;
    --cols: 1;
  }

  .category-card {
    min-height: 300px;
  }

  .color-options .color-choice {
    min-width: calc(50% - 4px);
  }

  .product-info h3 {
    min-height: auto;
  }

  .mini-product,
  .summary-line,
  .order-line {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .stripe-checkout-line .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .mini-product .price,
  .summary-line > strong,
  .order-line > strong {
    grid-column: 2;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
