/** Shopify CDN: Minification failed

Line 399:0 Unexpected "}"
Line 1071:1 All "@import" rules must come first
Line 1867:1 Unexpected ")"
Line 1960:13 Expected identifier but found whitespace
Line 1961:4 Unexpected "radial-gradient("
Line 2036:0 Unexpected "}"
Line 2144:1 Unexpected "<"
Line 2245:12 Expected identifier but found whitespace
Line 2245:18 Unexpected ";"
Line 2619:2 Unexpected "}"
... and 4 more hidden warnings

**/
:root {
  /* Base */
  --bg-1: #0b0b1a;
  --bg-2: #15112a;
  --bg-3: #241a45;

  /* Surface */
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);

  /* Brand */
  --primary: #7b5cff;
  --primary-soft: #7a5acaff;

  /* Text */
  --text: #ffffff;
  --text-soft: rgba(255,255,255,0.7);
}
:root{
  --bg:#4b4555;
  --bg-2:#544b63;
  --panel:rgba(26, 11, 46, 0.72);
  --panel-strong:rgba(29, 13, 52, 0.86);
  --line:rgba(118, 57, 231, 0.34);
  --text:#f7f0e3;
  --text-soft:#e9e1f8;
  --accent:#a88eff;
  --accent-2:#9276e4;
  --glow:rgba(172, 128, 255, 0.35);
  --gold:#f4e5c5;
}
.section-blend {
  position: relative;
}

.section-blend::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 80px;

  background: linear-gradient(
    to bottom,
    transparent,
    var(--bg-2)
  );
}
h1 {
  font-size: 34px;
  font-weight: 600;
}

