/* Page « Créer ma boutique » — alignée template ZIC Shop + zic-shop-product.jsx */

.zh-shop-page {
  --zs-purple: #6d28d9;
  --zs-orange: #f97316;
  --zs-green: #22c55e;
  --zs-text: #1a0a3d;
  --zs-muted: #6b54a8;
  --zs-bg1: #ede9fe;
  --zs-bg2: #e4dcfc;
  --zs-hero: linear-gradient(
    150deg,
    #1a0840 0%,
    #2e1065 25%,
    #4c1d95 55%,
    #6d28d9 80%,
    #5b21b6 100%
  );
}

@keyframes zs-float-a {
  0%,
  100% {
    transform: translate(-110px, 40px) rotate(-7deg);
  }
  50% {
    transform: translate(-110px, 30px) rotate(-7deg);
  }
}
@keyframes zs-float-b {
  0%,
  100% {
    transform: translate(70px, -40px) rotate(5deg);
  }
  50% {
    transform: translate(70px, -50px) rotate(5deg);
  }
}
@keyframes zs-float-toast {
  0%,
  100% {
    transform: translate(60px, 130px);
  }
  50% {
    transform: translate(60px, 122px);
  }
}
@keyframes zs-pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}
@keyframes zs-mesh-drift {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.05);
  }
}

.zh-shop-hero {
  position: relative;
  padding: 120px 32px 100px;
  padding-top: calc(120px + env(safe-area-inset-top, 0px));
  background: var(--zs-hero);
  color: #fff;
  overflow: hidden;
  min-height: auto;
}
.zh-shop-hero--mesh::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: conic-gradient(
    from 200deg at 50% 40%,
    rgba(167, 139, 245, 0.2) 0deg,
    rgba(249, 115, 22, 0.1) 130deg,
    rgba(34, 197, 94, 0.08) 260deg,
    rgba(167, 139, 245, 0.16) 360deg
  );
  animation: zs-mesh-drift 42s linear infinite;
  pointer-events: none;
  opacity: 0.42;
  z-index: 0;
}
.zh-shop-hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.zh-shop-hero-orbs::before,
.zh-shop-hero-orbs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.zh-shop-hero-orbs::before {
  top: -100px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(167, 139, 245, 0.55), transparent 65%);
}
.zh-shop-hero-orbs::after {
  bottom: -180px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.4), transparent 60%);
}

.zh-shop-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.zh-shop-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px 5px 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 4px;
}
.zh-shop-hero-badge {
  padding: 2px 7px;
  background: var(--zs-green);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
}

.zh-shop-hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -2px;
  line-height: 1.02;
  margin: 0 0 12px;
}
.zh-shop-hero-title-accent {
  background: linear-gradient(90deg, #fff, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.zh-shop-hero-sub {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 18px;
}

.zh-shop-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.zh-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.zh-shop-btn--primary {
  background: #fff;
  color: var(--zs-text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.zh-shop-btn--primary:hover {
  transform: translateY(-2px);
}
.zh-shop-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
}
.zh-shop-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}
.zh-shop-btn--dark {
  background: var(--zs-text);
  color: #fff;
  font-size: 14px;
  padding: 12px 22px;
}

.zh-shop-hero-livestat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  color: #fff;
}
.zh-shop-hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zs-green);
  animation: zs-pulse-dot 2s ease-in-out infinite;
}

