/** Shopify CDN: Minification failed

Line 186:33 Unexpected "{"
Line 186:42 Expected ":"
Line 186:48 Unexpected ","
Line 186:72 Unexpected "{"
Line 186:81 Expected ":"
Line 186:88 Unexpected "{"

**/
/* ================================
   FIXEDSTARS — Unified Styling
   Clean Homepage / Mystic PDP
   ================================ */

/* --- HEADER ICONS: Always clean --- */
.header__icon,
.header__icon-button,
.header__icon a,
.header__icon button,
.header__icon svg {
  box-shadow: none !important;
  text-shadow: none !important;
  background: transparent !important;
  border: 0 !important;
  filter: none !important;
}
.header__icon a:hover,
.header__icon button:hover {
  filter: brightness(1.1); /* subtle hover only */
}

/* --- HOMEPAGE (template-index): clean look --- */
.template-index .button,
.template-index .button--primary,
.template-index .shopify-payment-button__button {
  box-shadow: none !important;
  text-shadow: none !important;
  border-color: rgba(255,255,255,.14);
  background: rgba(0,0,0,.85);
}
.template-index .button:hover,
.template-index .button--primary:hover,
.template-index .shopify-payment-button__button:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.24);
  box-shadow: none !important;
}

/* --- OTHER NON-PRODUCT PAGES (collections, blog, etc.): keep clean --- */
.template-collection .button,
.template-article .button,
.template-blog .button,
.template-page .button {
  box-shadow: none !important;
  text-shadow: none !important;
}

/* --- PRODUCT PAGE (template-product): immersive mystic styling --- */

/* Titles */
.template-product h1,
.template-product .product__title,
.template-product .product-title {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(255, 60, 60, 0.25),
               0 0 3px rgba(255, 255, 255, 0.2);
}

/* Add to Cart button */
.template-product .product-form__submit,
.template-product button[name="add"] {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 0, 180, 0.35);
  box-shadow: 0 0 12px rgba(186, 120, 255, 0.25),
              inset 0 0 5px rgba(255, 255, 255, 0.08);
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease;
}
.template-product .product-form__submit:hover,
.template-product button[name="add"]:hover {
  background: rgba(20, 0, 40, 0.95);
  box-shadow: 0 0 26px rgba(186, 120, 255, 0.55),
              inset 0 0 8px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 80, 255, 0.45);
  transform: translateY(-1px);
}
.template-product .product-form__submit:active,
.template-product button[name="add"]:active {
  box-shadow: 0 0 40px rgba(255, 0, 180, 0.65);
  transform: scale(0.98);
}

/* Variant pills */
.template-product .variant-radios input[type="radio"] + label {
  background: rgba(10, 0, 20, 0.65);
  color: #fff;
  border: 1px solid rgba(186, 120, 255, 0.25);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(186, 120, 255, 0.22);
  transition: all 0.25s ease;
}
.template-product .variant-radios input[type="radio"]:checked + label {
  border-color: rgba(255, 80, 255, 0.45);
  box-shadow: 0 0 20px rgba(186, 120, 255, 0.55);
  transform: translateY(-1px);
}

/* Inputs (quantity, selects) */
.template-product select,
.template-product .quantity__input {
  background: rgba(10, 0, 20, 0.75);
  color: #fff;
  border: 1px solid rgba(186, 120, 255, 0.25);
  border-radius: 8px;
  padding: 10px;
  font-weight: 500;
  backdrop-filter: blur(3px);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.template-product select:hover,
.template-product .quantity__input:hover {
  box-shadow: 0 0 14px rgba(200, 140, 255, 0.4);
  border-color: rgba(255, 200, 255, 0.35);
}

/* Quantity buttons */
.template-product .quantity__button, 
.template-product .quantity-button {
  background: rgba(0,0,0,.65);
  color:#fff; border:1px solid rgba(255,255,255,.15);
  box-shadow: 0 0 10px rgba(186,120,255,.28);
}
.template-product .quantity__button:hover, 
.template-product .quantity-button:hover {
  background: rgba(40,0,80,.72);
  box-shadow: 0 0 16px rgba(186,120,255,.42);
}

/* Accordions */
.template-product details {
  border: 1px solid rgba(186, 120, 255, 0.28);
  border-radius: 14px;
  margin: 10px 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 8px rgba(186, 120, 255, 0.25);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.template-product details[open] {
  background-image: var(--glyphy);
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 20px rgba(186, 120, 255, 0.55);
}
.template-product summary {
  position: relative;
  padding: 14px 42px 14px 16px;
  font-weight: 600;
  cursor: pointer;
}
.template-product [data-planet="fire"] > summary::after { content: "🜂"; color: rgb(255, 70, 70); position: absolute; right: 16px; }
.template-product [data-planet="water"] > summary::after { content: "🜄"; color: rgb(80, 140, 255); position: absolute; right: 16px; }
.template-product [data-planet="earth"] > summary::after { content: "🜃"; color: rgb(90, 200, 90); position: absolute; right: 16px; }
.template-product [data-planet="air"] > summary::after   { content: "🜁"; color: rgb(255, 230, 120); position: absolute; right: 16px; }

/* Accessibility focus aura (PDP only) */
.template-product .button:focus-visible,
.template-product select:focus-visible,
.template-product .quantity__input:focus-visible {
  outline: 2px solid rgba(186, 120, 255, 0.6);
  outline-offset: 3px;
  box-shadow: 0 0 22px rgba(186, 120, 255, 0.48);
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
.template-page #gate-initiation-{{ section.id }}, .template-page #pact-{{ section.id }} { font-family: 'Cinzel', serif !important; }


