/** Shopify CDN: Minification failed

Line 124:0 Unexpected "}"
Line 496:0 Unexpected "}"
Line 582:0 Unexpected "}"
Line 636:0 Unexpected "}"
Line 704:0 Unexpected "}"
Line 767:0 Unexpected "<"

**/
:root {
  --mystic-bg: #0b1220;
  --mystic-ink: #0f1f3a;
  --mystic-accent: #3aa7ff;
  --mystic-accent-2: #7c3aed;
  --mystic-positive: #2dd4bf;
  --mystic-text: #e6f0ff;
  --mystic-dim: #a2b2d6;

  --bg-0: #0a0f11;
  --bg-1: #111a1d;
  --bg-2: #1a2427;
  --ink: #eaf4ff;
  --muted: #a7b1c0;
  --neon-green: #39ff14;
  --neon-purple: #9b4dff;
  --neon-red: #ff3b3b;
  --card: #0e1618;
  --brick: #1b1e22;
  --outline: rgba(155,77,255,.35);
  --outline-2: rgba(57,255,20,.35);
}

/* === Global Reset & Base === */
html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(100% 80% at 50% 10%, var(--bg-2) 0%, var(--bg-0) 70%);
  color: var(--ink);
  font-family: 'Bangers', 'Permanent Marker', Inter, system-ui, sans-serif;
  cursor: url('{{ "spraycan.png" | asset_url }}') 16 16, auto;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--neon-purple); text-decoration: none; }
a:hover { color: var(--neon-green); text-shadow: 0 0 6px var(--neon-green); }

/* === Header === */
header.site-header, header[role="banner"] {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.2));
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(6px) saturate(120%);
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1rem;
}
.logo { display: flex; align-items: center; gap: .5rem; font-weight: 700; letter-spacing: .5px; }
.site-header .logo img, .site-header .logo svg { height: 42px; }

.main-page-title {
  text-align: center;
}

/* === Navigation (scrolling neon style) === */
.nav {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-purple) transparent;
}

.nav::-webkit-scrollbar {
  height: 6px;
}
.nav::-webkit-scrollbar-track {
  background: transparent;
}
.nav::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 10px;
}
.nav::-webkit-scrollbar-thumb:hover {
  background: var(--neon-green);
}

.nav a {
  text-decoration: none;
  color: var(--neon-purple);
  font-size: 1rem;
  padding: .45rem .7rem;
  border-radius: 10px;
  transition: all 0.25s ease-in-out;
}
.nav a:hover {
  color: var(--neon-green);
  text-shadow: 0 0 6px var(--neon-green), 0 0 12px var(--neon-purple);
  background: rgba(255, 255, 255, 0.06);
}

.hamburger {
  display: none;
}

  .hamburger {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
  }
  
}

/* === Announcement Bar === */
.annc, .announcement {
  background: repeating-linear-gradient(-45deg, #12171a 0 10px, #141a1e 10px 20px);
  color: var(--ink);
  text-align: center;
  padding: .5rem 1rem;
  border-bottom: 1px dashed var(--outline);
}

/* === Hero === */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(80% 60% at 70% 0%, rgba(58,167,255,.22), transparent),
              radial-gradient(65% 50% at 0% 30%, rgba(124,58,237,.18), transparent);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 1rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
}
.hero h1 { font-size: clamp(2rem,5vw,3rem); line-height: 1.1; margin: .25rem 0 .75rem; }
.hero p { color: var(--mystic-dim); max-width: 55ch; }
.hero .cta { display: flex; gap: .75rem; margin-top: 1rem; }

.bordesley-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: url('{{ "IMG_1125.jpg" | asset_url }}') center/cover no-repeat;
}
.bordesley-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 20%, rgba(0,0,0,.55), rgba(0,0,0,.25));
}
.bordesley-hero .inner { position: relative; text-align: center; z-index: 1; }
.bordesley-hero h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  color: #fff;
  text-shadow: 0 0 2px rgba(155,77,255,.6), 0 0 2px rgba(57,255,20,.5);
}