h2 {
  font-size: 24px;
  color: var(--text-soft);
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-soft);
}
body {
  background: linear-gradient(
    180deg,
    var(--bg-1),
    var(--bg-2),
    var(--bg-3)
  );
  color: var(--text);
}
.shopify-section {
  background: transparent !important;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body.theme-body{
  margin:0;
  color:var(--text);
  font-family:'Quicksand', system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(88, 61, 188, 0.49), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(43, 0, 255, 0.18), transparent 20%),
    radial-gradient(circle at 50% 0%, rgba(161, 124, 231, 0.06), transparent 12%),
    linear-gradient(180deg, #4d4558 0%, #4e475a 22%, #4b4554 100%);
  min-height:100vh;
}
body.theme-body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.6;
  background-image:
    radial-gradient(2px 2px at 15% 14%, rgba(255,255,255,.75) 0, transparent 70%),
    radial-gradient(2px 2px at 73% 11%, rgba(255,255,255,.65) 0, transparent 70%),
    radial-gradient(1.6px 1.6px at 58% 23%, rgba(255,255,255,.5) 0, transparent 70%),
    radial-gradient(1.6px 1.6px at 31% 41%, rgba(255,255,255,.55) 0, transparent 70%),
    radial-gradient(2px 2px at 83% 37%, rgba(255,255,255,.45) 0, transparent 70%),
    radial-gradient(1.6px 1.6px at 43% 67%, rgba(255,255,255,.45) 0, transparent 70%),
    radial-gradient(2px 2px at 64% 81%, rgba(255,255,255,.5) 0, transparent 70%);
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.shell{
  width:min(1400px, calc(100% - 56px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:linear-gradient(180deg, rgba(53, 32, 129, 0.84), rgba(28,12,49,.82));
  border-bottom:1px solid rgba(220,198,255,.16);
  backdrop-filter: blur(10px);
  box-shadow:0 10px 32px rgba(0, 60, 255, 0.18);
}
.header-inner{
  min-height:88px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand-logo{
  width:80px;
  height:80px;
  object-fit:contain;
  filter: drop-shadow(0 0 16px rgba(150,175,255,.28));
}
.brand-wordmark{
  font-family:'Cinzel', serif;
  font-size:38px;
  line-height:1;
  color:#f3edff;
  letter-spacing:.02em;
  text-shadow:0 0 18px rgba(173,140,255,.18);
}
.main-nav{
  display:flex;
  justify-content:center;
  gap:38px;
  flex-wrap:wrap;
}
.main-nav a{
  font-weight:600;
  font-size:18px;
  color:#f0ebf9;
  opacity:.95;
}
.main-nav a:hover{ color:#fff; text-shadow:0 0 12px rgba(170,130,255,.4); }
.header-icons{
  display:flex;
  gap:18px;
  align-items:center;
  font-size:26px;
  color:#f1ebfc;
}
.header-icons span{
  width:40px; height:40px; display:grid; place-items:center;
  border:1px solid rgba(225,205,255,.2);
  border-radius:999px;
  background:rgba(255,255,255,.03);
}

.section-frame{
  position:relative;
}
.section-frame::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(213,190,255,.3), transparent);
}

.hero-fantasy{
  position:relative;
  overflow:hidden;
  min-height:420px;
  display:flex;
  align-items:center;
}
.hero-bg, .hero-overlay{
  position:absolute; inset:0;
}
.hero-bg{
  background-image:url('{{ "fantasy-world-bg.png" | asset_url }}');
  background-size:cover;
  background-position:center center;
  transform:scale(1.03);
  filter: saturate(1.05) brightness(.85) contrast(1.03);

}
.hero-overlay{
  background:
    radial-gradient(circle at 18% 8%, rgba(214, 171, 61, 0.51), transparent 16%),
    radial-gradient(circle at 80% 18%, rgba(124, 84, 255, 0.56), transparent 22%),
    linear-gradient(90deg, rgba(13,7,22,.35) 0%, rgba(103, 41, 202, 0.47) 40%, rgba(171, 143, 224, 0.52) 80%)

  

}
.hero-grid{
  position:relative;
  z-index:2;
  width:100%;
  padding:92px 0 86px;
}
.hero-copy{
  max-width:620px;
  padding:28px 0 32px;
}
.eyebrow{
  color:#f9e4ad;
  font-size:34px;
  line-height:1;
  margin-bottom:10px;
  text-shadow:0 0 12px rgba(250, 219, 146, .45);
}
.hero-copy h1,
.section-title,
.story-copy h2{
  margin:;
  font-family:'Cinzel', serif;
  font-weight:600;
  color:var(--gold);
  letter-spacing:-.02em;
  text-shadow:0 0 24px rgba(248,221,174,.08);
}
.hero-copy h1{
  font-size:72px;
  line-height:.88;
  margin-bottom:20px;
}
.hero-copy p{
  font-size:20px;
  line-height:1.55;
  color:var(--text-soft);
  max-width:560px;
  margin:0 0 30px;
  text-shadow:0 1px 6px rgba(0,0,0,.25);
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-width:220px;
  min-height:58px;
  border-radius:14px;
  padding:14px 24px;
  font-weight:700;
  font-size:18px;
  letter-spacing:.01em;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  border:1px solid rgba(224,205,255,.28);
  box-shadow:0 12px 24px rgba(0,0,0,.14);
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 32px rgba(123,92,255,.26);
}
.btn-primary{
  color:#fff;
  background:linear-gradient(180deg,rgb(208, 138, 255) 0%, #846fd8 100%);
}
.btn-secondary{
  color:#f3edff;
  background:linear-gradient(180deg, rgba(141,119,219,.55), rgba(104,78,182,.5));
  backdrop-filter: blur(8px);
}
.btn-small{
  min-width:190px;
  min-height:52px;
  font-size:17px;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(180deg, #9e8aff 0%, #846fd8 100%);
}

.worlds{
  padding:36px 0 68px;
}
.ornament{
  height:28px;
  width:100%;
  margin:0 auto 16px;
  position:relative;
}
.ornament::before,
.ornament::after{
  content:"✧";
  position:absolute;
  top:0;
  color:rgba(238,222,255,.6);
  font-size:18px;
}
.ornament::before{ left:calc(50% - 16px); }
.ornament::after{ left:calc(50% + 2px); }
.section-title{
  text-align:center;
  font-size:64px;
  margin-bottom:26px;
}
.world-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.world-card{
  background:linear-gradient(180deg, rgba(37,18,64,.78), rgba(31,14,52,.88));
  border:1px solid rgba(219,201,255,.24);
  border-radius:12px;
  overflow:hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 28px rgba(0,0,0,.18);
}
.card-image{
  height:300px;
  background-image:url('{{ "fantasy-world-bg.png" | asset_url }}');
  background-size:cover;
  position:relative;
  overflow:hidden;
}
.card-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(12,7,21,.08) 0%, rgba(12,7,21,.18) 40%, rgba(12,7,21,.36) 100%);
}
.card-image--one{ background-position: 6% 58%; }
.card-image--two{ background-position: 30% 64%; }
.card-image--three{ background-position: 54% 60%; }
.card-image--four{ background-position: 82% 52%; }
.card-body{
  padding:18px 18px 22px;
  text-align:center;
}
.card-body h3{
  margin:0 0 10px;
  font-family:'Cinzel', serif;
  font-size:28px;
  font-weight:500;
  color:#f6ebd0;
}
.card-body p{
  min-height:84px;
  margin:0 0 18px;
  color:#e9e1f8;
  font-size:17px;
  line-height:1.45;
}

.story-banner{
  padding:70px 0 25px;
}
.story-layout{
  display:grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap:4px;
  align-items:center;
    background: rgba(29, 13, 52, 0.3);
  backdrop-filter: blur(6px);
}
}
.story-copy{
  padding:22px 12px 22px 8px;
}
.story-copy h2{
  font-size:66px;
  margin-bottom:20px;
}
.story-copy p{
  max-width:650px;
  font-size:24px;
  line-height:1.62;
  color:#ede6f9;
  margin:0 0 26px;
}
.story-visual{
  min-height:330px;
  border-radius:16px;
  border:1px solid rgba(224,205,255,.22);
  background-image:
    linear-gradient(180deg, rgba(106, 91, 236, 0.64), rgba(116, 47, 212, 0.32)),
    url('{{ "fantasy-world-bg.png" | asset_url }}');
  background-size:cover;
  background-position:22% 70%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 18px 36px rgba(0,0,0,.2);
}

.magic-divider{
  padding:28px 0 44px;
  text-align:center;
}
.magic-divider p{
  margin:0;
  font-family:'Cinzel', serif;
  font-size:42px;
  color:#f5eaca;
}

.site-footer{
  border-top:1px solid rgba(124, 66, 218, 0.41);
  padding:24px 0 40px;
  color:#e1daf4;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  font-size:15px;
}
.footer-links{ display:flex; gap:16px; flex-wrap:wrap; }

@media (max-width: 1200px){
  .brand-wordmark{ font-size:30px; }
  .main-nav{ gap:24px; }
  .hero-copy h1{ font-size:68px; }
  .section-title{ font-size:54px; }
  .story-copy h2{ font-size:54px; }
  .world-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 820px){
  .shell{ width:min(100% - 28px, 1400px); }
  .header-inner{ grid-template-columns:1fr; justify-items:center; padding:14px 0; }
  .main-nav{ gap:14px 18px; }
  .header-icons{ display:none; }
  .hero-fantasy{ min-height:600px; }
  .hero-copy h1{ font-size:52px; }
  .hero-copy p{ font-size:18px; }
  .section-title{ font-size:42px; }
  .world-grid{ grid-template-columns:1fr; }
  .story-layout{ grid-template-columns:1fr; }
  .story-copy h2{ font-size:42px; }
  .story-copy p{ font-size:20px; }
  .magic-divider p{ font-size:30px; }
  .btn{ min-width:100%; }
}



.shop-section{
  padding: 34px 0 58px;
}

.section-title--shop{
  font-size: 54px;
  margin-bottom: 10px;
}

.section-description{
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.shopify-collection-grid,
.product-grid-fantasy{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}

.shopify-collection-card,
.product-card-fantasy{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(85, 13, 230, 0.22);
  background:linear-gradient(180deg, rgba(46, 48, 167, 0.45), rgba(121, 63, 196, 0.83));
  box-shadow: inset 0 1px 0 rgba(107, 82, 216, 0.56), 0 14px 32px rgba(129, 74, 218, 0.41);
}

.shopify-collection-card__link{
  display:block;
  height:100%;
}

.shopify-collection-card__media,
.product-card-fantasy__media{
  aspect-ratio: 1 / 1;
  position:relative;
  overflow:hidden;
  background: rgba(255,255,255,.03);
}


.shopify-collection-card__img,
.product-card-fantasy__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.shopify-collection-card__img--fallback,
.product-card-fantasy__img--fallback{
  filter: saturate(1.05) brightness(.72);
}

.shopify-collection-card__body,
.product-card-fantasy__body{
  padding: 18px 18px 20px;
}

.shopify-collection-card__body h3,
.product-card-fantasy__title{
  display:block;
  font-family:'Cinzel', serif;
  color:#f6ebd0;
  font-size: 26px;
  line-height:1.15;
  margin: 0 0 10px;
}

.shopify-collection-card__body p,
.product-card-fantasy__subtitle{
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.5;
  min-height: 72px;
  margin: 0 0 18px;
}

.product-card-fantasy__price,
.product-single-fantasy__price{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
}

.price-sale,
.price-regular{
  color:#fff7e3;
}

.price-compare{
  color:#d8cce7;
  text-decoration:line-through;
  font-size: 18px;
  font-weight:600;
}

.product-card-fantasy__form,
.product-single-fantasy__form{
  margin:0;
}

.product-card-fantasy__button{
  width:100%;
  min-width: 0;
}

.product-card-fantasy__button--disabled{
  opacity:.65;
  pointer-events:none;
}

.collection-template-shell,
.product-template-shell{
  padding-top: 22px;
}

.product-single-fantasy{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: start;
}

.product-single-fantasy__media{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(219,201,255,.22);
  background: linear-gradient(180deg, rgba(37,18,64,.78), rgba(23,11,39,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 32px rgba(0,0,0,.2);
}

.product-single-fantasy__img{
  width:100%;
  height:auto;
  display:block;
}

.product-single-fantasy__content{
  padding: 12px 6px;
}

.product-single-fantasy__title{
  font-family:'Cinzel', serif;
  color: var(--gold);
  font-size: 58px;
  line-height: 1.02;
  margin: 0 0 14px;
}

.product-single-fantasy__description{
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-single-fantasy__button{
  min-width: 260px;
}

@media (max-width: 1200px){
  .shopify-collection-grid,
  .product-grid-fantasy{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .product-single-fantasy{
    grid-template-columns: 1fr;
  }
  .product-single-fantasy__title{
    font-size: 46px;
  }
}

@media (max-width: 820px){
  .section-title--shop{
    font-size: 40px;
  }
  .shopify-collection-grid,
  .product-grid-fantasy{
    grid-template-columns: 1fr;
  }
  .product-single-fantasy__title{
    font-size: 38px;
  }
}


.hero-bg{
  background: none;
}
.hero-bg-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  position:absolute;
  inset:0;
  transform:scale(1.03);
  filter:saturate(1.05) brightness(.54) contrast(1.03);
}



/* ---------- Animation Upgrade ---------- */
@keyframes twinkle {
  0%, 100% { opacity: .15; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-12px,0) scale(1.08); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

@keyframes shimmer {
  0% { transform: translateX(-130%) skewX(-18deg); }
  100% { transform: translateX(180%) skewX(-18deg); }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(139, 105, 255, 0); }
  50% { box-shadow: 0 0 28px rgba(139, 105, 255, .22); }
}

.hero-fantasy::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,226,163,.20), transparent 12%),
    radial-gradient(circle at 77% 24%, rgba(121,94,255,.18), transparent 16%),
    radial-gradient(circle at 62% 68%, rgba(255,255,255,.07), transparent 10%);
  mix-blend-mode: screen;
  animation: drift 9s ease-in-out infinite;
  z-index: 1;
}

.hero-copy{
  will-change: transform;
  animation: fadeRise .9s ease-out both;
  position: relative;
  z-index: 3;
}

.hero-copy h1{
  animation: fadeRise .95s ease-out both;
}

.hero-copy p{
  animation: fadeRise 1.05s ease-out both;
}

.hero-actions{
  animation: fadeRise 1.15s ease-out both;
}

.hero-sparkles{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  overflow:hidden;
}

.sparkle{
  position:absolute;
  width:var(--size);
  height:var(--size);
  border-radius:999px;
  background: radial-gradient(circle, rgba(255,244,210,1) 0%, rgba(255,228,155,.9) 42%, rgba(255,228,155,0) 72%);
  filter: blur(.2px);
  box-shadow: 0 0 10px rgba(255, 221, 149, .45);
  animation: twinkle 3.8s ease-in-out infinite, drift 7s ease-in-out infinite;
}

.btn{
  position:relative;
  overflow:hidden;
  transform-style:preserve-3d;
}

.btn::after{
  content:"";
  position:absolute;
  inset:-40% auto -40% -30%;
  width:32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  opacity:.7;
  pointer-events:none;
  animation: shimmer 4.2s linear infinite;
}

.btn:hover{
  animation: pulseGlow 1.2s ease-in-out infinite;
}

.world-card,
.shopify-collection-card,
.product-card-fantasy{
  position:relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.world-card::before,
.shopify-collection-card::before,
.product-card-fantasy::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:
    radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(173, 137, 255, .16), transparent 40%);
  opacity:0;
  transition: opacity .18s ease;
  z-index:1;
}

.world-card:hover::before,
.shopify-collection-card:hover::before,
.product-card-fantasy:hover::before{
  opacity:1;
}

.world-card:hover,
.shopify-collection-card:hover,
.product-card-fantasy:hover{
  transform: translateY(-8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 40px rgba(0,0,0,.28), 0 0 34px rgba(126, 99, 255, .12);
  border-color: rgba(231, 213, 255, .34);
}

.card-image img,
.shopify-collection-card__img,
.product-card-fantasy__img,
.story-visual{
  transition: transform .6s ease, filter .45s ease;
}

.world-card:hover .card-image img,
.shopify-collection-card:hover .shopify-collection-card__img,
.product-card-fantasy:hover .product-card-fantasy__img,
.story-visual:hover{
  transform: scale(1.05);
  filter: saturate(1.06) brightness(1.04);
}

.story-visual{
  position:relative;
  overflow:hidden;
}

.story-visual::after{
  content:"";
  position:absolute;
  inset:auto -10% -30% auto;
  width:45%;
  height:50%;
  background: radial-gradient(circle, rgba(159,129,255,.20), transparent 70%);
  pointer-events:none;
}

.reveal-item{
  opacity:0;
  transform:translate3d(0, 26px, 0);
}

.reveal-item.is-visible{
  animation: fadeRise .85s cubic-bezier(.22,.8,.22,1) var(--reveal-delay, 0ms) forwards;
}

.product-single-fantasy__media,
.story-visual,
.shopify-collection-card__media,
.product-card-fantasy__media{
  overflow:hidden;
}

.site-header{
  animation: fadeRise .7s ease-out both;
}

.brand-logo{
  animation: drift 6s ease-in-out infinite;
}

.brand-wordmark{
  position:relative;
}

.brand-wordmark::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  opacity:.35;
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
:root{
  --font-display: 'Cinzel', serif;
  --font-luxury: 'Cormorant Garamond', serif;
  --font-ui: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Basis */
body{
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* Navigation */
.main-nav a{
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

/* Hero Headline */
.hero-copy h1,
.cinematic-copy h1{
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.96;
  color: #f6e7c5;
  text-shadow:
    0 0 18px rgba(255, 221, 160, 0.12),
    0 0 38px rgba(145, 101, 255, 0.10);
}

/* Große Section Headlines */
.section-title,
.story-copy h2,
.product-single-fantasy__title{
  font-family: var(--font-luxury);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f5e7c9;
  text-shadow: 0 0 18px rgba(255, 221, 160, 0.08);
}

/* Karten- und Produkttitel */
.card-body h3,
.shopify-collection-card__body h3,
.product-card-fantasy__title{
  font-family: var(--font-luxury);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f6ebd0;
}

/* Fließtext */
.hero-copy p,
.cinematic-copy p,
.story-copy p,
.section-description,
.card-body p,
.shopify-collection-card__body p,
.product-card-fantasy__subtitle,
.product-single-fantasy__description{
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

/* Buttons */
.btn{
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Preise */
.price-regular,
.price-sale,
.price-compare,
.product-card-fantasy__price,
.product-single-fantasy__price{
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Eyebrow / kleine Label */
.eyebrow,
.footer-bottom__stars,
.filter-panel__title{
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

/* Footer */
.footer-brand__name,
.footer-column h3{
  font-family: var(--font-luxury);
  font-weight: 600;
  color: #f5e7c9;
}

/* Premium Gold Verlauf für große Headlines */
.hero-copy h1,
.cinematic-copy h1,
.section-title,
.story-copy h2,
.product-single-fantasy__title{
  background: linear-gradient(180deg, #fff6e0 0%, #f4e5c5 45%, #e2c68f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Feiner Glow beim Hover */
.main-nav a,
.btn,
.brand-wordmark{
  transition: text-shadow .25s ease, opacity .25s ease, transform .25s ease;
}

.main-nav a:hover{
  text-shadow:
    0 0 10px rgba(255, 223, 163, 0.18),
    0 0 22px rgba(155, 120, 255, 0.16);
}

.brand-wordmark:hover{
  text-shadow:
    0 0 12px rgba(255, 220, 150, 0.14),
    0 0 30px rgba(155, 120, 255, 0.18);
}

/* Optional: leicht filmischer Look */
.hero-copy,
.cinematic-copy{
  backdrop-filter: blur(8px);
}

/* Mobile sauber halten */
@media (max-width: 820px){
  .main-nav a,
  .btn{
    letter-spacing: 0.05em;
  }

  .brand-wordmark{
    letter-spacing: 0.04em;
  }
}@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif !important;
}
/* ===== LUXURY GOLD GRADIENT ===== */

/* Überschriften + Menü */
h1, h2, h3, h4, h5, h6,
.header__menu-item,
.header__active-menu-item,
nav a {
  background: linear-gradient(
    120deg,
    #f5e6a8 0%,
    #d4af37 25%,
    #fff2b2 50%,
    #d4af37 75%,
    #f5e6a8 100%
  );
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* sehr subtiler Glow für Tiefe */
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.25);
}/* animierter Lichtreflex */
@keyframes goldShine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

h1, h2, h3 {
  background-size: 200% auto;
  animation: goldShine 6s linear infinite;
}/* ===== GOLD SHIMMER BACKGROUND ===== */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(212,175,55,0.08) 50%,
    transparent 60%
  );
  background-size: 200% auto;
  animation: goldSweep 12s linear infinite;
  pointer-events: none;
}

@keyframes goldSweep {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}/* GOLD REFLECTION */

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(212,175,55,0.06) 50%,
    transparent 60%
  );

  background-size: 200% auto;
  animation: goldSweep 14s linear infinite;

  pointer-events: none;
}

@keyframes goldSweep {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}/* ===== GOLD DUST PARTICLES ===== */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background-image:
    radial-gradient(rgba(212,175,55,0.15) 1px, transparent 1px),
    radial-gradient(rgba(212,175,55,0.08) 1px, transparent 1px);

  background-size: 120px 120px, 200px 200px;
  background-position: 0 0, 60px 60px;

  opacity: 0.25;
  animation: goldDustMove 60s linear infinite;
}@keyframes goldDustMove {
  0% {
    background-position: 0 0, 60px 60px;
  }
  100% {
    background-position: 200px 400px, -150px 300px;
  }
}/* ===== GLASS CARD ===== */

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;

  padding: 20px;

  box-shadow:
    0 8px 30px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);

  transition: all 0.35s ease;
}.glass-card:hover {
  transform: translateY(-6px) scale(1.01);

  border: 1px solid rgba(212,175,55,0.25);

  box-shadow:
    0 15px 50px rgba(0,0,0,0.6),
    0 0 20px rgba(212,175,55,0.15);
}.btn-gold:hover {
  transform: translateY(-2px);

  background: rgba(212,175,55,0.08);

  border: 1px solid rgba(212,175,55,0.8);

  box-shadow:
    0 0 20px rgba(212,175,55,0.35),
    0 0 40px rgba(212,175,55,0.15);

  color: #fff8cc;
}.ornament,
.section-title--shop::before,
.section-title--shop::after {
  content: none !important;
  display: none !important;
}.header-icons a,
.header-icons button {
  background: none;
  border: none;
  font-size: 20px;
  margin-left: 15px;
  cursor: pointer;
  color: inherit;
}

.cart-count {
  font-size: 12px;
  margin-left: 4px;
}

/* Such-Overlay */
.search-overlay {
  display: none;
  position: absolute;
  top: 70px;
  right: 20px;
  background: black;
  padding: 15px;
  border-radius: 8px;
}

.search-overlay input {
  padding: 8px;
  width: 200px;
}.search-overlay {
  display: none;
  position: absolute;
  top: 100%;
  right: 20px;
  background: #111;
  padding: 12px;
  border-radius: 10px;
  z-index: 50;
}

.search-overlay input {
  padding: 10px;
  width: 220px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-icons a,
.header-icons button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  font-size: 20px;
}

.icon-cart {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  font-size: 11px;
}.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  font-size: 20px;
  text-decoration: none;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  font-size: 11px;
}

/* SEARCH */
.search-overlay {
  display: none;
  position: absolute;
  top: 80px;
  right: 20px;
  background: #111;
  padding: 15px;
  border-radius: 10px;
  z-index: 999;
}

.search-overlay input {
  padding: 10px;
  width: 220px;
}/* MOBILE HEADER FIX */
@media (max-width: 768px) {

  .header-inner {
    flex-wrap: wrap;
  }

  .brand-wordmark {
    display: none; /* nur Logo */
  }

  .header-icons {
    gap: 10px;
  }

  .icon-btn {
    font-size: 18px;
  }

  /* BURGER BUTTON */
  .mobile-menu-btn {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    margin-top: 10px;
  }

  /* NAV versteckt */
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
    border-bottom: 1px solid #333;
  }
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(212,175,55,0.06) 50%,
    transparent 60%
  );
  background-size: 200% auto;
  animation: goldSweep 14s linear infinite;
  pointer-events: none;
}body.theme-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 20% 30%, rgba(0,170,255,0.18), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(0,120,255,0.14), transparent 50%);

  filter: blur(40px);
  animation: auraMove 18s ease-in-out infinite;
}

