/* ==========================================================================
   ZEROMYTH BESPOKE LUXURY DESIGN SYSTEM — CORE PALETTE & ELEVATION
   Editorial Dark Luxury: Obsidian #080B09 | Champagne Gold #F5CE62 | Leaf Emerald #89C441
   Typography: Montserrat (Headings) + Space Grotesk (Mono) + Inter (Editorial Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700;1,900&family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Luxury Dark Palette */
  --color-charcoal: #080B09;
  --color-charcoal-light: #101512;
  --color-charcoal-dark: #050706;
  --color-card-surface: rgba(16, 22, 18, 0.72);
  --color-card-border: rgba(255, 255, 255, 0.08);
  --color-card-border-gold: rgba(245, 206, 98, 0.28);
  
  /* Brand Accents */
  --color-yellow: #F5CE62;
  --color-yellow-hover: #fae08f;
  --color-green: #89C441;
  --color-green-dark: #6fa630;
  --color-cream: #F5F7F5;
  --color-cream-dark: #D8DED9;
  --color-text-muted: #8E9E93;
  --color-white: #ffffff;
  
  /* Supporting */
  --color-orivana-dark: #122B20;
  --color-orivana-light: #88C999;
  --color-apricot: #FFA843;
  --color-danger: #ff5252;
  --color-success: #2ed573;
  --color-border: rgba(245, 206, 98, 0.2);
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  
  /* Typography */
  --font-brand: 'Montserrat', -apple-system, sans-serif;
  --font-display: 'Montserrat', -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.7);
  --shadow-yellow: 0 0 40px rgba(245, 206, 98, 0.2);
  --shadow-green: 0 0 40px rgba(137, 196, 65, 0.2);
  
  /* Spacing & Layout */
  --container-max: 1360px;
  --header-height: 80px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.4s var(--ease-smooth);
}

/* Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  min-height: 100vh;
  overflow-x: clip;
}

/* Custom Selection */
::selection {
  background: var(--color-yellow);
  color: var(--color-charcoal);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-yellow { color: var(--color-yellow) !important; }
.brand-green { color: var(--color-green) !important; }
.brand-charcoal { color: var(--color-charcoal) !important; }

/* Global Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons & CTA Systems */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-primary {
  background-color: var(--color-yellow);
  color: var(--color-charcoal);
  box-shadow: 0 6px 20px rgba(253, 219, 94, 0.3);
}

.btn-primary:hover {
  background-color: #fff;
  color: var(--color-charcoal);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(253, 219, 94, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-yellow);
  border: 2px solid var(--color-yellow);
}

.btn-secondary:hover {
  background-color: var(--color-yellow);
  color: var(--color-charcoal);
  transform: translateY(-3px);
}

.btn-green {
  background-color: var(--color-green);
  color: var(--color-charcoal);
  box-shadow: 0 6px 20px rgba(153, 202, 60, 0.3);
}

.btn-green:hover {
  background-color: #fff;
  color: var(--color-charcoal);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(153, 202, 60, 0.5);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(251, 248, 238, 0.35);
}

.btn-outline-white:hover {
  border-color: var(--color-cream);
  background: rgba(251, 248, 238, 0.1);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.82rem;
}

/* Floating Island Luxury Navigation Dock */
.site-header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1240px;
  height: 62px;
  z-index: 1000;
  background: rgba(8, 12, 9, 0.68);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  top: 0.75rem;
  background: rgba(8, 12, 9, 0.88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.5rem;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.05);
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  color: #A6B8AC;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--color-yellow);
  background: rgba(245, 206, 98, 0.12);
  font-weight: 600;
}

.nav-tag-lab {
  background: var(--color-green);
  color: #080B09;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.12rem 0.45rem;
  border-radius: var(--radius-pill);
  margin-left: 0.35rem;
  vertical-align: middle;
}