/* === Buttons === */
.button, .btn, button, [role="button"], .shopify-payment-button__button {
  border-radius: 18px;
  border: 2px solid var(--outline);
  background: linear-gradient(135deg, rgba(155,77,255,.18), rgba(57,255,20,.12));
  color: var(--ink);
  transition: box-shadow .25s ease, transform .2s ease, border-color .25s ease;
}
.button:hover, .btn:hover, button:hover, [role="button"]:hover, .shopify-payment-button__button:hover {
  transform: translateY(-1px);
  border-color: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green), 0 0 26px var(--neon-purple);
}

/* === Cards === */
.card, .product-card, .collection-list__item, .collection-product-card, .grid__item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease;
}
.card:hover, .product-card:hover, .grid__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 10px var(--neon-purple), 0 0 26px var(--neon-green);
}

/* Product images */
.product-card img, .media img {
  border-radius: 10px;
  outline: 2px solid rgba(255,255,255,.06);
  outline-offset: -2px;
}

/* Price + badges */
.price { color: var(--ink); font-weight: 700; }
.badge, .sale-badge {
  background: var(--neon-red);
  color: #fff;
  padding: .25rem .5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .03em;
  box-shadow: 0 0 10px rgba(255,59,59,.7);
}

/* Forms */
input, select, textarea {
  background: #0b1214;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--ink);
  border-radius: 12px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--neon-purple);
  box-shadow: 0 0 0 2px rgba(155,77,255,.35);
}

/* === Footer === */
footer.site-footer {
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1rem;
  color: var(--ink);
  backdrop-filter: blur(6px) saturate(120%);
}
.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-note { color: var(--mystic-dim); }

/* === Misc === */
.pattern-tag {
  --spray: radial-gradient(circle at 30% 30%, rgba(58,167,255,.35), transparent 50%),
           radial-gradient(circle at 70% 60%, rgba(124,58,237,.35), transparent 55%);
  background: var(--spray);
  filter: contrast(1.15) saturate(1.1);
}
.notice {
  padding: .75rem 1rem;
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: var(--mystic-dim);
}

/* === 404 === */
.template-404 {
  background: url('{{ "IMG_1125.jpg" | asset_url }}') center/cover no-repeat;
}

/* === Custom Image Blocks === */
.custom-logo {
  background: url('{{ "jaxlogo.jpg" | asset_url }}') no-repeat center center;
  background-size: contain;
  max-width: 200px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
.custom-spraycan {
  background: url('{{ "spraycan.png" | asset_url }}') no-repeat center center;
  background-size: contain;
  max-width: 100px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

/* Mobile scaling */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1rem;
    text-align: center;
  }
  .hero .cta {
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav {
    display: none;
  }
  .header-inner {
    justify-content: space-between;
  }
  .grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .product {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* Hamburger defaults */
.hamburger { display: none; }
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger {
    display: block;
    font-size: 1.75rem;
    background: none;
    border: none;
    color: var(--mystic-text);
    cursor: pointer;
    line-height: 1;
  }
}

/* Keep nav + logo aligned */
.header-inner { align-items: center; }
.site-logo {
  height: 100px;
  width: auto;
  max-width: none;
}
/* === Custom Collection Background === */
.collection--bordesleyhollow {
  background-color: #f5f5f5; /* neutral background */
  background-size: cover;
  background-position: center;
  padding: 2rem 0;
}
/* Product page custom background */
.product-page.custom-background {
  background-color: #f5f5f5; /* neutral background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}
/* === Force-hide "Skip to content" link === */
a[href="#MainContent"],
a.skip-to-content-link,
.skip-to-content,
.skip-link {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}
/* Catch-all: center any ul with list items that contain links (auto-generated sub-collections) */
ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1.2rem;         /* button padding */
  background-color: var(--card);   /* button background */
  border-radius: 8px;              /* rounded corners */
  color: var(--neon-blue);       /* text color */
  text-decoration: none;           /* remove underline */
  font-family: 'Poppins', system-ui, sans-serif; /* font */
  font-weight: 600;
  transition: all 0.2s ease;       /* smooth hover */
}

/* Hover effect */
ul li a:hover {
  background-color: var(--neon-green); /* hover background */
  color: var(--bg-0);                  /* hover text color */
  transform: scale(1.05);
}

ul {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  padding: 0 !important;
  margin: 2rem 0 !important;
  list-style: none !important;
}

ul li a:hover {
  background-color: var(--neon-green) !important;
  color: var(--bg-0) !important;
  transform: scale(1.05) !important;
}
small.hint {
  display: none !important;
}
/* Center the Product Collections section (heading + sub-collections) */
body.template-collection .page-width {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers all child elements horizontally */
  text-align: center;  /* ensures text inside (like h2) is centered */
}

/* === Center Product Collections section === */
#collections-listing {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers all child elements horizontally */
  text-align: center;  /* centers heading text */
  gap: 1.5rem;         /* spacing between h2 and ul */
}

/* Style the h2 heading */
#collections-listing h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--neon-green);
  text-shadow: 0 0 6px var(--neon-purple); /* optional neon glow */
  margin: 0; /* reset default margin */
}

