/** Shopify CDN: Minification failed

Line 1236:0 All "@import" rules must come first

**/
/* ============================================================
   ZARIYA — 3D ANIMATION SYSTEM v2
   Seamless loading, mobile-first, 3D product view
   ============================================================ */

:root {
  --z3d-perspective: 1200px;
  --z3d-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --z3d-smooth: cubic-bezier(0.23, 1, 0.32, 1);
  --z3d-depth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── 1. SCROLL REVEAL ───────────────────────────────── */
.z3d-reveal {
  opacity: 0;
  transition: opacity .7s var(--z3d-smooth), transform .7s var(--z3d-smooth);
}
.z3d-reveal.z3d-on { opacity: 1; transform: none !important; }

.z3d-flip-up   { transform: perspective(var(--z3d-perspective)) rotateX(18deg) translateY(35px); }
.z3d-depth-slide { transform: perspective(var(--z3d-perspective)) translateZ(-60px) translateY(25px); }
.z3d-scale-up  { transform: perspective(var(--z3d-perspective)) scale3d(.9,.9,.9) translateY(18px); }
.z3d-rise      { transform: perspective(var(--z3d-perspective)) translateY(40px) rotateX(6deg); }
.z3d-text-reveal { transform: perspective(var(--z3d-perspective)) rotateX(12deg) translateY(20px); transform-origin: bottom center; }
.z3d-slide-left  { transform: perspective(var(--z3d-perspective)) translateX(-50px) rotateY(6deg); }
.z3d-slide-right { transform: perspective(var(--z3d-perspective)) translateX(50px) rotateY(-6deg); }

/* Mobile-friendly fade-up (no 3D transforms that cause jank) */
.z3d-fade-up { transform: translateY(30px); }

/* ── 2. GLARE OVERLAY ───────────────────────────────── */
.zariya-glare {
  position: absolute; inset: 0; pointer-events: none; z-index: 10;
  background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.12) 100%);
  opacity: 0; transition: opacity .4s ease; border-radius: inherit;
}

/* ── 3. PRODUCT CARD 3D ─────────────────────────────── */
.product-card { transform-style: preserve-3d; position: relative; isolation: isolate; }
.product-card-media { overflow: hidden; position: relative; }

/* Shine sweep (desktop) */
.card-shine-sweep {
  position: absolute; inset: 0; pointer-events: none; z-index: 5;
  background: linear-gradient(125deg, transparent 0%, transparent 40%, rgba(255,255,255,.15) 50%, transparent 60%, transparent 100%);
  background-size: 300% 300%; background-position: -100% 0; transition: background-position 0s;
}
.product-card:hover .card-shine-sweep {
  background-position: 200% 0; transition: background-position .6s var(--z3d-depth);
}

/* Gold line on hover */
.product-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width .6s var(--z3d-depth); z-index: 6;
}
.product-card:hover::after { width: 100%; }

/* ── 4. 3D PRODUCT VIEW ────────────────────────────── */
[data-z3d-view] {
  perspective: 800px;
  transform-style: preserve-3d;
  cursor: grab;
  touch-action: pan-y;
}
[data-z3d-view]:active { cursor: grabbing; }

[data-z3d-view] .product-card-image {
  backface-visibility: hidden;
  transform-origin: center center;
}

.product-card-image--back {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; z-index: 1;
  backface-visibility: hidden;
  transition: opacity .4s ease;
  pointer-events: none;
}

/* Product detail page 3D hint */
.z3d-pdp-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  color: rgba(255,255,255,.8);
  font-size: .65rem;
  font-family: var(--font-mono, sans-serif);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .7;
  transition: opacity .4s ease;
  pointer-events: none;
}
.z3d-pdp-hint svg { opacity: .8; }

/* Hide hint after user has interacted */
[data-z3d-view].z3d-interacted .z3d-pdp-hint { opacity: 0; }

/* ── 5. BRAND PILLAR 3D ─────────────────────────────── */
.brand-pillar-card {
  transform-style: preserve-3d;
  transition: box-shadow .5s var(--z3d-depth), transform .5s cubic-bezier(.03,.98,.52,.99) !important;
}
.brand-pillar-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.1), 0 6px 20px rgba(201,169,98,.07) !important;
}
.pillar-number { transition: transform .5s ease, opacity .4s ease; }
.brand-pillar-card:hover .pillar-number { transform: translate3d(0,-3px,16px); opacity: .5; }

/* ── 6. HERO ────────────────────────────────────────── */
.hero-static-img { animation: kenBurns 22s ease-in-out infinite alternate; }
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.06) translate(-0.8%,-0.8%); }
}

.hero-static-image::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(201,169,98,.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 70% at 75% 65%, rgba(255,255,255,.02) 0%, transparent 60%);
  animation: heroAmbient 10s ease-in-out infinite alternate;
}
@keyframes heroAmbient {
  0%   { opacity: .5; }
  100% { opacity: .9; }
}