@keyframes auraMove {
  0% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.2) translate(-2%, 2%); }
  100% { transform: scale(1) translate(0,0); }
}body.theme-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(212,175,55,0.06) 50%,
    transparent 60%
  );

  background-size: 200% auto;
  animation: goldSweep 18s linear infinite;
}

@keyframes goldSweep {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}h1, h2, h3,
.section-title,
.product-single-fantasy__title {

  text-shadow:
    0 0 12px rgba(255,220,150,0.12),
    0 0 28px rgba(120,90,255,0.08);
}body.theme-body::marker {
  display: none;
}
@media (max-width: 768px){

  h1{ font-size: 38px !important; line-height: 1.05; }
  h2{ font-size: 30px !important; }
  h3{ font-size: 22px !important; }

  .section-title{
    font-size: 34px !important;
    margin-bottom: 16px;
  }

  .hero-copy p,
  .story-copy p{
    font-size: 16px !important;
    line-height: 1.6;
  }

}@media (max-width: 768px){

  .hero-fantasy{
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-copy{
    text-align: center;
    padding: 0;
  }

  .hero-copy h1{
    font-size: 42px !important;
  }

  .hero-actions{
    justify-content: center;
  }

}@media (max-width: 768px){

  .world-grid,
  .shopify-collection-grid,
  .product-grid-fantasy{
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .world-card,
  .product-card-fantasy{
    border-radius: 14px;
  }

}@media (max-width: 768px){

  .product-single-fantasy{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-single-fantasy__title{
    font-size: 32px !important;
  }

  .product-single-fantasy__price{
    font-size: 20px;
  }

  .product-single-fantasy__button{
    width: 100%;
  }

}@media (max-width: 768px){

  .btn{
    min-height: 52px;
    font-size: 15px;
    border-radius: 12px;
  }
}@media (max-width: 768px){

  .sticky-cart-bar{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    background: rgba(10,10,20,0.85);
    backdrop-filter: blur(14px);

    border-top: 1px solid rgba(212,175,55,0.25);

    padding: 10px 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 999;
  }

  .sticky-cart-bar .price{
    font-weight: 700;
    font-size: 16px;
    color: #fff3d6;
  }

  .sticky-cart-bar button{
    flex: 1;
    height: 46px;
    border-radius: 10px;

    background: linear-gradient(180deg,#d4af37,#b8962e);
    color: #111;
    font-weight: 700;
  }

}.hero-copy{
  transition: transform .6s ease, opacity .6s ease;
}/* Savor Section Fix */
.section,
.shopify-section {

}.shopify-section .section-luxury::before {
  pointer-events: none;
  mix-blend-mode: screen;
}.shopify-section {
  position: relative;
}.section-luxury {
  position: relative;
  background: var(--lux-bg);
  border-radius: 20px;
  padding: 80px 48px;
  overflow: hidden;
}

/* Lichttiefe */
.section-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px circle at 20% 30%, var(--lux-blue-soft), transparent 60%),
    radial-gradient(700px circle at 80% 70%, var(--lux-gold-soft), transparent 60%);
}

/* Edge + Depth */
.section-luxury::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 1px var(--lux-border),
    0 20px 60px rgba(0,0,0,0.6);
}

/* Content */
.section-luxury > * {
  position: relative;
  z-index: 1;
}:root {
  /* Base */
  --lux-bg: #0b0b0d;
  --lux-bg-soft: #111218;

  /* Text */
  --lux-text: #f5f7fa;
  --lux-text-muted: #a0a6b0;

  /* Akzent (dein Stil) */
  --lux-blue: #0078ff;
  --lux-blue-soft: rgba(0,120,255,0.08);

  --lux-gold: #ffd700;
  --lux-gold-soft: rgba(255,215,0,0.06);

  /* Linien */
  --lux-border: rgba(255,255,255,0.06);
}.section-spacing {
  margin: 80px auto;
}

.container-lux {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}.section-luxury:hover::before {
  background:
    radial-gradient(
      900px circle at 25% 35%,
      rgba(0, 140, 255, 0.10),
      transparent 60%
    ),
    radial-gradient(
      700px circle at 75% 65%,
      rgba(255, 215, 0, 0.08),
      transparent 60%
    );
  transition: all 0.8s ease;
}/* === HERO === */
.hero {
  height: 80vh;
  background: url('/cdn/s/files/your-image.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: #2a1f44;
}

.hero p {
  color: #6e6e7a;
  margin-bottom: 20px;
}

/* === BUTTONS === */
.btn-primary {
  background: linear-gradient(135deg, #7a5cff, #5b3fe0);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(107,77,230,0.3);
}

/* === TRUST BAR === */
.trust-bar {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: #f6f2f7;
}

/* === PRODUCTS === */
.products {
  padding: 60px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  border-radius: 12px;
}

.btn-secondary {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #5b3fe0;
  color: white;
  border-radius: 999px;
}

/* === FEATURE === */
.feature {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f6f2f7);
  text-align: center;
}/* HERO PARALLAX BASIS */
.hero-parallax {
  position: relative;
  overflow: hidden;
}

/* Hintergrund Layer */
.hero-parallax::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;

  transform: translateY(0);
  will-change: transform;
  z-index: 0;
}

/* Licht / Glow Layer */
.hero-parallax::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at 30% 40%, rgba(255,215,0,0.25), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(255,255,200,0.15), transparent 60%);

  mix-blend-mode: screen;
  pointer-events: none;

  transform: translateY(0);
  will-change: transform;
  z-index: 1;
}

