/* ========================================
   SLUGTRAIL THEME — MAGENTAEDGE / RED FLARE
   ======================================== */

:root {
  --theme: #FF1A1A;
  --theme-accent: #FF4D4D;
  --bg: #1A0000;
  --text: #ffffff;
  --font: "Poppins", sans-serif;
  --icon-color: var(--theme);
  --block-bg: rgba(255, 40, 40, 0.18);
  --shadow: 0 0 18px rgba(255, 0, 0, 0.25);
  --radius: 14px;
}

/* ----------------------------------------
   Text selection
---------------------------------------- */

::selection {
  background-color: var(--theme);
  color: #fff;
}
::-moz-selection {
  background-color: var(--theme);
  color: #fff;
} 

/* ----------------------------------------
   Base Structure
---------------------------------------- */
 
body {
  background: linear-gradient(180deg, #000 0%, #1A0000 80%, #000 100%) !important;
  color: var(--text);
  font-family: var(--font);
  margin: 0;
  padding: 10px;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}


body::before {    
  content: ""; 
  position: fixed;       /* ✅ KEY FIX */
  inset: 0;
  background-image: url("https://www.slugtrail.com/asset/images/patterns/black-thread-light.png");
  background-size: 20px;
  opacity: 0.30;  
   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: 300px 0; }
  to   { background-position: 900px 400px; }
}
body > * {
  position: relative;
  z-index: 2;            /* ✅ content stays above pattern */
}

.slugtrail-page{
    padding:20px !important;
    width: 100%;
    margin: 10px auto; 
} 

.container {
  max-width: 550px;
  padding: 20px;
  border-radius: 25px;
  background: transparent;
}

/* ----------------------------------------
   Blocks
---------------------------------------- */

.block {
  margin: 1.2rem 0;
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--block-bg) !important;
  border: 1px solid rgba(255, 60, 60, 0.45) !important;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 18px rgba(255, 0, 0, 0.25),
    inset 0 0 14px rgba(255, 60, 60, 0.35) !important;
}

.block img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
}

p {
  color: var(--text);
}

/* ----------------------------------------
   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 (Base)
---------------------------------------- */

a,
button {
  color: #111;
  background: var(--theme);
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-block;
}

a:hover,
button:hover {
  color: #111 !important;
  background: var(--theme-accent);
  transform: translateY(-2px);
}

/* ----------------------------------------
   Primary Link Button (.blink)
---------------------------------------- */

.blink {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--theme);
  color: #111 !important;
  text-decoration: none;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border: none;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.blink:hover {
  background: var(--theme-accent);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ----------------------------------------
   Contact Card
---------------------------------------- */

.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);
}

.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: #fff !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
  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: #000 !important;
  background-color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  border: none;
  transition: color 0.25s ease, background-color 0.25s ease;
  text-align: center !important;
}

.contact-value a:hover {
  color: #fff !important;
  background-color: #000 !important;
  text-decoration: underline;
}

/* ----------------------------------------
   Social Links
---------------------------------------- */

.social-links {
  margin-top: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Flat, icon-only style */
.social-links a {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}

.social-links a i {
  color: #ffffff !important;
  font-size: 1.8rem;
  text-shadow: none !important;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover i {
  color: var(--theme-accent) !important;
  transform: translateY(-2px);
}

/* ----------------------------------------
   Images / Embed
---------------------------------------- */

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

.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;
}

.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;
  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;
}

/* ----------------------------------------
   Inline 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;
}

/* links */
.slugtrail a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.25s ease;
  margin-bottom: 5px !important;
  background: #000;
  backdrop-filter: blur(6px);
}

/* hover */
.slugtrail a:hover {
  color: #000;
  background: #fff;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.15),
    0 0 6px rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

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

/* current */
.slugtrail .current {
  color: #FFECEC !important;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(145deg, #FF1A00 0%, #FF6A00 100%);
  box-shadow:
    0 3px 10px rgba(255, 60, 0, 0.6);
    margin-left: 10px;
}

/* ----------------------------------------
   Back to Top Button
---------------------------------------- */

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 998;
  background: var(--theme);
  color: #111;
  border: none;
  outline: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  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;
}

/* ----------------------------------------
   Lead Form Block
---------------------------------------- */

.lead-form-block {
  padding: 22px 20px;
  border-radius: 12px;
  margin: 5px 0 !important;
}

.lead-form-block h3 {
  margin: 0 0 18px 0;
  padding: 12px 18px;
  text-align: center;
  color: #FFECEC !important;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.4px;
   font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(145deg, #FF1A00 0%, #FF6A00 100%);
  box-shadow:
    0 3px 10px rgba(255, 60, 0, 0.6);
   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: 0.25s;
}

.lead-form-block form input,
.lead-form-block form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 240, 240, 0.9) !important;
  border: 1px solid rgba(255, 80, 80, 0.35) !important;
  color: #4A0000 !important;
  font-size: 15px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  font-family: var(--font) !important;
}

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