/* ── 7. COLLECTION SHOWCASE 3D ──────────────────────── */
.collection-showcase-image-wrap { transform-style: preserve-3d; }
.collection-showcase-number { transition: transform .5s var(--z3d-spring), opacity .4s ease; }
.collection-showcase-item:hover .collection-showcase-number { transform: translateX(-3px); opacity: .5; }

/* ── 8. CATEGORY TILES 3D ───────────────────────────── */
.shop-category-tile-content { transition: transform .45s var(--z3d-spring); }
.shop-category-tile:hover .shop-category-tile-content { transform: translateY(-6px); }
.shop-category-tile::before { transition: width .6s var(--z3d-depth), box-shadow .5s ease; }
.shop-category-tile:hover::before { box-shadow: 0 2px 12px rgba(201,169,98,.4); }

/* ── 9. LOOKBOOK 3D ─────────────────────────────────── */
.lookbook-card { transition: transform .5s var(--z3d-smooth), box-shadow .5s ease; }
.lookbook-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.lookbook-stat strong { transition: transform .35s var(--z3d-spring), color .3s ease; }
.lookbook-stat:hover strong { transform: translateY(-3px); color: var(--gold); }

/* ── 10. LOGO ───────────────────────────────────────── */
.logo-mark { transition: transform .5s var(--z3d-spring) !important; }
.logo-inline:hover .logo-mark { transform: perspective(200px) rotateY(15deg) scale(1.06) !important; }

/* ── 11. ANNOUNCEMENT SHIMMER ───────────────────────── */
.announcement-bar { position: relative; overflow: hidden; }
.announcement-bar::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(201,169,98,.05) 50%, transparent);
  background-size: 200% 100%; animation: barShimmer 5s linear infinite;
}
@keyframes barShimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ── 12. FOOTER ─────────────────────────────────────── */
.site-footer { position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,98,.25) 30%, rgba(201,169,98,.5) 50%, rgba(201,169,98,.25) 70%, transparent);
  animation: footerLine 4s ease-in-out infinite alternate;
}
@keyframes footerLine { 0% { opacity: .3; transform: scaleX(.6); } 100% { opacity: 1; transform: scaleX(1); } }

.footer-icon-link { transition: all .3s var(--z3d-spring) !important; }
.footer-icon-link:hover { transform: translateY(-3px) !important; box-shadow: 0 6px 20px rgba(201,169,98,.25); }

/* ── 13. BUTTONS ────────────────────────────────────── */
.button-gold, .button-solid {
  transition: transform .2s var(--z3d-spring), box-shadow .2s ease, background .3s ease !important;
}
.button-gold:active, .button-solid:active { transform: scale(.96) translateY(1px); }
.button-gold:hover { box-shadow: 0 6px 20px rgba(201,169,98,.3); transform: translateY(-1px); }

/* ── 14. CURSOR (desktop) ───────────────────────────── */
.z3d-cursor-dot {
  position: fixed; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); pointer-events: none; z-index: 9999;
  opacity: 0; transition: opacity .3s ease; mix-blend-mode: difference;
}
.z3d-cursor-ring {
  position: fixed; width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(201,169,98,.35); pointer-events: none; z-index: 9998;
  opacity: 0; transition: width .3s var(--z3d-spring), height .3s var(--z3d-spring), border-color .3s ease, opacity .3s ease;
  transform: translate(-50%,-50%);
}
.z3d-cursor-ring.z3d-hover { width: 48px; height: 48px; border-color: var(--gold); }
body:hover .z3d-cursor-dot, body:hover .z3d-cursor-ring { opacity: 1; }

/* ── 15. SECTION GLOW DIVIDER ───────────────────────── */
.z3d-section-glow { position: relative; }
.z3d-section-glow::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,98,.15), transparent);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: .2; transform: scaleX(.5); }
  50%     { opacity: .8; transform: scaleX(1); }
}

/* ── 16. FLOATING BADGE ─────────────────────────────── */
.product-card-badge { animation: badgeFloat 3s ease-in-out infinite; }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

/* ══════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Disable heavy effects */
  .z3d-cursor-dot, .z3d-cursor-ring { display: none !important; }

  /* Lighter reveal transitions */
  .z3d-reveal { transition-duration: .5s; }

  /* Reduce hero animation intensity */
  .hero-static-img { animation-duration: 30s; }
  .hero-static-image::before { animation: none; opacity: .4; }

  /* Simpler card hover */
  .product-card:hover { transform: none !important; }
  .product-card::after { display: none; }

  /* Featured grid cards — no overflow issues */
  .featured-grid .product-card {
    overflow: hidden;
    border-radius: 12px;
  }

  /* Touch-friendly 3D view indicator */
  [data-z3d-view] {
    cursor: default;
    touch-action: pan-y;
  }

  /* Smaller section glow */
  .z3d-section-glow::after { left: 10%; right: 10%; }

  /* Footer line */
  .site-footer::before { left: 5%; right: 5%; }

  /* Disable complex hover states */
  .brand-pillar-card:hover { box-shadow: none !important; }
  .lookbook-card:hover { box-shadow: none; }
  .shop-category-tile:hover .shop-category-tile-content { transform: none; }
  .collection-showcase-item:hover .collection-showcase-number { transform: none; }

  /* Button effects lighter */
  .button-gold:hover { box-shadow: none; transform: none; }
}

