:root {
  --bg: #07070b;
  --bg-deep: #030306;
  --surface: rgba(20, 20, 28, 0.62);
  --surface-strong: rgba(24, 24, 34, 0.82);
  --text: #f8f8fb;
  --muted: #a4a4b1;
  --line: rgba(255,255,255,0.11);
  --line-strong: rgba(255,255,255,0.22);
  --red: #df1733;
  --red-bright: #ff3653;
  --blue: #1b83dc;
  --gold: #d9b76a;
  --shadow: 0 30px 90px rgba(0,0,0,0.48);
  --header-h: 72px;
  --display: "Syne", sans-serif;
  --condensed: "Barlow Condensed", sans-serif;
  --body: "Barlow", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% -8%, rgba(223,23,51,0.13), transparent 34rem),
    radial-gradient(circle at 86% 8%, rgba(27,131,220,0.12), transparent 34rem),
    linear-gradient(180deg, #08080d 0%, #050508 100%);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { color: inherit; }
.is-hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.shell { width: min(1420px, calc(100% - 40px)); margin-inline: auto; }

.page-light, .page-noise { position: fixed; inset: 0; pointer-events: none; z-index: -2; }
.page-light-left {
  background: radial-gradient(ellipse 36rem 30rem at -7% 22%, rgba(223,23,51,0.12), transparent 68%);
}
.page-light-right {
  background: radial-gradient(ellipse 40rem 32rem at 106% 46%, rgba(27,131,220,0.11), transparent 70%);
}
.page-noise {
  z-index: -1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(7,7,11,0.72);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7,7,11,0.9);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.header-inner { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: max-content; gap: 11px; text-decoration: none; }
.brand img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,.45)); }
.brand span { display: flex; align-items: baseline; gap: 7px; }
.brand strong { font: 800 1.05rem/1 var(--display); letter-spacing: .06em; }
.brand small { color: var(--muted); font: 800 .72rem/1 var(--condensed); letter-spacing: .18em; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  position: relative;
  padding: 26px 0 22px;
  color: rgba(255,255,255,.67);
  text-decoration: none;
  text-transform: uppercase;
  font: 800 .78rem/1 var(--condensed);
  letter-spacing: .14em;
  transition: color .2s ease;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transition: transform .22s ease;
}
.header-nav a:hover, .header-nav a[aria-current="page"] { color: #fff; }
.header-nav a:hover::after, .header-nav a[aria-current="page"]::after { transform: scaleX(1); }
.cart-trigger {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 0 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.cart-trigger:hover { border-color: var(--line-strong); background: rgba(255,255,255,.075); transform: translateY(-1px); }
.cart-label { font: 800 .76rem/1 var(--condensed); letter-spacing: .12em; text-transform: uppercase; }
.cart-count {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 42px;
  padding: 0 10px;
  background: #fff;
  color: #09090d;
  font: 800 .86rem/1 var(--condensed);
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr);
  align-items: center;
  gap: clamp(20px,4vw,70px);
  padding-top: 26px;
  padding-bottom: 34px;
}
.hero-copy { position: relative; z-index: 5; padding-left: clamp(0px,2vw,24px); }
.eyebrow {
  margin: 0 0 16px;
  color: #b8bac6;
  font: 800 .72rem/1 var(--condensed);
  letter-spacing: .3em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.hero h1 span { display: block; font-size: clamp(4.7rem,7.4vw,7.3rem); color: #fff; text-shadow: 0 20px 55px rgba(0,0,0,.48); }
.hero h1 strong {
  display: block;
  margin-left: .24em;
  font-size: clamp(3.5rem,5.9vw,5.8rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.62);
  background: linear-gradient(96deg, #fff 5%, #d7d9e4 36%, #ee3049 70%, #4aa6ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 16px 35px rgba(0,0,0,.5));
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 42px; }
.primary-action, .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  font: 800 .8rem/1 var(--condensed);
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.primary-action {
  color: #fff;
  background: linear-gradient(105deg, #bd1028, #f02c49 54%, #9e1731);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 16px 38px rgba(211,19,42,.22), inset 0 1px 0 rgba(255,255,255,.18);
}
.primary-action:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(211,19,42,.3), inset 0 1px 0 rgba(255,255,255,.2); }
.secondary-action { color: #fff; border-color: var(--line); background: rgba(255,255,255,.04); }
.secondary-action:hover { transform: translateY(-2px); border-color: var(--line-strong); background: rgba(255,255,255,.08); }
.text-action {
  color: #d7d7df;
  text-decoration: none;
  font: 800 .78rem/1 var(--condensed);
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}
.text-action span { display: inline-block; margin-left: 7px; transition: transform .2s ease; }
.text-action:hover { color: #fff; }
.text-action:hover span { transform: translate(3px,-3px); }

.hero-art { position: relative; min-height: 500px; isolation: isolate; }
.liquid-sheet {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.025) 42%, rgba(255,255,255,.06)),
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.22), transparent 22%),
    rgba(17,17,25,.28);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  box-shadow: 0 40px 120px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.12);
  z-index: -1;
}
.liquid-sheet-a { inset: 82px 22px 46px 60px; border-radius: 42% 58% 52% 48% / 34% 39% 61% 66%; transform: rotate(-7deg); animation: liquidMorphA 11s ease-in-out infinite alternate; }
.liquid-sheet-b { width: 250px; height: 250px; right: 3%; top: 6%; border-radius: 56% 44% 35% 65% / 48% 62% 38% 52%; opacity: .48; transform: rotate(15deg); animation: liquidMorphB 9s ease-in-out infinite alternate; }
@keyframes liquidMorphA { to { border-radius: 55% 45% 42% 58% / 44% 54% 46% 56%; transform: rotate(-3deg) translate(8px,-4px); } }
@keyframes liquidMorphB { to { border-radius: 42% 58% 61% 39% / 62% 35% 65% 38%; transform: rotate(21deg) translate(-8px,10px); } }
.hero-products { position: absolute; inset: 0; }
.hero-product {
  position: absolute;
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.54));
  transition: filter .25s ease, transform .25s ease;
}
.hero-product img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.hero-product-a { z-index: 3; width: 48%; height: 78%; left: 4%; bottom: 1%; transform: rotate(-10deg); animation: floatA 6.4s ease-in-out infinite; }
.hero-product-b { z-index: 4; width: 49%; height: 84%; left: 27%; top: 0; transform: rotate(5deg); animation: floatB 7.2s ease-in-out infinite; }
.hero-product-c { z-index: 2; width: 44%; height: 72%; right: -1%; bottom: 4%; transform: rotate(13deg); animation: floatC 6.8s ease-in-out infinite; }
.hero-product:hover { filter: drop-shadow(0 38px 44px rgba(0,0,0,.68)) drop-shadow(0 0 22px rgba(255,255,255,.09)); }
@keyframes floatA { 0%,100% { transform: rotate(-10deg) translate3d(0,0,0); } 50% { transform: rotate(-7deg) translate3d(-5px,-16px,0); } }
@keyframes floatB { 0%,100% { transform: rotate(5deg) translate3d(0,0,0); } 50% { transform: rotate(2deg) translate3d(8px,13px,0); } }
@keyframes floatC { 0%,100% { transform: rotate(13deg) translate3d(0,0,0); } 50% { transform: rotate(10deg) translate3d(5px,-14px,0); } }
.hero-watermark { position: absolute; z-index: 1; width: 150px; height: 150px; object-fit: contain; left: 49%; top: 51%; transform: translate(-50%,-50%); opacity: .075; filter: grayscale(1); }
.skeleton-image { background: linear-gradient(100deg, rgba(255,255,255,.02) 25%, rgba(255,255,255,.08) 42%, rgba(255,255,255,.02) 59%); background-size: 260% 100%; animation: shimmer 1.5s ease-in-out infinite; border-radius: 24px; }
@keyframes shimmer { to { background-position-x: -160%; } }