/* Float stack hero */
.zh-shop-hero-visual {
  position: relative;
  min-height: 420px;
}
.zh-shop-float-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zh-shop-float-card {
  position: absolute;
  width: 220px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  color: var(--zs-text);
}
.zh-shop-float-card--tee {
  transform: translate(-110px, 40px) rotate(-7deg);
  animation: zs-float-a 6s ease-in-out infinite;
  height: 280px;
}
.zh-shop-float-card--vinyl {
  width: 240px;
  height: 320px;
  border-radius: 20px;
  z-index: 2;
  transform: translate(70px, -40px) rotate(5deg);
  animation: zs-float-b 6s ease-in-out infinite;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.zh-shop-float-card-art {
  position: relative;
  height: 170px;
}
.zh-shop-float-card-art--tee {
  background: linear-gradient(150deg, #f97316, #ea580c);
}
.zh-shop-float-limited {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
}
.zh-shop-float-tee-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -2px;
  color: #fff;
  opacity: 0.85;
}
.zh-shop-float-card-art--vinyl {
  height: 200px;
  background: linear-gradient(150deg, #6d28d9 0%, #2e1065 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zh-shop-float-new {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 9px;
  background: var(--zs-green);
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  z-index: 2;
}
.zh-shop-vinyl-disc {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a0840 0%, #000 70%);
  border: 3px solid #1a0840;
  position: relative;
}
.zh-shop-vinyl-label {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--zs-orange);
}
.zh-shop-vinyl-label::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zs-text);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.zh-shop-float-card-body {
  padding: 14px 16px 16px;
}
.zh-shop-float-meta {
  font-family: "DM Sans", sans-serif;
  font-size: 10.5px;
  color: var(--zs-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.zh-shop-float-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.zh-shop-float-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zh-shop-float-price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--zs-purple);
}
.zh-shop-float-sizes {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  color: var(--zs-muted);
  font-weight: 600;
}
.zh-shop-float-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--zs-bg1);
  border-radius: 100px;
  font-size: 10.5px;
  color: var(--zs-muted);
  font-weight: 600;
}
.zh-shop-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--zs-green);
}

/* Produits récents live (hero /shop/) */
.zh-shop-float-stack--live {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.zh-shop-float-card--live {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

a.zh-shop-float-card--live:hover,
a.zh-shop-float-card--live:focus-visible {
  z-index: 5 !important;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.48);
}

a.zh-shop-float-card--live:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.zh-shop-float-card--live.zh-shop-float-card--pos-0 {
  width: 240px;
  height: 320px;
  border-radius: 20px;
  z-index: 3;
  transform: translate(70px, -40px) rotate(5deg);
  animation: zs-float-b 6s ease-in-out infinite;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.zh-shop-float-card--live.zh-shop-float-card--pos-1 {
  height: 280px;
  transform: translate(-110px, 40px) rotate(-7deg);
  animation: zs-float-a 6s ease-in-out infinite;
  z-index: 2;
}

.zh-shop-float-card--live.zh-shop-float-card--pos-2 {
  width: 210px;
  height: 260px;
  transform: translate(-20px, 120px) rotate(2deg);
  animation: zs-float-a 6s ease-in-out infinite;
  animation-delay: 0.35s;
  z-index: 1;
  opacity: 0.96;
}

.zh-shop-float-card--live .zh-shop-float-card-art {
  height: 170px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zh-shop-float-card--live.zh-shop-float-card--pos-0 .zh-shop-float-card-art {
  height: 200px;
}

.zh-shop-float-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zh-shop-float-product-mark {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 42px;
  letter-spacing: -2px;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

.zh-shop-float-toast {
  position: absolute;
  width: 230px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transform: translate(60px, 130px);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: zs-float-toast 5s ease-in-out infinite;
  animation-delay: 0.6s;
  color: var(--zs-text);
}
.zh-shop-float-toast-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--zs-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.zh-shop-float-toast-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: -0.02em;
}
.zh-shop-float-toast-meta {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  color: var(--zs-muted);
  margin-top: 2px;
}

.zh-shop-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.72);
}
.zh-shop-scroll-hint svg {
  animation: zh-chevronBounce 1.6s ease-in-out infinite;
}

/* Sections + scroll reveal children */
.zh-shop-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -1.2px;
  color: var(--zs-text);
  text-wrap: balance;
}

.zh-shop-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.zh-shop-why-card {
  position: relative;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.1);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.2s;
}
.zh-shop-why-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.zh-shop-why-card:hover {
  box-shadow: 0 12px 32px rgba(109, 40, 217, 0.1);
}
.zh-shop-why-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.zh-shop-why-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.zh-shop-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}
.zh-shop-why-stat {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.zh-shop-why-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--zs-text);
  position: relative;
}
.zh-shop-why-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--zs-muted);
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.zh-shop-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 8px auto 0;
}
.zh-shop-catalog-card {
  padding: 40px 32px 36px;
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.1);
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.05);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.2s;
}
.zh-shop-catalog-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.zh-shop-catalog-card:hover {
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.22);
}
.zh-shop-catalog-halo {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.zh-shop-catalog-halo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.15) 0%,
    rgba(109, 40, 217, 0.06) 45%,
    transparent 70%
  );
}
.zh-shop-catalog-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(109, 40, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zh-shop-catalog-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin: 0;
  color: var(--zs-text);
}
.zh-shop-catalog-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  color: var(--zs-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 320px;
}
.zh-shop-soon-pill {
  margin-top: 6px;
  padding: 6px 14px;
  background: rgba(109, 40, 217, 0.1);
  color: var(--zs-purple);
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.zh-shop-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.zh-shop-how-card {
  padding: 28px 26px;
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.1);
  border-radius: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.zh-shop-how-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.zh-shop-how-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.zh-shop-how-n {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--zs-purple);
  letter-spacing: -1px;
  line-height: 1;
}
.zh-shop-how-tag {
  padding: 4px 10px;
  background: var(--zs-bg1);
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  color: var(--zs-purple);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.zh-shop-how-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--zs-text);
}
.zh-shop-how-card p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--zs-muted);
  line-height: 1.6;
  margin: 0;
}
.zh-shop-how-cta-wrap {
  text-align: center;
  margin-top: 36px;
}