@media (max-width: 480px) {
  .z3d-reveal { transition-duration: .4s; }
  .z3d-view-hint { width: 24px; height: 24px; bottom: 6px; right: 6px; }
  .z3d-view-hint svg { width: 11px; height: 11px; }
}

/* ── 17. SEAMLESS PAGE LOAD ─────────────────────────── */
/* Prevent FOUC — elements start hidden, reveal after load */
.z3d-reveal {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* GPU acceleration hints for smooth compositing without excess memory */
.hero-static-img,
.product-card-image,
[data-z3d-view] {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* ── 18. ACCESSIBILITY ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .z3d-reveal, .z3d-flip-up, .z3d-depth-slide, .z3d-scale-up, .z3d-rise,
  .z3d-text-reveal, .z3d-slide-left, .z3d-slide-right, .z3d-fade-up {
    opacity: 1 !important; transform: none !important;
    transition: none !important; animation: none !important;
  }
  .hero-static-img, .hero-static-image::before, .announcement-bar::after,
  .site-footer::before, .product-card-badge {
    animation: none !important;
  }
  .zariya-glare, .card-shine-sweep, .z3d-cursor-dot, .z3d-cursor-ring { display: none !important; }
}

/* ── 19. SUPERDESIGN PAGE ───────────────────────────── */
.superdesign-page {
  position: relative;
  overflow: hidden;
  --superdesign-color: #111111;
  --superdesign-light-x: 32%;
  --superdesign-light-y: 18%;
  --superdesign-shadow-strength: .32;
}

.superdesign-page::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 20%, rgba(201, 169, 98, .11), transparent 40%),
    radial-gradient(circle at 88% 84%, rgba(0, 0, 0, .04), transparent 44%);
  animation: superdesignAmbient 9s ease-in-out infinite alternate;
}

.superdesign-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.superdesign-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono, sans-serif);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex: 0 0 auto;
  transition: all .25s ease;
}

.superdesign-back:hover {
  border-color: rgba(201, 169, 98, .7);
  color: var(--gold);
  transform: translateY(-1px);
}

.superdesign-intro h1 {
  margin: 0;
  font-family: var(--font-display, serif);
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.02;
}

.superdesign-intro p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 760px;
}

.superdesign-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(360px, 1fr) minmax(230px, 280px);
  gap: 22px;
  align-items: stretch;
}

.superdesign-panel {
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .36), rgba(255, 255, 255, .14));
  box-shadow: 0 20px 42px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .45);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.superdesign-field {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: linear-gradient(130deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4);
}

.superdesign-label {
  margin: 0;
  font-family: var(--font-mono, sans-serif);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  color: rgba(0, 0, 0, .74);
}

.superdesign-field select,
.superdesign-custom-color-row input[type="text"] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 12px;
  background: rgba(255, 255, 255, .58);
  padding: 10px 12px;
  font-size: .9rem;
  color: var(--text);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.superdesign-field select:focus,
.superdesign-custom-color-row input[type="text"]:focus,
.superdesign-custom-color-row input[type="color"]:focus {
  outline: none;
  border-color: rgba(201, 169, 98, .72);
  box-shadow: 0 0 0 2px rgba(201, 169, 98, .22);
}

.superdesign-upload-button {
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border-color: rgba(255, 255, 255, .55) !important;
  background: linear-gradient(140deg, rgba(255, 255, 255, .4), rgba(255, 255, 255, .12)) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}

.superdesign-upload-button:hover {
  border-color: rgba(201, 169, 98, .75) !important;
  color: var(--gold-dark) !important;
  background: linear-gradient(140deg, rgba(201, 169, 98, .24), rgba(255, 255, 255, .14)) !important;
}

.superdesign-file-name {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  min-height: 1.2em;
}

.superdesign-placement-tip {
  margin: 0;
  font-size: .76rem;
  color: rgba(0, 0, 0, .62);
  line-height: 1.45;
}

.superdesign-artwork-controls {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 12px;
  background: linear-gradient(130deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, .11));
}

.superdesign-range {
  display: grid;
  gap: 6px;
}

.superdesign-range span {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(0, 0, 0, .63);
  font-family: var(--font-mono, sans-serif);
}

.superdesign-range input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .14);
}

.superdesign-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .85);
  background: var(--gold);
  cursor: pointer;
}