.catalog { padding: 88px 0 64px; scroll-margin-top: calc(var(--header-h) + 20px); }
.catalog-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.catalog-heading h2, .cart-head h2, .related-section h2 {
  margin: 0;
  font: 800 clamp(2.7rem,5vw,5rem)/.9 var(--display);
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.product-total { margin: 0 0 5px; color: var(--muted); font: 800 .76rem/1 var(--condensed); letter-spacing: .16em; text-transform: uppercase; }
.category-bar {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.category-bar-title {
  color: #858591;
  font: 800 .7rem/1 var(--condensed);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.category-filters {
  display: flex;
  min-width: 0;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.category-filters::-webkit-scrollbar { display: none; }
.category-chip {
  flex: none;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: #c8c8d1;
  background: rgba(255,255,255,.035);
  font: 800 .74rem/1 var(--condensed);
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.category-chip:hover:not(:disabled) {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}
.category-chip.is-active {
  color: #fff;
  border-color: rgba(223,23,51,.62);
  background: rgba(223,23,51,.17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 24px -15px rgba(223,23,51,.9);
}
.category-chip:focus-visible { outline: 2px solid rgba(255,255,255,.9); outline-offset: 2px; }
.category-chip:disabled {
  opacity: .42;
  cursor: default;
}
.category-chip small {
  margin-left: 7px;
  color: #8c8c97;
  font-size: .58rem;
  letter-spacing: .1em;
}
.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px,1fr) 240px;
  gap: 26px;
  margin-bottom: 34px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}
.search-field, .sort-field { display: flex; align-items: center; min-height: 52px; border-bottom: 1px solid rgba(255,255,255,.12); }
.search-field { gap: 12px; }
.search-field svg { width: 20px; height: 20px; fill: none; stroke: #c7c7d1; stroke-width: 1.8; }
.search-field input, .sort-field select {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
}
.search-field input::placeholder { color: #7f7f8d; }
.sort-field { gap: 14px; }
.sort-field > span { flex: none; color: #8e8e9b; font: 800 .7rem/1 var(--condensed); letter-spacing: .14em; text-transform: uppercase; }
.sort-field select { cursor: pointer; color-scheme: dark; }

.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  color: inherit;
  text-decoration: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.09), transparent 34%),
    linear-gradient(155deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 20px 55px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.055);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(0);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 22%, rgba(255,255,255,.09) 46%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.21); box-shadow: 0 32px 80px rgba(0,0,0,.42), 0 0 54px -28px rgba(223,23,51,.55), inset 0 1px 0 rgba(255,255,255,.08); }
.product-card:hover::after { transform: translateX(120%); }
.product-visual { position: relative; aspect-ratio: .92; overflow: hidden; background: radial-gradient(circle at 50% 44%, rgba(255,255,255,.09), transparent 47%); }
.product-visual::after { content: ""; position: absolute; left: 12%; right: 12%; bottom: 6%; height: 14%; background: rgba(0,0,0,.55); filter: blur(25px); border-radius: 50%; transform: scaleX(.76); opacity: .5; }
.product-visual img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: 18px 18px 4px; transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .3s ease; filter: drop-shadow(0 18px 25px rgba(0,0,0,.36)); }
.product-card:hover .product-visual img { transform: scale(1.055) rotate(-1deg); filter: drop-shadow(0 25px 32px rgba(0,0,0,.48)); }
.product-meta { position: relative; z-index: 2; padding: 18px 20px 21px; border-top: 1px solid rgba(255,255,255,.075); background: linear-gradient(180deg, rgba(7,7,11,.08), rgba(7,7,11,.32)); }
.product-meta h3 { margin: 0; min-height: 2.4em; color: #f4f4f7; font: 700 clamp(1.03rem,1.2vw,1.2rem)/1.18 var(--body); }
.product-card-bottom { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-top: 15px; }
.product-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.product-price strong { font: 800 1.25rem/1 var(--body); letter-spacing: -.015em; }
.product-price del { color: #777783; font-size: .86rem; }
.product-arrow { display: grid; place-items: center; width: 28px; height: 28px; border: 0; background: none; color: rgba(255,255,255,.4); transition: color .22s ease, transform .3s cubic-bezier(.2,.8,.2,1); }
.product-arrow svg { width: 20px; height: 20px; display: block; }
.product-card:hover .product-arrow { color: #fff; transform: translate(3px,-3px); }
.product-state { margin: 10px 0 0; color: #d9909c; font-size: .8rem; }
.status-panel, .empty-state {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.025);
  text-align: center;
}
.status-panel h3, .empty-state h3 { margin: 0; font: 800 1.3rem/1.1 var(--display); }
.status-panel p, .empty-state p { margin: 0; color: var(--muted); }
.loading-bar { width: min(280px,70vw); height: 3px; overflow: hidden; background: rgba(255,255,255,.08); }
.loading-bar::after { content: ""; display: block; width: 45%; height: 100%; background: linear-gradient(90deg, var(--red), #fff, var(--blue)); animation: loadingMove 1.1s ease-in-out infinite alternate; }
@keyframes loadingMove { from { transform: translateX(-10%); } to { transform: translateX(130%); } }

.site-footer { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 42px; border-top: 1px solid var(--line); }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #c8c8d0; font: 800 .78rem/1 var(--condensed); letter-spacing: .16em; }
.footer-brand img { width: 38px; height: 38px; object-fit: contain; }
.site-footer nav { display: flex; gap: 22px; }
.site-footer nav a { color: var(--muted); text-decoration: none; font: 700 .75rem/1 var(--condensed); letter-spacing: .12em; text-transform: uppercase; }
.site-footer nav a:hover { color: #fff; }

/* Product page */
.product-page { padding-top: 42px; padding-bottom: 72px; }
.back-link { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 28px; color: #bbbcc6; text-decoration: none; font: 800 .73rem/1 var(--condensed); letter-spacing: .14em; }
.back-link:hover { color: #fff; }
.product-detail { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(380px,.92fr); gap: clamp(34px,5vw,78px); align-items: start; }
.product-gallery { min-width: 0; }
.product-main-image {
  position: relative;
  aspect-ratio: 1 / 1.03;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.11), transparent 46%),
    linear-gradient(150deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  box-shadow: 0 35px 100px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.product-main-image::after { content: ""; position: absolute; z-index: 0; left: 14%; right: 14%; bottom: 7%; height: 13%; background: rgba(0,0,0,.5); filter: blur(30px); border-radius: 50%; }
.product-main-image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: clamp(20px,4vw,55px); filter: drop-shadow(0 28px 38px rgba(0,0,0,.46)); animation: productEnter .45s ease both; }
@keyframes productEnter { from { opacity: 0; transform: scale(.96) translateY(8px); } }
.product-thumbs { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; margin-top: 14px; }
.product-thumb { aspect-ratio: 1; padding: 5px; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); cursor: pointer; }
.product-thumb.is-active { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.07); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-info { position: sticky; top: calc(var(--header-h) + 28px); padding: 18px 0 0; }
.product-info h1 { margin: 0; font: 800 clamp(2.5rem,4vw,5rem)/.96 var(--display); letter-spacing: -.055em; text-transform: uppercase; overflow-wrap: anywhere; }
.product-page-price { display: flex; align-items: baseline; gap: 12px; margin-top: 22px; }
.product-page-price strong { font: 800 clamp(1.9rem,3vw,2.7rem)/1 var(--body); letter-spacing: -.02em; }
.product-page-price del { color: #777783; font-size: 1rem; }
.product-description { margin-top: 24px; color: #b6b6c1; font-size: 1rem; line-height: 1.7; }
.product-description p:first-child { margin-top: 0; }
.product-description a { color: #fff; }
.variant-section { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.field-label { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 13px; }
.field-label span { font: 800 .74rem/1 var(--condensed); letter-spacing: .15em; text-transform: uppercase; }
.field-label strong { color: var(--muted); font-size: .84rem; font-weight: 600; }
.option-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.option-button {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #dcdce3;
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.option-button:hover:not(:disabled) { border-color: var(--line-strong); background: rgba(255,255,255,.075); transform: translateY(-1px); }
.option-button.is-active { border-color: #fff; color: #08080c; background: #fff; }
.option-button:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.color-swatch { display: inline-block; width: 13px; height: 13px; margin-right: 9px; border: 1px solid rgba(255,255,255,.35); border-radius: 4px; vertical-align: -2px; background: var(--swatch); }
.buy-row { display: grid; grid-template-columns: 124px 1fr; gap: 12px; margin-top: 30px; }
.quantity-control { display: grid; grid-template-columns: 40px 1fr 40px; min-height: 54px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.035); }
.quantity-control button { border: 0; background: transparent; cursor: pointer; font-size: 1.2rem; }
.quantity-control button:hover { background: rgba(255,255,255,.06); }
.quantity-control output { display: grid; place-items: center; border-inline: 1px solid var(--line); font-weight: 700; }
.add-action { width: 100%; min-height: 54px; }
.add-action:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.stock-message { min-height: 20px; margin: 11px 0 0; color: #c7c7d0; font-size: .84rem; }
.stock-message.is-error { color: #e28d9a; }
.additional-info { margin-top: 26px; border-top: 1px solid var(--line); }
.info-block { border-bottom: 1px solid var(--line); }
.info-block summary { list-style: none; cursor: pointer; padding: 18px 0; font: 800 .78rem/1 var(--condensed); letter-spacing: .13em; text-transform: uppercase; }
.info-block summary::-webkit-details-marker { display: none; }
.info-block summary::after { content: "+"; float: right; color: var(--muted); font-size: 1.1rem; }
.info-block[open] summary::after { content: "−"; }
.info-body { padding: 0 0 20px; color: #aaaab5; line-height: 1.65; }
.info-link { color: #fff; }
.product-loading { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(380px,.92fr); gap: 70px; }
.product-loading-media { aspect-ratio: 1/1.03; border-radius: 34px; }
.product-loading-copy { padding-top: 55px; }
.product-loading-copy div { height: 18px; margin-bottom: 18px; border-radius: 6px; background: rgba(255,255,255,.06); }
.product-loading-copy div:first-child { width: 85%; height: 86px; }
.product-loading-copy div:nth-child(2) { width: 30%; height: 36px; }
.product-loading-copy div:nth-child(3) { width: 70%; height: 90px; }
.product-error { max-width: 720px; min-height: 480px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.product-error h1 { margin: 0 0 16px; font: 800 clamp(3rem,7vw,6rem)/.9 var(--display); letter-spacing: -.05em; }
.product-error > p:not(.eyebrow) { color: var(--muted); margin: 0 0 28px; }
.related-section { margin-top: 110px; padding-top: 54px; border-top: 1px solid var(--line); }
.compact-heading { margin-bottom: 28px; }
.related-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }

/* Cart */
.drawer-backdrop { position: fixed; inset: 0; z-index: 180; background: rgba(0,0,0,.66); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.cart-drawer {
  position: fixed;
  z-index: 190;
  top: 0;
  right: 0;
  width: min(470px,100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  border-left: 1px solid var(--line);
  background: rgba(10,10,15,.96);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  box-shadow: -36px 0 90px rgba(0,0,0,.5);
  transition: transform .34s cubic-bezier(.22,.8,.22,1);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-head h2 { font-size: 2.4rem; }
.icon-button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.035); cursor: pointer; }
.icon-button:hover { border-color: var(--line-strong); background: rgba(255,255,255,.075); }
.icon-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cart-empty { flex: 1; display: grid; place-items: center; align-content: center; gap: 18px; padding: 32px; color: var(--muted); text-align: center; }
.cart-content { min-height: 0; flex: 1; display: flex; flex-direction: column; }
.cart-items { min-height: 0; flex: 1; overflow-y: auto; padding: 12px 22px; }
.cart-item { display: grid; grid-template-columns: 92px 1fr; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item-image { aspect-ratio: 1; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.035); overflow: hidden; }
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-item-info h3 { margin: 2px 0 5px; font-size: .98rem; line-height: 1.2; }
.cart-variant { margin: 0; color: var(--muted); font-size: .78rem; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; }
.cart-mini-quantity { display: grid; grid-template-columns: 30px 34px 30px; min-height: 32px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.cart-mini-quantity button { border: 0; background: transparent; cursor: pointer; }
.cart-mini-quantity span { display: grid; place-items: center; border-inline: 1px solid var(--line); font-size: .8rem; }
.cart-item-price { font-size: .92rem; }
.remove-item { margin-top: 9px; padding: 0; border: 0; color: #8d8d99; background: transparent; cursor: pointer; font-size: .76rem; text-decoration: underline; text-underline-offset: 3px; }
.remove-item:hover { color: #fff; }
.cart-summary { padding: 22px; border-top: 1px solid var(--line); background: rgba(255,255,255,.025); }
.summary-row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.summary-row strong { font: 800 1.45rem/1 var(--body); letter-spacing: -.015em; }
.cart-summary > p { color: var(--muted); font-size: .78rem; }
.checkout-action { width: 100%; margin-top: 8px; }
.checkout-error { color: #e28d9a !important; }
.toast { position: fixed; z-index: 240; left: 50%; bottom: 26px; transform: translate(-50%,25px); min-width: min(340px,calc(100% - 32px)); padding: 14px 18px; border: 1px solid var(--line-strong); border-radius: 13px; background: rgba(18,18,25,.94); box-shadow: var(--shadow); text-align: center; opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 1180px) {
  .hero { grid-template-columns: .75fr 1.25fr; min-height: 530px; }
  .hero-art { min-height: 480px; }
  .product-grid, .related-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .shell { width: min(100% - 28px, 1420px); }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-copy { text-align: center; padding: 0; }
  .hero h1 strong { margin-left: 0; }
  .hero-actions { justify-content: center; }
  .hero-art { min-height: 480px; margin-top: -15px; }
  .product-grid, .related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-detail, .product-loading { grid-template-columns: 1fr; gap: 30px; }
  .product-info { position: static; padding-top: 6px; }
  .product-main-image { aspect-ratio: 1.05; }
  .related-section { margin-top: 80px; }
}
@media (max-width: 640px) {
  :root { --header-h: 66px; }
  .shell { width: min(100% - 22px, 1420px); }
  .brand img { width: 38px; height: 38px; }
  .brand small { display: none; }
  .cart-label { display: none; }
  .cart-trigger { padding-left: 0; min-width: 42px; }
  .hero { padding-top: 54px; padding-bottom: 20px; }
  .hero h1 span { font-size: clamp(4.6rem,23vw,7rem); }
  .hero h1 strong { font-size: clamp(3.5rem,17vw,5.2rem); }
  .hero-actions { margin-top: 30px; gap: 18px; flex-direction: column; }
  .primary-action { min-height: 50px; }
  .hero-art { min-height: 420px; margin-top: 5px; }
  .liquid-sheet-a { inset: 72px 8px 32px 18px; }
  .hero-product-a { width: 52%; left: -3%; }
  .hero-product-b { width: 55%; left: 23%; }
  .hero-product-c { width: 49%; right: -6%; }
  .hero-watermark { width: 100px; height: 100px; }
  .catalog { padding-top: 64px; }
  .catalog-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .catalog-heading h2, .related-section h2 { font-size: clamp(2.45rem,13vw,3.8rem); }
  .catalog-tools { grid-template-columns: 1fr; gap: 12px; }
  .product-grid, .related-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { border-radius: 23px; }
  .product-visual { aspect-ratio: 1.06; }
  .product-meta { padding: 16px 17px 18px; }
  .product-meta h3 { min-height: 0; }
  .site-footer { min-height: 130px; align-items: flex-start; justify-content: center; flex-direction: column; padding-block: 28px; }
  .product-page { padding-top: 24px; }
  .product-main-image { border-radius: 24px; }
  .product-thumbs { grid-template-columns: repeat(5,1fr); }
  .product-info h1 { font-size: clamp(2.35rem,13vw,4rem); }
  .buy-row { grid-template-columns: 1fr; }
  .quantity-control { grid-template-columns: 48px 1fr 48px; }
  .product-loading-copy { padding-top: 15px; }
  .cart-drawer { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* =============================================================
   V5, HOMEPAGE REDESIGN
   Navbar bleibt bewusst unverändert. Der Rest ist offener,
   weniger kastenlastig und mit robustem Produkt-Grid aufgebaut.
   ============================================================= */

body[data-page="shop"] main {
  position: relative;
}

body[data-page="shop"] .hero {
  min-height: clamp(560px, 73vh, 760px);
  grid-template-columns: minmax(340px, .88fr) minmax(540px, 1.12fr);
  gap: clamp(24px, 5vw, 84px);
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 72px);
}

body[data-page="shop"] .hero::before {
  content: "";
  position: absolute;
  inset: 10% 0 4%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 58% at 71% 44%, rgba(255,255,255,.075), transparent 68%),
    radial-gradient(ellipse 24% 34% at 23% 45%, rgba(223,23,51,.11), transparent 70%);
}

body[data-page="shop"] .hero-copy {
  padding-left: 0;
  align-self: center;
}

body[data-page="shop"] .hero-copy .eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 13px;
  color: #e0e1e8;
  letter-spacing: .34em;
}

body[data-page="shop"] .hero-copy .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, #f42843, rgba(244,40,67,0));
}

body[data-page="shop"] .hero h1 {
  position: relative;
  width: max-content;
  max-width: 100%;
  line-height: .8;
  letter-spacing: -.075em;
  filter: drop-shadow(0 28px 55px rgba(0,0,0,.48));
}

body[data-page="shop"] .hero h1::before {
  content: "MEW";
  position: absolute;
  z-index: -1;
  left: -.08em;
  top: -.5em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
  font: 800 clamp(9rem, 17vw, 18rem)/1 var(--display);
  letter-spacing: -.08em;
  pointer-events: none;
}

body[data-page="shop"] .hero h1 span {
  font-size: clamp(3.75rem, 6.2vw, 6.4rem);
  line-height: .86;
  color: #fff;
  letter-spacing: -.075em;
}

body[data-page="shop"] .hero h1 strong {
  display: block;
  width: max-content;
  max-width: none;
  margin: .1em 0 0 .38em;
  font-size: clamp(4.1rem, 7.1vw, 7.2rem);
  line-height: .78;
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.15px rgba(255,255,255,.7);
  background-image: linear-gradient(96deg,
    #7c1728 0%,
    #a6122c 20%,
    #d7193f 45%,
    #9a2b69 70%,
    #287fc6 88%,
    #4ea9ee 100%);
  background-size: 100% 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}

body[data-page="shop"] .hero-actions {
  margin-top: 48px;
  gap: 30px;
}

body[data-page="shop"] .primary-action {
  border-radius: 12px;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
}

body[data-page="shop"] .hero-art {
  min-height: 570px;
  align-self: stretch;
  isolation: isolate;
  overflow: visible;
}

body[data-page="shop"] .hero-art::before,
body[data-page="shop"] .hero-art::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -3;
  border-radius: 50%;
  filter: blur(1px);
}

body[data-page="shop"] .hero-art::before {
  width: 74%;
  aspect-ratio: 1;
  left: 16%;
  top: 8%;
  background:
    radial-gradient(circle at 34% 27%, rgba(255,255,255,.19), transparent 18%),
    radial-gradient(circle at 54% 50%, rgba(255,255,255,.065), rgba(255,255,255,.018) 55%, transparent 72%);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 45px 120px rgba(0,0,0,.26);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

body[data-page="shop"] .hero-art::after {
  width: 42%;
  aspect-ratio: 1;
  right: 0;
  bottom: 3%;
  background: radial-gradient(circle at 40% 35%, rgba(38,140,220,.18), rgba(223,23,51,.09) 48%, transparent 72%);
  filter: blur(24px);
}

body[data-page="shop"] .liquid-sheet {
  border-radius: 34px;
  border-color: rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.018) 47%, rgba(255,255,255,.055)),
    rgba(17,17,25,.2);
  box-shadow: 0 38px 100px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.12);
}

body[data-page="shop"] .liquid-sheet-a {
  inset: 14% 2% 12% 10%;
  transform: rotate(-5deg) skewX(-2deg);
  clip-path: polygon(8% 0, 94% 3%, 100% 24%, 94% 95%, 74% 100%, 0 92%, 3% 16%);
  animation: glassDriftA 12s ease-in-out infinite alternate;
}

body[data-page="shop"] .liquid-sheet-b {
  width: 235px;
  height: 235px;
  right: -2%;
  top: 3%;
  border-radius: 34px;
  transform: rotate(16deg);
  opacity: .42;
  animation: glassDriftB 10s ease-in-out infinite alternate;
}

@keyframes glassDriftA {
  to { transform: rotate(-2deg) skewX(1deg) translate3d(7px,-5px,0); }
}
@keyframes glassDriftB {
  to { transform: rotate(20deg) translate3d(-10px,9px,0); }
}

body[data-page="shop"] .hero-products {
  position: absolute;
  inset: 0;
  display: block !important;
  min-width: 0;
  min-height: 0;
}

body[data-page="shop"] .hero-product {
  position: absolute !important;
  display: block !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.58));
  will-change: transform;
}

body[data-page="shop"] .hero-product img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

body[data-page="shop"] .hero-product-a {
  z-index: 4;
  width: 47%;
  height: 74%;
  left: 1%;
  bottom: 1%;
  animation: productFloatA 7s ease-in-out infinite;
}
body[data-page="shop"] .hero-product-b {
  z-index: 5;
  width: 50%;
  height: 86%;
  left: 25%;
  top: -1%;
  animation: productFloatB 7.8s ease-in-out infinite;
}
body[data-page="shop"] .hero-product-c {
  z-index: 3;
  width: 45%;
  height: 72%;
  right: -2%;
  bottom: 3%;
  animation: productFloatC 7.35s ease-in-out infinite;
}

@keyframes productFloatA {
  0%,100% { transform: rotate(-11deg) translate3d(0,0,0); }
  50% { transform: rotate(-7deg) translate3d(-5px,-18px,0); }
}
@keyframes productFloatB {
  0%,100% { transform: rotate(4deg) translate3d(0,0,0); }
  50% { transform: rotate(1deg) translate3d(8px,12px,0); }
}
@keyframes productFloatC {
  0%,100% { transform: rotate(12deg) translate3d(0,0,0); }
  50% { transform: rotate(8deg) translate3d(7px,-15px,0); }
}

body[data-page="shop"] .hero-product:hover {
  z-index: 8;
  filter: drop-shadow(0 44px 50px rgba(0,0,0,.72)) drop-shadow(0 0 30px rgba(255,255,255,.11));
}

body[data-page="shop"] .hero-watermark {
  z-index: 1;
  width: 180px;
  height: 180px;
  opacity: .055;
}

body[data-page="shop"] .catalog {
  position: relative;
  padding-top: 82px;
}

body[data-page="shop"] .catalog::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: min(1420px, 100%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16) 18%, rgba(255,255,255,.16) 82%, transparent);
}

body[data-page="shop"] .catalog-heading {
  margin-bottom: 34px;
}

body[data-page="shop"] .catalog-heading h2 {
  max-width: 940px;
  font-size: clamp(2.9rem, 5.6vw, 5.9rem);
  line-height: .88;
}

body[data-page="shop"] .catalog-tools {
  grid-template-columns: minmax(260px, 1fr) 250px;
  gap: 44px;
  margin-bottom: 42px;
  padding: 0 0 18px;
}

body[data-page="shop"] .search-field,
body[data-page="shop"] .sort-field {
  min-height: 48px;
  border-bottom-color: rgba(255,255,255,.18);
}

body[data-page="shop"] .product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: start;
  gap: clamp(24px, 2.2vw, 36px) clamp(16px, 1.7vw, 26px);
}

body[data-page="shop"] .product-card {
  display: block;
  min-width: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-page="shop"] .product-card::after {
  display: none;
}

body[data-page="shop"] .product-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: none;
}

body[data-page="shop"] .product-visual {
  position: relative;
  aspect-ratio: .92;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.095);
  border-radius: 27px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255,255,255,.12), transparent 34%),
    linear-gradient(150deg, rgba(255,255,255,.075), rgba(255,255,255,.018) 48%, rgba(255,255,255,.045)),
    rgba(15,15,22,.38);
  box-shadow: 0 24px 58px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.075);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

body[data-page="shop"] .product-card:nth-child(4n+2) .product-visual {
  background:
    radial-gradient(circle at 50% 35%, rgba(35,137,221,.105), transparent 36%),
    linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.015) 50%, rgba(27,131,220,.04)),
    rgba(15,15,22,.38);
}
body[data-page="shop"] .product-card:nth-child(4n+3) .product-visual {
  background:
    radial-gradient(circle at 50% 35%, rgba(223,23,51,.105), transparent 36%),
    linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.015) 50%, rgba(223,23,51,.045)),
    rgba(15,15,22,.38);
}

body[data-page="shop"] .product-card:hover .product-visual {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 34px 78px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.11);
}

body[data-page="shop"] .product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(118deg, transparent 27%, rgba(255,255,255,.105) 46%, transparent 64%);
  transform: translateX(-125%);
  transition: transform .75s ease;
}

body[data-page="shop"] .product-card:hover .product-visual::before {
  transform: translateX(125%);
}

body[data-page="shop"] .product-visual img {
  padding: clamp(12px, 1.7vw, 24px) clamp(10px, 1.5vw, 22px) 4px;
  transform: scale(1.01);
  filter: drop-shadow(0 21px 29px rgba(0,0,0,.42));
}

body[data-page="shop"] .product-card:hover .product-visual img {
  transform: scale(1.065) rotate(-1.2deg);
}

body[data-page="shop"] .product-meta {
  padding: 16px 3px 0;
  border: 0;
  background: transparent;
}

body[data-page="shop"] .product-meta h3 {
  min-height: 2.35em;
  color: #f4f4f8;
  font-size: clamp(.98rem, 1.1vw, 1.13rem);
  line-height: 1.18;
}

body[data-page="shop"] .product-card-bottom {
  margin-top: 13px;
  align-items: center;
}

body[data-page="shop"] .product-price strong {
  font-family: var(--body);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -.015em;
}

body[data-page="shop"] .product-arrow {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: none;
}

body[data-page="shop"] .product-card:hover .product-arrow {
  transform: translate(3px,-3px);
}

/* Product detail, gleicher offener Stil */
body[data-page="product"] .product-detail {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  gap: clamp(42px, 6vw, 90px);
}

body[data-page="product"] .product-main-image {
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.12), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018) 50%, rgba(255,255,255,.045)),
    rgba(15,15,22,.42);
  box-shadow: 0 32px 85px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
}

