/* ==============================================================================
   ERANIYAN PYRO PARK — LOGO-MATCHED ROYAL MAROON & GOLD FESTIVAL DESIGN
   Exact brand colors matching uploads/headerlogo.png
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --epp-maroon-dark: #1a0505;
  --epp-maroon-deep: #2a0808;
  --epp-maroon: #701010;
  --epp-maroon-bright: #881337;
  --epp-maroon-light: #991b1b;
  
  --epp-gold: #f59e0b;
  --epp-gold-bright: #fbbf24;
  --epp-gold-dark: #d97706;
  
  --epp-cream: #fef2f2;
  --epp-cream-border: #fecaca;
  
  --font-main: 'Plus Jakarta Sans', 'Outfit', -apple-system, sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: #fcf8f8;
  color: #1a0505;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==============================================================================
   LOGO COLOR MATCHED BUTTONS
   ============================================================================== */
.epp-btn-maroon {
  background: linear-gradient(135deg, #881337 0%, #701010 60%, #5a0c0c 100%);
  color: #ffffff !important;
  font-weight: 800;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(251, 191, 36, 0.4);
  box-shadow: 0 10px 20px -5px rgba(112, 16, 16, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.epp-btn-maroon:hover {
  background: linear-gradient(135deg, #991b1b 0%, #881337 100%);
  border-color: #fbbf24;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 25px -4px rgba(112, 16, 16, 0.6);
}

.epp-btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #d97706 100%);
  color: #1a0505 !important;
  font-weight: 900;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border: none;
}
.epp-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(245, 158, 11, 0.65);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1a0505 !important;
}

/* ==============================================================================
   CATEGORY PRODUCT CARDS (Warm Rose-Cream with Maroon Accents)
   ============================================================================== */
.epp-cat-card {
  background: #ffffff;
  border: 1.5px solid #fee2e2;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 15px -2px rgba(112, 16, 16, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.epp-cat-card:hover {
  transform: translateY(-6px);
  border-color: #f59e0b;
  box-shadow: 0 16px 30px -8px rgba(112, 16, 16, 0.18);
}
.epp-cat-card .img-wrapper {
  height: 180px;
  background: radial-gradient(circle at 50% 50%, #fff5f5 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}
.epp-cat-card .img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.epp-cat-card:hover .img-wrapper img {
  transform: scale(1.1);
}

.epp-cat-btn {
  background: linear-gradient(135deg, #881337 0%, #701010 100%);
  color: #ffffff !important;
  font-weight: 800;
  text-align: center;
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.epp-cat-card:hover .epp-cat-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #1a0505 !important;
}

/* ==============================================================================
   BADGES & PILLS
   ============================================================================== */
.epp-badge-maroon {
  background: #fef2f2;
  color: #701010;
  border: 1px solid #fecaca;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.epp-badge-gold {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==============================================================================
   ANIMATED 3D DIWALI SEAL
   ============================================================================== */
.epp-diwali-seal {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #4a0a0a 0%, #2a0808 60%, #1a0505 100%);
  border: 6px solid #fbbf24;
  box-shadow: 0 0 45px rgba(245, 158, 11, 0.5), inset 0 0 35px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  animation: floatSlow 4s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

.epp-marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
}

.epp-marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.5rem;
  animation: marqueeInfinite 24s linear infinite;
}

@keyframes marqueeInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==============================================================================
   CRITICAL LOGO & HEADER STYLING (PREVENTS FOUC / FLASH ON RELOAD)
   ============================================================================== */
.site-logo-img {
  height: 56px !important;
  max-height: 56px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain !important;
  display: block;
}

@media (min-width: 640px) {
  .site-logo-img {
    height: 64px !important;
    max-height: 64px !important;
    max-width: 280px !important;
  }
}

.footer-logo-img {
  height: 56px !important;
  max-height: 56px !important;
  width: auto !important;
  max-width: 240px !important;
  object-fit: contain !important;
  display: block;
}

#site-main-header {
  min-height: 80px;
  background: #ffffff;
  border-bottom: 1.5px solid #fee2e2;
  box-shadow: 0 4px 20px rgba(112, 16, 16, 0.06);
}


/* ==============================================================================
   MANDATORY WHITE FONT ON ALL DARK BACKGROUNDS
   ============================================================================== */
.bg-dark-maroon,
.bg-midnight-maroon,
[class*="bg-[#1a0505]"],
[class*="bg-[#2a0808]"],
[class*="bg-[#701010]"],
[class*="bg-[#881337]"],
[class*="bg-[#5a0c0c]"],
[class*="bg-slate-900"],
[class*="bg-slate-950"],
[class*="bg-black"],
header#site-announcement-bar,
#site-announcement-bar,
footer {
  color: #ffffff !important;
}

[class*="bg-[#1a0505]"] p,
[class*="bg-[#2a0808]"] p,
[class*="bg-[#701010]"] p,
[class*="bg-[#881337]"] p,
[class*="bg-slate-900"] p,
[class*="bg-slate-950"] p,
footer p {
  color: #ffffff !important;
}

[class*="bg-[#1a0505]"] h1, [class*="bg-[#1a0505]"] h2, [class*="bg-[#1a0505]"] h3, [class*="bg-[#1a0505]"] h4,
[class*="bg-[#2a0808]"] h1, [class*="bg-[#2a0808]"] h2, [class*="bg-[#2a0808]"] h3, [class*="bg-[#2a0808]"] h4,
[class*="bg-[#701010]"] h1, [class*="bg-[#701010]"] h2, [class*="bg-[#701010]"] h3, [class*="bg-[#701010]"] h4,
[class*="bg-[#881337]"] h1, [class*="bg-[#881337]"] h2, [class*="bg-[#881337]"] h3, [class*="bg-[#881337]"] h4,
footer h1, footer h2, footer h3, footer h4 {
  color: #ffffff !important;
}

[class*="bg-[#1a0505]"] a,
[class*="bg-[#2a0808]"] a,
[class*="bg-[#701010]"] a,
[class*="bg-[#881337]"] a,
footer a {
  color: #ffffff;
}
[class*="bg-[#1a0505]"] a:hover,
[class*="bg-[#2a0808]"] a:hover,
[class*="bg-[#701010]"] a:hover,
[class*="bg-[#881337]"] a:hover,
footer a:hover {
  color: #fbbf24 !important;
}

/* Unique WhatsApp Icon styling */
.epp-wa-icon {
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}