/* Enlightenment Psychic — main theme styles */

:root {
  --ep-primary: #4c1d95;
  --ep-accent: #6a22c5;
  --ep-gold: #d4af37;
  --ep-bg: #0b0715;
  --ep-surface: #0a0a0e;
  --ep-text: #ffffff;
  --ep-muted: #9ca3af;
  --ep-radius: 12px;
  --ep-container: 1200px;
  --ep-border: rgba(255, 255, 255, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(106, 34, 197, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(212, 175, 55, 0.08), transparent 50%),
    var(--ep-bg);
  color: var(--ep-text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--ep-gold);
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

.ep-container {
  width: min(100% - 2rem, var(--ep-container));
  margin-inline: auto;
}

.ep-skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ep-accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.ep-skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Banners */
.ep-banner {
  font-size: 0.92rem;
  border-bottom: 1px solid var(--ep-border);
}

.ep-banner--holiday {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.18), rgba(106, 34, 197, 0.25));
}

/* Holiday theme decorations (bats, snow, sparks, lights, hearts, glow) */
.ep-holiday-fx {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 35;
  overflow: hidden;
  background: transparent !important;
}

.ep-holiday-fx.is-active {
  z-index: 35;
}

.ep-holiday-fx__lights {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  display: flex;
  justify-content: space-around;
  padding: 0 1%;
  z-index: 2;
}

.ep-holiday-fx__lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ep-holiday-accent, #d4af37);
  box-shadow: 0 0 12px var(--ep-holiday-accent, #d4af37), 0 10px 18px rgba(0,0,0,.35);
  animation: ep-holiday-twinkle 1.25s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
  opacity: 0.85;
}

body.ep-holiday-theme-halloween .ep-holiday-fx__lights span:nth-child(odd) {
  background: #ff7a18;
  box-shadow: 0 0 14px #ff7a18;
}
body.ep-holiday-theme-halloween .ep-holiday-fx__lights span:nth-child(even) {
  background: #9b59ff;
  box-shadow: 0 0 14px #9b59ff;
}

@keyframes ep-holiday-twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.2); }
}

.ep-holiday-fx__bats .ep-holiday-bat {
  position: absolute;
  top: calc(10% + (var(--i) * 9%));
  left: -12%;
  width: 34px;
  height: 14px;
  background: #0a0610;
  border-radius: 50% 50% 40% 40%;
  animation: ep-holiday-bat-fly calc(12s + var(--i) * 1.8s) linear infinite;
  animation-delay: calc(var(--i) * -2.2s);
  opacity: 0.85;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}

.ep-holiday-fx__bats .ep-holiday-bat::before,
.ep-holiday-fx__bats .ep-holiday-bat::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 22px;
  height: 16px;
  background: #0a0610;
  border-radius: 50% 0 50% 0;
}
.ep-holiday-fx__bats .ep-holiday-bat::before { left: -14px; transform: rotate(-22deg); }
.ep-holiday-fx__bats .ep-holiday-bat::after { right: -14px; transform: scaleX(-1) rotate(-22deg); }

@keyframes ep-holiday-bat-fly {
  0% { transform: translateX(0) translateY(0) rotate(-4deg); }
  25% { transform: translateX(30vw) translateY(22px) rotate(6deg); }
  50% { transform: translateX(60vw) translateY(-10px) rotate(-3deg); }
  75% { transform: translateX(90vw) translateY(16px) rotate(5deg); }
  100% { transform: translateX(125vw) translateY(-6px) rotate(-2deg); }
}

.ep-holiday-fx__snow i,
.ep-holiday-fx__sparks i,
.ep-holiday-fx__hearts i {
  position: absolute;
  top: -12px;
  left: calc((var(--i) * 4.2%) + 2%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  animation: ep-holiday-fall calc(8s + var(--i) * 0.35s) linear infinite;
  animation-delay: calc(var(--i) * -0.5s);
  opacity: 0.55;
}

.ep-holiday-fx__sparks i {
  width: 4px;
  height: 4px;
  background: var(--ep-holiday-accent, #f5d76e);
  box-shadow: 0 0 10px var(--ep-holiday-accent, #f5d76e);
  animation-name: ep-holiday-spark;
}

.ep-holiday-fx__hearts i {
  width: 10px;
  height: 10px;
  background: transparent;
  border-radius: 0;
  animation-name: ep-holiday-fall;
}
.ep-holiday-fx__hearts i::before,
.ep-holiday-fx__hearts i::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 16px;
  background: #ff6b9d;
  border-radius: 10px 10px 0 0;
}
.ep-holiday-fx__hearts i::before { left: 5px; transform: rotate(-45deg); transform-origin: 0 100%; }
.ep-holiday-fx__hearts i::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }

.ep-holiday-fx__glow {
  position: absolute;
  inset: auto 10% 0;
  height: 35vh;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--ep-holiday-accent, #c4e0a0) 28%, transparent), transparent 70%);
  opacity: 0.55;
  animation: ep-holiday-glow 4s ease-in-out infinite;
}

/* Christmas — flying reindeer */
.ep-holiday-fx__reindeer .ep-holiday-reindeer {
  position: absolute;
  top: calc(12% + var(--i) * 8%);
  left: -15%;
  width: 52px;
  height: 28px;
  animation: ep-holiday-reindeer-fly calc(16s + var(--i) * 2s) linear infinite;
  animation-delay: calc(var(--i) * -3.5s);
  opacity: 0.9;
}
.ep-holiday-reindeer__body {
  position: absolute;
  left: 10px;
  bottom: 4px;
  width: 34px;
  height: 14px;
  background: #5c3a1e;
  border-radius: 40% 50% 40% 40%;
  box-shadow: 18px -6px 0 -4px #5c3a1e;
}
.ep-holiday-reindeer__antler {
  position: absolute;
  left: 36px;
  top: 0;
  width: 3px;
  height: 14px;
  background: #3a2412;
  box-shadow: 5px 2px 0 #3a2412, -4px 3px 0 #3a2412, 8px -2px 0 -1px #3a2412;
}
.ep-holiday-reindeer__body::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5c3a1e;
}
@keyframes ep-holiday-reindeer-fly {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(30vw) translateY(-14px); }
  50% { transform: translateX(60vw) translateY(10px); }
  75% { transform: translateX(90vw) translateY(-8px); }
  100% { transform: translateX(125vw) translateY(4px); }
}

/* Christmas — Merry Christmas floating text */
.ep-holiday-fx__merry .ep-holiday-merry {
  position: absolute;
  top: calc(18% + var(--i) * 18%);
  left: -40%;
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ep-holiday-accent, #d4af37);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.55), 0 2px 8px rgba(0,0,0,.45);
  animation: ep-holiday-merry-drift calc(22s + var(--i) * 4s) linear infinite;
  animation-delay: calc(var(--i) * -6s);
  opacity: 0.88;
}
@keyframes ep-holiday-merry-drift {
  0% { transform: translateX(0) rotate(-2deg); opacity: 0; }
  8% { opacity: 0.9; }
  92% { opacity: 0.9; }
  100% { transform: translateX(145vw) rotate(2deg); opacity: 0; }
}

/* Halloween — running vampires */
.ep-holiday-fx__vampires .ep-holiday-vampire {
  position: absolute;
  bottom: calc(8% + var(--i) * 4%);
  left: -12%;
  width: 28px;
  height: 42px;
  animation: ep-holiday-vampire-run calc(11s + var(--i) * 2.5s) linear infinite;
  animation-delay: calc(var(--i) * -3s);
}
.ep-holiday-vampire__body {
  position: absolute;
  left: 6px;
  bottom: 0;
  width: 14px;
  height: 28px;
  background: #1a1020;
  border-radius: 6px 6px 2px 2px;
  box-shadow: 0 -10px 0 -2px #f3e6d8;
}
.ep-holiday-vampire__cape {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 28px;
  height: 24px;
  background: #6b1028;
  clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
  animation: ep-holiday-cape 0.35s ease-in-out infinite alternate;
}
@keyframes ep-holiday-vampire-run {
  0% { transform: translateX(0) translateY(0); }
  20% { transform: translateX(24vw) translateY(-4px); }
  40% { transform: translateX(48vw) translateY(0); }
  60% { transform: translateX(72vw) translateY(-3px); }
  80% { transform: translateX(96vw) translateY(0); }
  100% { transform: translateX(120vw) translateY(-2px); }
}
@keyframes ep-holiday-cape {
  from { transform: skewX(-6deg); }
  to { transform: skewX(6deg); }
}

/* Halloween — pumpkins */
.ep-holiday-fx__pumpkins .ep-holiday-pumpkin {
  position: absolute;
  bottom: 4%;
  left: calc(8% + var(--i) * 18%);
  width: 34px;
  height: 28px;
  background: radial-gradient(circle at 40% 40%, #ff9f1a, #d35400 70%);
  border-radius: 50% 50% 46% 46%;
  box-shadow: inset -6px -4px 0 rgba(0,0,0,.15), 0 0 16px rgba(255,122,24,.35);
  animation: ep-holiday-pumpkin-glow 2.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.25s);
}
.ep-holiday-pumpkin::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 14px;
  width: 5px;
  height: 8px;
  background: #2e7d32;
  border-radius: 2px;
}
@keyframes ep-holiday-pumpkin-glow {
  0%, 100% { filter: brightness(0.9); }
  50% { filter: brightness(1.25); }
}