body[data-page="product"] .product-info h1 {
  font-size: clamp(2.7rem, 4.5vw, 5.4rem);
}

body[data-page="product"] .option-button,
body[data-page="product"] .quantity-control {
  border-radius: 10px;
}

@media (max-width: 1180px) {
  body[data-page="shop"] .hero {
    grid-template-columns: minmax(300px,.8fr) minmax(480px,1.2fr);
  }
  body[data-page="shop"] .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  body[data-page="shop"] .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 64px;
  }
  body[data-page="shop"] .hero-copy {
    text-align: left;
    padding-left: 4vw;
  }
  body[data-page="shop"] .hero-copy .eyebrow::after {
    left: 0;
    transform: none;
  }
  body[data-page="shop"] .hero h1 strong {
    margin-left: .35em;
  }
  body[data-page="shop"] .hero-actions {
    justify-content: flex-start;
  }
  body[data-page="shop"] .hero-art {
    min-height: 510px;
    margin-top: -34px;
  }
  body[data-page="shop"] .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body[data-page="shop"] .hero {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  body[data-page="shop"] .hero-copy {
    padding-left: 2vw;
  }
  body[data-page="shop"] .hero-copy .eyebrow {
    margin-bottom: 20px;
  }
  body[data-page="shop"] .hero h1 span {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }
  body[data-page="shop"] .hero h1 strong {
    margin-left: .22em;
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }
  body[data-page="shop"] .hero-actions {
    align-items: flex-start;
    margin-top: 34px;
  }
  body[data-page="shop"] .hero-art {
    min-height: 390px;
    margin-top: -8px;
  }
  body[data-page="shop"] .liquid-sheet-a {
    inset: 14% 0 10% 4%;
  }
  body[data-page="shop"] .hero-product-a {
    width: 51%;
    left: -4%;
  }
  body[data-page="shop"] .hero-product-b {
    width: 55%;
    left: 21%;
  }
  body[data-page="shop"] .hero-product-c {
    width: 49%;
    right: -7%;
  }
  body[data-page="shop"] .catalog {
    padding-top: 62px;
  }
  body[data-page="shop"] .catalog-heading h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }
  body[data-page="shop"] .catalog-tools {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  body[data-page="shop"] .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 11px;
  }
  body[data-page="shop"] .product-visual {
    border-radius: 20px;
    aspect-ratio: .9;
  }
  body[data-page="shop"] .product-meta {
    padding-top: 11px;
  }
  body[data-page="shop"] .product-meta h3 {
    min-height: 2.4em;
    font-size: .88rem;
  }
  body[data-page="shop"] .product-price strong {
    font-size: 1rem;
  }
  body[data-page="shop"] .product-arrow {
    display: none;
  }
}