.superdesign-range input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .85);
  background: var(--gold);
  cursor: pointer;
}

.superdesign-reset-button {
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
  color: var(--text);
  min-height: 38px;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: var(--font-mono, sans-serif);
  transition: all .25s ease;
}

.superdesign-reset-button:hover {
  color: var(--gold-dark);
  border-color: rgba(201, 169, 98, .72);
  background: rgba(201, 169, 98, .18);
}

.superdesign-color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.superdesign-color-option {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  border-radius: 12px;
  padding: 8px 4px;
  border: 1px solid rgba(255, 255, 255, .42);
  background: linear-gradient(130deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, .1));
  cursor: pointer;
}

.superdesign-color-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.superdesign-color-swatch {
  position: relative;
  overflow: hidden;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .75);
  background: linear-gradient(150deg, var(--swatch), var(--swatch-alt, var(--swatch)));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .5);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.superdesign-color-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 26% 24%, rgba(255, 255, 255, .48), transparent 40%);
}

.superdesign-color-swatch--acid::before {
  content: '';
  position: absolute;
  inset: -24%;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .26) 0 16%, transparent 45%),
    radial-gradient(circle at 62% 66%, rgba(0, 0, 0, .24) 0 20%, transparent 52%),
    radial-gradient(circle at 46% 44%, rgba(255, 255, 255, .19) 0 14%, transparent 42%);
  mix-blend-mode: soft-light;
}

.superdesign-color-option input:checked + .superdesign-color-swatch {
  transform: scale(1.07);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, .18);
}

.superdesign-color-option input:checked ~ .superdesign-color-name {
  color: var(--text);
  font-weight: 600;
}

.superdesign-color-name {
  font-size: .52rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  color: rgba(0, 0, 0, .68);
  font-family: var(--font-mono, sans-serif);
}

.superdesign-custom-color {
  margin-top: 4px;
  display: grid;
  gap: 8px;
}

.superdesign-custom-color-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px;
}

.superdesign-custom-color-row input[type="color"] {
  width: 48px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .65);
  padding: 4px;
  background: rgba(255, 255, 255, .58);
  cursor: pointer;
}

.superdesign-stage-wrap {
  min-height: 100%;
}

.superdesign-stage {
  position: relative;
  width: 100%;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: radial-gradient(120% 90% at 50% 8%, rgba(201, 169, 98, .08), rgba(255, 255, 255, .95) 45%, rgba(0, 0, 0, .04) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  cursor: grab;
  touch-action: none;
}

.superdesign-stage.is-dragging {
  cursor: grabbing;
}

.superdesign-stage::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 68px;
  width: 260px;
  height: 44px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 0) 72%);
  filter: blur(8px);
  pointer-events: none;
}

.superdesign-orbit {
  position: absolute;
  border: 1px dashed rgba(201, 169, 98, .3);
  border-radius: 50%;
  pointer-events: none;
}

.superdesign-orbit--a {
  width: 72%;
  height: 72%;
  animation: superdesignSpin 22s linear infinite;
}

.superdesign-orbit--b {
  width: 54%;
  height: 54%;
  animation: superdesignSpin 14s linear infinite reverse;
}

.superdesign-model-shell {
  position: relative;
  width: 360px;
  height: 430px;
  transform-style: preserve-3d;
  animation: superdesignFloat 5.8s ease-in-out infinite;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, calc(var(--superdesign-shadow-strength) * .75)));
}

.superdesign-model-shell::before {
  content: '';
  position: absolute;
  inset: 20px 26px 28px;
  border-radius: 42% 42% 28% 28%;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--superdesign-light-x) var(--superdesign-light-y), rgba(255, 255, 255, .24), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 56% 84%, rgba(0, 0, 0, .24), rgba(0, 0, 0, 0) 52%);
  mix-blend-mode: soft-light;
  transform: translateZ(34px);
}

.superdesign-model-shell::after {
  content: '';
  position: absolute;
  inset: 38px 56px 18px;
  border-radius: 0 0 22px 22px;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  transform: translateZ(24px);
  opacity: .72;
}

.superdesign-model {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.superdesign-volume,
.superdesign-sleeve,
.superdesign-shoulder {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .2);
  background:
    radial-gradient(circle at var(--superdesign-light-x) var(--superdesign-light-y), rgba(255, 255, 255, .24), rgba(255, 255, 255, 0) 36%),
    linear-gradient(165deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 34%, rgba(0, 0, 0, .24) 100%),
    var(--superdesign-color);
  box-shadow: inset 8px 8px 16px rgba(255, 255, 255, .08), inset -12px -14px 22px rgba(0, 0, 0, .22);
  transform-style: preserve-3d;
}

.superdesign-volume::before,
.superdesign-sleeve::before,
.superdesign-shoulder::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--superdesign-wash-opacity, 0);
  background: var(--superdesign-wash-overlay, none);
  mix-blend-mode: soft-light;
}