/* Halloween — spiders */
.ep-holiday-fx__spiders .ep-holiday-spider {
  position: absolute;
  top: -10px;
  left: calc(15% + var(--i) * 20%);
  width: 10px;
  height: 10px;
  background: #111;
  border-radius: 50%;
  box-shadow: -8px 2px 0 -3px #111, 8px 2px 0 -3px #111, -10px 8px 0 -4px #111, 10px 8px 0 -4px #111;
  animation: ep-holiday-spider-drop calc(9s + var(--i) * 1.5s) ease-in-out infinite;
  animation-delay: calc(var(--i) * -2s);
}
@keyframes ep-holiday-spider-drop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(28vh); }
}

/* New Year — fireworks */
.ep-holiday-fx__fireworks .ep-holiday-firework {
  position: absolute;
  left: calc(12% + var(--i) * 14%);
  bottom: 12%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ep-holiday-accent, #f5d76e);
  box-shadow:
    0 -18px 0 -1px #ff6b9d,
    14px -10px 0 -1px #7dd3fc,
    -14px -10px 0 -1px #f5d76e,
    10px 12px 0 -1px #c4b5fd,
    -10px 12px 0 -1px #86efac;
  animation: ep-holiday-firework calc(3.2s + var(--i) * 0.4s) ease-out infinite;
  animation-delay: calc(var(--i) * 0.55s);
  opacity: 0;
}
@keyframes ep-holiday-firework {
  0% { transform: translateY(40px) scale(0.2); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(-45vh) scale(1.6); opacity: 0; }
}

/* New Year — confetti */
.ep-holiday-fx__confetti i {
  position: absolute;
  top: -12px;
  left: calc((var(--i) * 5%) + 1%);
  width: 8px;
  height: 12px;
  background: hsl(calc(var(--i) * 40), 85%, 60%);
  animation: ep-holiday-confetti calc(7s + var(--i) * 0.3s) linear infinite;
  animation-delay: calc(var(--i) * -0.4s);
}
@keyframes ep-holiday-confetti {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(110vh) rotate(540deg); opacity: 0.2; }
}

/* Valentine — roses */
.ep-holiday-fx__roses .ep-holiday-rose {
  position: absolute;
  top: -16px;
  left: calc(6% + var(--i) * 11%);
  width: 14px;
  height: 14px;
  background: #e11d48;
  border-radius: 50% 0 50% 50%;
  transform: rotate(-30deg);
  animation: ep-holiday-fall calc(10s + var(--i) * 0.4s) linear infinite;
  animation-delay: calc(var(--i) * -0.7s);
  box-shadow: 4px -4px 0 #be123c;
}

/* Easter — bunnies */
.ep-holiday-fx__bunnies .ep-holiday-bunny {
  position: absolute;
  bottom: 6%;
  left: -10%;
  width: 22px;
  height: 26px;
  background: #e8e0f0;
  border-radius: 50% 50% 40% 40%;
  box-shadow: -6px -14px 0 -6px #e8e0f0, 6px -14px 0 -6px #e8e0f0;
  animation: ep-holiday-bunny-hop calc(14s + var(--i) * 2s) linear infinite;
  animation-delay: calc(var(--i) * -4s);
  opacity: 0.75;
}
@keyframes ep-holiday-bunny-hop {
  0% { transform: translateX(0) translateY(0); }
  10% { transform: translateX(10vw) translateY(-18px); }
  20% { transform: translateX(20vw) translateY(0); }
  50% { transform: translateX(55vw) translateY(0); }
  60% { transform: translateX(65vw) translateY(-16px); }
  70% { transform: translateX(75vw) translateY(0); }
  100% { transform: translateX(120vw) translateY(0); }
}

/* Easter — eggs */
.ep-holiday-fx__eggs .ep-holiday-egg {
  position: absolute;
  top: -14px;
  left: calc(8% + var(--i) * 11%);
  width: 14px;
  height: 18px;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(135deg, #fda4af, #a5b4fc);
  animation: ep-holiday-fall calc(11s + var(--i) * 0.35s) linear infinite;
  animation-delay: calc(var(--i) * -0.6s);
}

/* Thanksgiving — leaves */
.ep-holiday-fx__leaves .ep-holiday-leaf {
  position: absolute;
  top: -12px;
  left: calc(4% + var(--i) * 7%);
  width: 14px;
  height: 10px;
  background: #d97706;
  border-radius: 0 70% 0 70%;
  animation: ep-holiday-leaf-fall calc(9s + var(--i) * 0.4s) linear infinite;
  animation-delay: calc(var(--i) * -0.5s);
}
.ep-holiday-fx__leaves .ep-holiday-leaf:nth-child(odd) { background: #b45309; }
.ep-holiday-fx__leaves .ep-holiday-leaf:nth-child(3n) { background: #ca8a04; }
@keyframes ep-holiday-leaf-fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(110vh) rotate(360deg) translateX(40px); opacity: 0.2; }
}

/* Diwali — lanterns */
.ep-holiday-fx__lanterns .ep-holiday-lantern {
  position: absolute;
  bottom: -20px;
  left: calc(8% + var(--i) * 12%);
  width: 16px;
  height: 22px;
  background: linear-gradient(180deg, #fbbf24, #b45309);
  border-radius: 4px 4px 8px 8px;
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.55);
  animation: ep-holiday-lantern-rise calc(14s + var(--i) * 1.2s) ease-in infinite;
  animation-delay: calc(var(--i) * -2s);
}
.ep-holiday-lantern::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 5px;
  width: 6px;
  height: 6px;
  border: 2px solid #fcd34d;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}
@keyframes ep-holiday-lantern-rise {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-110vh) scale(1.1); opacity: 0.15; }
}

@keyframes ep-holiday-fall {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.9; }
  100% { transform: translateY(105vh) translateX(20px); opacity: 0.15; }
}

@keyframes ep-holiday-spark {
  0% { transform: translateY(100vh) scale(0.4); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

@keyframes ep-holiday-glow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
  .ep-holiday-fx * {
    animation: none !important;
  }
}

.ep-holiday-effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 0.35rem 0.75rem;
}

.ep-banner--promo {
  background: linear-gradient(90deg, rgba(106, 34, 197, 0.4), rgba(76, 29, 149, 0.55));
}

.ep-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.7rem 0;
}

.ep-banner__badge,
.ep-banner__discount {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.2);
  color: var(--ep-gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.ep-banner__discount {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.ep-banner__message {
  color: #e5e7eb;
  flex: 1 1 auto;
}

.ep-banner__cta {
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid var(--ep-gold);
}

/* Header */
.ep-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 7, 21, 0.85);
  border-bottom: 1px solid var(--ep-border);
}

.ep-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.ep-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}

.ep-brand__mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--ep-gold);
  color: var(--ep-gold);
}

.ep-brand .custom-logo-link img,
.ep-brand .custom-logo {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  border-radius: 999px;
}

.ep-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ep-brand__name {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ep-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.ep-brand__tagline {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ep-gold);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.ep-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ep-nav__list a {
  color: #e5e7eb;
  font-size: 0.95rem;
}

.ep-nav__list a:hover {
  color: var(--ep-gold);
  opacity: 1;
}

.ep-nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--ep-border);
  border-radius: 0.5rem;
  background: transparent;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.ep-nav-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.ep-hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.ep-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(106, 34, 197, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(212, 175, 55, 0.12), transparent 55%);
  pointer-events: none;
}

.ep-hero__content {
  position: relative;
  max-width: 44rem;
}

.ep-eyebrow {
  color: var(--ep-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin: 0 0 1rem;
}

.ep-hero__title,
.ep-page-title,
.ep-section__title,
.ep-card__title,
.ep-footer h3,
.ep-footer__name {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

.ep-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 1rem;
  color: #fff;
}

.ep-hero__text {
  color: var(--ep-muted);
  font-size: 1.1rem;
  margin: 0 0 1.75rem;
}

.ep-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.ep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.ep-btn:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.ep-btn--primary {
  background: linear-gradient(145deg, #7c3aed, var(--ep-accent) 55%, var(--ep-primary));
  color: #fff;
  box-shadow: 0 10px 28px rgba(106, 34, 197, 0.35);
}

.ep-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.ep-btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* Sections / cards */
.ep-section {
  padding: 3.5rem 0;
}

.ep-section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--ep-border);
}

.ep-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ep-section__title,
.ep-page-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
}

.ep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.ep-card {
  background: var(--ep-surface);
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ep-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.ep-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, rgba(106, 34, 197, 0.25), rgba(11, 7, 21, 0.9));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ep-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-card__placeholder {
  font-size: 2rem;
  color: var(--ep-gold);
}

.ep-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.ep-card__title {
  font-size: 1.2rem;
  margin: 0;
}

.ep-card__title a {
  color: #fff;
}

.ep-card__excerpt,
.ep-empty,
.ep-card__details {
  color: var(--ep-muted);
  font-size: 0.95rem;
  margin: 0;
}

.ep-card__details {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.ep-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
}

.ep-price {
  color: var(--ep-gold);
  font-weight: 700;
}

.ep-price__was {
  text-decoration: line-through;
  color: var(--ep-muted);
  font-weight: 500;
  margin-right: 0.35rem;
}

.ep-price__now {
  color: #fff;
}

.ep-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--ep-muted);
  margin-bottom: 1.25rem;
}