@media (max-width: 390px) {
  body[data-page="shop"] .product-grid {
    grid-template-columns: 1fr !important;
  }
  body[data-page="shop"] .product-meta h3 {
    min-height: 0;
    font-size: 1rem;
  }
}

/* =============================================================
   V8, MOBILE FIRST PASS
   Eigene mobile Komposition für Shop, Produktseite und Warenkorb.
   ============================================================= */
.mobile-dock { display: none; }

@media (max-width: 760px) {
  :root { --header-h: 62px; }
  html { scroll-padding-top: calc(var(--header-h) + 10px); }
  body {
    min-height: 100dvh;
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
    overscroll-behavior-y: none;
  }
  body.is-locked { overflow: hidden; }
  .shell { width: calc(100% - 24px); }

  /* Kompakter Header */
  .site-header {
    height: calc(var(--header-h) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    background: rgba(7,7,11,.82);
    backdrop-filter: blur(16px) saturate(1.12);
    -webkit-backdrop-filter: blur(16px) saturate(1.12);
  }
  .header-inner { grid-template-columns: minmax(0,1fr) auto; gap: 12px; }
  .brand { gap: 8px; min-width: 0; }
  .brand img { width: 36px; height: 36px; }
  .brand span { min-width: 0; }
  .brand strong { font-size: .98rem; }
  .brand small { display: inline; font-size: .61rem; letter-spacing: .12em; }
  .header-nav { display: none; }
  .cart-trigger {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 12px;
  }
  .cart-label { display: none; }
  .cart-count { min-width: 42px; padding: 0 9px; }

  /* Mobile Dock, bewusst keine Pillenform */
  .mobile-dock {
    position: fixed;
    z-index: 170;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    min-height: 64px;
    padding: 5px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: rgba(12,12,18,.86);
    box-shadow: 0 18px 55px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter: blur(18px) saturate(1.16);
    -webkit-backdrop-filter: blur(18px) saturate(1.16);
  }
  .mobile-dock-item {
    position: relative;
    min-width: 0;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 2px;
    border: 0;
    border-radius: 12px;
    color: rgba(255,255,255,.55);
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    font: 700 .61rem/1 var(--body);
  }
  .mobile-dock-item svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mobile-dock-item.is-active {
    color: #fff;
    background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  }
  .mobile-dock-item.is-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28%;
    right: 28%;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--blue));
  }
  .mobile-cart-icon { position: relative; line-height: 0; }
  .mobile-cart-icon b {
    position: absolute;
    right: -10px;
    top: -8px;
    min-width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border: 2px solid #111119;
    border-radius: 8px;
    color: #08080c;
    background: #fff;
    font: 800 .58rem/1 var(--body);
  }

  /* Shop Hero */
  body[data-page="shop"] .hero {
    display: block;
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 24px;
    overflow: hidden;
  }
  body[data-page="shop"] .hero-copy {
    position: relative;
    z-index: 8;
    padding: 0;
    text-align: left;
  }
  body[data-page="shop"] .hero-copy .eyebrow {
    margin-bottom: 17px;
    padding-bottom: 10px;
    font-size: .64rem;
    letter-spacing: .28em;
  }
  body[data-page="shop"] .hero-copy .eyebrow::after { width: 58px; }
  body[data-page="shop"] .hero h1 {
    width: 100%;
    max-width: 100%;
    line-height: .82;
    letter-spacing: -.07em;
  }
  body[data-page="shop"] .hero h1::before {
    left: -.07em;
    top: -.54em;
    font-size: clamp(7rem, 39vw, 10rem);
  }
  body[data-page="shop"] .hero h1 span {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
    white-space: normal;
  }
  body[data-page="shop"] .hero h1 strong {
    margin: .12em 0 0 .18em;
    font-size: clamp(3.9rem, 19.5vw, 5.4rem);
    line-height: .8;
  }
  body[data-page="shop"] .hero-actions {
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
  }
  body[data-page="shop"] .hero-actions .primary-action {
    min-height: 48px;
    padding-inline: 19px;
    font-size: .72rem;
  }
  body[data-page="shop"] .hero-actions .text-action { font-size: .68rem; }
  body[data-page="shop"] .hero-art {
    min-height: 330px;
    width: calc(100% + 50px);
    margin: -6px -25px 0;
    overflow: visible;
  }
  body[data-page="shop"] .hero-art::before {
    width: 78%;
    left: 11%;
    top: 13%;
  }
  body[data-page="shop"] .hero-art::after { width: 46%; right: -2%; bottom: 0; }
  body[data-page="shop"] .liquid-sheet-a { inset: 16% 3% 8% 6%; }
  body[data-page="shop"] .liquid-sheet-b {
    width: 145px;
    height: 145px;
    right: 1%;
    top: 5%;
    border-radius: 25px;
  }
  body[data-page="shop"] .hero-product-a { width: 49%; height: 72%; left: -1%; bottom: 1%; }
  body[data-page="shop"] .hero-product-b { width: 52%; height: 84%; left: 24%; top: -1%; }
  body[data-page="shop"] .hero-product-c { width: 47%; height: 69%; right: -2%; bottom: 2%; }
  body[data-page="shop"] .hero-watermark { width: 92px; height: 92px; }

  /* Katalog */
  body[data-page="shop"] .catalog { padding-top: 50px; padding-bottom: 42px; }
  body[data-page="shop"] .catalog-heading {
    gap: 10px;
    margin-bottom: 22px;
  }
  body[data-page="shop"] .catalog-heading h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11.5vw, 3.5rem);
    line-height: .91;
  }
  body[data-page="shop"] .product-total { margin: 0; }
  body[data-page="shop"] .catalog-tools {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 14px;
  }
  body[data-page="shop"] .search-field,
  body[data-page="shop"] .sort-field {
    min-height: 50px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 13px;
    background: rgba(255,255,255,.035);
  }
  body[data-page="shop"] .product-grid,
  body[data-page="product"] .related-grid {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 24px 11px;
  }
  body[data-page="shop"] .product-card,
  body[data-page="product"] .related-grid .product-card {
    min-width: 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 270px;
  }
  body[data-page="shop"] .product-visual,
  body[data-page="product"] .related-grid .product-visual {
    aspect-ratio: .92;
    border-radius: 18px;
  }
  body[data-page="shop"] .product-visual img,
  body[data-page="product"] .related-grid .product-visual img { padding: 9px 7px 2px; }
  body[data-page="shop"] .product-meta,
  body[data-page="product"] .related-grid .product-meta { padding: 10px 2px 0; }
  body[data-page="shop"] .product-meta h3,
  body[data-page="product"] .related-grid .product-meta h3 {
    min-height: 2.35em;
    font-size: .84rem;
    line-height: 1.18;
  }
  body[data-page="shop"] .product-card-bottom,
  body[data-page="product"] .related-grid .product-card-bottom {
    gap: 6px;
    margin-top: 9px;
  }
  body[data-page="shop"] .product-price strong,
  body[data-page="product"] .related-grid .product-price strong { font-size: .98rem; }
  body[data-page="shop"] .product-price del,
  body[data-page="product"] .related-grid .product-price del { font-size: .68rem; }
  body[data-page="shop"] .product-arrow,
  body[data-page="product"] .related-grid .product-arrow { display: none; }

  /* Produktdetail */
  body[data-page="product"] .product-page {
    padding-top: 18px;
    padding-bottom: 46px;
  }
  body[data-page="product"] .back-link {
    min-height: 42px;
    margin-bottom: 12px;
  }
  body[data-page="product"] .product-detail,
  body[data-page="product"] .product-loading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body[data-page="product"] .product-main-image {
    aspect-ratio: 1;
    border-radius: 22px;
    box-shadow: 0 22px 58px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
  }
  body[data-page="product"] .product-main-image img { padding: 18px; }
  body[data-page="product"] .product-thumbs {
    display: flex;
    gap: 9px;
    margin-inline: -12px;
    padding: 0 12px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  body[data-page="product"] .product-thumbs::-webkit-scrollbar { display: none; }
  body[data-page="product"] .product-thumb {
    flex: 0 0 68px;
    width: 68px;
    border-radius: 13px;
    scroll-snap-align: start;
  }
  body[data-page="product"] .product-info {
    position: static;
    padding-top: 8px;
  }
  body[data-page="product"] .product-info .eyebrow { margin-bottom: 12px; }
  body[data-page="product"] .product-info h1 {
    font-size: clamp(2rem, 10.5vw, 3.15rem);
    line-height: .97;
    letter-spacing: -.045em;
  }
  body[data-page="product"] .product-page-price { margin-top: 15px; }
  body[data-page="product"] .product-page-price strong { font-size: 1.75rem; }
  body[data-page="product"] .product-description {
    margin-top: 18px;
    font-size: .94rem;
    line-height: 1.6;
  }
  body[data-page="product"] .variant-section {
    margin-top: 22px;
    padding-top: 19px;
  }
  body[data-page="product"] .option-grid { gap: 8px; }
  body[data-page="product"] .option-button {
    min-height: 46px;
    padding-inline: 14px;
  }
  body[data-page="product"] .buy-row {
    grid-template-columns: 108px minmax(0,1fr);
    gap: 9px;
    margin-top: 24px;
  }
  body[data-page="product"] .quantity-control {
    grid-template-columns: 36px 1fr 36px;
    min-height: 52px;
  }
  body[data-page="product"] .add-action {
    min-width: 0;
    padding-inline: 12px;
    font-size: .7rem;
  }
  body[data-page="product"] .related-section { margin-top: 62px; }
  body[data-page="product"] .related-section h2 {
    font-size: clamp(2.15rem, 10.5vw, 3.3rem);
    line-height: .92;
  }

  /* Warenkorb als echte mobile Vollansicht */
  .drawer-backdrop { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
  .cart-drawer {
    top: env(safe-area-inset-top);
    bottom: 0;
    width: 100%;
    height: calc(100dvh - env(safe-area-inset-top));
    border-left: 0;
    background: rgba(9,9,14,.98);
  }
  .cart-head { padding: 18px 16px 15px; }
  .cart-head h2 { font-size: 2.15rem; }
  .cart-items { padding: 8px 15px; }
  .cart-item { grid-template-columns: 78px minmax(0,1fr); gap: 12px; padding: 14px 0; }
  .cart-item-image { border-radius: 13px; }
  .cart-summary {
    padding: 17px 15px calc(17px + env(safe-area-inset-bottom));
  }
  .toast { bottom: calc(82px + env(safe-area-inset-bottom)); }
  .site-footer { margin-bottom: 6px; }
}

@media (max-width: 350px) {
  body[data-page="shop"] .hero h1 span { font-size: 2.65rem; }
  body[data-page="shop"] .hero h1 strong { font-size: 3.55rem; }
  body[data-page="shop"] .hero-actions { gap: 13px; }
  body[data-page="shop"] .hero-actions .primary-action { padding-inline: 15px; }
  body[data-page="shop"] .product-grid,
  body[data-page="product"] .related-grid { grid-template-columns: 1fr !important; }
  body[data-page="shop"] .product-meta h3,
  body[data-page="product"] .related-grid .product-meta h3 { min-height: 0; font-size: 1rem; }
  body[data-page="product"] .buy-row { grid-template-columns: 1fr; }
}

/* =============================================================
   V9, MOBILE PRODUCT IMAGE RELIABILITY
   Explicit sizing and resilient image rendering for iOS/mobile.
   ============================================================= */
body[data-page="product"] .product-gallery {
  display: block;
  width: 100%;
  min-width: 0;
}
body[data-page="product"] .product-main-image {
  display: grid;
  place-items: center;
  isolation: isolate;
  min-width: 0;
  width: 100%;
}
body[data-page="product"] .product-main-image > img {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  visibility: visible !important;
  opacity: 1 !important;
}
body[data-page="product"] .product-main-image[aria-busy="true"]::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.16);
  border-top-color: rgba(255,255,255,.72);
  border-radius: 50%;
  animation: productImageSpin .8s linear infinite;
}
body[data-page="product"] .product-main-image.has-product-image::before,
body[data-page="product"] .product-main-image.has-image-error::before {
  display: none;
}
@keyframes productImageSpin { to { transform: rotate(360deg); } }