/* Content bleibt oben */
.hero-parallax > * {
  position: relative;
  z-index: 2;
}/* GOLDENE LICHTAURA */
.hero-parallax::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 30% 40%, rgba(255,215,0,0.25), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(255,255,200,0.15), transparent 60%);

  animation: glowPulse 6s ease-in-out infinite alternate;

  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}

@keyframes glowPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}.hero-parallax p {
  opacity: 0;
  transform: translateY(10px);
  animation: textFade 1.2s ease forwards;
  animation-delay: 0.8s;
}

@keyframes textFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}.hero-lightning {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: white;
  opacity: 0;
}

.flash {
  animation: lightningFlash 0.3s ease-out;
}

@keyframes lightningFlash {
  0% { opacity: 0; }
  10% { opacity: 0.8; }
  100% { opacity: 0; }
}.hero-mist {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(255,80,0,0.15), transparent 70%);
  animation: smokeMove 20s linear infinite;
}

@keyframes smokeMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10%); }
}/* HERO START ZUSTAND */
.hero-parallax {
  opacity: 0;
  transform: scale(1.05);
  animation: heroReveal 1.8s ease forwards;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}.site-header::after {
  display: block;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(59, 42, 109, 0.8),
    rgba(59, 42, 109, 1)
  );
}.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(15, 10, 30, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
}.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 0%,
    rgba(120, 80, 255, 0.25),
    transparent 60%
  );
  pointer-events: none;

});.site-header::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 40px;

  background: linear-gradient(
    to bottom,
    rgba(15,10,30,0.6),
    rgba(59,42,109,1)
  );
}.btn,
.buy-now-btn {
  border-radius: 10px;
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,92,255,0.4);
}body {
  font-weight: 400;
  letter-spacing: 0.2px;
}