.superdesign-volume--left {
  inset: 54px auto 46px 58px;
  width: 22px;
  clip-path: polygon(34% 16%, 78% 28%, 78% 100%, 26% 100%, 8% 42%);
  transform: translateX(-11px) rotateY(-90deg) translateZ(2px);
  transform-origin: left center;
}

.superdesign-volume--right {
  inset: 54px 58px 46px auto;
  width: 22px;
  clip-path: polygon(22% 28%, 66% 16%, 92% 42%, 74% 100%, 22% 100%);
  transform: translateX(11px) rotateY(90deg) translateZ(2px);
  transform-origin: right center;
}

.superdesign-volume--top {
  top: 36px;
  left: 96px;
  width: 168px;
  height: 26px;
  clip-path: polygon(0 74%, 14% 20%, 36% 20%, 46% 0, 54% 0, 64% 20%, 86% 20%, 100% 74%, 94% 100%, 6% 100%);
  transform: translateY(-12px) rotateX(90deg) translateZ(1px);
  transform-origin: center top;
}

.superdesign-volume--bottom {
  left: 104px;
  bottom: 36px;
  width: 152px;
  height: 24px;
  clip-path: polygon(2% 0, 98% 0, 92% 100%, 8% 100%);
  transform: translateY(12px) rotateX(-90deg) translateZ(1px);
  transform-origin: center bottom;
}

.superdesign-sleeve {
  top: 88px;
  width: 76px;
  height: 86px;
  clip-path: polygon(24% 0, 100% 24%, 84% 100%, 0 90%, 4% 22%);
}

.superdesign-sleeve--left {
  left: 30px;
  transform: rotateY(-34deg) rotateZ(8deg) translateZ(8px);
}

.superdesign-sleeve--right {
  right: 30px;
  transform: rotateY(34deg) rotateZ(-8deg) scaleX(-1) translateZ(8px);
}

.superdesign-face {
  position: absolute;
  inset: 40px 54px 38px;
  border: 1px solid rgba(255, 255, 255, .26);
  clip-path: polygon(0 26%, 16% 8%, 34% 8%, 40% 0, 60% 0, 66% 8%, 84% 8%, 100% 26%, 86% 40%, 82% 100%, 18% 100%, 14% 40%);
  background:
    linear-gradient(170deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, 0) 36%, rgba(0, 0, 0, .3) 100%),
    var(--superdesign-color);
  box-shadow:
    inset 12px 12px 28px rgba(255, 255, 255, .12),
    inset -24px -28px 36px rgba(0, 0, 0, .28),
    0 20px 34px rgba(0, 0, 0, .22);
}

.superdesign-face::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--superdesign-wash-opacity, 0);
  background: var(--superdesign-wash-overlay, none);
  mix-blend-mode: soft-light;
}

[data-superdesign][data-wash="solid"] {
  --superdesign-wash-opacity: 0;
}

[data-superdesign][data-wash="acid-green"] {
  --superdesign-wash-opacity: .92;
  --superdesign-wash-overlay:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, .35) 0 14%, transparent 44%),
    radial-gradient(circle at 66% 62%, rgba(41, 58, 37, .4) 0 19%, transparent 48%),
    radial-gradient(circle at 48% 46%, rgba(200, 216, 190, .28) 0 16%, transparent 45%);
}

[data-superdesign][data-wash="acid-black"] {
  --superdesign-wash-opacity: .94;
  --superdesign-wash-overlay:
    radial-gradient(circle at 24% 26%, rgba(236, 236, 236, .26) 0 14%, transparent 46%),
    radial-gradient(circle at 68% 60%, rgba(10, 12, 15, .52) 0 18%, transparent 52%),
    radial-gradient(circle at 42% 54%, rgba(166, 169, 176, .22) 0 13%, transparent 44%);
}

[data-superdesign][data-wash="acid-red"] {
  --superdesign-wash-opacity: .92;
  --superdesign-wash-overlay:
    radial-gradient(circle at 20% 28%, rgba(255, 219, 218, .32) 0 14%, transparent 46%),
    radial-gradient(circle at 70% 64%, rgba(87, 27, 34, .44) 0 18%, transparent 52%),
    radial-gradient(circle at 45% 44%, rgba(214, 150, 156, .24) 0 14%, transparent 45%);
}

[data-superdesign][data-wash="acid-blue"] {
  --superdesign-wash-opacity: .92;
  --superdesign-wash-overlay:
    radial-gradient(circle at 24% 24%, rgba(226, 238, 255, .36) 0 14%, transparent 45%),
    radial-gradient(circle at 66% 66%, rgba(38, 53, 81, .42) 0 18%, transparent 50%),
    radial-gradient(circle at 46% 48%, rgba(157, 182, 214, .25) 0 14%, transparent 45%);
}

.superdesign-face--front {
  transform: translateZ(22px);
}

