/*
@import "/asset/themes/base.css";
*/
/* ========================================
   SLUGTRAIL THEME — GLASSLIGHT
   ======================================== */

:root {
  --theme: #fefefe;          /* elegant bright highlight */
  --theme-accent: #232323;   /* soft second accent */
  --bg: #fff;             /* pure black */
  --text: #000;
  --font: "Poppins", sans-serif;

  --block-bg: #eee;       /* matte black blocks */
  --shadow: 0 4px 12px rgba(0,0,0,0.35);
  --radius: 16px;
}



/* Basic text selection styling */
::selection {
    background-color: var(--theme);
    color: #fff;
}

/* Firefox-specific selection styling */
::-moz-selection {
    background-color: var(--theme);
    color: #fff; 
}

/* Base */
body {
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  margin: 0;
  padding: 10px;
  line-height: 1.6;
  transition: background .3s ease, color .3s ease;
}

body::before {    
  content: ""; 
  position: fixed;       /* ✅ KEY FIX */
  inset: 0;
  background-image: url("https://www.slugtrail.com/asset/images/patterns/black-paper.png");
  background-size: 300px;
  opacity: 0.25;
   pointer-events: none;
  z-index: 1;            /* ✅ sits ABOVE gradients */
}

body::before {
  animation: drift 80s linear infinite;
}   

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(255,255,255,0.06) 0%,
      rgba(255,255,255,0.02) 25%,
      rgba(0,0,0,0.65) 80%
    );
  z-index: -1;
}
 
@keyframes drift {
  from { background-position: 200px 800px; } 
  to   { background-position: 1200px 1300px; }
}


body > * {
  position: relative;
  z-index: 2;            /* ✅ content stays above pattern */
}
 .slugtrail-page{
    padding:20px !important;
    width: 100%;
    margin: 10px auto; 
     background-color:#fff !important;
} 
.container {
  max-width: 550px;
  padding: 20px;
  border-radius: 25px;
  background: var(--bg);  
}

/* === Blocks === */
.block {
  margin: 1.2rem 0;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  background: var(--block-bg);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: none;              /* remove glow-shadow drama */
}

p{
    color: var(--text);
}
.block img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
}

/* === Typography === */
h1, h2, h3, p, ul {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

h1, h2 {
  color: var(--theme);
  line-height: 1.2;
}

h1 { font-size: 1.8rem; }
h2 { font-size: 1.4rem; }
h3 { color: var(--text); font-weight: 600; font-size: 1.1rem; }

ul { padding-left: 1.2rem; }

/* === Links & Buttons === */
a, button {
  color: #000;
  background: var(--theme);
  padding: 11px 18px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background .2s ease, transform .15s ease;
}

a:hover,
button:hover {
  background: var(--theme-accent);
  transform: translateY(-1px);
}


/* === Buttons (Blink - Flat Lime Style) === */
.blink {
  display: block;
  width: 100%;
  text-align: center;
  background: #FFF !important;
  color: #111 !important;       /* black text */
  text-decoration: none;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border: none;
  box-shadow: none;             /* flat look */
  transition: background 0.2s ease, transform 0.2s ease;
}

.blink:hover {
  background: #555 !important; /* slightly lighter lime */
  transform: translateY(-1px);
    text-decoration: none;
    color:#FFF !important;
}
.blink a:hover {
   
    color:#FFF !important;
}
/* === Contact Card (Full-Width Flat Lime Style, variable-based) === */
.contact-card {
  background: var(--block-bg);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
}

/* Each row */
.contact-row {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  gap: 10px;
}

/* Icon style */
.contact-row i {
  width: 24px;
  font-size: 1.1rem;
  color: var(--theme);
  text-align: center;
  flex-shrink: 0;
}

/* === Full-width linked rows === */
.contact-row.is-link {
  width: 100%;
  text-align: center !important;
}

.contact-row.is-link a {
  flex-grow: 1;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--theme) 15%, transparent);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, color 0.2s ease;
}

.contact-row.is-link a:hover {
  background: var(--theme);
  color: var(--bg);
  transform: translateX(3px);
  text-decoration: none;
}

/* === Text links (email, phone, etc.) === */
.contact-value {
  flex-grow: 1;
  width: 100%;
}