.ep-featured {
  margin: 0 0 1.5rem;
  border-radius: var(--ep-radius);
  overflow: hidden;
}

.ep-featured img {
  width: 100%;
}

.ep-prose {
  max-width: 48rem;
}

.ep-prose p,
.ep-prose li {
  color: #d1d5db;
}

.ep-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--ep-radius);
  overflow: hidden;
  border: 1px solid var(--ep-border);
  background: #000;
  margin: 1rem 0 0;
}

.ep-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ep-cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--ep-radius);
  border: 1px solid rgba(212, 175, 55, 0.25);
  background:
    radial-gradient(ellipse at left, rgba(106, 34, 197, 0.25), transparent 55%),
    var(--ep-surface);
}

.ep-cta-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 0.35rem;
}

.ep-cta-band p {
  margin: 0;
  color: var(--ep-muted);
}

.ep-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.ep-contact-card {
  padding: 1.5rem;
}

/* Social */
.ep-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ep-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #c4974d;
  color: #fff;
  font-size: 0.8rem;
}

.ep-social__link:hover {
  background: rgba(212, 175, 55, 0.12);
  opacity: 1;
}

/* Footer */
.ep-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--ep-border);
  background: rgba(10, 10, 14, 0.9);
}

.ep-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.ep-footer__name {
  color: var(--ep-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.ep-footer__tagline {
  color: var(--ep-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  margin: 0.25rem 0 1rem;
}

.ep-footer__address,
.ep-footer p,
.ep-footer__links a {
  color: var(--ep-muted);
}

.ep-footer__phone {
  color: var(--ep-gold);
  font-size: 1.2rem;
  font-weight: 600;
}

.ep-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ep-footer__bottom {
  border-top: 1px solid var(--ep-border);
  padding: 1rem 0;
  color: var(--ep-muted);
  font-size: 0.9rem;
}

.ep-footer h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

/* Pagination */
.navigation.pagination {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--ep-border);
  border-radius: 0.5rem;
  color: #fff;
}

.page-numbers.current {
  background: var(--ep-accent);
  border-color: var(--ep-accent);
}

/* Responsive */
@media (max-width: 960px) {
  .ep-grid,
  .ep-footer__grid,
  .ep-contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ep-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .ep-nav-toggle {
    display: flex;
  }

  .ep-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(10, 10, 14, 0.98);
    border-bottom: 1px solid var(--ep-border);
    padding: 1rem;
    display: none;
  }

  .ep-nav.is-open {
    display: block;
  }

  .ep-nav__list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .ep-grid,
  .ep-footer__grid,
  .ep-contact-grid {
    grid-template-columns: 1fr;
  }

  .ep-hero {
    padding: 3.5rem 0 3rem;
  }
}

/* Booking page — matches React Booking.jsx */
.ep-booking-app {
  max-width: 80rem;
  margin: 0 auto;
}

.ep-booking-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 0 0 0.35rem;
}

.ep-booking-subtitle {
  color: #9ca3af;
  margin: 0 0 1.5rem;
}

.ep-booking-layout-react {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 1.5rem;
  align-items: start;
}

.ep-booking-main__row {
  display: grid;
  grid-template-columns: 1fr 11rem;
  gap: 1.5rem;
  align-items: stretch;
}

.ep-booking-panel {
  background: #0a0a0e;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.ep-booking-panel--calendar {
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(106,34,197,0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(212,175,55,0.08), transparent 50%),
    #0a0a0e;
}

.ep-booking-date-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.ep-booking-eyebrow {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af37;
}

.ep-booking-date-label {
  margin: 0.25rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: #fff;
}

.ep-booking-year {
  color: #6b7280;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.ep-booking-calendar-frame {
  position: relative;
  border-radius: 1rem;
  padding: 1rem 0.85rem 1.1rem;
  background:
    linear-gradient(165deg, rgba(106, 34, 197, 0.16) 0%, rgba(18, 12, 28, 0.92) 42%, rgba(12, 10, 18, 0.98) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.55);
  box-shadow:
    0 0 0 1px rgba(106, 34, 197, 0.28),
    0 12px 36px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ep-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.ep-cal-nav strong {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
}

.ep-cal-nav button {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 151, 77, 0.28);
  background: rgba(106, 34, 197, 0.28);
  color: #f3e8ff;
  font-size: 1.35rem;
  cursor: pointer;
}

.ep-cal-weekdays,
.ep-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.4rem 0.25rem;
}

.ep-cal-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c4b5fd;
  font-weight: 700;
  padding: 0.35rem 0;
}

.ep-cal-cell {
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(196, 151, 77, 0.35);
  background: #f3eefc;
  color: #1a0b2e;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
}

.ep-cal-cell.is-empty { visibility: hidden; }

.ep-cal-cell.is-weekend:not(.is-disabled):not(.is-selected) {
  color: #5c3d08;
  background: #f7e7b8;
}

.ep-cal-cell.is-disabled {
  background: #d4d0dc;
  color: #3f3a4a;
  cursor: not-allowed;
  opacity: 0.85;
}

.ep-cal-cell.is-selected {
  background: linear-gradient(145deg, #8b5cf6, #6a22c5 55%, #4c1d95);
  color: #fff !important;
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow: 0 0 0 1px rgba(212,175,55,.45), 0 8px 22px rgba(106,34,197,.5);
}

.ep-booking-types { margin-top: 2rem; }
.ep-booking-types h3,
.ep-booking-panel--times h3,
.ep-booking-help h3,
.ep-booking-checkout h3 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 1rem;
}

.ep-type-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ep-type-btn,
.ep-time-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 0.4rem;
  border: 1px solid #374151;
  background: transparent;
  color: #d1d5db;
  padding: 0.65rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.ep-time-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  justify-content: space-between;
}

.ep-time-btn {
  width: 100%;
  border-radius: 999px;
  justify-content: center;
}

.ep-type-btn.is-active,
.ep-time-btn.is-active {
  background: #6a22c5;
  border-color: #6a22c5;
  color: #fff;
}

.ep-booking-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.ep-booking-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  font-size: 0.9rem;
}

.ep-shield {
  color: #6a22c5;
  width: 1.25rem;
  text-align: center;
}

.ep-booking-help ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.ep-booking-help li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #d1d5db;
  font-size: 0.9rem;
}