.zh-shop-storefront-wrap {
  max-width: 1180px;
}
.zh-shop-browser {
  margin-top: 12px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  box-shadow: 0 24px 60px rgba(109, 40, 217, 0.12);
  overflow: hidden;
}
.zh-shop-browser--live {
  transition: box-shadow 0.2s ease;
}
.zh-shop-browser--live:has(.zh-shop-browser-header--link:hover),
.zh-shop-browser--live:has(.zh-shop-product-card--link:hover) {
  box-shadow: 0 28px 64px rgba(109, 40, 217, 0.18);
}
a.zh-shop-browser-url,
a.zh-shop-browser-header--link,
a.zh-shop-product-card--link {
  color: inherit;
  text-decoration: none;
}
a.zh-shop-browser-url:hover {
  color: var(--zs-purple);
}
a.zh-shop-browser-header--link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(109, 40, 217, 0.08);
  transition: background 0.15s ease;
}
a.zh-shop-browser-header--link:hover {
  background: rgba(109, 40, 217, 0.04);
}
a.zh-shop-browser-header--link:focus-visible,
a.zh-shop-product-card--link:focus-visible,
a.zh-shop-browser-url:focus-visible {
  outline: 2px solid var(--zs-purple);
  outline-offset: 2px;
}
a.zh-shop-product-card--link {
  display: block;
}
.zh-shop-browser-avatar--img {
  overflow: hidden;
  padding: 0;
  background: var(--zs-bg1);
}
.zh-shop-browser-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zh-shop-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--zs-bg1);
  border-bottom: 1px solid rgba(109, 40, 217, 0.08);
}
.zh-shop-browser-dots {
  display: flex;
  gap: 6px;
}
.zh-shop-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.zh-shop-browser-dots span:nth-child(1) {
  background: #ff5f57;
}
.zh-shop-browser-dots span:nth-child(2) {
  background: #febc2e;
}
.zh-shop-browser-dots span:nth-child(3) {
  background: #28c840;
}
.zh-shop-browser-url {
  flex: 1;
  max-width: 360px;
  margin: 0 auto;
  padding: 5px 12px;
  background: #fff;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 11.5px;
  color: var(--zs-muted);
  border: 1px solid rgba(109, 40, 217, 0.1);
  text-align: center;
}
.zh-shop-browser-spacer {
  width: 90px;
}
.zh-shop-browser-header:not(.zh-shop-browser-header--link) {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(109, 40, 217, 0.08);
}
.zh-shop-browser-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zs-purple), var(--zs-orange));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.zh-shop-browser-profile {
  flex: 1;
}
.zh-shop-browser-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--zs-text);
  letter-spacing: -0.04em;
}
.zh-shop-browser-line {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: var(--zs-muted);
}
.zh-shop-browser-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--zs-green);
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
}

.zh-shop-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 24px;
}
.zh-shop-product-card {
  border-radius: 14px;
  border: 1px solid rgba(109, 40, 217, 0.08);
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(14px);
}
.zh-shop-product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zh-shop-product-art:has(.zh-shop-product-img) .zh-shop-product-abbr {
  opacity: 0;
}
.zh-shop-product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s;
}
.zh-shop-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(109, 40, 217, 0.12);
}
.zh-shop-product-art {
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.zh-shop-product-abbr {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -1.5px;
  opacity: 0.85;
}
.zh-shop-product-kind {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.zh-shop-product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.zh-shop-product-tag {
  font-family: "DM Sans", sans-serif;
  font-size: 10.5px;
  color: var(--zs-muted);
  font-weight: 600;
}
.zh-shop-product-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--zs-text);
  line-height: 1.3;
}
.zh-shop-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.zh-shop-product-price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--zs-purple);
}
.zh-shop-product-stock {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  color: var(--zs-muted);
  font-weight: 600;
}