.contact-value a {
  display: block;
  width: 100% !important;
  color: var(--theme);
  text-decoration: none;
  font-weight: 600;
  background: none;
  border: none;
  transition: color 0.25s ease;
  text-align: center !important;
}

.contact-value a:hover {
  color: var(--theme-accent);
  text-decoration: underline;
  text-align: center !important;
}



/* === Social Links (SlugTrail Brand Style) === */
.social-links {
  margin-top: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  background: #111;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.08);
}



.social-links a i {
  transition: all 0.25s ease;
  color: var(--theme);
}

.social-links a:hover {
  background: rgba(255,255,255,0.75);
  box-shadow:
    0 0 10px rgba(55,185,255,0.35),
    0 0 25px rgba(55,185,255,0.25);
  transform: translateY(-3px) scale(1.05);
  text-decoration: none;
}

.social-links a:hover i {
  color: var(--theme-accent);
  text-shadow: 0 0 8px rgba(55,185,255,0.6);
}


.social-links a:hover i {
  color: var(--theme-accent);
  text-shadow: 0 0 8px rgba(155, 226, 22, 0.6);
}


/* === Images === */
img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* === Embed / Video / Map Styling === */
.embed-wrapper {
  margin: 1.5rem 0;
  background: #111;
  border-radius: 12px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}

.embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 315px;
  border-radius: 10px;
  background: #000;
}


/* === Slug QR Display === */
.slugs-qr {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  background: #111;
  border-radius: 14px;
   transition: transform 0.25s ease, background 0.25s ease;
}

.slugs-qr img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  display: inline-block;
  background: #fff;
  padding: 10px;
  transition: transform 0.25s ease;
}

.slugs-qr img:hover {
  transform: scale(1.05);
}

.slugs-qr.no-qr {
  font-size: 0.9rem;
  color: #777;
  padding: 40px 0;
}

/* === Slugsy Footer === */
.slugsy-footer {
  margin-top: 13px;
  text-align: center;
  padding: 13px 0 10px;
  font-size: 0.9rem;
  color: #888;
  opacity: 0.95;
  border-radius: 0 0 20px 20px;
  background: none; /* let page bg show */
}

.slugsy-footer a {
  color: var(--theme);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  padding: 0;
  background: none !important; /* remove green box */
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.slugsy-footer a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.slugsy-footer img {
  
  vertical-align: middle;
  margin: 0;
  border-radius: 0;
  transition: transform 0.25s ease;
}

.slugsy-footer a:hover img {
  transform: rotate(-3deg) scale(1.16);
}

.slugsy-footer .slugsy{
    max-width:250px !important;
    margin: 0 auto;
} 
.qr{
    max-width:350px !important;
    margin: 0 auto;

}
/* === SlugTrail Path (Breadcrumb) === */
.slugtrail {
  font-family: var(--font);
  color: var(--text);
  font-size: 0.95rem;
  margin: 0 0 20px 0;
  text-align: left;
  word-break: break-word;
    
}

.slugtrail a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
    margin-bottom: 5px !important;   
    background-color: #ddd;
}

.slugtrail a:hover {
  color: #fff !important;
    background:#aaa;
 }

.slugtrail .sep {
  margin: 0 6px;
  color: rgba(255,255,255,0.3);
}

.slugtrail .current {
  color: #000000 !important;
  font-weight: 700;
  background-color: #ddd !important;
}
 
/* === Responsive === */
@media (max-width: 600px) {
  .container { padding: 10px; }
  .block { padding: 1rem; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
    
.blink { font-size: 0.95rem; }
}

/* === Back to Top Button === */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: var(--theme);
  color: #111;
  border: none;
  outline: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;                     /* start invisible */
  visibility: hidden;             /* disable clicks */
  transform: translateY(20px);    /* slight offset down */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--theme-accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 10px var(--theme);
}

#backToTop i {
  pointer-events: none;
}

/* === Trail Float (fixed position with fade-in) === */
.trail-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

/* When visible */
.trail-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Trail Button */
#trailMainBtn {
  background: var(--theme);
  color: #111;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
    
}

#trailMainBtn:hover {
  background: var(--theme-accent);
  transform: translateY(-3px) scale(1.05);
}