.ep-booking-help a { color: #d1d5db; }
.ep-booking-help a:hover { color: #fff; }
.ep-booking-help span[aria-hidden="true"] { color: #c4974d; }

.ep-booking-aside {
  display: grid;
  gap: 1.5rem;
}

.ep-booking-checkout-wrap { margin-top: 1.5rem; }

.ep-booking-continue,
.ep-booking-confirm {
  width: 100%;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 1.25rem;
}

.ep-btn--gold {
  background: #c4974d;
  color: #fff;
  border: none;
}

.ep-btn--gold:hover { opacity: 0.9; }

.ep-btn--ghost {
  background: transparent;
  border: 1px solid #374151;
  color: #d1d5db;
  padding: 0.75rem 1.25rem;
}

.ep-booking-checkout {
  background: #0a0a0e;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.ep-booking-checkout__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ep-booking-checkout input,
.ep-booking-checkout select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.4rem;
  border: 1px solid #1f2937;
  background: #1a1a24;
  color: #fff;
}

.ep-booking-checkout input[type="radio"],
.ep-booking-checkout input[type="checkbox"] {
  width: auto;
  min-width: 1rem;
  max-width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: #6B21A8;
  background: transparent;
  border: none;
}

.ep-booking-phone-label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.ep-booking-hint {
  color: #6b7280;
  font-size: 0.75rem;
  margin: -0.35rem 0 0;
}

.ep-booking-contact {
  display: grid;
  gap: 0.85rem;
}

.ep-booking-contact__title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.ep-booking-notify {
  border: 1px solid #374151;
  border-radius: 0.4rem;
  padding: 0.85rem 1rem 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  box-sizing: border-box;
}

.ep-booking-notify legend {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0 0.35rem;
  float: none;
  width: auto;
}

.ep-booking-notify label {
  color: #d1d5db;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  width: auto;
  max-width: 100%;
  margin: 0;
  line-height: 1.2;
}

.ep-booking-notify label input[type="radio"] {
  width: 1rem !important;
  min-width: 1rem !important;
  max-width: 1rem !important;
  flex: 0 0 1rem !important;
}

.ep-booking-notify .ep-booking-hint {
  margin: 0.15rem 0 0;
}

.ep-booking-price-card {
  background: #1a1a24;
  border: 1px solid #1f2937;
  border-radius: 0.4rem;
  padding: 1rem;
}

.ep-booking-price-card p { color: #9ca3af; margin: 0; }
.ep-booking-price {
  color: #c4974d !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  margin-top: 0.5rem !important;
}
.ep-booking-duration { color: #6b7280 !important; font-size: 0.9rem !important; margin-top: 0.25rem !important; }

.ep-booking-actions {
  display: flex;
  gap: 1rem;
}

.ep-booking-actions .ep-booking-confirm { flex: 1; }

.ep-booking-status { color: #c4974d; margin: 0; }
.ep-gold { color: #c4974d; }

.ep-booking-confirmed {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.ep-booking-confirmed h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  color: #fff;
}

.ep-booking-confirmed__card {
  background: #12121a;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: left;
  margin: 1.5rem 0 2rem;
}

.ep-booking-confirmed__card p { margin: 0.5rem 0; color: #d1d5db; }

@media (max-width: 1024px) {
  .ep-booking-layout-react { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .ep-booking-main__row,
  .ep-booking-checkout__grid { grid-template-columns: 1fr; }
}

/* ===== Match React site UI ===== */
.ep-header {
  background: #000;
  border-bottom: 1px solid rgba(126, 34, 206, 0.55);
  position: sticky;
  top: 0;
  z-index: 50;
}

.ep-brand__name {
  color: var(--ep-gold);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.35rem);
  line-height: 1.2;
}

.ep-nav__list a:hover {
  color: var(--ep-gold);
}

.ep-home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  background: #0a0612;
  overflow: hidden;
}

.ep-home-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 15% 45%, rgba(106, 34, 197, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 8% 80%, rgba(106, 34, 197, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 35% 20%, rgba(196, 151, 77, 0.18) 0%, transparent 55%);
}

.ep-home-hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 12%, rgba(255,255,255,.95), transparent),
    radial-gradient(1px 1px at 15% 38%, rgba(212,175,55,.9), transparent),
    radial-gradient(1px 1px at 22% 68%, rgba(255,255,255,.8), transparent),
    radial-gradient(1.5px 1.5px at 42% 32%, rgba(212,175,55,.9), transparent),
    radial-gradient(1px 1px at 58% 78%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 72% 22%, rgba(212,175,55,.85), transparent);
  animation: ep-star-shimmer 7s ease-in-out infinite alternate;
}

@keyframes ep-star-shimmer {
  from { opacity: .4; }
  to { opacity: .85; }
}

.ep-home-hero__grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 3rem;
}

.ep-home-hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
}

.ep-home-hero__title-light { color: #fff; display: block; }
.ep-home-hero__title-gold { color: #c4974d; display: block; }

.ep-home-hero__text {
  color: #d1d5db;
  font-size: 1.1rem;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.ep-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ep-btn--gold-outline {
  border: 1px solid #c4974d;
  color: #c4974d;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  font-weight: 600;
}

.ep-btn--primary {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(88, 28, 135, .4);
}

.ep-home-hero__media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.ep-home-hero__media-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(106,34,197,.5), rgba(196,151,77,.2));
  filter: blur(28px);
  opacity: .7;
}

.ep-home-hero__frame {
  position: relative;
  margin: 0;
  width: min(100%, 28rem);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(196, 151, 77, .4);
  box-shadow: 0 25px 50px rgba(88, 28, 135, .55);
}

.ep-home-hero__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.ep-trust-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(31, 41, 55, .6);
  background: rgba(10, 6, 18, .3);
  backdrop-filter: blur(2px);
}

.ep-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ep-trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(55, 65, 81, .5);
}

.ep-trust-item:last-child { border-right: 0; }
.ep-trust-item__icon { color: #c4974d; font-size: 1.25rem; }
.ep-trust-item strong { display: block; color: #fff; font-size: .9rem; }
.ep-trust-item span { color: #c4974d; font-size: .75rem; }

.ep-section__title--center { text-align: center; color: var(--ep-gold); }
.ep-section__center-link { text-align: center; margin-top: 1.5rem; }

.ep-featured-grid,
.ep-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  max-width: 56rem;
  margin: 0 auto;
}

.ep-services-grid {
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ep-service-card {
  background: rgba(18, 8, 31, .55);
  border: 1px solid rgba(107, 33, 168, .55);
  border-radius: var(--ep-radius);
  padding: 1rem;
  box-shadow: 0 0 28px rgba(106, 34, 197, .25);
}

.ep-service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: .6rem;
  border: 1px solid rgba(107, 33, 168, .7);
  margin-bottom: .9rem;
}

.ep-service-card h3 {
  margin: 0 0 .4rem;
  font-size: 1.35rem;
}

.ep-service-card p { color: #9ca3af; }
.ep-service-card__price {
  color: var(--ep-gold) !important;
  font-size: 1.5rem !important;
  font-weight: 700;
  margin: .6rem 0 .15rem !important;
}
.ep-service-card__meta { color: #6b7280 !important; font-size: .9rem !important; }
.ep-service-card a { color: #d8b4fe; }

.ep-page-title--gold { color: var(--ep-gold) !important; }

.ep-service-card__title {
  margin: 0 0 .35rem;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
}

.ep-service-card__desc {
  color: #d1d5db !important;
  font-size: 1rem;
  line-height: 1.55;
  margin: .5rem 0 1rem !important;
}

.ep-service-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  background: #c4974d;
  color: #0a0612;
  margin-bottom: 0.5rem;
}

.ep-service-card__cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
}

.ep-pricing-blocks {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}

.ep-pricing-block__title {
  margin: 0 0 0.25rem;
  color: var(--ep-gold) !important;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ep-pricing-block__formats {
  color: var(--ep-gold) !important;
  font-size: 0.85rem;
  margin: 0 0 0.5rem !important;
}

.ep-pricing-table-wrap {
  overflow-x: auto;
  border: 2px solid #0a0612;
  border-radius: 0.5rem;
}

.ep-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: rgba(18, 8, 31, 0.4);
}

.ep-pricing-table th {
  background: #1a1a24;
  color: var(--ep-gold);
  text-align: left;
  padding: 0.65rem 0.75rem;
  font-weight: 600;
}

.ep-pricing-table td {
  color: #e5e7eb;
  padding: 0.65rem 0.75rem;
  border-top: 2px solid #0a0612;
}

.ep-pricing-table__price {
  color: var(--ep-gold) !important;
  font-weight: 700;
}

.ep-pricing-table a {
  color: #d8b4fe;
  white-space: nowrap;
}

.ep-pricing-table a:hover { color: var(--ep-gold); }

.ep-hoodoo-page__inner { max-width: 56rem; }
.ep-back-link {
  display: inline-block;
  color: #d8b4fe;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.ep-back-link:hover { color: var(--ep-gold); }
.ep-hoodoo-hero {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 2px solid #0a0612;
}
.ep-hoodoo-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.ep-testimonial-card__quote {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  color: #c4974d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  opacity: 0.6;
  pointer-events: none;
}

.ep-home-bottom {
  border-top: 1px solid #1f2937;
  background: #0A0612;
  padding: 4rem 0;
}

.ep-home-bottom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ep-testimonial-card {
  position: relative;
  min-height: 320px;
  border-radius: .75rem;
  border: 1px solid #1f2937;
  padding: 2rem;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(106,34,197,.45) 0%, transparent 60%),
    linear-gradient(135deg, #0f0a1a 0%, #1a0f2e 50%, #0a0a0e 100%);
}

.ep-testimonial-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: #fff;
  margin-top: 0;
}

.ep-testimonial-card blockquote {
  color: #d1d5db;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 28rem;
}

.ep-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.ep-testimonial-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid #6a22c5;
}

.ep-stars { color: #c4974d; letter-spacing: .05em; }

.ep-feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  border-radius: .75rem;
  border: 1px solid rgba(31,41,55,.5);
  background: #0a0414;
  overflow: hidden;
}

.ep-feature-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(55,65,81,.5);
  border-bottom: 1px solid rgba(55,65,81,.5);
}

.ep-feature-cell:nth-child(2n) { border-right: 0; }
.ep-feature-cell:nth-child(n+3) { border-bottom: 0; }

.ep-feature-cell__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #5a2d91;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.ep-feature-cell strong { color: #fff; font-size: .9rem; }
.ep-feature-cell p { color: #9ca3af; font-size: .75rem; max-width: 9.5rem; margin: .5rem 0 0; }

.ep-about-photo {
  max-width: 28rem;
  margin: 0 auto 2.5rem;
  padding: .75rem;
  border-radius: 1rem;
  border: 1px solid rgba(212,175,55,.35);
  background: rgba(18,8,31,.5);
  box-shadow: 0 0 30px rgba(106,34,197,.3);
}

.ep-about-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: .65rem;
  border: 2px solid #0a0612;
  background: #12081f;
}

.ep-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.ep-values-card {
  background: #3b0764;
  border: 1px solid rgba(107,33,168,.8);
  border-radius: .9rem;
  padding: 2rem;
}

.ep-values-card h2 { color: var(--ep-gold); margin-top: 0; }
.ep-values-card ul { list-style: none; padding: 0; margin: 0; }
.ep-values-card li {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  color: #e9d5ff;
}
.ep-values-card span { color: var(--ep-gold); }

.ep-footer {
  background: #0a0a0e;
  border-top: 1px solid #1f2937;
  padding: 3rem 0 2rem;
}

.ep-footer__panel {
  border: 1px solid #1f2937;
  border-radius: .75rem;
  padding: 2rem;
}

.ep-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.ep-footer__name,
.ep-footer__tagline,
.ep-footer__phone {
  color: #c4974d;
  font-family: "Playfair Display", Georgia, serif;
}

.ep-footer__tagline {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  margin-top: 0;
}

.ep-footer__phone {
  font-size: 1.25rem;
  font-weight: 500;
}

.ep-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ep-footer__links a { color: #9ca3af; }
.ep-footer__links a:hover { color: #fff; }
.ep-footer__bottom-text {
  text-align: center;
  color: #d1d5db;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 2rem;
  letter-spacing: 0.01em;
}

.ep-page-title { color: var(--ep-gold); }

@media (max-width: 960px) {
  .ep-home-hero__grid,
  .ep-home-bottom__grid,
  .ep-about-grid,
  .ep-featured-grid,
  .ep-services-grid,
  .ep-footer__grid,
  .ep-trust-bar__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .ep-home-hero__grid,
  .ep-home-bottom__grid,
  .ep-about-grid,
  .ep-featured-grid,
  .ep-services-grid,
  .ep-footer__grid,
  .ep-trust-bar__inner,
  .ep-feature-panel {
    grid-template-columns: 1fr;
  }

  .ep-trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(55,65,81,.5);
  }

  .ep-feature-cell {
    border-right: 0 !important;
  }
}

/* Stronger glow + falling/twinkling stars (match React) */
.ep-home-hero__glow {
  animation: ep-hero-glow-pulse 5s ease-in-out infinite;
  background:
    radial-gradient(ellipse 80% 70% at 15% 45%, rgba(106, 34, 197, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 8% 80%, rgba(106, 34, 197, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 35% 20%, rgba(196, 151, 77, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(75, 0, 130, 0.4) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 80% 30%, rgba(196, 151, 77, 0.15) 0%, transparent 50%) !important;
}

@keyframes ep-hero-glow-pulse {
  0%, 100% { opacity: .75; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.15); }
}

.ep-twinkle {
  position: absolute;
  z-index: 1;
  color: #d4af37;
  pointer-events: none;
  line-height: 1;
  text-shadow: 0 0 10px rgba(212,175,55,1), 0 0 20px rgba(106,34,197,.5);
  animation: ep-twinkle 3s ease-in-out infinite;
}

.ep-twinkle--bright {
  color: #fff8e7;
  text-shadow: 0 0 12px rgba(255,255,255,1), 0 0 24px rgba(212,175,55,.8);
}

@keyframes ep-twinkle {
  0%, 100% { opacity: .15; transform: scale(.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.25) rotate(18deg); }
}

.ep-home-hero__media-glow {
  background:
    radial-gradient(circle at 50% 45%, rgba(106,34,197,.75), transparent 55%),
    linear-gradient(135deg, rgba(106,34,197,.55), rgba(196,151,77,.25)) !important;
  filter: blur(34px) !important;
  opacity: .9 !important;
  animation: ep-hero-glow-pulse 4.5s ease-in-out infinite;
}

.ep-home-hero__frame {
  box-shadow:
    0 0 0 1px rgba(212,175,55,.35),
    0 0 40px rgba(106,34,197,.55),
    0 25px 50px rgba(88,28,135,.65) !important;
}

.ep-featured-services {
  position: relative;
  overflow: hidden;
}

.ep-falling-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ep-falling-star {
  position: absolute;
  top: -5%;
  color: #d4af37;
  line-height: 1;
  opacity: 0;
  text-shadow: 0 0 8px rgba(212,175,55,1), 0 0 16px rgba(212,175,55,.6);
  animation: ep-falling-star-drift linear infinite;
  will-change: top, opacity, transform;
}

.ep-falling-star--bright {
  color: #fff8e7;
  text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 18px rgba(212,175,55,.8);
}

@keyframes ep-falling-star-drift {
  0% { top: -5%; transform: translateX(0) rotate(0deg) scale(.6); opacity: 0; }
  8% { opacity: 1; }
  85% { opacity: .7; }
  100% { top: 105%; transform: translateX(var(--star-drift, 10px)) rotate(24deg) scale(1); opacity: 0; }
}

.ep-featured-services .ep-container {
  position: relative;
  z-index: 1;
}

.ep-glow-card,
.ep-service-card.ep-glow-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 2px solid #0a0612 !important;
  background: #3b0764 !important;
  animation: ep-card-glow-pulse 3s ease-in-out infinite;
}

.ep-glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(212,175,55,.2) 0%, transparent 40%, transparent 60%, rgba(106,34,197,.25) 100%);
  pointer-events: none;
  z-index: 0;
}

.ep-glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
  animation: ep-starfield 6s ease-in-out infinite alternate;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,.9), transparent),
    radial-gradient(1px 1px at 28% 62%, rgba(212,175,55,.95), transparent),
    radial-gradient(1.5px 1.5px at 44% 32%, rgba(255,255,255,.75), transparent),
    radial-gradient(1px 1px at 72% 22%, rgba(255,255,255,.8), transparent),
    radial-gradient(1px 1px at 86% 54%, rgba(212,175,55,.9), transparent);
}

