:root {
  --safety-accent: #614b24;       /* Accent color */
  --safety-bg1: #0c0c0f;          
  --safety-bg2: #181a22;          
  --safety-text: #ffffff;
  --card-bg: #0e0e0e;
  --gold: #d4af37;
}

/* ==============================
   SAFETY CARD STRUCTURE
============================== */
.safety-cards .flip-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: #fff;
  transition: background 0.6s ease;
}

.safety-cards .flip-card-back {
  display: none;
  margin-top: 1rem;
  color: #222;
}

/* ==============================
   BUTTONS
============================== */
.toggle-btn {
  background: var(--gold);
  color: #0e0e0e;
  border: none;
  border-radius: 6px;
  padding: 12px 26px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: none !important; /* 🚫 No hover transitions */
}

.toggle-btn.back {
  background: #0e0e0e;
  color: var(--gold);
}

/* 🚫 No hover color change for Learn More */
.toggle-btn:hover {
  background: var(--gold) !important;
  color: #0e0e0e !important;
}

/* ✅ Back button also stays same on hover */
.toggle-btn.back:hover {
  background: #0e0e0e !important;
  color: var(--gold) !important;
}

/* Overlay animation element */
.spread-overlay {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0) scaleY(0);
  transform-origin: center center;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

/* ==============================
   SAFETY SECTION BASE
============================== */
.safety-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding: 110px 24px;
  color: var(--safety-text, #fff);
  background: linear-gradient(140deg, var(--safety-bg1, #0f2027), var(--safety-bg2, #2c5364));
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.safety-bg {
  position: absolute; inset: -10% -10% -10% -10%;
  background:
    radial-gradient(60rem 40rem at 20% -10%, rgba(255,255,255,0.06), transparent 55%),
    radial-gradient(50rem 30rem at 90% 120%, rgba(0,229,255,0.08), transparent 60%);
  z-index: 0;
}

.safety-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(80% 80% at 50% 50%, transparent 40%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.safety-spotlight {
  position: absolute; inset: -20% -40% -20% -40%;
  background: linear-gradient(100deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0) 65%);
  mix-blend-mode: screen;
  filter: blur(8px);
  z-index: 2;
  pointer-events: none;
}

.safety-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* ==============================
   TITLES & LISTS
============================== */
.safety-title {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e5e5e5;
}

.safety-title .amp {
  margin: 0 0.25em;
  color: var(--safety-accent);
}

.safety-title .reveal {
  display: inline-block;
  will-change: transform, filter, opacity;
}

.safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: clamp(1rem, 0.8rem + 0.6vw, 1.25rem);
  line-height: 1.9;
}

.safety-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  opacity: 0.95;
  transition: transform 0.25s ease, opacity 0.25s ease, text-shadow 0.25s ease;
}

.safety-list li:hover {
  transform: translateX(5px);
  opacity: 1;
  text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

/* Icon styling */
.safety-list .icon {
  font-size: 1.5rem;
  color: var(--safety-accent);
  flex-shrink: 0;
}

/* =======================================================
   FORCE OVERRIDE – KADENCE BUTTON COLOR & HOVER
   (apply only inside safety section)
======================================================= */
body.kadence-elementor-colors .safety-cards .toggle-btn,
body.kadence-elementor-colors .safety-cards .flip-card-back .toggle-btn {
  /* kill Kadence global variables */
  --global-palette-btn-bg: #d4af37 !important;
  --global-palette-btn: #0e0e0e !important;
  --global-palette1: #d4af37 !important; /* Kadence blue slot */
  --global-palette2: #0e0e0e !important;
  --global-palette-highlight: #d4af37 !important;

  /* wipe Kadence button base styles */
  all: unset;
  appearance: none;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;

  /* your design */
  display: inline-block !important;
  background-color: #d4af37 !important;
  color: #0e0e0e !important;
  border-radius: 6px !important;
  padding: 12px 26px !important;
  font-weight: 600 !important;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: none !important;
}

/* back-side button */
body.kadence-elementor-colors .safety-cards .flip-card-back .toggle-btn {
  background-color: #0e0e0e !important;
  color: #d4af37 !important;
}

/* 🚫 absolutely freeze hover state */
body.kadence-elementor-colors .safety-cards .toggle-btn:hover,
body.kadence-elementor-colors .safety-cards .flip-card-back .toggle-btn:hover {
  background-color: inherit !important;
  color: inherit !important;
  filter: none !important;
  box-shadow: none !important;
}