body[data-page="product"] .product-thumb > img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 760px) {
  body[data-page="product"] .product-gallery {
    order: -1;
  }
  body[data-page="product"] .product-main-image {
    aspect-ratio: auto !important;
    height: min(calc(100vw - 24px), 520px);
    min-height: 296px;
    overflow: hidden;
  }
  body[data-page="product"] .product-main-image > img {
    padding: clamp(12px, 4.5vw, 22px) !important;
    filter: drop-shadow(0 20px 28px rgba(0,0,0,.42));
  }
}

@media (max-width: 380px) {
  body[data-page="product"] .product-main-image {
    height: calc(100vw - 24px);
    min-height: 272px;
  }
}

@supports not (aspect-ratio: 1 / 1) {
  body[data-page="product"] .product-main-image {
    height: min(72vw, 720px);
  }
}


/* =============================================================
   V10, DIREKTER KATALOG UND GROESSERE PRODUKT-RENDER
   Entfernt den redundanten Katalog-Hero und nutzt den Bildraum besser.
   ============================================================= */
body[data-page="shop"] .catalog {
  padding-top: 38px;
}
body[data-page="shop"] .catalog::before {
  display: none;
}
body[data-page="shop"] .catalog-tools {
  margin-bottom: 34px;
}
body[data-page="shop"] .product-visual img {
  padding: 0 !important;
  transform: translateY(-4.5%) scale(1.14);
  transform-origin: 50% 44%;
}
body[data-page="shop"] .product-card:hover .product-visual img {
  transform: translateY(-5.5%) scale(1.19) rotate(-.8deg);
}
body[data-page="product"] .related-grid .product-visual img {
  padding: 0 !important;
  transform: translateY(-4%) scale(1.12);
  transform-origin: 50% 44%;
}
body[data-page="product"] .related-grid .product-card:hover .product-visual img {
  transform: translateY(-5%) scale(1.17) rotate(-.8deg);
}