.ep-glow-card > * {
  position: relative;
  z-index: 1;
}

@keyframes ep-card-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 24px rgba(212,175,55,.45),
      0 0 48px rgba(106,34,197,.55),
      inset 0 0 30px rgba(212,175,55,.08);
  }
  50% {
    box-shadow:
      0 0 36px rgba(212,175,55,.7),
      0 0 72px rgba(106,34,197,.75),
      inset 0 0 40px rgba(212,175,55,.14);
  }
}

@keyframes ep-starfield {
  from { opacity: .35; transform: scale(1); }
  to { opacity: .7; transform: scale(1.02); }
}

.ep-about-photo {
  animation: ep-card-glow-pulse 3s ease-in-out infinite;
}

/* Nav login + footer connect extras */
.ep-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ep-nav__auth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.5rem;
}

.ep-nav__login {
  padding: 0.45rem 1rem !important;
  font-size: 0.9rem;
  white-space: nowrap;
}

.ep-nav__account,
.ep-nav__logout {
  color: #fff;
  font-size: 0.9rem;
}

.ep-nav__account:hover,
.ep-nav__logout:hover { color: var(--ep-gold); }

.ep-footer__grid {
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr !important;
}

.ep-footer__connect {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ep-footer__connect .ep-social {
  margin: 0;
  gap: 1rem;
}

.ep-footer__newsletter-title {
  margin: 0 0 1rem !important;
  font-size: 1.25rem !important;
}

.ep-footer__connect > h3:first-child {
  margin: 0 0 1.25rem !important;
  font-size: 1.25rem !important;
}

.ep-footer__connect-block h3 {
  margin: 0 0 1.25rem !important;
  font-size: 1.25rem !important;
}

.ep-footer__connect-block .ep-footer__newsletter-title {
  margin: 0 0 1rem !important;
}

.ep-social__link {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid #c4974d;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  text-transform: none;
  font-weight: 400;
  transition: background 0.2s ease;
}

.ep-social__link:hover {
  background: rgba(196, 151, 77, 0.1);
  color: #fff;
}

.ep-social__icon {
  width: 1rem;
  height: 1rem;
  display: block;
}

.ep-social__mark {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.ep-footer__brand-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ep-footer__logo {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}

.ep-footer__name {
  color: #c4974d !important;
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin: 0;
}

.ep-footer__tagline {
  color: #c4974d !important;
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  margin: 0.2rem 0 0;
}

.ep-footer__phone {
  color: #c4974d !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem !important;
  font-weight: 500;
}

.ep-footer h3 {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  margin: 0 0 1.1rem;
}

.ep-newsletter--footer {
  width: 100%;
}

.ep-newsletter__row {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.ep-newsletter--footer input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem 0 0 0.375rem;
  border: 1px solid #374151;
  border-right: 0;
  background: #0d0d14;
  color: #fff;
  font-size: 0.875rem;
}

.ep-newsletter--footer input::placeholder {
  color: #6b7280;
}

.ep-newsletter--footer input:focus {
  outline: none;
  border-color: #4b5563;
}

.ep-newsletter__submit {
  flex: 0 0 auto;
  white-space: nowrap;
  border: none;
  border-radius: 0 0.375rem 0.375rem 0;
  background: #6B21A8;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.ep-newsletter__submit:hover {
  opacity: 0.9;
}

.ep-newsletter .ep-btn--gold,
.ep-btn.ep-btn--gold {
  border-radius: 0.45rem;
  background: #c4974d;
  color: #fff;
  border: none;
  padding: 0.75rem 1rem;
  font-weight: 600;
}

/* Contact page — React match */
.ep-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.ep-contact-glow-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #2e1065;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 0.9rem;
  padding: 2rem;
  animation: ep-contact-glow-pulse 3s ease-in-out infinite;
}

.ep-contact-glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(212,175,55,.2) 0%, transparent 40%, transparent 60%, rgba(106,34,197,.25) 100%);
  pointer-events: none;
  z-index: 0;
}

.ep-contact-glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,.9), transparent),
    radial-gradient(1px 1px at 28% 62%, rgba(212,175,55,.95), transparent),
    radial-gradient(1.5px 1.5px at 44% 32%, rgba(255,255,255,.75), transparent),
    radial-gradient(1px 1px at 70% 22%, rgba(212,175,55,.85), transparent),
    radial-gradient(1.5px 1.5px at 82% 70%, rgba(255,255,255,.8), transparent);
  opacity: .85;
}

@keyframes ep-contact-glow-pulse {
  0%, 100% {
    box-shadow: 0 0 24px rgba(212,175,55,.45), 0 0 48px rgba(106,34,197,.55), inset 0 0 30px rgba(212,175,55,.08);
  }
  50% {
    box-shadow: 0 0 36px rgba(212,175,55,.7), 0 0 72px rgba(106,34,197,.75), inset 0 0 40px rgba(212,175,55,.14);
  }
}