/* Style the collection list */
#collections-listing ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center the buttons */
  gap: 1rem;               /* spacing between buttons */
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Style each collection link as a button */
#collections-listing ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background-color: var(--card);
  color: var(--neon-green);
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* Hover effect for buttons */
#collections-listing ul li a:hover {
  background-color: var(--neon-green);
  color: var(--bg-0);
  transform: scale(1.05);
}

/* Hide the small "product" hints */
#collections-listing ul li .hint {
  display: none !important;
}

}

}
/* === STORY PAGE FONT STYLES === */
/* === STORY PAGE NEON GREEN WITH BLACK BACKGROUND === */

/* Wrap the whole story section, including page title and rich text */
.page-width--narrow.section-template--26559982600534__story_content-padding {
  background-color: #000 !important;       /* solid black background */
  padding: 3rem 2rem !important;           /* spacing around content */
  border-radius: 8px;                       /* optional rounding */
  max-width: 800px !important;             /* constrain width */
  margin: 0 auto !important;               /* center the section */
  text-align: center;                       /* center text */
  color: var(--neon-green) !important;     /* default neon green text */
}

/* Page title (h1) - "My Story" */
.page-width--narrow.section-template--26559982600534__story_content-padding .page-title.h0 {
  font-family: 'Permanent Marker', cursive !important;
    color: #39ff14;
    text-shadow: 0 0 5px #9b00ff, 0 0 10px #9b00ff;
}

/* Rich text content (paragraphs inside page.content) */
.page-width--narrow.section-template--26559982600534__story_content-padding .rte p,
.page-width--narrow.section-template--26559982600534__story_content-padding .rte strong,
.page-width--narrow.section-template--26559982600534__story_content-padding .rte em {
  font-family: "Open Sans", sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
  color: var(--neon-green) !important;
  text-shadow: 0 0 1px var(--neon-green), 0 0 2px var(--neon-purple);
  margin-bottom: 1.2rem !important;
}

/* Custom story section (editable heading and text) */
.custom-story-section {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  background-color: #000 !important;
  border-radius: 8px;
  color: var(--neon-green) !important;
}

/* Story heading inside custom section */
.custom-story-section .story-heading {
  font-family: "Playfair Display", serif !important;
  font-size: 2.4rem !important;
  font-weight: 700 !important;
  margin-bottom: 2rem !important;
  color: var(--neon-green) !important;
  text-shadow: 0 0 2px var(--neon-green), 0 0 4px var(--neon-purple);
}