@media (max-width: 760px) {
  body[data-page="shop"] .catalog {
    padding-top: 26px;
  }
  body[data-page="shop"] .catalog-tools {
    margin-bottom: 24px;
  }
  body[data-page="shop"] .product-visual img,
  body[data-page="product"] .related-grid .product-visual img {
    padding: 0 !important;
    transform: translateY(-5%) scale(1.16);
    transform-origin: 50% 43%;
  }
  body[data-page="shop"] .product-card:hover .product-visual img,
  body[data-page="product"] .related-grid .product-card:hover .product-visual img {
    transform: translateY(-5%) scale(1.16);
  }
}

/* =============================================================
   V11, VOLLSTAENDIGER MOBILE-AUDIT
   Verhindert abgeschnittene Hero-Typografie und stabilisiert alle
   Shop-Bereiche von 320px bis Tabletbreite, inklusive Landscape.
   ============================================================= */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .shell {
    width: calc(100% - 24px);
    max-width: 100%;
  }

  .header-inner,
  .brand,
  .brand span,
  body[data-page="shop"] .hero,
  body[data-page="shop"] .hero-copy,
  body[data-page="shop"] .hero h1,
  body[data-page="shop"] .catalog,
  body[data-page="product"] .product-page,
  body[data-page="product"] .product-detail,
  body[data-page="product"] .product-gallery,
  body[data-page="product"] .product-info {
    min-width: 0;
  }

  .header-inner {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .brand {
    max-width: calc(100vw - 86px);
    overflow: hidden;
  }

  .brand span {
    overflow: hidden;
    white-space: nowrap;
  }

  .brand strong,
  .brand small {
    flex: none;
  }

  .cart-trigger {
    flex: none;
  }

  body[data-page="shop"] .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding-top: clamp(26px, 6vw, 38px);
    padding-bottom: clamp(18px, 4vw, 28px);
    overflow: clip;
  }

  body[data-page="shop"] .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
  }

  body[data-page="shop"] .hero-copy .eyebrow {
    max-width: 100%;
    margin-bottom: clamp(14px, 3.8vw, 19px);
    font-size: clamp(.58rem, 1.9vw, .68rem);
    letter-spacing: clamp(.2em, .8vw, .28em);
    white-space: normal;
  }

  body[data-page="shop"] .hero h1 {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: visible;
    line-height: .82;
    letter-spacing: -.08em;
  }

  body[data-page="shop"] .hero h1::before {
    left: -.035em;
    top: -.48em;
    max-width: 100%;
    font-size: clamp(6rem, 31vw, 9rem);
    opacity: .72;
  }

  body[data-page="shop"] .hero h1 span {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.35rem, 11.7vw, 4.35rem);
    line-height: .88;
    letter-spacing: -.085em;
    white-space: nowrap;
  }

  body[data-page="shop"] .hero h1 strong {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: .16em 0 0 clamp(0px, 1.6vw, 9px);
    font-size: clamp(3.15rem, 16.7vw, 5.2rem);
    line-height: .8;
    letter-spacing: -.08em;
    white-space: nowrap;
  }

  body[data-page="shop"] .hero-actions {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row wrap;
    gap: 14px clamp(14px, 4vw, 22px);
    margin-top: clamp(24px, 6vw, 32px);
  }

  body[data-page="shop"] .hero-actions .primary-action {
    flex: 0 1 auto;
    min-width: 0;
    min-height: 48px;
    padding-inline: clamp(16px, 4.5vw, 22px);
    font-size: clamp(.68rem, 2.2vw, .76rem);
  }

  body[data-page="shop"] .hero-actions .text-action {
    flex: 0 1 auto;
    min-width: 0;
    font-size: clamp(.64rem, 2vw, .72rem);
    white-space: nowrap;
  }

  body[data-page="shop"] .hero-art {
    flex: none;
    width: calc(100% + 16px);
    min-height: clamp(300px, 80vw, 430px);
    margin: clamp(-4px, -1vw, 0px) -8px 0;
    overflow: visible;
  }

  body[data-page="shop"] .hero-art::before {
    width: 76%;
    left: 12%;
    top: 12%;
  }

  body[data-page="shop"] .hero-art::after {
    width: 43%;
    right: 0;
    bottom: 2%;
  }

  body[data-page="shop"] .liquid-sheet-a {
    inset: 16% 4% 8% 5%;
  }

  body[data-page="shop"] .liquid-sheet-b {
    width: clamp(128px, 34vw, 170px);
    height: clamp(128px, 34vw, 170px);
    right: 1%;
    top: 5%;
  }

  body[data-page="shop"] .hero-product-a {
    width: 50%;
    height: 73%;
    left: -1%;
    bottom: 1%;
  }

  body[data-page="shop"] .hero-product-b {
    width: 53%;
    height: 84%;
    left: 23.5%;
    top: 0;
  }

  body[data-page="shop"] .hero-product-c {
    width: 48%;
    height: 70%;
    right: -1%;
    bottom: 2%;
  }

  body[data-page="shop"] .catalog {
    width: calc(100% - 24px);
    padding-top: clamp(22px, 6vw, 34px);
    padding-bottom: 44px;
  }

  body[data-page="shop"] .category-bar {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  body[data-page="shop"] .category-bar-title {
    display: block;
    margin-bottom: 10px;
  }

  body[data-page="shop"] .category-filters {
    width: calc(100% + 12px);
    margin-right: -12px;
    padding-right: 12px;
  }

  body[data-page="shop"] .category-chip {
    min-height: 36px;
    padding-inline: 12px;
    font-size: .7rem;
  }

  body[data-page="shop"] .catalog-tools {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 0;
  }

  body[data-page="shop"] .search-field,
  body[data-page="shop"] .sort-field {
    width: 100%;
    min-width: 0;
    min-height: 50px;
  }

  body[data-page="shop"] .search-field input,
  body[data-page="shop"] .sort-field select {
    min-width: 0;
    font-size: 16px;
  }

  body[data-page="shop"] .product-grid,
  body[data-page="product"] .related-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(22px, 6vw, 30px) clamp(10px, 3vw, 15px);
  }

  body[data-page="shop"] .product-card,
  body[data-page="product"] .related-grid .product-card {
    width: 100%;
    min-width: 0;
  }

  body[data-page="shop"] .product-visual,
  body[data-page="product"] .related-grid .product-visual {
    width: 100%;
    aspect-ratio: .9;
    border-radius: clamp(16px, 4vw, 20px);
  }

  body[data-page="shop"] .product-visual img,
  body[data-page="product"] .related-grid .product-visual img {
    width: 100%;
    height: 100%;
    padding: 0 !important;
    object-fit: contain;
    transform: translateY(-5%) scale(1.16);
    transform-origin: 50% 43%;
  }

  body[data-page="shop"] .product-meta,
  body[data-page="product"] .related-grid .product-meta {
    min-width: 0;
    padding: 10px 2px 0;
  }

  body[data-page="shop"] .product-meta h3,
  body[data-page="product"] .related-grid .product-meta h3 {
    min-width: 0;
    min-height: 2.35em;
    margin: 0;
    overflow-wrap: anywhere;
    font-size: clamp(.82rem, 2.8vw, .98rem);
    line-height: 1.18;
  }

  body[data-page="shop"] .product-card-bottom,
  body[data-page="product"] .related-grid .product-card-bottom {
    min-width: 0;
    gap: 6px;
    margin-top: 8px;
  }

  body[data-page="shop"] .product-price,
  body[data-page="product"] .related-grid .product-price {
    min-width: 0;
  }

  body[data-page="shop"] .product-price strong,
  body[data-page="product"] .related-grid .product-price strong {
    font-size: clamp(.98rem, 3.4vw, 1.12rem);
  }

  body[data-page="product"] .product-page {
    width: calc(100% - 24px);
    padding-top: 16px;
    padding-bottom: 48px;
  }

  body[data-page="product"] .back-link {
    max-width: 100%;
    min-height: 42px;
    margin-bottom: 12px;
    white-space: normal;
  }

  body[data-page="product"] .product-detail,
  body[data-page="product"] .product-loading {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  body[data-page="product"] .product-main-image {
    width: 100%;
    height: min(calc(100vw - 24px), 520px);
    min-height: 288px;
    border-radius: clamp(18px, 5vw, 23px);
  }

  body[data-page="product"] .product-main-image > img {
    padding: clamp(12px, 4vw, 22px) !important;
  }

  body[data-page="product"] .product-thumbs {
    max-width: calc(100vw - 24px);
  }

  body[data-page="product"] .product-info h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  body[data-page="product"] .product-description,
  body[data-page="product"] .info-body {
    overflow-wrap: anywhere;
  }

  body[data-page="product"] .option-grid {
    grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
  }

  body[data-page="product"] .option-button {
    min-width: 0;
    min-height: 46px;
    padding-inline: 10px;
    overflow-wrap: anywhere;
  }

  body[data-page="product"] .buy-row {
    width: 100%;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 9px;
  }

  body[data-page="product"] .add-action {
    min-width: 0;
    white-space: normal;
  }

  .cart-drawer {
    max-width: 100vw;
  }

  .cart-head,
  .cart-items,
  .cart-summary {
    width: 100%;
    min-width: 0;
  }

  .cart-item,
  .cart-item-info,
  .cart-item-bottom {
    min-width: 0;
  }

  .cart-item-info h3,
  .cart-variant {
    overflow-wrap: anywhere;
  }

  .site-footer {
    width: calc(100% - 24px);
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 520px) {
  body[data-page="shop"] .hero h1 span {
    font-size: clamp(2.35rem, 11.5vw, 3.72rem);
  }

  body[data-page="shop"] .hero h1 strong {
    margin-left: 0;
    font-size: clamp(3.05rem, 16.6vw, 4.65rem);
  }

  body[data-page="shop"] .hero-actions {
    gap: 13px 18px;
  }

  body[data-page="shop"] .hero-art {
    min-height: clamp(290px, 84vw, 390px);
  }

  body[data-page="product"] .buy-row {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  body[data-page="product"] .quantity-control {
    grid-template-columns: 34px 1fr 34px;
  }
}

@media (max-width: 359px) {
  .shell,
  .header-inner,
  body[data-page="shop"] .catalog,
  body[data-page="product"] .product-page,
  .site-footer {
    width: calc(100% - 18px);
  }

  body[data-page="shop"] .hero h1 span {
    font-size: clamp(2.15rem, 11.2vw, 2.5rem);
  }

  body[data-page="shop"] .hero h1 strong {
    font-size: clamp(2.85rem, 16.2vw, 3.4rem);
  }

  body[data-page="shop"] .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-page="shop"] .product-grid,
  body[data-page="product"] .related-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
  }

  body[data-page="shop"] .product-meta h3,
  body[data-page="product"] .related-grid .product-meta h3 {
    min-height: 0;
    font-size: 1rem;
  }

  body[data-page="product"] .buy-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  body[data-page="shop"] .hero-copy {
    padding-inline: 0;
  }

  body[data-page="shop"] .hero h1 span {
    font-size: clamp(4rem, 10.8vw, 5.7rem);
    white-space: nowrap;
  }

  body[data-page="shop"] .hero h1 strong {
    max-width: 100%;
    margin-left: clamp(8px, 2vw, 18px);
    font-size: clamp(4.8rem, 13.2vw, 6.6rem);
    white-space: nowrap;
  }
}