.zh-shop-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.zh-shop-case-card {
  position: relative;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.1);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.zh-shop-case-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.zh-shop-case-blob {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
.zh-shop-case-tag {
  position: relative;
  display: inline-block;
  padding: 4px 11px;
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.zh-shop-case-card h3 {
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--zs-text);
}
.zh-shop-case-card p {
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--zs-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.zh-shop-case-stat {
  position: relative;
  display: inline-block;
  padding: 5px 11px;
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
}

.zh-shop-safe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}
.zh-shop-safe-col {
  padding: 28px;
  background: #fff;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.zh-shop-safe-col.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.zh-shop-safe-col--ok {
  border: 1px solid rgba(34, 197, 94, 0.28);
}
.zh-shop-safe-col--ko {
  border: 1px solid rgba(239, 68, 68, 0.22);
}
.zh-shop-safe-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.zh-shop-safe-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.zh-shop-safe-ico--ok {
  background: var(--zs-green);
}
.zh-shop-safe-ico--ko {
  background: #ef4444;
  font-size: 16px;
}
.zh-shop-safe-head h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin: 0;
  color: var(--zs-text);
}
.zh-shop-safe-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zh-shop-safe-col li {
  display: flex;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--zs-text);
  line-height: 1.5;
}
.zh-shop-safe-li-ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}
.zh-shop-safe-li-ico--ok {
  background: rgba(34, 197, 94, 0.12);
  color: var(--zs-green);
}
.zh-shop-safe-li-ico--ko {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 13px;
}

.zh-shop-faq-inner {
  max-width: 820px;
}

.zh-shop-mid-cta {
  position: relative;
  padding: 100px 32px 110px;
  background: var(--zs-hero);
  color: #fff;
  overflow: hidden;
}
.zh-shop-mid-cta::before,
.zh-shop-mid-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.zh-shop-mid-cta::before {
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167, 139, 245, 0.4), transparent 65%);
}
.zh-shop-mid-cta::after {
  bottom: -150px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 60%);
}
.zh-shop-mid-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.zh-shop-mid-cta-kicker {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #c4b5fd;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.zh-shop-mid-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #fff;
}
.zh-shop-mid-cta p {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 520px;
}
.zh-shop-mid-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .zh-shop-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .zh-shop-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .zh-shop-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .zh-shop-hero-visual {
    min-height: 380px;
    order: -1;
  }
  .zh-shop-why-grid {
    grid-template-columns: 1fr;
  }
  .zh-shop-catalog-grid {
    grid-template-columns: 1fr;
  }
  .zh-shop-how-grid {
    grid-template-columns: 1fr;
  }
  .zh-shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zh-shop-cases-grid {
    grid-template-columns: 1fr;
  }
  .zh-shop-safe-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .zh-shop-hero {
    padding: 96px 16px 88px;
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
  }
  .zh-shop-float-card--tee {
    transform: translate(-72px, 50px) scale(0.88) rotate(-6deg);
  }
  .zh-shop-float-card--vinyl {
    transform: translate(48px, -28px) scale(0.9) rotate(4deg);
  }
  .zh-shop-float-card--live.zh-shop-float-card--pos-0 {
    transform: translate(48px, -28px) scale(0.9) rotate(4deg);
  }
  .zh-shop-float-card--live.zh-shop-float-card--pos-1 {
    transform: translate(-72px, 50px) scale(0.88) rotate(-6deg);
  }
  .zh-shop-float-card--live.zh-shop-float-card--pos-2 {
    transform: translate(-8px, 100px) scale(0.86) rotate(2deg);
  }
  .zh-shop-float-toast {
    transform: translate(20px, 118px) scale(0.88);
  }
  .zh-shop-product-grid {
    grid-template-columns: 1fr;
  }
  .zh-shop-browser-spacer {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zh-shop-hero--mesh::before,
  .zh-shop-float-card--tee,
  .zh-shop-float-card--vinyl,
  .zh-shop-float-card--live,
  .zh-shop-float-toast,
  .zh-shop-scroll-hint svg,
  .zh-shop-hero-live-dot {
    animation: none !important;
  }
}