/* Story text inside custom section */
.custom-story-section .story-text,
.custom-story-section .story-text p,
.custom-story-section .story-text strong,
.custom-story-section .story-text em {
  font-family: "Open Sans", sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
  color: var(--neon-green) !important;
  text-shadow: 0 0 1px var(--neon-green), 0 0 2px var(--neon-purple);
  margin-bottom: 1.2rem !important;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .page-width--narrow.section-template--26559982600534__story_content-padding .page-title.h0,
  .custom-story-section .story-heading {
    font-size: 2rem !important;
  }

  .page-width--narrow.section-template--26559982600534__story_content-padding .rte p,
  .custom-story-section .story-text {
    font-size: 1rem !important;
  }
}

}
/* === STORY PAGE NEON GREEN WITH BLACK BACKGROUND === */

/* Wrap the whole story section */
.page-width--narrow.section-template--26559982600534__story_content-padding {
  background-color: #000 !important;  /* solid black background */
  padding: 1rem 1rem !important;     /* optional: add some spacing */
  border-radius: 8px;                 /* optional: slight rounding */
}

/* Page title (My Story) */
.page-title.h0 {
  font-family: 'Permanent Marker', cursive !important;
    color: #39ff14;
    text-shadow: 0 0 5px #9b00ff, 0 0 10px #9b00ff;
}

/* Rich text (page content paragraphs) */
.rte p,
.rte strong,
.rte em {
  font-family: "Open Sans", sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1.8 !important;
  color: var(--neon-green) !important;  /* neon green text */
  text-align: center !important;
  margin-bottom: 1.2rem !important;
  text-shadow: 0 0 4px var(--neon-green), 0 0 8px var(--neon-purple); /* subtle glow for paragraphs */
}

/* Optional: center and constrain content width */
.page-width--narrow {
  max-width: 800px !important;
  margin: 0 auto !important;
}
/* Outer wrapper for the story section */
.page-width--narrow.section-template--26559982600534__story_content-padding {
  background-color: #000 !important; /* solid black background */
  padding: 40px 20px !important;     /* spacing */
  border-radius: 8px;                 /* optional rounding */
}

/* Custom story section inside */
.custom-story-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Heading 
.custom-story-section .story-heading {
  font-family: 'Permanent Marker', cursive !important;
    color: #39ff14;
    text-shadow: 0 0 5px #9b00ff, 0 0 10px #9b00ff;*/
}

/* Body text 
.custom-story-section .story-text {
  font-family: "Open Sans", sans-serif !important;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--neon-green) !important;
  text-shadow: 0 0 4px var(--neon-green), 0 0 8px var(--neon-purple);*/
}
.hero-subheading {
    color:rgb(255, 255, 255);                      /* text color */
    font-size: 22px;                     /* font size */
    font-weight: 400;                    /* font weight */
    text-align: center;                  /* center text */
    font-family: "Your Font", sans-serif; /* font family */
    line-height: 1.6;                    /* spacing */
    margin-top: 10px;                    /* optional spacing */
}
.hero-pattern {
    background: url('{{ 'mysticbluecharacters.png' | asset_url }}') center center / cover no-repeat fixed;
    position: relative;
    color: #fff;
    width: 100%;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-pattern .hero-inner {
    position: relative; /* content above overlay */
    display: table;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px; /* adjust for hero height */
    padding: 60px 20px;
    text-align: center;
}

.hero-pattern h1 {
    font-size: 3rem; /* large hero heading */
    font-weight: 700;
    margin: 20px 0 10px 0;
    font-family: "Your Heading Font", sans-serif;
}

.hero-pattern .hero-subheading {
    font-size: 2rem; /* 20px */
    font-weight: 400;
    color: #9b00ff;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Your Body Font", Permanent Marker;
    max-width: 600px; /* keeps text readable */
}

.hero-pattern .cta {
    display: flex;
    gap: 10px; /* spacing between buttons */
    flex-wrap: wrap;
    justify-content: center;
}

}

/* Ensure mobile menu drawer is on top */
.menu-drawer,
.drawer__inner {
  z-index: 9999 !important;
  visibility: visible !important;
}
.menu-opening .menu-drawer {
  left: 0 !important;
  transform: translateX(0) !important;
}
/* FORCE mobile menu to display */
.menu-drawer,
.menu-drawer__inner,
.header__menu-drawer {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
  height: auto !important;
  max-height: 100vh !important;
  overflow-y: auto !important;
}