@media (min-width: 700px) and (max-width: 900px) and (max-height: 600px) and (orientation: landscape) {
  body[data-page="shop"] .hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
    gap: 16px;
    min-height: calc(100svh - var(--header-h));
    padding-block: 20px;
  }

  body[data-page="shop"] .hero h1 span {
    font-size: clamp(2.8rem, 6.8vw, 4.1rem);
  }

  body[data-page="shop"] .hero h1 strong {
    font-size: clamp(3.5rem, 8.5vw, 5.1rem);
  }

  body[data-page="shop"] .hero-actions {
    margin-top: 22px;
  }

  body[data-page="shop"] .hero-art {
    width: 100%;
    min-height: min(76vh, 410px);
    margin: 0;
  }
}

/* ===== V12, Produktnamen ruhiger und sauber umbrechen ===== */
body[data-page="product"] .product-info h1 {
  max-width: 100%;
  font-family: var(--body);
  font-size: clamp(2.2rem, 3.4vw, 4.35rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
}

@media (max-width: 900px) {
  body[data-page="product"] .product-info h1 {
    font-size: clamp(2rem, 6.2vw, 3.35rem);
    line-height: 1.035;
    letter-spacing: -.03em;
  }
}

@media (max-width: 640px) {
  body[data-page="product"] .product-info h1 {
    font-size: clamp(1.72rem, 7.8vw, 2.35rem);
    line-height: 1.06;
    letter-spacing: -.025em;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

@media (max-width: 359px) {
  body[data-page="product"] .product-info h1 {
    font-size: clamp(1.58rem, 7.5vw, 1.82rem);
    line-height: 1.08;
  }
}

/* =============================================================
   V13, MOBILE WIDTH, GROESSERE PRODUKTBILDER UND BILD-ZOOM
   ============================================================= */

/* Das Hauptbild ist interaktiv und nutzt den vorhandenen Bildraum vollständig. */
body[data-page="product"] .product-main-image {
  cursor: zoom-in;
  outline: none;
}
body[data-page="product"] .product-main-image:focus-visible {
  box-shadow: 0 0 0 2px rgba(255,255,255,.72), 0 24px 70px rgba(0,0,0,.48);
}
body[data-page="product"] .product-main-image > img {
  padding: 0 !important;
  transform: translateY(-1%) scale(1.1);
  transform-origin: 50% 50%;
  transition: transform .35s ease, filter .35s ease;
}
body[data-page="product"] .product-main-image:hover > img {
  transform: translateY(-1%) scale(1.135);
}
body[data-page="product"] .product-main-image.is-portrait-art > img,
body[data-page="product"] .product-main-image.is-poster-product > img,
body[data-page="product"].is-poster-product .product-main-image > img {
  transform: translateY(-1%) scale(1.18);
}
body[data-page="product"] .product-main-image.is-portrait-art:hover > img,
body[data-page="product"] .product-main-image.is-poster-product:hover > img,
body[data-page="product"].is-poster-product .product-main-image:hover > img {
  transform: translateY(-1%) scale(1.21);
}

/* Produktraster, Render größer, höher und Poster deutlich präsenter. */
body[data-page="shop"] .product-visual img,
body[data-page="product"] .related-grid .product-visual img {
  padding: 0 !important;
  transform: translateY(-7%) scale(1.22) !important;
  transform-origin: 50% 42% !important;
}
body[data-page="shop"] .product-card:hover .product-visual img,
body[data-page="product"] .related-grid .product-card:hover .product-visual img {
  transform: translateY(-8%) scale(1.27) rotate(-.6deg) !important;
}
body[data-page="shop"] .product-card.is-poster-product .product-visual img,
body[data-page="shop"] .product-visual.is-portrait-art img,
body[data-page="product"] .related-grid .product-card.is-poster-product .product-visual img,
body[data-page="product"] .related-grid .product-visual.is-portrait-art img {
  transform: translateY(-5%) scale(1.36) !important;
}
body[data-page="shop"] .product-card.is-poster-product:hover .product-visual img,
body[data-page="shop"] .product-card:hover .product-visual.is-portrait-art img,
body[data-page="product"] .related-grid .product-card.is-poster-product:hover .product-visual img,
body[data-page="product"] .related-grid .product-card:hover .product-visual.is-portrait-art img {
  transform: translateY(-6%) scale(1.4) rotate(-.45deg) !important;
}

/* Vollbild-Bildansicht mit Maus-, Touch- und Pinch-Zoom. */
.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  grid-template-columns: 64px minmax(0,1fr) 64px;
  grid-template-rows: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 10px;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  color: #fff;
  background: rgba(2,2,5,.96);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}
.image-viewer-top {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}
.image-viewer-top > span {
  color: rgba(255,255,255,.6);
  font: 700 .78rem/1 var(--body);
  letter-spacing: .08em;
}
.image-viewer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.image-viewer-actions button,
.image-viewer-nav {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.055);
  cursor: pointer;
  font: 700 1.25rem/1 var(--body);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.image-viewer-actions button:hover,
.image-viewer-nav:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}
#imageZoomReset {
  min-width: 68px;
  font-size: .75rem;
}
#imageViewerClose {
  margin-left: 4px;
  font-size: 1.65rem;
}
.image-viewer-stage {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  cursor: grab;
}
.image-viewer-stage:active { cursor: grabbing; }
.image-viewer-stage img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 48px rgba(0,0,0,.62));
  transform-origin: center;
  transition: transform .16s ease-out;
  will-change: transform;
  pointer-events: none;
}
.image-viewer-stage img.is-dragging { transition: none; }
.image-viewer-prev { grid-column: 1; grid-row: 2; justify-self: center; }
.image-viewer-next { grid-column: 3; grid-row: 2; justify-self: center; }
.image-viewer-hint {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255,255,255,.42);
  text-align: center;
  font: 600 .72rem/1.3 var(--body);
}