.superdesign-face--back {
  transform: rotateY(180deg) translateZ(22px);
}

.superdesign-neckline {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 96px;
  height: 34px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .52);
  border-top: 0;
  border-radius: 0 0 38px 38px;
  background: rgba(0, 0, 0, .16);
}

.superdesign-neckline--back {
  width: 74px;
  height: 24px;
  opacity: .75;
}

.superdesign-polo-details {
  display: none;
  position: absolute;
  top: 34px;
  left: 50%;
  width: 4px;
  height: 64px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, .65), rgba(255, 255, 255, .2));
}

.superdesign-hood {
  display: none;
  position: absolute;
  top: 6px;
  left: 50%;
  width: 136px;
  height: 76px;
  transform: translate(-50%, -54%);
  border-radius: 56% 56% 44% 44%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(0, 0, 0, .2));
}

.superdesign-pocket {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 64px;
  width: 110px;
  height: 52px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px 10px 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(0, 0, 0, .1));
}

.superdesign-print {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  object-fit: contain;
  opacity: 0;
  transition: opacity .22s ease;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .24));
  pointer-events: none;
}

.superdesign-print.is-visible {
  opacity: .96;
  pointer-events: auto;
  cursor: grab;
}

.superdesign-print.is-dragging {
  cursor: grabbing;
}

.superdesign-stage.is-artwork-dragging {
  cursor: default;
}

[data-superdesign][data-style="polo"] .superdesign-neckline,
[data-superdesign][data-style="polo"] .superdesign-neckline--back {
  display: none;
}

[data-superdesign][data-style="polo"] .superdesign-polo-details {
  display: block;
}

[data-superdesign][data-style="polo"] .superdesign-sleeve {
  top: 92px;
  height: 80px;
}

[data-superdesign][data-style="hoodie"] .superdesign-neckline,
[data-superdesign][data-style="hoodie"] .superdesign-neckline--back,
[data-superdesign][data-style="hoodie"] .superdesign-polo-details {
  display: none;
}

[data-superdesign][data-style="hoodie"] .superdesign-hood,
[data-superdesign][data-style="hoodie"] .superdesign-hood--back,
[data-superdesign][data-style="hoodie"] .superdesign-pocket {
  display: block;
}

[data-superdesign][data-style="hoodie"] .superdesign-sleeve {
  top: 84px;
  height: 92px;
}

[data-superdesign][data-style="hoodie"] .superdesign-volume--top {
  top: 44px;
}

[data-superdesign][data-style="sweatshirt"] .superdesign-neckline {
  width: 112px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  top: 24px;
}

[data-superdesign][data-style="sweatshirt"] .superdesign-neckline--back {
  width: 86px;
  height: 18px;
}

[data-superdesign][data-style="sweatshirt"] .superdesign-sleeve {
  top: 88px;
  height: 78px;
}

.superdesign-drag-hint {
  position: absolute;
  right: 16px;
  bottom: 14px;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(0, 0, 0, .54);
  color: rgba(255, 255, 255, .8);
  font-family: var(--font-mono, sans-serif);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .57rem;
  pointer-events: none;
}

.superdesign-style-list {
  border: 0;
  padding: 0;
  margin: 0;
}

.superdesign-style-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  background: linear-gradient(125deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, .1));
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.superdesign-style-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.superdesign-style-option:hover {
  border-color: rgba(201, 169, 98, .58);
  background: linear-gradient(125deg, rgba(255, 255, 255, .38), rgba(201, 169, 98, .12));
  transform: translateY(-1px);
}

.superdesign-summary {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, .42);
  padding-top: 16px;
  display: grid;
  gap: 10px;
}

.superdesign-summary p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .86rem;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  padding: 8px 10px;
  background: linear-gradient(130deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .1));
}

.superdesign-summary span {
  color: var(--muted);
}

.superdesign-summary strong {
  font-family: var(--font-mono, sans-serif);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .72rem;
}

@keyframes superdesignFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes superdesignSpin {
  to { transform: rotate(360deg); }
}

@keyframes superdesignAmbient {
  0% { opacity: .5; }
  100% { opacity: .95; }
}