.ep-contact-star {
  position: absolute;
  z-index: 1;
  color: rgba(212,175,55,.75);
  animation: ep-twinkle 2.8s ease-in-out infinite;
  pointer-events: none;
}

.ep-contact-star--bright { color: #f6e7b2; }

.ep-contact-glow-card__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
}

.ep-contact-glow-card__inner h2 {
  color: var(--ep-gold);
  font-size: 1.25rem;
  margin: 0 0 .4rem;
}

.ep-contact-glow-card__inner p {
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

.ep-contact-glow-card__inner a { color: #fff; }
.ep-contact-phone-icon { color: #c4974d; margin-right: .35rem; }

.ep-contact-form {
  background: #000;
  border: 1px solid rgba(126, 34, 206, 0.55);
  border-radius: 0.9rem;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.ep-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ep-contact-form h2 {
  color: var(--ep-gold);
  margin: 0 0 .25rem;
  font-size: 1.25rem;
}

.ep-contact-form input,
.ep-contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(126, 34, 206, 0.55);
  background: #2e1065;
  color: #fff;
}

.ep-contact-form input::placeholder,
.ep-contact-form textarea::placeholder {
  color: #c4b5fd;
}

.ep-contact-form__status { margin: 0; }
.ep-contact-form__status--success { color: #c4974d; }
.ep-contact-form__status--error { color: #f87171; }

.ep-contact-map { margin-top: 3rem; }
.ep-contact-map h2 {
  color: var(--ep-gold);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.ep-contact-map__frame {
  height: 16rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(126, 34, 206, 0.55);
}
.ep-contact-map__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--ep-gold);
  font-size: 0.9rem;
}

/* Shop */
.ep-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.ep-product-card {
  background: #2e1065;
  border: 1px solid rgba(126, 34, 206, 0.55);
  border-radius: 0.9rem;
  overflow: hidden;
}

.ep-product-card__media {
  height: 12rem;
  background: linear-gradient(135deg, #4c1d95, #000);
  display: grid;
  place-items: center;
}

.ep-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-product-card__emoji { font-size: 3rem; }

.ep-product-card__body { padding: 1.35rem; }
.ep-product-card__cat {
  color: #c4b5fd;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ep-product-card h2 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0.35rem 0;
}
.ep-product-card p { color: #9ca3af; font-size: 0.9rem; }
.ep-product-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ep-product-card__price {
  color: var(--ep-gold);
  font-size: 1.25rem;
  font-weight: 700;
}

.ep-product-card [data-ep-add-cart].is-added {
  background: #166534 !important;
  border-color: #86efac !important;
}

.ep-shop-page__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.ep-shop-page__top .ep-page-title,
.ep-shop-page__top .ep-page-intro {
  margin-bottom: 0.35rem;
}

.ep-shop-basket-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background:
    linear-gradient(165deg, rgba(46, 16, 101, 0.9), rgba(10, 10, 14, 0.95));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ep-shop-basket-link:hover {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.ep-shop-basket-link__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.14);
  color: var(--ep-gold);
}

.ep-shop-basket-link__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.ep-shop-basket-link__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.ep-shop-basket-link__text strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.ep-shop-basket-link__text span {
  font-size: 0.78rem;
  color: var(--ep-muted);
}

.ep-shop-basket-link__total {
  color: var(--ep-gold);
  font-size: 1rem;
  margin-left: 0.25rem;
}

.ep-shop-add-status {
  color: #86efac;
  font-size: 0.92rem;
  margin: 0 0 1rem;
}

.ep-shop-basket-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a227, #e0b84a 45%, #c9a227);
  color: #1a1028;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.35);
  animation: ep-basket-fab-in 0.35s ease both;
}

.ep-shop-basket-fab:hover {
  opacity: 1;
  color: #1a1028;
  filter: brightness(1.04);
}

.ep-shop-basket-fab svg {
  width: 1.15rem;
  height: 1.15rem;
}

.ep-shop-basket-fab__badge {
  position: absolute;
  top: -0.35rem;
  left: -0.15rem;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #2e1065;
  color: #fff;
  font-size: 0.72rem;
  display: grid;
  place-items: center;
  border: 2px solid rgba(212, 175, 55, 0.8);
}

@keyframes ep-basket-fab-in {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ep-basket-page__inner {
  max-width: 720px;
}

.ep-basket-page__back {
  margin: 0 0 1rem;
}

.ep-basket-page__back a {
  color: var(--ep-gold);
  font-weight: 600;
}

.ep-basket--page {
  margin-top: 0;
}

.ep-basket__title {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.15;
}

.ep-basket__edit {
  text-decoration: none;
}

.ep-basket__edit:hover {
  opacity: 1;
}

.ep-basket__empty a {
  color: var(--ep-gold);
  font-weight: 600;
}

.ep-basket__pay h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.1rem;
}

@media (max-width: 720px) {
  .ep-shop-page__top {
    flex-direction: column;
  }

  .ep-shop-basket-link {
    width: 100%;
  }
}

/* Payment basket — mystic checkout panel */
.ep-basket {
  margin-top: 3rem;
  padding: 1.4rem 1.35rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(212, 175, 55, 0.1), transparent 45%),
    linear-gradient(165deg, rgba(46, 16, 101, 0.92), rgba(10, 10, 14, 0.97));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  animation: ep-basket-in 0.45s ease both;
}

@keyframes ep-basket-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.ep-basket__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.ep-basket__heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.ep-basket__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--ep-gold);
  flex-shrink: 0;
}

.ep-basket__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.ep-basket__heading h2,
.ep-basket__title {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.15;
}

.ep-basket__count {
  margin: 0.15rem 0 0;
  color: var(--ep-muted);
  font-size: 0.86rem;
}

.ep-basket__edit {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--ep-gold);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.ep-basket__edit:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #ffe08a;
}

.ep-basket__edit svg {
  width: 0.95rem;
  height: 0.95rem;
}

.ep-basket__status {
  color: #86efac;
  font-size: 0.9rem;
  margin: 0 0 0.75rem;
}

.ep-basket__items {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.ep-basket__empty {
  margin: 0;
  padding: 1.1rem 0.5rem;
  text-align: center;
  color: var(--ep-muted);
}

.ep-basket__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: ep-basket-item-in 0.28s ease both;
}

@keyframes ep-basket-item-in {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}

.ep-basket__thumb-wrap {
  width: 64px;
  height: 64px;
  border-radius: 0.7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ep-basket__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ep-basket__thumb--empty {
  display: grid;
  place-items: center;
  color: rgba(212, 175, 55, 0.55);
  font-size: 1.15rem;
}

.ep-basket__meta {
  min-width: 0;
}

.ep-basket__meta h3 {
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.25;
}

.ep-basket__cat {
  margin: 0.2rem 0 0;
  color: var(--ep-muted);
  font-size: 0.82rem;
}

.ep-basket__unit {
  margin: 0.35rem 0 0;
  color: var(--ep-gold);
  font-size: 0.92rem;
  font-weight: 700;
}

.ep-basket__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.ep-basket__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.6rem;
  background: rgba(10, 6, 20, 0.55);
  overflow: hidden;
}

.ep-basket__qty-btn {
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  background: transparent;
  color: var(--ep-gold);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ep-basket__qty-btn:hover {
  background: rgba(212, 175, 55, 0.14);
}

.ep-basket__qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.ep-basket__trash {
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: #f0a0b0;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.ep-basket__trash:hover {
  background: rgba(240, 120, 140, 0.14);
  color: #ffc0cc;
}

.ep-basket__trash svg {
  width: 1rem;
  height: 1rem;
}

.ep-basket__line-total {
  color: #fff;
  font-size: 0.92rem;
}

.ep-basket__summary {
  display: grid;
  gap: 0.45rem;
  margin: 0.15rem 0 1rem;
}

.ep-basket__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--ep-muted);
}

.ep-basket__line strong {
  color: #fff;
  font-weight: 600;
}

.ep-basket__line--discount strong {
  color: #7ddea0;
}

.ep-basket__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  font-style: normal;
  vertical-align: middle;
  color: var(--ep-muted);
  cursor: help;
}

.ep-basket__line--total {
  margin-top: 0.35rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: baseline;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.ep-basket__line--total strong {
  color: var(--ep-gold);
  font-size: 1.4rem;
}

.ep-basket__form {
  display: grid;
  gap: 0.85rem;
}

.ep-basket__promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}

.ep-basket__promo-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.95rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 6, 20, 0.62);
}

.ep-basket__promo-field svg {
  width: 1rem;
  height: 1rem;
  color: var(--ep-muted);
  flex-shrink: 0;
}

.ep-basket__promo-field input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0.85rem 0;
  font: inherit;
  outline: none;
}

.ep-basket__promo-field input::placeholder {
  color: rgba(244, 236, 255, 0.45);
}

.ep-basket__promo-btn {
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 0.75rem;
  background: rgba(212, 175, 55, 0.14);
  color: var(--ep-gold);
  font: inherit;
  font-weight: 700;
  padding: 0 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ep-basket__promo-btn:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.55);
}

.ep-basket__promo-note {
  margin: -0.35rem 0 0;
  min-height: 1.1rem;
  font-size: 0.84rem;
}

.ep-basket__promo-note.is-ok { color: #7ddea0; }
.ep-basket__promo-note.is-warn { color: #fbbf24; }

.ep-basket__fields {
  display: grid;
  gap: 0.65rem;
}

.ep-basket__fields input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 6, 20, 0.62);
  color: #fff;
  padding: 0.85rem 1rem;
  font: inherit;
}