/* Header Utilities */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Audio Toggle */
.sound-toggle-btn {
  background: rgba(253, 219, 94, 0.1);
  border: 1px solid rgba(253, 219, 94, 0.3);
  color: var(--color-yellow);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.sound-toggle-btn:hover {
  background: rgba(253, 219, 94, 0.2);
  transform: translateY(-1px);
}

.sound-wave-icon {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 12px;
}

.sound-wave-icon span {
  width: 2px;
  height: 4px;
  background: currentColor;
  border-radius: 1px;
  transition: height 0.2s ease;
}

.sound-toggle-btn.sound-on .sound-wave-icon span:nth-child(1) { animation: soundWave 0.8s infinite ease-in-out; }
.sound-toggle-btn.sound-on .sound-wave-icon span:nth-child(2) { animation: soundWave 0.6s infinite ease-in-out 0.2s; }
.sound-toggle-btn.sound-on .sound-wave-icon span:nth-child(3) { animation: soundWave 0.9s infinite ease-in-out 0.4s; }

@keyframes soundWave {
  0%, 100% { height: 3px; }
  50% { height: 14px; }
}

/* Cart Trigger */
.cart-trigger-btn {
  background: var(--color-yellow);
  color: var(--color-charcoal);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-trigger-btn:hover {
  background: var(--color-white);
  transform: translateY(-2px);
}

.cart-badge-count {
  background: var(--color-charcoal);
  color: var(--color-yellow);
  font-size: 0.75rem;
  font-weight: 900;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-link-btn {
  color: rgba(251, 248, 238, 0.6);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(251, 248, 238, 0.2);
  transition: all 0.2s;
}

.admin-link-btn:hover {
  color: var(--color-yellow);
  border-color: var(--color-yellow);
}

/* Mobile Hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.mobile-menu-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--color-yellow);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.9rem;
  background: rgba(153, 202, 60, 0.1);
  border: 1px solid rgba(153, 202, 60, 0.25);
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.15rem;
  color: rgba(251, 248, 238, 0.75);
  max-width: 680px;
  margin: 0 auto;
}

/* Toast System */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: var(--color-charcoal-light);
  color: var(--color-cream);
  border: 1px solid var(--color-yellow);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
  animation: toastSlideIn 0.35s var(--ease-spring) forwards;
}

@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Footer Design */
.site-footer {
  background-color: var(--color-charcoal-dark);
  border-top: 1px solid rgba(253, 219, 94, 0.15);
  padding: 5rem 0 2rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand-p {
  color: rgba(251, 248, 238, 0.7);
  margin-top: 1.25rem;
  max-width: 360px;
  font-size: 0.95rem;
}

.footer-title {
  color: var(--color-yellow);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(251, 248, 238, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-yellow);
  padding-left: 4px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(253, 219, 94, 0.2);
  color: var(--color-cream);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
}

.footer-input:focus {
  border-color: var(--color-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(251, 248, 238, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(251, 248, 238, 0.5);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.orivana-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-green);
  text-decoration: none;
  font-weight: 700;
}

.orivana-badge-link:hover {
  color: #fff;
}

/* Modal Overlay Base */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 14, 7, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-charcoal);
  border: 1px solid var(--color-yellow);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-spring);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(253, 219, 94, 0.15);
  color: var(--color-yellow);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--color-yellow);
  color: var(--color-charcoal);
  transform: rotate(90deg);
}

/* Responsive Media Queries */
@media (max-width: 1180px) {
  .main-nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  .admin-link-btn { display: none !important; }
}

/* Luxury Mobile Navigation Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 340px;
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(14, 13, 7, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(253, 219, 94, 0.3);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9);
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(253, 219, 94, 0.12);
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(253, 219, 94, 0.2);
  color: var(--color-yellow);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-nav-close:hover {
  background: var(--color-yellow);
  color: #000;
  transform: rotate(90deg);
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-section-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-yellow);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mobile-nav-overlay .nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  color: rgba(251, 248, 238, 0.85);
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-nav-overlay .nav-link:hover {
  background: rgba(253, 219, 94, 0.15);
  color: var(--color-yellow);
  transform: translateX(4px);
}

.mobile-nav-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(253, 219, 94, 0.12);
  background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }
  .site-header { top: 0.5rem; width: 95%; height: 56px; }
  .header-container { padding: 0 0.85rem; }
  .brand-logo-img { height: 28px; }
  .sound-toggle-btn span#soundToggleText { display: none !important; }
  .cart-trigger-btn span { display: none !important; }
  .cart-trigger-btn .cart-badge-count { display: inline-block !important; margin-left: 0.2rem; }
  .container { padding: 0 1.25rem; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .custom-cursor, .custom-cursor-follower { display: none !important; }
}

/* ==========================================================================
   LUXURY TOAST NOTIFICATION ENGINE STYLES
   ========================================================================== */
.zm-toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
  max-width: 420px;
  width: calc(100% - 4rem);
}

.zm-toast {
  pointer-events: auto;
  background: rgba(23, 22, 11, 0.95);
  border: 1px solid var(--color-yellow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(253, 219, 94, 0.15);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: zmToastIn 0.35s var(--ease-spring) forwards;
  transition: all 0.3s ease;
}

.zm-toast.dismissing {
  animation: zmToastOut 0.3s ease forwards;
}

@keyframes zmToastIn {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes zmToastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(20px) scale(0.9); }
}