/* === Floating Trail Companion (Refined Final) === */
.trail-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Main circular button */
#trailMainBtn {
  background: var(--theme);
  color: #111;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
  cursor: pointer;
   transition: all 0.25s ease;
}

#trailMainBtn:hover {
  background: var(--theme-accent);
  transform: rotate(180deg);
 }

/* Dropdown tray */
.trail-menu {
  background: #0c0c0c !important;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: none !important;
}


.trail-float.open .trail-menu {
  display: flex;
}

/* Menu buttons (Top / Share) */
.trail-item {
  background: var(--theme);
  color: #111 !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
    
}

.trail-item:hover {
  background: var(--theme-accent);
  transform: translateY(-2px);
  box-shadow: 0 0 12px #333;
    color:#FFF !important;
}

/* Replace previous .trail-path section with this: */
.trail-path {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  padding: 0;
}

/* Each breadcrumb now behaves like a full-width button */
.trail-path a,
.trail-path .current {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.slugtrail .current{
  display: block;
    width: auto;
  background: rgba(0, 0, 0, 0.05);
   text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-top: 20px;
}
.trail-path a:hover {
  background: #222 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.trail-path .current {
  background: linear-gradient(145deg, var(--theme) 0%, var(--theme-accent) 100%);
  color: #333 !important;
  font-weight: 800;
 }


/* Animation */
@keyframes fadeInTrail {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* === Animated Breadcrumb Stack === */

/* Trail menu opening animation */
.trail-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: var(--block-bg);
  padding: 14px 12px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  width: 220px;
  margin-bottom: 10px;
  animation: fadeInTrail 0.25s ease;
  transform-origin: bottom right;
}

/* When open, children animate in sequence */
.trail-float.open .trail-menu .trail-item,
.trail-float.open .trail-menu .trail-path a,
.trail-float.open .trail-menu .trail-path .current {
  opacity: 0;
  animation: trailPop 0.25s forwards;
}

.trail-float.open .trail-menu .trail-item:nth-child(1) { animation-delay: 0.05s; }
.trail-float.open .trail-menu .trail-item:nth-child(2) { animation-delay: 0.1s; }
.trail-float.open .trail-menu .trail-item:nth-child(3) { animation-delay: 0.15s; }
.trail-float.open .trail-menu .trail-path a:nth-child(1) { animation-delay: 0.2s; }
.trail-float.open .trail-menu .trail-path a:nth-child(2) { animation-delay: 0.25s; }
.trail-float.open .trail-menu .trail-path a:nth-child(3) { animation-delay: 0.3s; }
.trail-float.open .trail-menu .trail-item:last-child { animation-delay: 0.35s; }

/* === Bouncy Entrance Animation for Trail Menu === */
@keyframes trailPop {
  0% {
    transform: translateY(15px) scale(0.9);
    opacity: 0;
  }
  60% {
    transform: translateY(-4px) scale(1.03);
    opacity: 1;
  }
  80% {
    transform: translateY(2px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}


/* === Current Slug Glow === */
.trail-path .current {
  background: linear-gradient(145deg, var(--theme) 0%, var(--theme-accent) 100%);
  color: #111;
  font-weight: 800;
   animation: glowPulse 2.2s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(155, 226, 22, 0.4); }
  50% { box-shadow: 0 0 18px rgba(155, 226, 22, 0.7); }
}

.trail-item:hover,
.trail-path a:hover {
  transform: scale(1.04);
 }


.share-menu {
  position: relative;
  margin-top: 8px;
  background: rgba(0,0,0,0.8);
  border-radius: 12px;
  padding: 10px;
   display: none;
  flex-direction: column;
  gap: 8px;
  animation: bounceIn 0.4s ease;
}

.trail-menu .share-menu.show {
  display: flex;
  animation: bounceIn 0.4s ease;
}

.share-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--block-bg);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.share-option i {
  color: var(--theme);
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.share-option:hover {
  background: var(--theme);
  color: #111;
  transform: translateX(4px);
}

.share-option:hover i {
  color: #111;
}
/* ===== Trail Float Scroll Visibility ===== */
.trail-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.trail-float.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Neon Pulse Glow ===== */
#trailMainBtn {
  background: var(--theme);
  color: #111;
  border: none;
  outline: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--theme);
  transition: all 0.3s ease;
  position: relative;
}
 

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.8; }
  100% { transform: scale(1); opacity: 0.4; }
}