.ep-basket__fields input:focus {
  outline: 2px solid rgba(212, 175, 55, 0.45);
  outline-offset: 1px;
}

.ep-basket__pay h3,
.ep-basket__pay h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.1rem;
}

.ep-basket .ep-hostinger-pay {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.ep-basket .ep-hostinger-pay__label,
.ep-basket .ep-hostinger-pay__sub {
  display: none;
}

.ep-basket .ep-hostinger-pay__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.ep-basket .ep-hostinger-pay__card {
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 6, 20, 0.45);
  min-height: 3.4rem;
}

.ep-basket .ep-hostinger-pay__option input:checked + .ep-hostinger-pay__card {
  border-color: rgba(212, 175, 55, 0.8);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.28);
}

.ep-basket .ep-hostinger-pay__hint {
  margin: 0.75rem 0 0;
}

.ep-basket__pay-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #c9a227, #e0b84a 45%, #c9a227);
  color: #1a1028;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  padding: 1rem 1.15rem;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ep-basket__pay-btn:hover:not(:disabled) {
  filter: brightness(1.05);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.38);
  transform: translateY(-1px);
}

.ep-basket__pay-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.ep-basket__pay-lock {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.ep-basket__pay-label {
  flex: 1;
  text-align: left;
}

.ep-basket__pay-amount {
  font-size: 1.12rem;
}

.ep-basket__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.15rem;
  padding: 0.85rem 0.7rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ep-basket__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
}

.ep-basket__trust-item svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--ep-gold);
}

.ep-basket__trust-item strong {
  display: block;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.2;
}

.ep-basket__trust-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--ep-muted);
  line-height: 1.25;
}

.ep-shop-note { color: #6b7280; font-size: 0.85rem; }
.ep-shop-flash { color: #c4974d; }
.ep-shop-flash--error { color: #f87171; }

@media (max-width: 640px) {
  .ep-basket__item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .ep-basket__controls {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .ep-basket .ep-hostinger-pay__grid {
    grid-template-columns: 1fr;
  }

  .ep-basket__trust {
    grid-template-columns: 1fr;
  }

  .ep-basket__promo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .ep-contact-layout,
  .ep-shop-grid {
    grid-template-columns: 1fr;
  }
}

.ep-newsletter input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.4rem;
  border: 1px solid #374151;
  background: #12121a;
  color: #fff;
}

.ep-newsletter__status {
  color: #c4974d;
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
}

.ep-payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.ep-payment-icons__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 1.75rem;
  min-width: 2.75rem;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  line-height: 1;
}

.ep-payment-icons__badge--amex {
  background: #016FD0;
  padding: 0;
  overflow: hidden;
}

.ep-payment-icons__svg {
  display: block;
  width: 2rem;
  height: 1rem;
}

.ep-payment-icons__badge--mastercard .ep-payment-icons__svg {
  width: 2.1rem;
  height: 1.15rem;
}

.ep-payment-icons__badge--paypal .ep-payment-icons__svg {
  width: 1.35rem;
  height: 1.35rem;
}

.ep-payment-icons__badge--apple .ep-payment-icons__svg,
.ep-payment-icons__badge--google .ep-payment-icons__svg {
  width: 2.75rem;
  height: 1.1rem;
}

.ep-payment-icons__badge--amex .ep-payment-icons__svg {
  width: 2.75rem;
  height: 1.75rem;
}

.ep-auth {
  max-width: 28rem;
  margin: 0 auto;
  padding: 3rem 0;
}

.ep-auth__title {
  text-align: center;
  color: var(--ep-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  margin: 0 0 2rem;
}

.ep-auth__form {
  display: grid;
  gap: 1rem;
}

.ep-auth__form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(126, 34, 206, 0.55);
  background: #2e1065;
  color: #fff;
}

.ep-auth__submit { width: 100%; }

.ep-auth__switch {
  text-align: center;
  color: #9ca3af;
  margin-top: 1.5rem;
}

.ep-auth__switch a { color: var(--ep-gold); }

.ep-auth__flash {
  text-align: center;
  margin-bottom: 1rem;
}

.ep-auth__flash--error { color: #f87171; }
.ep-auth__flash--success { color: #c4974d; }

.ep-auth__note {
  text-align: center;
  color: #9ca3af;
  font-size: 0.92rem;
  margin: -1rem 0 1.5rem;
  line-height: 1.45;
}

.ep-auth__wp-admin a {
  color: #d8b4fe;
  font-size: 0.9rem;
}

.ep-owner-frontbar {
  position: sticky;
  top: 0;
  z-index: 100000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, #4c1d95, #6a22c5 60%, #1a0b2e);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  font-size: 0.82rem;
}

.ep-owner-frontbar__label {
  color: #f6e7b2;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-right: 0.15rem;
}

.ep-owner-frontbar__group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.35rem 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ep-owner-frontbar__group--add {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
}

.ep-owner-frontbar__group-label {
  color: #f6e7b2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 0.25rem;
}

.ep-owner-frontbar a {
  color: #fff;
  text-decoration: none;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  white-space: nowrap;
}

.ep-owner-frontbar a:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.55);
  color: #fff;
}

.ep-owner-frontbar__add {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.55) !important;
  color: #f6e7b2 !important;
  font-weight: 600;
}

.ep-owner-frontbar__add:hover {
  background: rgba(212, 175, 55, 0.35) !important;
  color: #fff !important;
}

.ep-owner-frontbar__dash {
  background: rgba(255, 255, 255, 0.08);
}

.ep-owner-frontbar__group--meta {
  margin-left: auto;
  background: rgba(0, 0, 0, 0.28);
}

.ep-owner-frontbar__btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font: inherit;
  font-size: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.ep-owner-frontbar__btn:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.55);
}

.ep-owner-frontbar__logout {
  background: rgba(248, 113, 113, 0.16) !important;
  border-color: rgba(248, 113, 113, 0.45) !important;
  color: #fecaca !important;
  font-weight: 600;
}

.ep-owner-frontbar__logout:hover {
  background: rgba(248, 113, 113, 0.28) !important;
  color: #fff !important;
}

body.admin-bar .ep-owner-frontbar {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .ep-owner-frontbar {
    top: 46px;
  }
}

/* Floating Owner+ quick menu (mobile + always available) */
.ep-owner-fab {
  position: fixed !important;
  right: 1rem;
  bottom: 1.25rem;
  left: auto;
  top: auto;
  z-index: 100002 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  touch-action: none;
  user-select: none;
}

.ep-owner-fab.is-dragging {
  opacity: 0.94;
}