@media (max-width: 1180px) {
  .superdesign-layout {
    grid-template-columns: 1fr;
  }

  .superdesign-stage-wrap {
    order: 1;
  }

  .superdesign-panel--left {
    order: 2;
  }

  .superdesign-panel--right {
    order: 3;
  }

  .superdesign-panel--left,
  .superdesign-panel--right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .superdesign-panel--left .superdesign-field:first-child {
    grid-column: 1 / -1;
  }

  .superdesign-summary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .superdesign-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .superdesign-panel--left,
  .superdesign-panel--right {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .superdesign-color-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .superdesign-stage {
    min-height: 440px;
    border-radius: 20px;
  }

  .superdesign-model-shell {
    width: 300px;
    height: 360px;
  }

  .superdesign-volume--left {
    inset: 44px auto 42px 46px;
    width: 18px;
  }

  .superdesign-volume--right {
    inset: 44px 46px 42px auto;
    width: 18px;
  }

  .superdesign-volume--top {
    top: 30px;
    left: 80px;
    width: 140px;
    height: 22px;
  }

  .superdesign-volume--bottom {
    left: 88px;
    bottom: 32px;
    width: 124px;
    height: 18px;
  }

  .superdesign-sleeve {
    top: 76px;
    width: 62px;
    height: 72px;
  }

  .superdesign-sleeve--left {
    left: 24px;
  }

  .superdesign-sleeve--right {
    right: 24px;
  }

  .superdesign-face {
    inset: 34px 42px 34px;
  }
}

@media (max-width: 520px) {
  .superdesign-color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .superdesign-color-name {
    font-size: .5rem;
  }

  .superdesign-custom-color-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .superdesign-page::before,
  .superdesign-model-shell,
  .superdesign-orbit {
    animation: none !important;
  }

  .superdesign-model,
  .superdesign-face,
  .superdesign-print {
    transition: none !important;
  }
}

/* -- 19. SUPERDESIGN PAGE ----------------------------- */
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,900&f[]=satoshi@400,500,700&display=swap');

    :root {
      --bg-primary: #0a0a0a;
      --accent: #e5e5e5;
      --primary-font: 'Cabinet Grotesk', sans-serif;
      --body-font: 'Satoshi', sans-serif;
      --shirt-color: #111111;
    }

    .cabinet { font-family: var(--primary-font); }
    .satoshi { font-family: var(--body-font); }

    /* Marquee Animation */
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 30s linear infinite;
    }

    /* 3D STUDIO CORE CSS */
    .superdesign-stage {
      position: relative;
      width: 100%;
      height: 600px;
      perspective: 1500px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .superdesign-model-shell {
      width: 400px;
      height: 500px;
      position: relative;
      transform-style: preserve-3d;
      cursor: grab;
    }

    .superdesign-model-shell:active {
      cursor: grabbing;
    }

    .superdesign-model {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.1s ease-out;
    }

    .superdesign-face {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--shirt-color);
      mask-image: url('https://pub-866993ef9088469599283f550970034a.r2.dev/t-shirt-mask.png');
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      -webkit-mask-image: url('https://pub-866993ef9088469599283f550970034a.r2.dev/t-shirt-mask.png');
      -webkit-mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .superdesign-face--front { transform: translateZ(2px); }
    .superdesign-face--back { transform: rotateY(180deg) translateZ(2px); }

    .superdesign-volume {
      position: absolute;
      background: rgba(0,0,0,0.3);
      transform-style: preserve-3d;
    }
    .superdesign-volume--left { width: 4px; height: 100%; left: 0; transform: rotateY(-90deg); }
    .superdesign-volume--right { width: 4px; height: 100%; right: 0; transform: rotateY(90deg); }

    .superdesign-orbit {
      position: absolute;
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 50%;
      pointer-events: none;
    }
    .superdesign-orbit--a { width: 600px; height: 600px; transform: rotateX(75deg); }
    .superdesign-orbit--b { width: 450px; height: 450px; transform: rotateX(75deg); }

    .superdesign-color-swatch {
      width: 28px;
      height: 28px;
      border-radius: 4px;
      display: block;
      background: var(--swatch);
      border: 1px solid rgba(255,255,255,0.1);
      transition: transform 0.2s;
    }

    input[type="radio"]:checked + .superdesign-color-swatch {
      transform: scale(1.2);
      border-color: white;
      box-shadow: 0 0 15px rgba(255,255,255,0.2);
    }

    .control-panel {
      background: rgba(15, 15, 15, 0.8);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.05);
    }

    .stagger-in {
      animation: fadeInUp 0.8s ease-out forwards;
      opacity: 0;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* View Transitions */
    html { background-color: #0a0a0a; }
    @view-transition { navigation: auto; }
    ::view-transition { background-color: #0a0a0a; }
    
    ::view-transition-old(main-header), ::view-transition-new(main-header),
    ::view-transition-old(brand-logo), ::view-transition-new(brand-logo),
    ::view-transition-old(main-nav), ::view-transition-new(main-nav) {
      animation: none;
      mix-blend-mode: normal;
    }

    ::view-transition-old(main-content) { animation: 0.25s ease-out both fade-out; }
    ::view-transition-new(main-content) { animation: 0.25s ease-in 0.1s both fade-in; }

    @keyframes fade-out { from { opacity: 1; } to { opacity: 0; } }
    @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* -- 20. STUDIO V2 PAGE -------------------------------------- */
.studio-v2 {
  padding: 44px 0 72px;
  background: linear-gradient(180deg, #f9f9f9 0%, #f2f2f2 100%);
}

.studio-v2-shell {
  max-width: 1280px;
}

.studio-v2-head h1 {
  margin: 0;
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
  letter-spacing: .01em;
}

.studio-v2-head p {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--muted);
}

.studio-v2-layout {
  margin-top: 28px;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.85fr);
  align-items: start;
}

.studio-v2-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.studio-v2-preview-card,
.studio-v2-form {
  border: 1px solid #d9d9d9;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
}

.studio-v2-preview-card {
  padding: 14px;
}

.studio-v2-preview-card h3 {
  margin: 0 0 10px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--font-mono, "Inter", sans-serif);
}

.studio-v2-preview-card canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid #e3e3e3;
  background: #f5f5f5;
}