.zm-toast-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(253, 219, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
}

.zm-toast-success .zm-toast-icon-wrap {
  background: rgba(153, 202, 60, 0.15);
  color: var(--color-green);
}

.zm-toast-crunch {
  border-color: var(--color-green);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(153, 202, 60, 0.25);
}

.zm-toast-crunch .zm-toast-icon-wrap {
  background: var(--color-green);
  color: var(--color-charcoal);
}

.zm-toast-content {
  display: flex;
  flex-direction: column;
}

.zm-toast-title {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--color-yellow);
}

.zm-toast-crunch .zm-toast-title {
  color: var(--color-green);
}

.zm-toast-message {
  font-size: 0.88rem;
  color: rgba(251, 248, 238, 0.9);
  line-height: 1.35;
  margin-top: 0.15rem;
}

.zm-toast-close {
  background: transparent;
  border: none;
  color: rgba(251, 248, 238, 0.5);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.zm-toast-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.zm-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.zm-toast-progress-bar {
  height: 100%;
  background: var(--color-yellow);
  width: 100%;
  animation: zmToastProgress linear forwards;
}

.zm-toast-crunch .zm-toast-progress-bar {
  background: var(--color-green);
}

@keyframes zmToastProgress {
  from { width: 100%; }
  to { width: 0%; }
}

/* Bespoke SVG Icon Utility */
.zm-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2px;
}

.zm-icon-sm { width: 1rem; height: 1rem; }
.zm-icon-lg { width: 1.75rem; height: 1.75rem; }
.zm-icon-xl { width: 2.25rem; height: 2.25rem; }

/* ==========================================================================
   LUXURY MODALS & FORM CONTROLS (BILLION-DOLLAR DESIGN SYSTEM)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 13, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #1a190f;
  border: 1px solid rgba(253, 219, 94, 0.35);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(253, 219, 94, 0.12);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2.5rem 3rem;
  transform: translateY(20px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-cream);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}

.modal-close-btn:hover {
  background: var(--color-yellow);
  color: #000;
  border-color: var(--color-yellow);
  transform: rotate(90deg) scale(1.1);
}

/* Form Groups & Inputs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  width: 100%;
  text-align: left;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
}

.form-label {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-input, select.form-input, textarea.form-input {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #FBF8EE !important;
  border: 1px solid rgba(253, 219, 94, 0.3) !important;
  border-radius: 12px !important;
  padding: 0.85rem 1.15rem !important;
  font-size: 0.95rem !important;
  font-family: var(--font-body) !important;
  transition: all 0.25s ease !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  box-sizing: border-box !important;
  display: block !important;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23FDDB5E' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.5rem !important;
}

select.form-input option {
  background: #1a190f;
  color: #FBF8EE;
  padding: 0.5rem;
}

.form-input:focus, select.form-input:focus, textarea.form-input:focus {
  border-color: var(--color-yellow) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  outline: none !important;
  box-shadow: 0 0 15px rgba(253, 219, 94, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.form-input::placeholder {
  color: rgba(251, 248, 238, 0.35);
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .modal-content {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   TIER-1 LUXURY ADAPTIVE MAGNETIC CURSOR
   ========================================================================== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background-color: var(--color-yellow, #FDDB5E);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 0 10px rgba(245, 206, 98, 0.85);
}

.custom-cursor.visible {
  opacity: 1;
}

.custom-cursor.active {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background-color: var(--color-green, #99CA3C);
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1.5px solid rgba(245, 206, 98, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.3s ease, border-color 0.25s ease, width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), margin 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.custom-cursor-follower.visible {
  opacity: 1;
}

.custom-cursor-follower.clicking {
  border-color: var(--color-green, #99CA3C);
  background: rgba(153, 202, 60, 0.15);
}

.custom-cursor-follower.hover-link {
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border-color: #FDDB5E;
  background: rgba(245, 206, 98, 0.1);
  box-shadow: 0 0 15px rgba(245, 206, 98, 0.2);
}

.custom-cursor-follower.has-label {
  width: auto;
  min-width: 90px;
  height: 34px;
  margin: -17px 0 0 -45px;
  padding: 0 14px;
  border-radius: 9999px;
  background: rgba(8, 12, 10, 0.92);
  border-color: #FDDB5E;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(245, 206, 98, 0.35);
}

.cursor-label-text {
  font-family: 'Montserrat', var(--font-mono), sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FDDB5E;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
}

.cursor-spark-particle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #FDDB5E;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999997;
  box-shadow: 0 0 8px rgba(245, 206, 98, 1);
}