h1, h2, h3 {
  letter-spacing: 0.5px;
  font-weight: 600;
}

p {
  line-height: 1.6;
  opacity: 0.9;
}.card,
.product-card,
.collection-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-radius: 14px;

  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  text-decoration: none;
  color: white;
}

.search-item img {
  border-radius: 4px;
}

#search-results {
  max-height: 300px;
  overflow-y: auto;
}/* OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  z-index: 9999;
}

.search-overlay.active {
  display: flex;
}

/* BOX */
.search-box {
  width: 90%;
  max-width: 500px;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 16px;
}


  /* 🔥 Premium Hintergrund */
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(145deg, #1a1230, #0f0b1f);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 20px 40px rgba(0,0,0,0.35);
}

/* Bild perfekt darstellen */
.product-card-fantasy__img {
  width: 92% !important;
  height: 92% !important;

  object-fit: contain !important;
  object-position: center;

  filter:
    drop-shadow(0 18px 30px rgba(0,0,0,0.45))
    contrast(1.05)
    saturate(1.05);

  transition: transform .4s ease, filter .4s ease;
}

/* 🔥 Hover = Premium Effekt */
.product-card-fantasy:hover .product-card-fantasy__img {
  transform: scale(1.08);
  filter:
    drop-shadow(0 28px 50px rgba(0,0,0,0.6))
    brightness(1.08)
    saturate(1.1);
}
/* INPUT */
#search-input {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

/* RESULTS */
#search-results {
  margin-top: 10px;
}

/* ITEM */
.search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  text-decoration: none;
  color: white;
  border-radius: 8px;
}

.search-item:hover {
  background: rgba(255,255,255,0.1);
}

.search-item img {
  border-radius: 6px;
}.section,
.color-background-1,
.color-background-2 {
  background: transparent !important;
}.card__media img,
.product-card__image img,
.media img {
  object-fit: contain !important;
  background-color: #f6f6f6; /* optional schöner Hintergrund */
}

}.card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}/* Produktbilder NICHT abschneiden */
.card__media {
  aspect-ratio: auto !important;
  height: auto !important;
  padding-bottom: 0 !important;
}

.card__media .media {
  position: relative !important;
  height: auto !important;
}

.card__media img {
  object-fit: contain !important;
  width: 100%;
  height: auto !important;
  position: relative !important;
}

/* Optional: schöner Hintergrund */
.card__media {
  background: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
}.media--cropped img {
  object-fit: contain !important;
}/* === FINAL IMAGE FIX (no cropping anywhere) === */

/* Entfernt Shopify Cropping Wrapper komplett */
.media--cropped,
.card__media .media {
  padding-bottom: 0 !important;
  height: auto !important;
  position: relative !important;
  overflow: visible !important;
}

/* Hebt absolute Positionierung auf */
.card__media img {
  position: relative !important;
  inset: unset !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Entfernt aspect ratio Zwang */
.card__media {
  aspect-ratio: auto !important;
  height: auto !important;
  display: block !important;
}.product-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.product-gallery__item {
  flex: 0 0 auto;
  width: 80%;
}

.product-gallery__item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-gallery__main img {
  width: 100%;
  border-radius: 14px;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.product-gallery__thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.product-gallery__thumb.active {
  opacity: 1;
  border-color: #000;
}<div id="ProductLightbox" class="product-lightbox">
  <span class="product-lightbox__close">&times;</span>
  <img id="ProductLightboxImage" src="" alt="">
</div>/* MAIN IMAGE */
.product-gallery__main img {
  width: 100%;
  border-radius: 14px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.product-gallery__main img:hover {
  transform: scale(1.03);
}

/* THUMBS */
.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.product-gallery__thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
}

.product-gallery__thumb.active {
  opacity: 1;
  border-color: #000;
}

/* LIGHTBOX */
.product-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.product-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.product-lightbox.active {
  display: flex;
}

.product-lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}/* === FORCE FIX für dein Fantasy Grid === */

.product-card-fantasy__media {
  position: relative !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Shopify setzt oft absolute Position → wir killen das */
.product-card-fantasy__media img {
  position: relative !important;
  inset: auto !important;

  width: 100% !important;
  height: 100% !important;

  object-fit: contain !important;
  object-position: center !important;

  transform: none !important;
}

/* Falls irgendwo Wrapper reinfunkt */
.product-card-fantasy__media * {
  max-width: 100%;
  max-height: 100%;
}.shopify-collection-card__media {
  background: linear-gradient(145deg, #f3f3f7, #e9e9f2);
}.shopify-collection-card__media {
  background: linear-gradient(145deg, #f3f3f7, #e9e9f2);
}object-fit: cover;
.product-card-fantasy__media {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

/* ✨ PARTIKEL (Fake Stars) */
.product-card-fantasy__media {
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.6), transparent 60%),
    radial-gradient(2px 2px at 70% 20%, rgba(200,170,255,.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(255,255,255,.4), transparent 60%),
    radial-gradient(1.5px 1.5px at 80% 60%, rgba(170,130,255,.5), transparent 60%);
  
  animation: particleDrift 12s linear infinite;
}

/* 🐉 BILD */
.product-card-fantasy__img {
  position: relative;
  z-index: 2;

  filter:
    drop-shadow(0 20px 35px rgba(80, 40, 180, 0.5))
    contrast(1.05);

  transition: all .4s ease;
}

/* 🔥 HOVER STATE */
.product-card-fantasy:hover .product-card-fantasy__img {
  transform: scale(1.1);

  filter:
    drop-shadow(0 35px 65px rgba(140, 90, 255, 0.75))
    brightness(1.1)
    saturate(1.15);
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes magicPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

@keyframes lightSweep {
  0% {
    transform: translateX(-120%) rotate(8deg);
  }
  100% {
    transform: translateX(120%) rotate(8deg);
  }
}

@keyframes particleDrift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 40px 80px, -60px 40px, 30px -50px, -40px -30px;
  }
}/* =========================
   LEGENDARY CLEAN SYSTEM
   ========================= */

.product-card-fantasy__media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;

  display: grid;
  place-items: center;

  /* ✨ Base Glow */
  background:
    radial-gradient(circle at 50% 40%, rgba(140,90,255,0.15), transparent 60%),
    linear-gradient(145deg, #140f2a, #0c0a1a);
}

/* ✨ EIN sauberer Aura Layer */
.product-card-fantasy__media::before {
  content: "";
  position: absolute;
  inset: -25%;

  background: radial-gradient(
    circle,
    rgba(140,90,255,0.4),
    rgba(120,70,255,0.2),
    transparent 70%
  );

  filter: blur(50px);
  opacity: 0.7;

  animation: auraFloat 8s ease-in-out infinite;
  z-index: 0;
}

/* ✨ EIN sauberer Light Sweep */
.product-card-fantasy__media::after {
  content: "";
  position: absolute;
  inset: -30%;

  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(170,130,255,0.25),
    transparent 65%
  );

  opacity: 0.3;
  animation: lightMove 10s linear infinite;

  z-index: 1;
}

/* 🐉 Bild */
.product-card-fantasy__img {
  position: relative;
  z-index: 2;

  width: 90% !important;
  height: 90% !important;

  object-fit: contain !important;

  filter:
    drop-shadow(0 20px 35px rgba(80,40,180,0.5));

  transition: all .4s ease;
}

/* 🔥 Hover */
.product-card-fantasy:hover .product-card-fantasy__img {
  transform: scale(1.08);
  filter:
    drop-shadow(0 35px 70px rgba(140,90,255,0.8))
    brightness(1.1);
}

/* =========================
   ANIMATIONEN
   ========================= */

@keyframes auraFloat {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes lightMove {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}/* =========================
   CINEMATIC WORLD LAYERS
   ========================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 20% 30%, rgba(120,90,255,0.12), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255,215,120,0.10), transparent 50%);

  filter: blur(60px);
  animation: cinematicDrift 25s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(1px 1px at 30% 40%, rgba(255,255,255,0.15), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.12), transparent);

  opacity: 0.3;
  animation: starFlow 80s linear infinite;
}

@keyframes cinematicDrift {
  0%   { transform: scale(1) translate(0,0); }
  50%  { transform: scale(1.15) translate(-2%, 2%); }
  100% { transform: scale(1) translate(0,0); }
}

@keyframes starFlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}/* =========================
   CINEMATIC FOG
   ========================= */

.shop-section {
  position: relative;
  overflow: hidden;
}

.shop-section::before {
  content: "";
  position: absolute;
  inset: -20%;

  background:
    radial-gradient(circle at 30% 40%, rgba(120,80,255,0.15), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,200,120,0.12), transparent 60%);

  filter: blur(80px);
  animation: fogMove 30s ease-in-out infinite;
}

@keyframes fogMove {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}/* =========================
   CINEMATIC FLOAT
   ========================= */

.shopify-collection-card,
.product-card-fantasy {
  animation: cinematicFloat 8s ease-in-out infinite;
}

.shopify-collection-card:nth-child(2n) {
  animation-delay: 2s;
}

.shopify-collection-card:nth-child(3n) {
  animation-delay: 4s;
}

@keyframes cinematicFloat {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}/* =========================
   SLOW LIGHT SWEEP
   ========================= */

.shopify-collection-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.08),
    transparent 60%
  );

  opacity: 0.3;
  animation: slowSweep 12s linear infinite;
}