.studio-v2-summary {
  margin-top: 14px;
  border: 1px solid #dddddd;
  border-radius: 16px;
  background: #ffffff;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.studio-v2-summary p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: .85rem;
}

.studio-v2-summary span {
  color: var(--muted);
}

.studio-v2-summary strong {
  text-align: right;
}

.studio-v2-form {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.studio-v2-fieldset {
  display: grid;
  gap: 8px;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  background: #fafafa;
  padding: 12px;
}

.studio-v2-label {
  margin: 0;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: var(--font-mono, "Inter", sans-serif);
  color: #525252;
}

.studio-v2-form input[type="file"],
.studio-v2-form select,
.studio-v2-form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  color: inherit;
}

.studio-v2-form textarea {
  resize: vertical;
  min-height: 92px;
}

.studio-v2-form input[type="range"] {
  width: 100%;
}

.studio-v2-help {
  margin: 0;
  font-size: .78rem;
  color: #666666;
}

.studio-v2-status {
  margin: 0;
  font-size: .8rem;
  color: #2f2f2f;
  min-height: 1.1em;
}

.studio-v2-submit {
  min-height: 48px;
  width: 100%;
}

.studio-v2-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.studio-v2-swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.studio-v2-swatch {
  border: 1px solid #dddddd;
  border-radius: 12px;
  background: #fff;
  padding: 8px 6px;
  display: grid;
  justify-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.studio-v2-swatch:hover {
  border-color: #b8b8b8;
  transform: translateY(-1px);
}

.studio-v2-swatch.is-active {
  border-color: var(--gold, #c9a962);
  box-shadow: 0 0 0 2px rgba(201, 169, 98, .22);
}

.studio-v2-swatch-chip {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #d4d4d4;
  background:
    radial-gradient(circle at 26% 24%, var(--swatch-a) 0 24%, transparent 56%),
    radial-gradient(circle at 70% 68%, var(--swatch-b) 0 30%, transparent 58%),
    radial-gradient(circle at 44% 46%, var(--swatch-c) 0 24%, transparent 62%),
    var(--swatch-base);
}

.studio-v2-swatch-name {
  font-size: .62rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #4f4f4f;
}

.studio-v2-product-title,
.studio-v2-static-variant,
.studio-v2-warning {
  margin: 0;
  font-size: .86rem;
}

.studio-v2-warning {
  color: #8f2f2f;
}

.studio-v2-hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .studio-v2-layout {
    grid-template-columns: 1fr;
  }

  .studio-v2-form {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .studio-v2-preview-grid {
    grid-template-columns: 1fr;
  }

  .studio-v2-swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-v2-custom-color-row {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .studio-v2-custom-color-row .studio-v2-small-button {
    grid-column: 1 / -1;
  }
}

.studio-v2-preview-card.is-active {
  border-color: var(--gold, #c9a962);
  box-shadow: 0 0 0 2px rgba(201, 169, 98, .24), 0 18px 40px rgba(0, 0, 0, .08);
}

.studio-v2-preview-card canvas.is-editable {
  cursor: grab;
}

.studio-v2-preview-card canvas.is-dragging {
  cursor: grabbing;
}

.studio-v2-model-hint {
  margin: 10px 0 0;
  font-size: .72rem;
  color: #6e6e6e;
}

.studio-v2-edit-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.studio-v2-edit-tab,
.studio-v2-small-button {
  min-height: 38px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  background: #ffffff;
  font: inherit;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.studio-v2-edit-tab.is-active {
  border-color: var(--gold, #c9a962);
  background: rgba(201, 169, 98, .12);
  color: #1f1f1f;
}

.studio-v2-custom-color-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 8px;
}

.studio-v2-custom-color-row input[type="color"] {
  width: 48px;
  height: 44px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 0;
  background: #ffffff;
}

.studio-v2-small-button {
  padding: 0 12px;
}

.studio-v2-transform-grid {
  display: grid;
  gap: 8px;
}

.studio-v2-range-row {
  display: grid;
  gap: 5px;
}

.studio-v2-range-row span {
  font-size: .66rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #666666;
  font-family: var(--font-mono, "Inter", sans-serif);
}

.studio-v2-range-row strong {
  font-size: .74rem;
  color: #444444;
  font-weight: 600;
}
