/* ==========================================================================
   बाजीराव रोड नातूबाग मंडळ, पुणे | Bajirao Road Natubaug Mandal, Pune
   COMMON / SHARED GLOBAL STYLES
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Traditional Radiant Color Palette */
  --color-primary-dark: #2b050d; /* Deep Rich Regal Maroon */
  --color-primary: #3d0713; /* Royal Velvet Red */
  --color-primary-light: #520c1c;

  --color-surface: #360711;
  --color-surface-glass: rgba(54, 7, 17, 0.88);
  --color-surface-elevated: #450917;

  /* Shining Traditional Red & Saffron */
  --color-saffron: #ff2a4b; /* Shining Sindoor / Kumkum Red */
  --color-saffron-vibrant: #ff0838; /* Radiant Scarlet Red */
  --color-crimson: #c80028; /* Traditional Deep Crimson */

  /* Shining Traditional Orange (Bhagwa) */
  --color-orange: #ff8c00; /* Shining Royal Orange */
  --color-orange-dark: #8a3d00; /* Deep Antique Orange */
  --color-orange-glow: rgba(255, 140, 0, 0.45);

  /* Shining Radiant Gold (Suvarna) */
  --color-gold: #ffcf33; /* Bright Radiant Gold */
  --color-gold-dark: #d49b00; /* Rich Antique Gold */
  --color-gold-light: #fff3a8; /* Shimmering Pale Gold */
  --color-gold-glow: rgba(255, 207, 51, 0.45);

  --color-cream: #fff9ea; /* Traditional Resham Silk Cream */
  --color-beige: #2b1200;
  --color-beige-dark: #1f0d00;

  --color-text-dark: #fff9ea;
  --color-text-muted: #f2d5dc;
  --color-text-light: #ffffff;

  --color-border: rgba(255, 207, 51, 0.28);
  --color-border-gold: rgba(255, 207, 51, 0.55);

  --font-marathi: "Noto Sans Devanagari", "Poppins", sans-serif;
  --font-english: "Poppins", "Noto Sans Devanagari", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.45);
  --shadow-md:
    0 8px 24px rgba(0, 0, 0, 0.55), 0 0 16px rgba(255, 207, 51, 0.22);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.75), 0 0 30px rgba(255, 42, 75, 0.3);
  --shadow-gold: 0 0 22px rgba(255, 207, 51, 0.5);
  --shadow-orange: 0 0 22px rgba(255, 140, 0, 0.45);
}

/* Base Reset & Typography */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--color-primary-dark);
  background-image:
    radial-gradient(
      circle at 50% 10%,
      rgba(255, 207, 51, 0.18) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 88% 60%,
      rgba(255, 140, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 12% 80%,
      rgba(255, 42, 75, 0.16) 0%,
      transparent 45%
    );
  background-attachment: fixed;
  color: var(--color-cream);
  font-family: var(--font-english);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-cream);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
  position: relative;
}

.bg-cream {
  background-color: rgba(30, 4, 9, 0.7);
}

.bg-beige {
  background-color: var(--color-beige);
}

.bg-primary {
  background: linear-gradient(180deg, #2b0f00 0%, #5c2600 100%);
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 18px rgba(255, 207, 51, 0.35);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Divider Motif */
.divider-motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 1.25rem 0 3rem;
}

.divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold),
    transparent
  );
}

.divider-icon {
  color: var(--color-saffron);
  font-size: 1.3rem;
  text-shadow: 0 0 10px rgba(255, 42, 75, 0.6);
}

/* Top Announcement Ticker Bar */
.top-notice-bar {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1002;
  background: linear-gradient(90deg, #cc5500 0%, #a30b28 50%, #cc5500 100%);
  border-bottom: 2px solid var(--color-gold);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  padding: 6px 1.5rem;
  overflow: hidden;
  font-size: 0.88rem;
  color: #fff;
}

.notice-badge {
  background: var(--color-gold);
  color: #2b050d;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-right: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.notice-ticker {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.notice-ticker-content {
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}

/* Header & Navigation Bar */
.site-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header {
  position: relative;
  width: 100%;
  z-index: 1001;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition:
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-backdrop-filter 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.site-header-wrapper.is-scrolled .site-header,
.site-header.scrolled {
  background: rgba(35, 4, 10, 0.94) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid var(--color-border-gold) !important;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(255, 207, 51, 0.15) !important;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  margin-top: 7px;
}

.brand-logo-img {
  height: 56px;
  max-height: 56px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.85));
  transition: var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.02);
  filter: drop-shadow(0 0 12px rgba(255, 207, 51, 0.5));
}

.logo-symbol-img {
  width: 50px !important;
  height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 12px var(--color-gold-glow);
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.logo-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-cream);
  line-height: 1.2;
}

.logo-tagline {
  display: block;
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.2;
  margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
  margin-left: auto !important;
  margin-right: 1.5rem !important;
  flex-shrink: 0;
}