@keyframes slowSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}/* =========================
   3D CAMERA SYSTEM
   ========================= */

.shop-section {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.shopify-collection-grid {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

/* Cards reagieren leicht */
.shopify-collection-card {
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}/* =========================
   DEPTH LAYERS
   ========================= */

.animated-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

/* Hintergrund Layer */
.glow--1 {
  top: 10%;
  left: 20%;
  background: rgba(120, 80, 255, 0.35);
  transform: translateZ(-200px);
}

/* Vordergrund Layer */
.glow--2 {
  bottom: 10%;
  right: 20%;
  background: rgba(255, 200, 120, 0.25);
  transform: translateZ(150px);
}/* =========================
   CURSOR LIGHT
   ========================= */

.shop-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: radial-gradient(
    400px circle at var(--mx, 50%) var(--my, 50%),
    rgba(160,120,255,0.15),
    transparent 60%
  );

  transition: background 0.1s;
}/* =========================
   CARD DEPTH FEEL
   ========================= */

.shopify-collection-card {
  transform: translateZ(60px);
}

.shopify-collection-card:hover {
  transform: translateZ(120px) scale(1.03);
}@media (max-width: 768px){
  .shopify-collection-grid {
    transform: none !important;
  }

  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at var(--mx,50%) var(--my,50%),
    rgba(160,120,255,0.25),
    transparent 60%);

  opacity: 0;
  transition: opacity 0.3s ease;
}

.shopify-collection-card:hover::before {
  opacity: 1;
}
  }
}/* Container */
.product-form__input,
.savor-app,
[class*="option"],
[class*="variant"] {
  background: transparent !important;
  border: none !important;
}

/* Dropdown selbst */
select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(180,150,255,0.4) !important;
  border-radius: 12px !important;
  color: #f1eaff !important;
  padding: 14px !important;
  font-size: 15px;
}

/* Hover */
select:hover {
  border-color: #8b5cf6 !important;
}

/* Fokus */
select:focus {
  outline: none;
  border-color: #a78bfa !important;
  box-shadow: 0 0 0 2px rgba(167,139,250,0.3);
}

/* Label */
label {
  color: #d8cfff !important;
  font-weight: 500;
}/* === VARIANT PICKER OVERRIDE (SAVOR STYLE) === */

/* Container fixen */
.product-form__input,
[class*="option"],
[class*="variant"],
[class*="selector"] {
  background: transparent !important;
  border: none !important;
  margin-top: 10px;
}