.lead-form-block {
  background: rgba(255,255,255,0.04);
  padding: 22px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  margin: 5px 0 !important;
  backdrop-filter: blur(6px);
}

.lead-form-block h3 {
  margin: 0 0 18px 0;
  padding: 12px 18px;
  text-align: center;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .4px;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 30px;
  backdrop-filter: blur(12px);

  box-shadow:
    0 4px 12px rgba(0,0,0,0.08),
    inset 0 0 8px rgba(255,255,255,0.5);

  width: 100%;
  display: block;
}
.lead-form-block h3:hover {
  box-shadow:
    0 4px 16px rgba(0,0,0,0.12),
    inset 0 0 12px rgba(255,255,255,0.7);
  transform: translateY(-1px);
  transition: .25s;
}



.lead-form-block form input,
.lead-form-block form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 15px;
  transition: border-color .25s, background .25s;
}

/* GlassLight FORM FIX */
.lead-form-block form input,
.lead-form-block form textarea {
  background: rgba(255,255,255,0.65) !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Placeholder visibility */
.lead-form-block form input::placeholder,
.lead-form-block form textarea::placeholder {
  color: rgba(0,0,0,0.45);
}

/* Focus state */
.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  background: rgba(255,255,255,0.9) !important;
  border-color: var(--theme);
   color: #111;
}

.lead-form-block button {
  background: linear-gradient(135deg, var(--theme), var(--theme-accent));
  color: #fff;
 }



.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  border-color: var(--theme, #00aeac);
  background: rgba(0,0,0,0.55);
  outline: none;
}

.lead-form-block button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--theme, #00aeac), var(--theme-accent, #926cb2));
  color: #fff;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: opacity .25s, transform .2s;
}

.lead-form-block button:hover {
  opacity: .9;
  transform: translateY(-2px);
}

/* ✅ Success message fade-in */
.lead-success {
  display: none;
  text-align: center;
  color: #a4ff59;
  margin-top: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s ease, transform .4s ease;
}

.lead-success.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  box-shadow: 0 0 6px rgba(0,174,172,0.4);
}
.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  border-color: var(--theme, #a4ff59);
  outline: none;
  box-shadow: 0 0 6px rgba(164,255,89,0.4);
  transition: 0.25s;
} 
 
/* === VIDEO BLOCK STYLING === */
.video-block {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.video-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(164,255,89,0.25);
}

/* Maintain proper 16:9 aspect ratio */
.video-block iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
}

/* Optional: subtle inner border for glow effect */
.video-block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
  cursor: zoom-out;
}
.lightbox-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.2s;
}

.lightbox-overlay img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
  cursor: zoom-out;
}

.lightbox-overlay .close-btn:hover { color: #a7ff00; }
    
.slugimglink,
.slugimglink a {
  padding: 0 !important;
  margin: 0 !important;

  display: block;
  line-height: 0;
  background: none !important;   /* removes inherited background */
  background-color: transparent !important; /* extra safety */
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
.slugimglink a:hover,
.slugimglink a:focus {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}/* =========================================
   SLUGTRAIL — GLASSLIGHT SCROLLBAR (Frosted)
   ========================================= */

/* Chrome / Edge / Safari */
::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.6);
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.8);
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.6) rgba(255,255,255,0.3);
}
.trail-menu {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  padding-bottom: 14px;
}

.trail-menu:hover {
  background: rgba(255,255,255,0.75);
}
.lead-form-block form input,
.lead-form-block form textarea,
.lead-form-block button {
  font-family: var(--font) !important;
}


@media (max-width: 600px) {
    .slugtrail-page{
        width: 94%;
        margin: 3%;  
    }     
 
    /* === SlugTrail Path (Breadcrumb) === */
.slugtrail {
  font-family: var(--font);
  color: var(--text);
  font-size: 0.7rem;
  margin: 0 0 20px 0;
  text-align: left;
  word-break: break-word;
     
}
.slugtrail .current {
    border-radius: 8px;
    color: #000 !important;
}

}   
/* === FINAL FIX — ANIMATION OVERRIDE PRIORITY === */
.block.visible[class*="anim-"] {
    opacity: 1 !important;
    transform: none !important;
}