.nav-link {
  display: inline-flex !important;
  align-items: center;
  color: var(--color-cream);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  transition: var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-saffron), var(--color-gold));
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
  text-shadow: 0 0 12px rgba(255, 207, 51, 0.6);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher-btn {
  background: rgba(35, 4, 10, 0.4);
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.lang-switcher-btn:hover {
  background: linear-gradient(135deg, var(--color-gold), #ffb703);
  color: #2b050d;
  box-shadow: 0 0 16px var(--color-gold-glow);
}

.lang-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-saffron);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--color-gold);
  border-radius: 3px;
  transition: var(--transition-normal);
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition-normal);
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff0838 0%, #ff8c00 100%);
  color: #ffffff;
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 0 15px rgba(255, 8, 56, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ff0838 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(255, 140, 0, 0.6);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffae00 100%);
  color: #2b050d;
  font-weight: 800;
  border: 1.5px solid #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffea75 0%, #ffd700 100%);
  color: #2b050d;
  box-shadow: 0 0 25px rgba(255, 207, 51, 0.7);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: rgba(255, 207, 51, 0.12);
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-light);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: #2b050d;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: rgba(54, 7, 17, 0.85);
  border: 1px solid var(--color-border);
  color: var(--color-cream);
}

.btn-outline-dark:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Common Layout Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: var(--color-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  color: var(--color-cream);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff0838, #ffcf33, #ff8c00);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.card-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(
    135deg,
    rgba(255, 8, 56, 0.2),
    rgba(255, 140, 0, 0.2)
  );
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(255, 207, 51, 0.25);
}

.card-title {
  font-size: 1.38rem;
  margin-bottom: 0.75rem;
  color: var(--color-cream);
}

.card-text {
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

/* Common Form Controls */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-primary-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #d4c5b9;
  background-color: #fff;
  color: #2b050d;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-gold-dark);
  box-shadow: 0 0 0 3px rgba(255, 207, 51, 0.25);
}

/* Shared Footer */
.site-footer {
  background: linear-gradient(180deg, #140909 0%, #0a0404 100%) !important;
  color: #e5dac9 !important;
  position: relative !important;
  padding-top: 4.5rem !important;
  border-top: 3px solid #d4af37 !important;
  font-family: inherit;
  margin-top: auto;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffcc00, transparent);
}

.footer-top {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.1fr !important;
  gap: 2.5rem !important;
  padding-bottom: 3.5rem !important;
  border-bottom: none !important;
}

/* Footer Brand & Logo */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.footer-logo-link:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.footer-brand-logo-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.footer-desc {
  color: #c9bbae !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* Headings */
.footer-heading {
  color: #f3c257 !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.25rem !important;
  position: relative !important;
  padding-bottom: 0.5rem !important;
  letter-spacing: 0.5px !important;
}

.footer-heading::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 32px !important;
  height: 2px !important;
  background-color: #d4af37 !important;
  border-radius: 2px !important;
}

/* Navigation Links with Golden '›' Arrows */
.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.65rem !important;
}

.footer-links li a {
  color: #dcd0c0 !important;
  text-decoration: none !important;
  font-size: 0.92rem !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  padding-left: 0 !important;
}

.footer-links li a::before {
  content: "›";
  color: #d4af37;
  font-weight: bold;
  margin-right: 8px;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.footer-links li a:hover {
  color: #ffffff !important;
  transform: translateX(4px);
}

.footer-links li a:hover::before {
  transform: translateX(2px);
}

/* Contact Column */
.footer-contact-item {
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0.85rem !important;
  color: #dcd0c0 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
}

/* Social Links & Map Button */
.social-links-container {
  display: flex !important;
  gap: 0.65rem !important;
  align-items: center !important;
  margin-top: 1rem !important;
  flex-wrap: wrap !important;
}

.social-icon-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #f3c257 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.social-icon-btn:hover {
  background: #d4af37 !important;
  color: #1a0808 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35) !important;
}

.btn-outline-gold {
  display: inline-block !important;
  color: #f3c257 !important;
  border: 1px solid #d4af37 !important;
  padding: 0.55rem 1rem !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
}

.btn-outline-gold:hover {
  background: #d4af37 !important;
  color: #1a0808 !important;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25) !important;
}

/* Footer Bottom Copyright Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 1.4rem 0 !important;
  background: #070303 !important;
  font-size: 0.85rem !important;
  color: #9e9185 !important;
  text-align: center !important;
}

/* Responsive Rules for Footer */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }
  .site-footer {
    padding-top: 3.5rem !important;
  }
  .footer-brand-logo-img {
    max-width: 220px !important;
  }
}
/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff0838, #ff8c00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 18px rgba(255, 8, 56, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  border: 1.5px solid var(--color-gold);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-gold);
  color: #2b050d;
  transform: translateY(-4px);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 44px;
    max-height: 44px;
    max-width: 180px;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px); /* Adjusts for mobile browser address bars */
    background: #1f0308;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start !important; /* 👈 Fixes the empty top gap */
    padding: 1.8rem 1.5rem;
    gap: 1.2rem;
    transition: var(--transition-normal);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.9);
    border-left: 2px solid var(--color-gold);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
  }

  .nav-menu.is-active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    font-size: 1.05rem;
    padding: 4px 0;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Toast Notification Floating Popup System
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1.4rem;
  background: rgba(31, 3, 8, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-md);
  color: var(--color-cream);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.85),
    0 0 20px rgba(255, 207, 51, 0.35);
  animation: toastPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.35s ease;
  max-width: 90vw;
}

.toast-success {
  border-color: var(--color-gold);
}

.toast-error {
  border-color: var(--color-saffron);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.85),
    0 0 20px rgba(255, 42, 75, 0.4);
}

.toast span {
  font-size: 1.2rem;
  flex-shrink: 0;
}

@keyframes toastPopIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 576px) {
  .toast-container {
    bottom: 1.5rem;
    right: 1rem;
    left: 1rem;
    align-items: center;
  }
  .toast {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}