/* Label */
.product-form__input label,
label {
  color: #d6ccff !important;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

/* Dropdown */
.product-form__input select,
select {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(167, 139, 250, 0.35) !important;
  border-radius: 14px !important;
  color: #f3efff !important;
  padding: 14px 16px !important;
  font-size: 15px;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
  cursor: pointer;
}

/* Hover */
.product-form__input select:hover,
select:hover {
  border-color: #8b5cf6 !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Fokus */
.product-form__input select:focus,
select:focus {
  outline: none !important;
  border-color: #a78bfa !important;
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.25);
}

/* Dropdown Pfeil schöner */
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #a78bfa 50%),
                    linear-gradient(135deg, #a78bfa 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px),
                       calc(100% - 15px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* Wrapper (heller Kasten entfernen) */
.product-form,
.shopify-product-form,
form {
  background: transparent !important;
}

/* Abstand zum Button */
.product-form__buttons {
  margin-top: 20px;
}/* === FORCE OVERRIDE VARIANT APP === */

/* ALLES resetten rund um Varianten */
[class*="option"],
[class*="Option"],
[class*="variant"],
[class*="Variant"],
[class*="selector"],
[class*="Selector"] {
  background: transparent !important;
  border: none !important;
}



/* Hover */
.product-single-fantasy select:hover {
  border-color: #a88eff !important;
  box-shadow: 0 8px 26px rgba(140, 90, 255, 0.25);
}

/* Fokus */
.product-single-fantasy select:focus {
  outline: none !important;
  border-color: #c4b5ff !important;
  box-shadow: 0 0 0 2px rgba(167,139,250,0.3);
}

/* Label fix */
.product-single-fantasy label {
  color: #e9e1f8 !important;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

/* Dieser hässliche helle Hintergrund → killen */
.product-form,
.product-single-fantasy__content,
form {
  background: transparent !important;
}

/* Optional: leichtes Glow-Upgrade */
.product-single-fantasy select {
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 10px 30px rgba(140, 90, 255, 0.12);
}.custom-variants {
  margin: 20px 0;
}

.variant-label {
  color: var(--text-soft);
  margin-bottom: 10px;
  font-size: 14px;
}

/* Grid */
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Button */
.variant-btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(168, 142, 255, 0.4);
  background: rgba(255,255,255,0.05);
  color: #f3efff;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}

/* Hover */
.variant-btn:hover {
  border-color: #a88eff;
  box-shadow: 0 6px 18px rgba(140, 90, 255, 0.25);
}

/* Active */
.variant-btn.active {
  background: linear-gradient(180deg, #a88eff, #7b5cff);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(140, 90, 255, 0.4);
}<script>
document.addEventListener("DOMContentLoaded", () => {
  const buttons = document.querySelectorAll(".variant-btn");
  const form = document.querySelector('form[action="/cart/add"]');

  buttons.forEach(btn => {
    btn.addEventListener("click", () => {
      
      // Active State
      buttons.forEach(b => b.classList.remove("active"));
      btn.classList.add("active");

      const variantId = btn.dataset.variantId;

      // Hidden input setzen
      let input = form.querySelector('input[name="id"]');
      if (!input) {
        input = document.createElement("input");
        input.type = "hidden";
        input.name = "id";
        form.appendChild(input);
      }

      input.value = variantId;
    });
  });

  // Default auswählen (erste Variante)
  if (buttons.length > 0) {
    buttons[0].click();
  }
});
</script>.custom-variants {
  margin: 24px 0;
}

.variant-label {
  color: var(--text-soft);
  margin-bottom: 12px;
  font-size: 14px;
}

/* GRID */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
}

/* CARD */
.variant-card {
  border-radius: 14px;
  border: 1px solid rgba(168, 142, 255, 0.3);
  background: rgba(255,255,255,0.05);
  padding: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
  text-align: center;
}

/* IMAGE */
.variant-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.variant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAME */
.variant-name {
  font-size: 13px;
  color: #f3efff;
}

/* HOVER */
.variant-card:hover {
  transform: translateY(-3px);
  border-color: #a88eff;
  box-shadow: 0 10px 25px rgba(140, 90, 255, 0.25);
}

/* ACTIVE */
.variant-card.active {
  border: 1px solid #a88eff;
  box-shadow: 0 0 0 2px rgba(168,142,255,0.4),
              0 12px 30px rgba(140, 90, 255, 0.35);
  transform: scale(1.02);
}

/* SOLD OUT */
.variant-card:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(1);
}.variant-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(140,90,255,0.2), transparent 70%);
  opacity: 0;
  transition: 0.3s;
}

.variant-card:hover::after {
  opacity: 1;
}.variant-card {
  position: relative;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(168,142,255,0.25);
  background: rgba(255,255,255,0.04);
  color: #f3efff;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover Glow */
.variant-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(140,90,255,0.3);
}

/* Active */
.variant-card.active {
  background: linear-gradient(180deg,#a88eff,#7b5cff);
  color: white;
  border: none;
}

/* Disabled Kombination */
.variant-card.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Smooth Image */
.product-single-fantasy__img {
  transition: opacity .25s ease, transform .4s ease;
}.collection {
  background: radial-gradient(circle at 20% 30%, rgba(120, 80, 255, 0.15), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(0, 200, 255, 0.12), transparent 40%),
              linear-gradient(180deg, #2a1f4a 0%, #1b1535 100%);
}/* =========================
   GLOBAL FORCE
========================= */

body,
body.template-collection {
  background: radial-gradient(circle at 20% 30%, rgba(120, 80, 255, 0.15), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(0, 200, 255, 0.12), transparent 40%),
              linear-gradient(180deg, #2a1f4a 0%, #1b1535 100%) !important;
  color: #ffffff !important;
}

/* =========================
   PRODUCT CARD FORCE
========================= */

.card,
.product-card,
.grid__item .card {
  border-radius: 18px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  transition: all 0.3s ease !important;
}

/* Hover */
.card:hover,
.product-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(120, 80, 255, 0.25),
              0 0 20px rgba(200, 150, 255, 0.2) !important;
}

/* =========================
   IMAGE FIX (WICHTIG!)
========================= */

.card__media,
.product-card__image,
.media {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 240px !important;
  background: linear-gradient(180deg, #2a1f4a, #1b1535) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

.card__media img,
.product-card img,
.media img {
  max-width: 90% !important;
  max-height: 90% !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}

/* Hover Zoom */
.card:hover img,
.product-card:hover img {
  transform: scale(1.05) !important;
}

/* =========================
   BUTTON FORCE
========================= */

button,
.btn,
.button {
  border-radius: 14px !important;
  background: linear-gradient(135deg, #7b5cff, #a88cff) !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.25s ease !important;
}

button:hover,
.btn:hover,
.button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 0 18px rgba(180, 120, 255, 0.6) !important;
}

/* =========================
   PRICE FORCE
========================= */

.price,
.price-item {
  font-weight: bold !important;
  font-size: 1.2rem !important;
  color: #f5d08a !important;
}

/* =========================
   TITLE FORCE
========================= */

.card__heading,
.product-card__title {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

/* =========================
   SPACING FIX
========================= */

.card__content,
.product-card__info {
  padding: 16px !important;
}

/* =========================
   MOBILE FORCE
========================= */

@media (max-width: 768px) {
  .card__media,
  .product-card__image {
    height: 180px !important;
  }
}body .card img {
  max-height: 90% !important;
}/* =========================
   LUXURY PRODUCT PAGE
   ========================= */

   .product-luxury {
     padding: 60px 0;
     }

     .lux-container {
       display: grid;
         grid-template-columns: 1fr 1fr;
           gap: 40px;
             align-items: center;
             }

             /* IMAGE */
             .lux-media {
               background: linear-gradient(180deg,#15122a,#0e0c1d);
                 border-radius: 16px;
                   padding: 30px;
                     display: flex;
                       justify-content: center;
                       }

                       .lux-media img {
                         max-width: 90%;
                           object-fit: contain;
                           }

                           /* TEXT */
                           .lux-title {
                             font-size: 42px;
                               color: #f4e5c5;
                               }

                               .lux-subtitle {
                                 color: rgba(255,255,255,0.7);
                                   margin-bottom: 16px;
                                   }

                                   .lux-price {
                                     font-size: 28px;
                                       font-weight: bold;
                                         margin-bottom: 20px;
                                         }

                                         /* BENEFITS */
                                         .lux-benefits {
                                           list-style: none;
                                             padding: 0;
                                               margin-bottom: 20px;
                                               }

                                               .lux-benefits li {
                                                 margin-bottom: 8px;
                                                 }

                                                 /* BUTTON */
                                                 .lux-btn {
                                                   background: linear-gradient(135deg,#7b5cff,#a88cff);
                                                     border: none;
                                                       padding: 14px 24px;
                                                         border-radius: 12px;
                                                           color: white;
                                                             font-weight: bold;
                                                               cursor: pointer;
                                                               }

                                                               .lux-btn:hover {
                                                                 transform: translateY(-2px);
                                                                 }

                                                                 /* STORY */
                                                                 .lux-story {
                                                                   margin-top: 60px;
                                                                     text-align: center;
                                                                     }

                                                                     .lux-story h2 {
                                                                       color: #f4e5c5;
                                                                         margin-bottom: 10px;
                                                                         }

                                                                         /* MOBILE */
                                                                         @media (max-width: 768px) {
                                                                           .lux-container {
                                                                               grid-template-columns: 1fr;
                                                                                 }

                                                                                   .lux-title {
                                                                                       font-size: 32px;
                                                                                         }
                                                                                         }
                                                                                         /* ===== HARD OVERRIDE PRODUCT CARDS ===== */

                                                                                         body.template-collection .card,
                                                                                         body.template-collection .product-card,
                                                                                         body.template-collection .shopify-collection-card {

                                                                                           background: rgba(255,255,255,0.04) !important;
                                                                                             border: 1px solid rgba(255,255,255,0.08) !important;
                                                                                               border-radius: 16px !important;
                                                                                                 backdrop-filter: blur(8px) !important;

                                                                                                 }

                                                                                                 /* IMAGE FIX */
                                                                                                 body.template-collection .card__media,
                                                                                                 body.template-collection .product-card__image,
                                                                                                 body.template-collection .shopify-collection-card__media {

                                                                                                   height: 220px !important;
                                                                                                     display: flex !important;
                                                                                                       align-items: center !important;
                                                                                                         justify-content: center !important;
                                                                                                         }

                                                                                                         /* IMAGE */
                                                                                                         body.template-collection img {
                                                                                                           object-fit: contain !important;
                                                                                                             max-height: 90% !important;
                                                                                                             }

                                                                                                             /* BUTTON */
                                                                                                             body.template-collection button,
                                                                                                             body.template-collection .btn {

                                                                                                               background: linear-gradient(135deg,#7b5cff,#a88cff) !important;
                                                                                                               }
                                                                                                               /* =========================
   1. DESIGN TOKENS
   ========================= */
:root{
  --bg: #0f0b22;
  --bg-soft: #1a1535;

  --text: #ffffff;
  --text-soft: rgba(255,255,255,0.7);

  --primary: #7b5cff;
  --primary-2: #a88cff;

  --gold: #f4e5c5;

  --radius: 16px;
  --radius-sm: 12px;

  --blur: blur(12px);
}

/* =========================
   2. BASE
   ========================= */
*,
*::before,
*::after{
  box-sizing: border-box;
}

body{
  margin:0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #1b1535, #0f0b22);
  color: var(--text);
}

/* =========================
   3. TYPOGRAPHY
   ========================= */
h1,h2,h3{
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  margin: 0;
}

p{
  color: var(--text-soft);
  line-height: 1.6;
}

/* =========================
   4. BUTTONS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 12px 18px;
  border-radius: var(--radius-sm);

  background: linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;

  border:none;
  cursor:pointer;

  transition:.25s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(123,92,255,0.4);
}

/* =========================
   5. CARD SYSTEM
   ========================= */
.card{
  border-radius: var(--radius);
  overflow:hidden;

  background: rgba(255,255,255,0.04);
  backdrop-filter: var(--blur);

  border: 1px solid rgba(255,255,255,0.08);

  transition:.3s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* IMAGE */
.card__media{
  height: 240px;
  display:flex;
  align-items:center;
  justify-content:center;

  background: linear-gradient(180deg,var(--bg-soft),var(--bg));
}

.card__media img{
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* CONTENT */
.card__content{
  padding:16px;
}

.card__title{
  font-size:16px;
  margin-bottom:6px;
}

.card__price{
  font-weight:600;
  color: var(--gold);
}

/* =========================
   6. SHOP GRID
   ========================= */
.grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:20px;
}

@media (max-width: 900px){
  .grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   7. SHOPIFY CLEAN OVERRIDE
   ========================= */
body.template-collection .card,
body.template-collection .product-card{
  all: unset;
  display:block;

  border-radius: var(--radius);
  overflow:hidden;

  background: rgba(255,255,255,0.04);
  backdrop-filter: var(--blur);

  border: 1px solid rgba(255,255,255,0.08);
}

body.template-collection .card__media{
  height: 240px;
}

body.template-collection img{
  object-fit: contain !important;
  max-height: 90%;
}

/* =========================
   8. REMOVE CHAOS LAYERS
   ========================= */
body::before,
body::after{
  display:none !important;
}:root{
  /* COLORS */
  --bg-main: #0f0b22;
  --bg-surface: #171233;

  --text-main: #ffffff;
  --text-muted: rgba(255,255,255,0.65);

  --accent: #7b5cff;
  --accent-soft: #a88cff;

  --gold: #f4e5c5;

  /* UI */
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-soft: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 20px rgba(140,90,255,0.4);

  --blur: blur(12px);

  /* SPACING */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
}*,
*::before,
*::after{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg,#1b1535,#0f0b22);
  color: var(--text-main);
}

/* Typography */
h1,h2,h3{
  font-family:'Cormorant Garamond', serif;
  color: var(--gold);
  margin:0;
}

p{
  color: var(--text-muted);
  line-height:1.6;
}.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:14px 22px;
  border-radius: var(--radius-sm);

  background: linear-gradient(135deg,var(--accent),var(--accent-soft));
  color:#fff;

  border:none;
  cursor:pointer;

  transition: all .25s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}.card{
  border-radius: var(--radius-lg);
  overflow:hidden;

  background: rgba(255,255,255,0.04);
  backdrop-filter: var(--blur);

  border: 1px solid rgba(255,255,255,0.08);

  transition: all .3s ease;
}

.card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

/* IMAGE */
.card__media{
  height:260px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: linear-gradient(180deg,var(--bg-surface),var(--bg-main));
}

.card__media img{
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* CONTENT */
.card__content{
  padding: var(--space-2);
}

.card__title{
  font-size: 16px;
  margin-bottom:6px;
}

.card__price{
  font-weight:600;
  color: var(--gold);
}.grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--space-3);
}

@media (max-width: 1000px){
  .grid{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px){
  .grid{ grid-template-columns: 1fr; }
}.product{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items:center;
}

/* IMAGE */
.product__media{
  padding: 40px;
  border-radius: var(--radius-lg);

  background: linear-gradient(180deg,#15122a,#0e0c1d);
}

.product__media img{
  width:100%;
  object-fit: contain;
}

/* INFO */
.product__title{
  font-size: 42px;
  margin-bottom: 10px;
}

.product__price{
  font-size: 26px;
  margin-bottom: 20px;
}

@media (max-width: 900px){
  .product{
    grid-template-columns: 1fr;
  }
}/* kill Shopify chaos */
body.template-collection .card,
body.template-collection .product-card{
  all: unset;
  display:block;
}

/* rebuild */
body.template-collection .product-card{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  backdrop-filter: var(--blur);
  border: 1px solid rgba(255,255,255,0.08);
}

/* image fix */
body.template-collection img{
  object-fit: contain !important;
  max-height: 90%;
}.lux-scarcity {
  color: #ffb3b3;
  font-size: 14px;
  margin: 10px 0;
}.bundle-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}/* =========================
   GALLERY
========================= */

.lux-gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lux-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.lux-main-image {
  width: 100%;
  display: block;
  border-radius: 24px;
  transition:
    transform .5s ease,
    opacity .3s ease;
}

.lux-gallery-main:hover .lux-main-image {
  transform: scale(1.03);
}

/* ARROWS */

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 46px;
  height: 46px;

  border: none;
  border-radius: 50%;

  background: rgba(0,0,0,0.55);
  color: white;

  cursor: pointer;

  backdrop-filter: blur(10px);

  transition: all .25s ease;
}

.gallery-arrow:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-50%) scale(1.08);
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

/* THUMBS */

.lux-thumbs-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
}

.lux-thumbs-wrapper::-webkit-scrollbar {
  display: none;
}

.lux-thumbs {
  display: flex;
  gap: 12px;
}

.lux-thumb {
  border: none;
  background: none;
  padding: 0;

  width: 82px;
  height: 82px;

  border-radius: 16px;
  overflow: hidden;

  cursor: pointer;

  opacity: .55;
  transition: all .25s ease;

  border: 2px solid transparent;
}

.lux-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.lux-thumb.active {
  opacity: 1;
  border-color: #8b5cf6;
  box-shadow: 0 0 18px rgba(139,92,246,0.45);
}

/* MOBILE */

@media screen and (max-width: 768px) {

  .gallery-arrow {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .lux-thumb {
    width: 70px;
    height: 70px;
  }

}/* =========================================
   FANTASY VARIANT GALLERY
========================================= */

.fantasy-variant-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.fantasy-variant-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.fantasy-variant-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #a87eff;
  box-shadow:
    0 0 25px rgba(168,126,255,0.35),
    0 0 60px rgba(168,126,255,0.15);
}

.fantasy-variant-card.active {
  border-color: #d6b35a;
  box-shadow:
    0 0 20px rgba(214,179,90,0.5),
    0 0 50px rgba(214,179,90,0.2);
}

.fantasy-variant-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.fantasy-variant-card span {
  display: block;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.2)
    );
}/* SOLD OUT VARIANTS */

.fantasy-variant-card.sold-out {
  opacity: 0.45;
  filter: grayscale(100%);
  cursor: not-allowed;
  position: relative;
}

.fantasy-variant-card.sold-out:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(255,255,255,0.08);
}

.variant-soldout-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.55);

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #fff;

  backdrop-filter: blur(3px);
}.fantasy-variant-card.sold-out {
  pointer-events: none;
}.fantasy-variant-card.sold-out {
  pointer-events: none;
  opacity: 0.45;
  filter: grayscale(100%);
}/* =========================
/* =========================================================
   SOLD OUT VARIANTS
========================================================= */

.fantasy-variant-card.sold-out{
  position:relative;

  overflow:hidden;

  opacity:.42;

  filter:
    grayscale(1)
    saturate(.6);

  pointer-events:none;
  user-select:none;

  cursor:not-allowed;

  border-color:
    rgba(255,255,255,.06);

  box-shadow:none !important;

  transform:none !important;
}

/* Hover deaktivieren */

.fantasy-variant-card.sold-out:hover{
  transform:none !important;

  border-color:
    rgba(255,255,255,.06) !important;

  box-shadow:none !important;
}

/* Bild abdunkeln */

.fantasy-variant-card.sold-out img{
  filter:
    brightness(.6)
    grayscale(1);
}

/* Overlay */

.variant-soldout-overlay{
  position:absolute;
  inset:0;

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:5;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.15),
      rgba(0,0,0,.72)
    );

  backdrop-filter:
    blur(4px);

  color:#fff;

  font-size:12px;
  font-weight:700;

  letter-spacing:.14em;
  text-transform:uppercase;

  text-shadow:
    0 0 10px rgba(0,0,0,.6);
}

/* Subtiler X-Layer */

.variant-soldout-overlay::before{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      45deg,
      transparent 47%,
      rgba(255,255,255,.08) 50%,
      transparent 53%
    );

  opacity:.5;
}

/* Mobile */

@media (max-width:768px){

  .variant-soldout-overlay{
    font-size:11px;
    letter-spacing:.1em;
  }

}