.lead-form-block form input:focus,
.lead-form-block form textarea:focus {
  background: #fff !important;
  border-color: #FF1A1A !important;
  outline: none;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.6) !important;
}

/* Lead form button (general) */
.lead-form-block button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font) !important;
  background: linear-gradient(135deg, #FF1A1A, #FF4D4D) !important;
  color: #fff !important;
  box-shadow: 0 0 14px rgba(255, 40, 0, 0.45) !important;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
}

/* Explicit submit style */
.lead-form-block button[type="submit"] {
  display: block;
  text-align: center;
}

/* Hover */
.lead-form-block button:hover,
.lead-form-block button[type="submit"]:hover {
  background: #ffffff !important;
  color: #FF0000 !important;
  transform: translateY(-2px);
  opacity: 0.9;
  box-shadow: 0 0 22px rgba(255, 70, 0, 0.6) !important;
}

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

.lead-success.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------
   Link Blocks — Restore Button Identity
---------------------------------------- */

.block.link a.blink,
.block.link .blink,
.block.link button {
  display: block;
  width: 100%;
  text-align: center;
  background: #000 !important;
  color: #fff !important;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.25),
    0 0 10px rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.25s ease, opacity 0.25s;
}

.block.link a.blink:hover,
.block.link .blink:hover,
.block.link button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.3),
    0 0 14px rgba(255, 255, 255, 0.35);
background: #FFF !important;
  color: #000 !important;}

/* ----------------------------------------
   Video Block
---------------------------------------- */

.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(255, 0, 0, 0.4);
}

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

.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
---------------------------------------- */

.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 {
  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 {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.2s;
}

.lightbox-overlay .close-btn:hover {
  color: #a7ff00;
}

/* Image link wrapper reset */

.slugimglink,
.slugimglink a {
  padding: 0 !important;
  margin: 0 !important;
  display: block;
  line-height: 0;
  background: none !important;
  background-color: transparent !important;
  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;
}

/* ----------------------------------------
   Scrollbar (Glasslight)
---------------------------------------- */

/* 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 Float + Animated Breadcrumb Stack
---------------------------------------- */

.trail-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

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

/* Main circular button */

#trailMainBtn {
  background: var(--theme);
  color: #111;
  border: none;
  outline: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  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;
}

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

/* Neon pulse */

#trailMainBtn.pulse::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 0;
  box-shadow: 0 0 22px 10px rgba(255, 40, 0, 0.65);
  opacity: 0.4;
  animation: flarePulse 2.5s infinite ease-in-out;
}

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

/* Dropdown tray */

.trail-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  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.5);
  width: 220px;
  margin-bottom: 10px;
  animation: fadeInTrail 0.25s ease;
  transform-origin: bottom right;
}

.trail-menu:hover {
  background: rgba(255, 255, 255, 0.75);
}

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

/* Trail menu items (Top / Share etc.) */

.trail-item {
  background: linear-gradient(135deg, #FF1A1A, #FF4D4D) !important;
  color: #fff !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 0 14px rgba(255, 40, 0, 0.45) !important;
  transition: all 0.25s ease;
}

.trail-item:hover {
  background: #ffffff !important;
  color: #FF0000 !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 22px rgba(255, 70, 0, 0.6) !important;
}

/* Trail path inside menu */

.trail-path {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  padding: 0;
}

/* Breadcrumb buttons inside trail menu */

.trail-path a,
.trail-path .current {
  display: block;
  width: 100%;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.25s ease;
  background: rgba(255, 60, 60, 0.25) !important;
  border: 1px solid rgba(255, 120, 120, 0.4) !important;
  color: #FFECEC !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: none !important;
}

.trail-path a:hover {
  background: #fff !important;
  color: #FF1A1A !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 14px rgba(255, 40, 0, 0.5) !important;
}

/* Current slug in trail menu */

.trail-path .current {
  background: linear-gradient(145deg, #FF1A00 0%, #FF6A00 100%) !important;
  color: #111 !important;
  font-weight: 800;
  box-shadow: 0 0 14px rgba(255, 60, 0, 0.6) !important;
  animation: glowPulse 2.2s infinite ease-in-out;
}

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

/* Trail menu appearance animation */

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

/* Staggered entrance */

.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;
}

/* order:
   1 = first .trail-item
   2 = second .trail-item
   then breadcrumbs
*/

.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-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;
}

@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;
  }
}

/* ----------------------------------------
   Share Menu inside Trail Menu
---------------------------------------- */

.share-menu {
  position: relative;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 8px rgba(255, 60, 0, 0.4);
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: bounceIn 0.4s ease;
}
.share-menu a{
    background-color: #C00;
    color: #FFF;
    
}
.trail-menu{
   background-color: #000 !important;
}

.trail-menu .share-menu.show {
  display: flex;
  animation: bounceIn 0.4s ease;
    background-color: #000 !important;
}

.share-option {
  display: flex;
  align-items:center;
}

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