/* Ensure it's above everything */
.menu-drawer {
  z-index: 9999 !important;
}
/* Ensure hero overlay does NOT block mobile menu */
.hero-pattern,
.hero-pattern::before {
  z-index: 1;
}

/* Mobile menu must sit above hero */
.menu-drawer,
.header__menu-drawer,
.menu-drawer__inner {
  z-index: 9999 !important;
}

/* Hero overlay must not block interactions */
.hero-pattern::before {
  pointer-events: none !important;
}
.menu-drawer,
.header__menu-drawer,
.menu-drawer__inner {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10000 !important;
}
/* Mobile menu background fix */
.menu-drawer,
.header__menu-drawer,
.menu-drawer__inner {
  background-color: #0a0f11 !important; /* match your site dark bg */
  color: #ffffff !important;
}
.menu-drawer a,
.menu-drawer__inner a {
  color: #ffffff !important;
}
<style>


/* === Brick Wall Comments Styling === */
#brick-wall {
  position: relative;
}

.wall-comment {
  position: absolute;
  background: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  max-width: 120px;
  word-wrap: break-word;
  pointer-events: none;
  font-family: inherit !important;
  color: inherit !important;
}
/* ========== CHARACTER GRID ========== */
.character-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 posters per row on desktop */
  gap: 80px;                             /* space between cards */
  max-width: 1600px;                     /* allow bigger cards */
  margin: 80px auto;                     /* center the grid */
  padding: 0 20px;                        /* side padding */
}

/* ========== CHARACTER CARD ========== */
.character-card {
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}

/* ========== IMAGES ========== */
.character-card img {
  width: 1000px !important;   /* force large width */
  height: auto !important;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
}


/* Hover effect */
.character-card:hover img {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .character-card img {
    max-width: 600px;   /* scale down on smaller desktops/tablets */
  }
}

@media (max-width: 900px) {
  .character-grid {
    grid-template-columns: 1fr; /* single poster per row */
    gap: 50px;
  }
  .character-card img {
    max-width: 90%;      /* scale to fit smaller screens */
  }
}
.rte .character-grid {
  max-width: 1600px;   /* expand grid beyond default Shopify container */
  margin: 0 auto;      /* center it */
}



/* Responsive */
@media (max-width: 1000px) {
  .character-grid {
    grid-template-columns: 1fr; /* 1 poster per row */
    gap: 50px;
  }
}




/* ===============================
   Mystic Blue – Socials & Contact
   Scoped extension (safe)
================================ */

.mystic-socials-page {
  background: transparent;
}

/* SOCIALS GRID */
.mystic-socials-page .socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* SOCIAL CARD */
.mystic-socials-page .social-card {
  text-align: center;
  padding: 1.8rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  position: relative;
}

.mystic-socials-page .social-card h3 {
  margin-bottom: 0.25rem;
  color:rgb(235, 27, 190);
  text-shadow: 0 0 2px var(--neon-purple);
}

.mystic-socials-page .social-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Button already styled globally */
.mystic-socials-page .social-card .btn {
  margin-top: 0.5rem;
}

/* CONTACT CARD */
/* ===============================
   Mystic Blue – Contact Card Enhancement
================================ */

.mystic-socials-page .contact-card {
  max-width: 520px;
  margin: 2rem auto 0;
  padding: 2rem;
  text-align: center;
  border-radius: 16px;
  background: var(--card); /* solid dark background like social cards */
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  
}

/* Optional glow rim on hover like social cards */
.mystic-socials-page .contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(155,77,255,0.35),
    rgba(57,255,20,0.25)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.mystic-socials-page .contact-card:hover::before {
  opacity: 1;
  transform: scale(1.02);
}