/* Hero-Text passt garantiert in die reale mobile Breite. */
@media (max-width: 760px) {
  body[data-page="shop"] .hero {
    overflow: visible;
  }
  body[data-page="shop"] .hero-copy,
  body[data-page="shop"] .hero h1,
  body[data-page="shop"] .hero h1 span,
  body[data-page="shop"] .hero h1 strong {
    box-sizing: border-box;
    min-width: 0;
  }
  body[data-page="shop"] .hero h1 {
    padding-right: 2px;
  }
  body[data-page="shop"] .hero h1 span {
    width: fit-content;
    max-width: calc(100% - 2px);
    padding-right: .06em;
    font-size: clamp(2.55rem, 9.7vw, 3.8rem);
    line-height: .9;
    letter-spacing: -.095em;
  }
  body[data-page="shop"] .hero h1 strong {
    width: fit-content;
    max-width: calc(100% - 2px);
    padding-right: .05em;
    font-size: clamp(3.2rem, 14.7vw, 5.05rem);
    letter-spacing: -.085em;
  }

  body[data-page="product"] .product-main-image > img {
    padding: 0 !important;
    transform: translateY(-1%) scale(1.12);
  }
  body[data-page="product"] .product-main-image:hover > img {
    transform: translateY(-1%) scale(1.12);
  }
  body[data-page="product"] .product-main-image.is-portrait-art > img,
  body[data-page="product"] .product-main-image.is-poster-product > img,
  body[data-page="product"].is-poster-product .product-main-image > img {
    transform: translateY(-1%) scale(1.21);
  }

  body[data-page="shop"] .product-visual img,
  body[data-page="product"] .related-grid .product-visual img {
    transform: translateY(-8%) scale(1.27) !important;
  }
  body[data-page="shop"] .product-card:hover .product-visual img,
  body[data-page="product"] .related-grid .product-card:hover .product-visual img {
    transform: translateY(-8%) scale(1.27) !important;
  }
  body[data-page="shop"] .product-card.is-poster-product .product-visual img,
  body[data-page="shop"] .product-visual.is-portrait-art img,
  body[data-page="product"] .related-grid .product-card.is-poster-product .product-visual img,
  body[data-page="product"] .related-grid .product-visual.is-portrait-art img {
    transform: translateY(-5%) scale(1.43) !important;
  }

  .image-viewer {
    grid-template-columns: 46px minmax(0,1fr) 46px;
    gap: 4px;
    padding-inline: max(8px, env(safe-area-inset-left));
  }
  .image-viewer-actions { gap: 5px; }
  .image-viewer-actions button,
  .image-viewer-nav {
    min-width: 40px;
    height: 40px;
    padding-inline: 8px;
    border-radius: 10px;
  }
  #imageZoomReset { min-width: 58px; }
  .image-viewer-hint { font-size: .65rem; }
}

@media (min-width: 761px) and (max-width: 900px) {
  body[data-page="shop"] .hero h1 span {
    width: fit-content;
    max-width: 100%;
    padding-right: .05em;
    font-size: clamp(3.45rem, 8.7vw, 4.75rem);
    letter-spacing: -.09em;
  }
  body[data-page="shop"] .hero h1 strong {
    width: fit-content;
    max-width: 100%;
    padding-right: .05em;
    font-size: clamp(4.2rem, 11vw, 5.8rem);
  }
}

@media (max-width: 430px) {
  body[data-page="shop"] .hero h1 span {
    font-size: clamp(2.3rem, 10.3vw, 2.75rem);
  }
  body[data-page="shop"] .hero h1 strong {
    margin-left: 0;
    font-size: clamp(2.95rem, 14.8vw, 3.75rem);
  }
  .image-viewer {
    grid-template-columns: 38px minmax(0,1fr) 38px;
  }
  .image-viewer-top {
    align-items: flex-start;
  }
  .image-viewer-actions button {
    min-width: 36px;
    height: 38px;
    padding-inline: 6px;
  }
  #imageZoomReset { min-width: 54px; }
  .image-viewer-nav {
    min-width: 34px;
    width: 34px;
    height: 44px;
    padding: 0;
  }
}

/* Poster und Hochformat, kein eckiger Kachel-Schein hinter dem Bild.
   Der glasige Kasten der Produktkachel wird bei schmalen Postern rundherum
   sichtbar. Fuer Poster und Portrait-Motive faellt er weg, das Bild steht
   frei, nur der weiche Schatten am Bild selbst bleibt erhalten. */
body[data-page="shop"] .product-card.is-poster-product .product-visual,
body[data-page="shop"] .product-visual.is-portrait-art,
body[data-page="product"] .related-grid .product-card.is-poster-product .product-visual,
body[data-page="product"] .related-grid .product-visual.is-portrait-art {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body[data-page="shop"] .product-card.is-poster-product .product-visual::before,
body[data-page="shop"] .product-card.is-poster-product .product-visual::after,
body[data-page="shop"] .product-visual.is-portrait-art::before,
body[data-page="shop"] .product-visual.is-portrait-art::after,
body[data-page="product"] .related-grid .product-card.is-poster-product .product-visual::before,
body[data-page="product"] .related-grid .product-card.is-poster-product .product-visual::after,
body[data-page="product"] .related-grid .product-visual.is-portrait-art::before,
body[data-page="product"] .related-grid .product-visual.is-portrait-art::after {
  content: none !important;
  display: none !important;
}

/* Karten-Feinschliff. Der alte Pfeil-Kasten ist weg, das Icon steht jetzt
   frei. Als Signatur faehrt beim Ueberfahren der Karte ein feiner MEW-roter
   Strich links neben dem Preis auf. Kein zusaetzlicher Rahmen, kein Layout-
   Sprung, die Markenfarbe traegt die Interaktion. */
.product-price strong { font-variant-numeric: tabular-nums; }

body[data-page="shop"] .product-price,
body[data-page="product"] .related-grid .product-price {
  position: relative;
  padding-left: 13px;
}

body[data-page="shop"] .product-price::before,
body[data-page="product"] .related-grid .product-price::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  transform: translateY(-50%);
  border-radius: 2px;
  background: linear-gradient(180deg, #ff2d4d, #c30f2b);
  box-shadow: 0 0 14px -2px rgba(223,23,51,.7);
  transition: height .3s cubic-bezier(.2,.8,.2,1);
}

body[data-page="shop"] .product-card:hover .product-price::before,
body[data-page="product"] .related-grid .product-card:hover .product-price::before {
  height: 1.15em;
}

body[data-page="shop"] .product-card:hover .product-meta h3,
body[data-page="product"] .related-grid .product-card:hover .product-meta h3 {
  color: #fff;
}

/* === Hotfix Hero-Titel: verhindert das Abschneiden von "MAIN EVENT" auf schmalen Screens. Steht bewusst am Dateiende, damit diese Regel die vielen konkurrierenden Hero-Regelbloecke ueberstimmt. === */
@media (max-width: 640px) {
  body[data-page="shop"] .hero h1 span {
    white-space: normal;
    width: auto;
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }
}