.ep-owner-fab__toggle,
.ep-owner-fab__restore {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08rem;
  border: 1px solid rgba(212, 175, 55, 0.65);
  background: linear-gradient(145deg, #6a22c5, #4c1d95);
  color: #f6e7b2;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  cursor: grab;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  line-height: 1.15;
  font-family: inherit;
}

.ep-owner-fab.is-dragging .ep-owner-fab__toggle,
.ep-owner-fab.is-dragging .ep-owner-fab__restore {
  cursor: grabbing;
}

.ep-owner-fab__label {
  font-size: 0.95rem;
}

.ep-owner-fab__drag-hint {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
  font-weight: 600;
}

.ep-owner-fab__restore {
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.92;
}

.ep-owner-fab__toggle.is-open,
.ep-owner-fab__toggle:hover,
.ep-owner-fab__restore:hover {
  background: linear-gradient(145deg, #7c2ddb, #5b21b6);
  color: #fff;
}

.ep-owner-fab__menu {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 11.5rem;
  padding: 0.55rem;
  border-radius: 0.85rem;
  background: #12081f;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.ep-owner-fab__menu.is-open {
  display: flex;
}

.ep-owner-fab__menu[hidden] {
  display: none !important;
}

.ep-owner-fab__toggle[hidden],
.ep-owner-fab__restore[hidden],
.ep-owner-frontbar[hidden] {
  display: none !important;
}

.ep-owner-fab__menu a,
.ep-owner-fab__menu .ep-owner-fab__action {
  color: #f3f4f6;
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.86rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.ep-owner-fab__menu a:hover,
.ep-owner-fab__menu .ep-owner-fab__action:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.45);
  color: #f6e7b2;
}

.ep-owner-fab__logout {
  background: rgba(248, 113, 113, 0.12) !important;
  border-color: rgba(248, 113, 113, 0.4) !important;
  color: #fecaca !important;
  font-weight: 600;
}

.ep-owner-fab__logout:hover {
  background: rgba(248, 113, 113, 0.22) !important;
  color: #fff !important;
}

body.ep-owner-tools-minimized .ep-owner-frontbar,
.ep-owner-fab.is-minimized .ep-owner-fab__toggle,
.ep-owner-fab.is-minimized .ep-owner-fab__menu {
  display: none !important;
}

.ep-owner-fab.is-minimized .ep-owner-fab__restore {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

body.ep-live-edit-mode .ep-owner-fab:not(.is-moved) {
  right: calc(min(420px, 100vw) + 0.75rem);
}

@media (max-width: 700px) {
  .ep-owner-frontbar__group-label {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .ep-footer__grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .ep-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ep-owner-frontbar a.is-active {
  background: rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.7);
  color: #f6e7b2;
}

/* Front-end Live Page Editor panel */
.ep-live-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100001;
  width: min(420px, 100vw);
  height: 100vh;
  overflow: auto;
  background: #12081f;
  border-left: 1px solid rgba(212, 175, 55, 0.45);
  color: #fff;
  padding: 1rem 1rem 5rem;
  box-shadow: -12px 0 40px rgba(0,0,0,.45);
}

body.admin-bar .ep-live-panel { top: 32px; height: calc(100vh - 32px); }
@media (max-width: 782px) {
  body.admin-bar .ep-live-panel { top: 46px; height: calc(100vh - 46px); }
}

.ep-live-panel.is-collapsed {
  transform: translateX(110%);
}

.ep-live-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.ep-live-panel__head strong {
  color: #f6e7b2;
  font-size: 1rem;
}

.ep-live-panel__exit {
  color: #c4b5fd;
  text-decoration: none;
  font-size: 0.85rem;
}

.ep-live-panel__saved {
  background: rgba(196, 151, 77, 0.18);
  border: 1px solid rgba(196, 151, 77, 0.55);
  color: #f6e7b2;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
}

.ep-live-panel__hint {
  color: #9ca3af;
  font-size: 0.85rem;
}

.ep-live-panel__form label {
  display: grid;
  gap: 0.3rem;
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  color: #d1d5db;
}

.ep-live-panel__form input[type="text"],
.ep-live-panel__form input[type="date"],
.ep-live-panel__form textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.4rem;
  border: 1px solid #374151;
  background: #1a1028;
  color: #fff;
}

.ep-live-panel__form details {
  margin: 0 0 1rem;
  border: 1px solid #2a2040;
  border-radius: 0.5rem;
  padding: 0.55rem 0.7rem;
  background: #0d0718;
}

.ep-live-panel__form summary {
  cursor: pointer;
  color: #f6e7b2;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.ep-live-panel__colors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.ep-live-panel__check {
  display: flex !important;
  align-items: center;
  gap: 0.45rem;
  grid-template-columns: none !important;
}

.ep-live-panel__event {
  display: grid;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.55rem;
  border: 1px dashed #374151;
  border-radius: 0.45rem;
}

.ep-live-panel__save {
  width: 100%;
  border: none;
  border-radius: 0.45rem;
  background: #c4974d;
  color: #111;
  font-weight: 700;
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.ep-live-panel__links {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.ep-live-panel__links a {
  color: #c4b5fd;
  font-size: 0.85rem;
}

.ep-live-panel__toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100002;
  border: 1px solid rgba(212,175,55,.7);
  background: #6a22c5;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

body.ep-live-edit-mode {
  padding-right: min(420px, 100vw);
}

@media (max-width: 900px) {
  body.ep-live-edit-mode {
    padding-right: 0;
  }
  .ep-live-panel {
    width: 100vw;
  }
}

@media (max-width: 640px) {
  .ep-footer__grid {
    grid-template-columns: 1fr !important;
  }
}

/* Page Studio — owner colors, gallery, monthly events, PDF flyers */
.ep-page-studio {
  margin-top: 2rem;
  color: var(--ep-page-text, var(--ep-text));
}

.ep-page-studio__intro {
  color: var(--ep-page-muted, var(--ep-muted));
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 42rem;
}

.ep-page-studio__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}

.ep-page-studio__media {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(126, 34, 206, 0.45);
  background: var(--ep-page-surface, #2e1065);
}

.ep-page-studio__media img,
.ep-page-studio__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ep-page-studio__events,
.ep-page-studio__flyers {
  margin-top: 2.5rem;
}

.ep-page-studio__events h2,
.ep-page-studio__flyers h2 {
  color: var(--ep-page-gold, var(--ep-gold));
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 1rem;
}

.ep-page-studio__event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ep-page-studio__event {
  background: var(--ep-page-surface, #2e1065);
  border: 1px solid rgba(126, 34, 206, 0.5);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.ep-page-studio__event h3 {
  color: var(--ep-page-text, #fff);
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.ep-page-studio__event-meta {
  color: var(--ep-page-gold, var(--ep-gold));
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.ep-page-studio__event p {
  color: var(--ep-page-muted, #9ca3af);
  margin: 0;
}

.ep-page-studio__flyers ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ep-page-studio__flyers .ep-btn {
  display: inline-block;
}

@media (max-width: 700px) {
  .ep-page-studio__gallery,
  .ep-page-studio__event-grid {
    grid-template-columns: 1fr;
  }
}


/* Upcoming Events bar — syncs with owner Class Events */
.ep-upcoming {
  background: linear-gradient(90deg, rgba(11, 7, 21, 0.98), rgba(26, 16, 40, 0.96));
  border-top: 1px solid rgba(196, 151, 77, 0.35);
  border-bottom: 1px solid rgba(196, 151, 77, 0.35);
  margin: 2.5rem 0 0;
}

.ep-upcoming__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 0.85rem 0;
}

.ep-upcoming__head {
  display: grid;
  gap: 0.15rem;
  min-width: 8.5rem;
}

.ep-upcoming__eyebrow {
  color: #c4974d;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ep-upcoming__title {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.ep-upcoming__track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.ep-upcoming__card {
  flex: 0 0 auto;
  min-width: 13.5rem;
  max-width: 16rem;
  background: rgba(18, 8, 31, 0.9);
  border: 1px solid rgba(126, 34, 206, 0.4);
  border-radius: 0.55rem;
  padding: 0.7rem 0.85rem;
  display: grid;
  gap: 0.25rem;
}

.ep-upcoming__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: #c4974d;
  font-size: 0.75rem;
}

.ep-upcoming__name {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  line-height: 1.3;
}

.ep-upcoming__name:hover { color: #f6e7b2; }

.ep-upcoming__loc {
  color: #9ca3af;
  font-size: 0.75rem;
}

.ep-upcoming__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.ep-upcoming__link,
.ep-upcoming__flyer {
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.ep-upcoming__link { color: #c4b5fd; }
.ep-upcoming__flyer {
  color: #0b0715;
  background: #c4974d;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
}

.ep-upcoming__flyer:hover { opacity: 0.9; color: #0b0715; }

.ep-upcoming__all {
  color: #c4974d;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.ep-upcoming__all:hover { color: #f6e7b2; }

@media (max-width: 900px) {
  .ep-upcoming__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Event payment + Hostinger checkout */
.ep-event-pay {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(196, 151, 77, 0.35);
  border-radius: 0.75rem;
  background: linear-gradient(160deg, rgba(42, 24, 72, 0.85), rgba(12, 8, 22, 0.95));
}
.ep-event-pay__title {
  margin: 0 0 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
  color: #f6e7b2;
}
.ep-event-pay__price {
  color: #c4974d;
  font-weight: 700;
  margin: 0 0 1rem;
}
.ep-event-pay__form {
  display: grid;
  gap: 0.75rem;
  max-width: 28rem;
}
.ep-event-pay__form label {
  display: grid;
  gap: 0.35rem;
  color: #d1d5db;
  font-size: 0.9rem;
}
.ep-event-pay__form input,
.ep-event-pay__form select {
  padding: 0.75rem 0.9rem;
  border-radius: 0.4rem;
  border: 1px solid #374151;
  background: #12121a;
  color: #fff;
}
.ep-event-pay__note,
.ep-pay-note {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-top: 0.85rem;
}
.ep-pay-landing .ep-pay-confirm {
  margin-top: 1rem;
}
.ep-alert {
  padding: 0.75rem 1rem;
  border-radius: 0.45rem;
  margin: 0.75rem 0;
}
.ep-alert--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}
.ep-alert--error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fca5a5;
}
.ep-upcoming__pay {
  color: #0b0715;
  background: #c4974d;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}
.ep-upcoming__pay:hover { opacity: 0.9; color: #0b0715; }

/* Hostinger payment options */
.ep-hostinger-pay {
  margin: 0.75rem 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(196, 151, 77, 0.28);
  border-radius: 0.75rem;
  background: rgba(18, 12, 32, 0.65);
}
.ep-hostinger-pay__label {
  margin: 0;
  color: #f6e7b2;
  font-weight: 700;
}
.ep-hostinger-pay__sub,
.ep-hostinger-pay__hint {
  margin: 0.35rem 0 0.75rem;
  color: #9ca3af;
  font-size: 0.88rem;
}
.ep-hostinger-pay__grid {
  display: grid;
  gap: 0.65rem;
}
.ep-hostinger-pay__option {
  display: block;
  cursor: pointer;
}
.ep-hostinger-pay__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ep-hostinger-pay__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.55rem;
  border: 1px solid #374151;
  background: #12121a;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ep-hostinger-pay__option input:checked + .ep-hostinger-pay__card {
  border-color: #c4974d;
  box-shadow: 0 0 0 1px rgba(196, 151, 77, 0.45);
}
.ep-hostinger-pay__icons {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border-radius: 0.35rem;
  padding: 0.25rem 0.4rem;
}
.ep-hostinger-pay__icons .ep-payment-icons__svg {
  height: 16px;
  width: auto;
  display: block;
}
.ep-hostinger-pay__name {
  color: #f3f4f6;
  font-size: 0.92rem;
  font-weight: 600;
}
.ep-hostinger-pay__embed {
  margin-top: 0.85rem;
}

.ep-event-notes {
  margin: 0.75rem 0 0;
  color: #d1d5db;
  font-size: 0.95rem;
}