/* Text inside contact card */
.mystic-socials-page .contact-card p {
  margin: 0.75rem 0;
  color: #eaf4ff; /* bright, crisp text */
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 0 0.2px var(--neon-green), 0 0 2px var(--neon-purple); /* subtle neon glow */
}
.mystic-socials-page .contact-card p strong {
  text-shadow: none;       /* remove any glow or blur */
  color: #eaf4ff;          /* crisp, readable color */
  font-weight: 600;        /* make it slightly bold without glow */
}


/* Hover lift effect like social cards */
.mystic-socials-page .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-green);
}

/* Section spacing */
.mystic-socials-page section {
  padding: 3rem 1rem;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .mystic-socials-page .social-card {
    padding: 1.5rem 1rem;
  }
}
/* ===============================
   Enhanced Social Card Layout
================================ */

.mystic-socials-page .social-card {
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* Glow rim */
.mystic-socials-page .social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(155,77,255,.35),
    rgba(57,255,20,.25)
  );
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.mystic-socials-page .social-card:hover::before {
  opacity: 1;
}

/* Inner panel */
.mystic-socials-page .social-card-inner {
  position: relative;
  margin: 2px;
  padding: 2rem 1.75rem;
  border-radius: 14px;
  background: var(--card);
  text-align: center;
  z-index: 1;
}

/* Icon */
.mystic-socials-page .social-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  background: radial-gradient(
    circle at 30% 30%,
    var(--neon-purple),
    var(--bg-0)
  );
  box-shadow:
    0 0 10px var(--neon-purple),
    0 0 20px rgba(155,77,255,.6);
}

/* Text hierarchy */
.mystic-socials-page .social-card h3 {
  margin: .25rem 0 .15rem;
}

.mystic-socials-page .social-card p {
  margin-bottom: 1.25rem;
  font-size: .95rem;
}

/* Hover lift */
.mystic-socials-page .social-card:hover {
  transform: translateY(-6px);
}
.mystic-socials-page .socials-grid {
  align-items: baseline;
}
.mystic-socials-page .social-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
/* ==============================
   Mystic Blue – Social Card Platform Colors
================================= */

/* Facebook Card */
.mystic-socials-page .facebook-card .social-card-inner {
  background: #1877f2 !important; /* Facebook blue */
}
.mystic-socials-page .facebook-card .social-icon {
  background: radial-gradient(circle at 30% 30%, #1877f2, var(--bg-0));
  box-shadow: 0 0 10px #1877f2, 0 0 20px rgba(24,119,242,0.6);
}
.mystic-socials-page .facebook-card:hover::before {
  background: linear-gradient(135deg, rgba(24,119,242,.35), rgba(57,255,20,.25));
}

/* Instagram Card */
.mystic-socials-page .instagram-card .social-card-inner {
  background: linear-gradient(135deg, #feda75, #d62976); /* Instagram gradient */
}
.mystic-socials-page .instagram-card .social-icon {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976);
  box-shadow: 0 0 10px #feda75, 0 0 20px rgba(246,41,118,0.6);
}
.mystic-socials-page .instagram-card:hover::before {
  background: linear-gradient(135deg, rgba(254,218,117,.35), rgba(214,41,118,.25));
}

/* tiktok Card */
.mystic-socials-page .tiktok-card .social-card-inner {
  background: #0077b5; /* tiktok blue */
}
.mystic-socials-page .tiktok-card .social-icon {
  background: radial-gradient(circle at 30% 30%, #0077b5, var(--bg-0));
  box-shadow: 0 0 10px #0077b5, 0 0 20px rgba(0,119,181,0.6);
}
.mystic-socials-page .tiktok-card:hover::before {
  background: linear-gradient(135deg, rgba(0,119,181,.35), rgba(57,255,20,.25));
}
/* Tighten text spacing in social cards */
.mystic-socials-page .social-card-inner {
  gap: 0.5rem; /* reduce vertical spacing */
}

.mystic-socials-page .social-card h3 {
  margin: 0.25rem 0 0.1rem;
  line-height: 1.15;
  letter-spacing: 0.02em; /* subtle, crisp */
}

.mystic-socials-page .social-card p {
  margin: 0;
  line-height: 1.3;
  font-size: 0.95rem;
}

.mystic-socials-page .social-card .btn {
  margin-top: 0.6rem;
}

/* ===============================
   Mystic Blue – Mental Health Services
   Scoped page styling
================================ */

.mystic-services-page {
  background: transparent;
}

/* Services grid */
.mystic-services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

/* Service card */
.mystic-services-page .service-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  text-align: center;
  transition: transform 0.25s ease;
}

.mystic-services-page .service-card:hover {
  transform: translateY(-6px);
}

/* Glow rim */
.mystic-services-page .service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(155,77,255,.35),
    rgba(57,255,20,.25)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.mystic-services-page .service-card:hover::before {
  opacity: 1;
}

/* Inner panel */
.mystic-services-page .service-card-inner {
  position: relative;
  margin: 2px;
  padding: 2rem 1.75rem;
  border-radius: 14px;
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 1;
}

/* Headings */
.mystic-services-page .service-card h3 {
  margin: 0;
  color: var(--neon-purple);
  line-height: 1.15;
  text-shadow: 0 0 0px var(--neon-purple);
}

/* Text */
.mystic-services-page .service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.95rem;
}

/* Button spacing */
.mystic-services-page .service-card .btn {
  margin-top: 0.75rem;
}

/* Disclaimer card */
.mystic-services-page .services-disclaimer {
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 2rem;
  text-align: center;
  background: rgba(255, 59, 59, 0.08);
  border: 1px solid rgba(255, 59, 59, 0.25);
}

.mystic-services-page .services-disclaimer p {
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .mystic-services-page .service-card-inner {
    padding: 1.5rem 1.25rem;
  }
}
#shopify-section-template--26069291565398__main strong {
  font-weight: 600;
  text-shadow: none;
}
@media (max-width: 768px) {
  .product,
  .product * {
    text-shadow: none !important;
    filter: none !important;
    -webkit-text-stroke: 0 !important;
  }
}
@media (max-width: 768px) {
  .product__description,
  .product__description * {
    text-shadow: none !important;
    filter: none !important;
    -webkit-text-stroke: 0 !important;
  }
}
@media (max-width: 768px) {
  .product__description,
  .product__description * {
    text-shadow: none !important;
    filter: none !important;
    -webkit-text-stroke: 0 !important;
  }
}
/* === Shopify Bullet Points Universal Fix === */

/* Target all common wrappers where bullets may appear */
.rte ul,
.product__description ul,
.collection-description ul,
.rich-text ul,
.text-block ul {
  list-style: disc !important;       /* normal bullets */
  display: block !important;         /* cancel flex/grid interference */
  margin-left: 1.5em !important;     /* proper indent */
  padding-left: 0 !important;
}

/* Fix each list item */
.rte ul li,
.product__description ul li,
.collection-description ul li,
.rich-text ul li,
.text-block ul li {
  display: list-item !important;     /* proper alignment */
  color: #39ff14 !important;        /* neon text color */
  line-height: 1.5 !important;       /* spacing between items */
  margin-bottom: 0.5em !important;
}

/* Bullets themselves */
.rte ul li::marker,
.product__description ul li::marker,
.collection-description ul li::marker,
.rich-text ul li::marker,
.text-block ul li::marker {
  color: #39ff14 !important;        /* match bullet to text */
  font-size: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .rte ul,
  .product__description ul,
  .collection-description ul,
  .rich-text ul,
  .text-block ul {
    margin-left: 1.2em !important;
  }

  .rte ul li,
  .product__description ul li,
  .collection-description ul li,
  .rich-text ul li,
  .text-block ul li {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }
}
/* === Fix Email Signup without duplication === */
.shopify-section[id*="email"],
.shopify-section[id*="newsletter"] {
  padding: 40px 20px;
  background: transparent;
}

/* target the FIRST inner container only */
.shopify-section[id*="email"] > div:first-child,
.shopify-section[id*="newsletter"] > div:first-child {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 16px;
  background: #0f0f0f;
}

.bh-collection-link {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}










