/* ==========================================================================
   PMM HEALTH - LUMINOUS LUXURY MEDICAL DESIGN SYSTEM
   Shiny Red Shaders, Radiant Rose Glows, High-Contrast Typography & Stable Buttons
   ========================================================================== */

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

:root {
  /* Brand Shiny Red Shaders & Gradients */
  --clr-brand-950: #1a0309;
  --clr-brand-900: #4c0519;
  --clr-brand-800: #881337;
  --clr-brand-700: #be123c;
  --clr-brand-600: #e11d48;
  --clr-brand-500: #f43f5e;
  --clr-brand-400: #fb7185;
  --clr-brand-300: #fda4af;
  --clr-brand-200: #fecdd3;
  --clr-brand-100: #ffe4e6;
  --clr-brand-50:  #fff1f2;

  /* Shiny Red Shaders */
  --grad-shiny-red: linear-gradient(135deg, #ff2d55 0%, #e11d48 40%, #be123c 80%, #881337 100%);
  --grad-shiny-red-hover: linear-gradient(135deg, #ff4d70 0%, #f43f5e 40%, #e11d48 80%, #be123c 100%);
  --grad-rose-surface: linear-gradient(145deg, #ffffff 0%, #fff5f7 50%, #feeef1 100%);
  --grad-glass-surface: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 247, 0.88) 100%);
  --grad-hero-overlay: linear-gradient(180deg, rgba(25, 4, 11, 0.45) 0%, rgba(25, 4, 11, 0.82) 80%, #fcf8f9 100%);
  --grad-footer-bg: radial-gradient(circle at 50% 0%, rgba(225, 29, 72, 0.28) 0%, transparent 65%), linear-gradient(180deg, #1c050d 0%, #110207 100%);

  /* Luminous Light Theme Backgrounds */
  --clr-body-bg: #fdfafb;
  --clr-surface-light: #ffffff;
  --clr-surface-rose: #fff5f7;
  --clr-surface-card: rgba(255, 255, 255, 0.92);
  --clr-border-light: rgba(225, 29, 72, 0.14);
  --clr-border-accent: rgba(225, 29, 72, 0.38);

  /* High Contrast Typography */
  --clr-text-title: #19050d;
  --clr-text-heading: #240915;
  --clr-text-body: #374151;
  --clr-text-muted: #6b7280;
  --clr-text-accent: #be123c;
  --clr-text-light: #ffffff;
  --clr-text-light-muted: rgba(255, 255, 255, 0.9);

  /* Fonts */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;


  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-hover: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-border-rose: rgba(225, 29, 72, 0.18);
  --glass-blur: blur(20px) saturate(180%);

  /* Elevation & Glows */
  --shadow-sm: 0 2px 8px rgba(136, 19, 55, 0.05);
  --shadow-card: 0 10px 30px -5px rgba(136, 19, 55, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
  --shadow-card-hover: 0 20px 40px -8px rgba(190, 18, 60, 0.16), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-btn: 0 6px 20px -2px rgba(225, 29, 72, 0.42), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  --shadow-btn-hover: 0 10px 28px -2px rgba(225, 29, 72, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  --shadow-glow: 0 0 30px rgba(225, 29, 72, 0.28);
  --shadow-glow-lg: 0 0 50px rgba(225, 29, 72, 0.4);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.25s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--clr-body-bg);
  background-image: 
    radial-gradient(circle at 10% 12%, rgba(254, 205, 211, 0.45) 0%, transparent 40%),
    radial-gradient(circle at 90% 40%, rgba(253, 164, 175, 0.3) 0%, transparent 45%),
    radial-gradient(circle at 30% 85%, rgba(254, 226, 230, 0.5) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--clr-text-body);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.container-narrow {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.container-wide {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

button:focus,
button:focus-visible,
button:active {
  outline: none;
  border: none;
  box-shadow: none;
}

/* ==========================================================================
   HIGH-CONTRAST TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.22;
  color: var(--clr-text-heading);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--clr-text-title);
}

h2 {
  font-size: clamp(1.45rem, 3.8vw, 2.5rem);
  font-weight: 700;
  color: var(--clr-text-heading);
}

h3 {
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  font-weight: 600;
  color: var(--clr-text-heading);
}

h4 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--clr-text-heading);
}

p {
  color: var(--clr-text-body);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, #19050d 0%, #be123c 55%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-red {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 60%, #881337 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-glow {
  text-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
}

.box-glow {
  box-shadow: 0 0 30px rgba(225, 29, 72, 0.3), inset 0 0 15px rgba(225, 29, 72, 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.28);
  border-radius: var(--radius-full);
  color: var(--clr-brand-700);
  font-size: clamp(0.74rem, 1.5vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--clr-brand-600);
  box-shadow: 0 0 10px var(--clr-brand-500);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ==========================================================================
   STABLE BUTTON SYSTEM (ZERO JITTER / ZERO GLITCH)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 46px;
  text-decoration: none;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus,
.btn:active {
  transform: none !important;
}

/* Primary: Shiny Red Shader */
.btn-primary {
  background: var(--grad-shiny-red);
  color: #ffffff !important;
  box-shadow: 0 4px 16px -2px rgba(225, 29, 72, 0.38);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  background: var(--grad-shiny-red-hover);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 22px -2px rgba(225, 29, 72, 0.52);
  transform: none !important;
}

/* Secondary: Luminous Rose Glass Button */
.btn-secondary {
  background: #ffffff;
  color: var(--clr-brand-700) !important;
  border: 1.5px solid rgba(225, 29, 72, 0.25);
  box-shadow: 0 2px 8px rgba(190, 18, 60, 0.06);
}

.btn-secondary:hover {
  background: #fff0f3;
  border-color: var(--clr-brand-600);
  color: var(--clr-brand-800) !important;
  box-shadow: 0 4px 14px rgba(190, 18, 60, 0.14);
  transform: none !important;
}

/* Outline: Crisp Crimson Border */
.btn-outline {
  background: transparent;
  color: var(--clr-brand-700) !important;
  border: 1.5px solid var(--clr-brand-600);
}

.btn-outline:hover {
  background: var(--clr-brand-700);
  color: #ffffff !important;
  border-color: var(--clr-brand-700);
  box-shadow: 0 8px 24px -4px rgba(190, 18, 60, 0.38);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.84rem;
  min-height: 38px;
}

.btn-lg {
  padding: 14px 34px;
  font-size: 1.05rem;
  min-height: 52px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ==========================================================================
   FLOATING GLASS PILL HEADER
   ========================================================================== */

/* ==========================================================================
   FLOATING GLASS PILL HEADER (PURE LUXURY FROSTED GLASS)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: clamp(14px, 2.5vh, 22px) clamp(16px, 3vw, 36px);
  background: transparent;
  border: none;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  pointer-events: auto;
  gap: 16px;
}

/* Left: Brand Pill Badge with Logo.png */
.brand-pill,
.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  height: 48px;
}

.brand-pill:hover,
.brand-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  border-color: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), inset 0 1px 1px #ffffff;
}

.brand-logo-img {
  height: 28px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.brand-pill:hover .brand-logo-img,
.brand-link:hover .brand-logo-img {
  transform: scale(1.02);
}

/* Right: Navigation Links Pill Container */
.nav-pill-container,
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  list-style: none;
}

.nav-pill-item,
.nav-item {
  position: relative;
}

.nav-pill-link,
.nav-dropdown-trigger,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: clamp(0.86rem, 1.15vw, 0.94rem);
  font-weight: 600;
  color: #1a202c;
  background: transparent;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  border: 0 !important;
  outline: none !important;
  box-shadow: none;
  font-family: inherit;
  cursor: pointer;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-pill-link:focus,
.nav-pill-link:focus-visible,
.nav-pill-link:active,
.nav-dropdown-trigger:focus,
.nav-dropdown-trigger:focus-visible,
.nav-dropdown-trigger:active {
  outline: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.nav-pill-link:hover,
.nav-link:hover,
.nav-pill-item:hover .nav-pill-link,
.nav-pill-item.active .nav-pill-link,
.nav-item.active .nav-link {
  background: rgba(255, 255, 255, 0.95);
  color: var(--clr-brand-800);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.dropdown-chevron {
  transition: transform var(--transition-fast);
  display: inline-block;
  vertical-align: middle;
}

.nav-pill-item:hover .dropdown-chevron,
.nav-item:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* Floating Dropdowns - ONLY ON HOVER */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-pill-item:hover .nav-dropdown,
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* When clicked, immediately hide and do not stay dropped down */
.nav-pill-item.is-clicked-closed .nav-dropdown,
.nav-item.is-clicked-closed .nav-dropdown {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(8px) !important;
  transition: none !important;
}

.nav-pill-item.is-clicked-closed .dropdown-chevron,
.nav-item.is-clicked-closed .dropdown-chevron {
  transform: none !important;
}

.nav-pill-item.is-clicked-closed .nav-pill-link:not(.active),
.nav-item.is-clicked-closed .nav-link:not(.active) {
  background: transparent !important;
  box-shadow: none !important;
  color: #1a202c !important;
}

.dropdown-link {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: #2d3748;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background: rgba(240, 247, 243, 0.9);
  color: var(--clr-brand-700);
  padding-left: 20px;
}

/* Mobile Toggle Glass Button */
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #111827;
  z-index: 1002;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.hamburger-icon {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger-icon span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: #111827;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-toggle.active .hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--clr-brand-700);
}

.mobile-toggle.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--clr-brand-700);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  padding: 85px 24px 40px;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  z-index: 1000;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 10px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  text-decoration: none;
}

.mobile-dropdown {
  display: none;
  list-style: none;
  padding: 8px 0 8px 14px;
  flex-direction: column;
  gap: 8px;
}

.mobile-dropdown.open {
  display: flex;
}

.mobile-dropdown a {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-brand-800);
  padding: 6px 0;
  text-decoration: none;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 18, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
}

.mobile-nav-overlay.open {
  display: block;
}

/* ==========================================================================
   HERO BANNER VIDEO & FLOATING IMAGE SLIDER (FROM OLD/Image slider.html)
   ========================================================================== */

.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(75px, 9vh, 95px) clamp(16px, 3vw, 32px) clamp(25px, 4vh, 40px);
  box-sizing: border-box;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  pointer-events: none;
}

/* Floating Image Slider Container */
.hero-slider-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 24px);
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #0a0a0a;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15);
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 10;
  padding: 0 clamp(28px, 5vw, 70px);
  max-width: 680px;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff;
  opacity: 0;
}

.hero-slide.active .hero-slide-subtitle {
  animation: heroFadeInDown 0.7s ease-out 0.2s forwards;
}

.hero-slide-title {
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 28px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
}

.hero-slide.active .hero-slide-title {
  animation: heroFadeInUp 0.8s ease-out 0.35s forwards;
}

.hero-slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 38px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff !important;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(190, 18, 60, 0.4);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  width: fit-content;
  opacity: 0;
}

.hero-slide.active .hero-slide-btn {
  animation: heroFadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-slide-btn:hover {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  box-shadow: 0 8px 25px rgba(190, 18, 60, 0.55);
  transform: none !important;
}

/* Slider Controls */
.hero-slider-arrows {
  position: absolute;
  bottom: 36px;
  left: clamp(28px, 5vw, 70px);
  z-index: 20;
  display: flex;
  gap: 14px;
}

.hero-slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.hero-slider-arrow:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.hero-slider-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-slider-nav {
  position: absolute;
  bottom: 44px;
  right: clamp(28px, 5vw, 70px);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  outline: none;
}

.hero-nav-dot.active {
  background: #ffffff;
  border-color: #ffffff;
  width: 36px;
  border-radius: 6px;
}

.hero-nav-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
}

@keyframes heroFadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Mobile Image Slider Responsiveness */
@media (max-width: 768px) {
  .hero-video-section {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 75px 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-slider-wrap {
    padding: 0;
    width: 100%;
  }

  .hero-slider-container {
    height: min(480px, calc(100dvh - 110px));
    border-radius: 16px;
  }

  .hero-slide-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.88) 100%);
  }

  .hero-slide-content {
    justify-content: flex-end;
    padding: 0 22px 85px;
  }

  .hero-slide-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .hero-slide-title {
    font-size: 25px;
    margin-bottom: 18px;
    line-height: 1.25;
  }

  .hero-slide-btn {
    padding: 12px 28px;
    font-size: 12px;
  }

  .hero-slider-arrows {
    left: 20px;
    bottom: 22px;
    gap: 10px;
  }

  .hero-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-slider-nav {
    right: 20px;
    bottom: 30px;
    gap: 8px;
  }

  .hero-nav-dot {
    width: 8px;
    height: 8px;
  }

  .hero-nav-dot.active {
    width: 26px;
  }

  /* Mobile-specific images from OLD/Image slider.html */
  .hero-slide:nth-child(1) {
    background-image: url('https://static.wixstatic.com/media/76a5e2_b153b09f6af44bae8a737bf14a511c08~mv2.png') !important;
  }
  .hero-slide:nth-child(2) {
    background-image: url('https://static.wixstatic.com/media/76a5e2_8691cdcc3c414672aa35328c57c16ea3~mv2.png') !important;
  }
  .hero-slide:nth-child(3) {
    background-image: url('https://static.wixstatic.com/media/76a5e2_071b748258654c7e981a2d1b5caa9e4b~mv2.png') !important;
  }
  .hero-slide:nth-child(4) {
    background-image: url('https://static.wixstatic.com/media/76a5e2_464c8b6dad9d4610a262454908bdc230~mv2.png') !important;
  }
  .hero-slide:nth-child(5) {
    background-image: url('https://static.wixstatic.com/media/76a5e2_de68f2017951468899ed3509e157c2a8~mv2.png') !important;
  }
}

@media (max-width: 420px) {
  .hero-slider-container {
    height: 450px;
  }
  .hero-slide-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   BUTTERFLY COMPONENT (DESKTOP ONLY, STRICTLY HIDDEN ON MOBILE)
   ========================================================================== */

#bf {
  position: absolute;
  width: 85px;
  height: 85px;
  pointer-events: none;
  z-index: 999999;
  transition: transform 0.3s ease-out;
  will-change: left, top, transform;
  display: block;
}

#bf svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

.wlt { transform-box: fill-box; transform-origin: 100% 60%; animation: flap 3s ease-in-out infinite; }
.wlb { transform-box: fill-box; transform-origin: 100% 30%; animation: flap 3s ease-in-out infinite; }
.wrt { transform-box: fill-box; transform-origin: 0% 60%; animation: flap 3s ease-in-out infinite; }
.wrb { transform-box: fill-box; transform-origin: 0% 30%; animation: flap 3s ease-in-out infinite; }
#bf.fly .wlt, #bf.fly .wlb, #bf.fly .wrt, #bf.fly .wrb { animation: flap 0.18s ease-in-out infinite; }

@keyframes flap {
  0% { transform: rotate3d(1,0,0,0deg); }
  30% { transform: rotate3d(1,0,0,-45deg); }
  50% { transform: rotate3d(1,0,0,-50deg); }
  80% { transform: rotate3d(1,0,0,20deg); }
  100% { transform: rotate3d(1,0,0,0deg); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

#bf.sit #body { animation: bob 2.5s ease-in-out infinite; }

/* HIDE BUTTERFLY STRICTLY ON MOBILE */
@media (max-width: 768px) {
  #bf {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}



.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
}

.hero-content h1 {
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   PAGE HERO (SUBPAGES)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: clamp(120px, 15vh, 150px) 0 clamp(40px, 6vh, 60px);
  background: 
    radial-gradient(circle at 50% 20%, rgba(254, 205, 211, 0.6) 0%, transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #fff0f3 100%);
  border-bottom: 1px solid rgba(225, 29, 72, 0.12);
  text-align: center;
  overflow: hidden;
}

.page-hero h1 {
  margin-bottom: 1rem;
  color: var(--clr-text-title);
}

.page-hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--clr-text-body);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-brand-700);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--clr-text-muted);
}

.breadcrumbs a:hover {
  color: var(--clr-brand-600);
}

/* ==========================================================================
   RESPONSIVE IMAGE & MEDIA SLIDER
   ========================================================================== */

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(225, 29, 72, 0.16);
  box-shadow: 0 20px 50px -10px rgba(190, 18, 60, 0.12);
}

.slider-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.slider-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide-media-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 540px;
  overflow: hidden;
  background: #000000;
}

.slide-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(20px, 4vw, 40px);
  background: linear-gradient(to top, rgba(17, 2, 7, 0.95) 0%, rgba(17, 2, 7, 0.6) 60%, transparent 100%);
  color: #ffffff;
}

.slide-title {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.slide-desc {
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(225, 29, 72, 0.25);
  color: var(--clr-brand-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: #ffffff;
  color: var(--clr-brand-600);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 14px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--clr-brand-500);
}

/* ==========================================================================
   SECTIONS, CARDS & LUMINOUS GRIDS
   ========================================================================== */

.section {
  padding-top: clamp(40px, 7vh, 80px);
  padding-bottom: clamp(40px, 7vh, 80px);
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #fff1f4 50%, #fdf5f6 100%);
  border-top: 1px solid rgba(225, 29, 72, 0.08);
  border-bottom: 1px solid rgba(225, 29, 72, 0.08);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(30px, 5vw, 50px);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 30px);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

/* Luminous Glass Cards */
.card, .card-box {
  background: #ffffff;
  border: 1px solid rgba(225, 29, 72, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.card:hover, .card-box:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 72, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--clr-brand-600);
}

/* Radiant Ambient Shaders & Glows */
.shader-bg, .bg-shader {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(254, 205, 211, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: absolute;
  width: clamp(250px, 40vw, 550px);
  height: clamp(250px, 40vw, 550px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 { top: 10%; left: 5%; }
.glow-2 { bottom: 15%; right: 5%; }

/* High-Contrast Readability Enhancements */
.text-gray-400 {
  color: #e2e8f0 !important;
}

.text-gray-300 {
  color: #f8fafc !important;
}

.text-gray-500 {
  color: #cbd5e1 !important;
}

.lead-readable-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all var(--transition-normal);
}

.lead-readable-box:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.lead-readable-box p {
  color: #f1f5f9 !important;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem) !important;
  line-height: 1.85 !important;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.lead-readable-box p:last-child {
  margin-bottom: 0;
}

.lead-readable-box strong {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.lead-readable-box em {
  color: #ff6b8b !important;
  font-style: normal !important;
  font-weight: 600 !important;
}

/* Image Frames */
.cool-frame, .premium-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.25) 0%, rgba(255, 255, 255, 0.9) 100%);
  box-shadow: 0 16px 36px -10px rgba(190, 18, 60, 0.15);
  overflow: hidden;
  max-width: 100%;
}

.cool-frame img, .premium-image-frame img {
  border-radius: calc(var(--radius-lg) - 4px);
  width: 100%;
  height: auto;
  display: block;
}

/* Process & Step Cards */
.step-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(225, 29, 72, 0.12);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.step-card:hover {
  background: #fff5f7;
  border-color: var(--clr-brand-400);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(190, 18, 60, 0.08);
}

.step-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-brand-600);
  min-width: 32px;
}

/* ==========================================================================
   BLOG MAGAZINE GRID & ARTICLE READER
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.blog-card {
  background: #ffffff;
  border: 1px solid rgba(225, 29, 72, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(136, 19, 55, 0.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--clr-brand-400);
  box-shadow: 0 8px 24px rgba(190, 18, 60, 0.12);
}

.blog-card-img,
.blog-card-img-wrap {
  aspect-ratio: 16 / 10;
  width: calc(100% - 24px);
  margin: 12px 12px 0 12px;
  border-radius: 12px;
  height: auto;
  overflow: hidden;
  background: #FAF5ED;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img img,
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img,
.blog-card:hover img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.blog-tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-brand-700);
  background: rgba(225, 29, 72, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-text-title);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: var(--clr-brand-600);
}

.blog-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--clr-text-body);
  margin-bottom: 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(225, 29, 72, 0.08);
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

/* Single Article Reader */
.post-featured-image {
  max-width: 860px;
  margin: 0 auto 36px;
  aspect-ratio: 4 / 3;
  max-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(136, 19, 55, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.14);
  background: #fff5f7;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-body {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  line-height: 1.85;
  color: #2b141e;
}

.post-body h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 36px 0 16px;
  color: var(--clr-text-title);
}

.post-body p {
  margin-bottom: 1.5rem;
  color: #374151;
}

.post-quote {
  border-left: 4px solid var(--clr-brand-600);
  padding: 20px 26px;
  margin: 28px 0;
  background: #fff1f4;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--clr-brand-900);
  font-weight: 500;
}

.post-image-frame {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(225, 29, 72, 0.14);
}

.post-image-frame figcaption {
  padding: 10px 16px;
  background: #fdf2f4;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-align: center;
}

/* ==========================================================================
   SHOP CATALOG & PRODUCT DETAILS
   ========================================================================== */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(225, 29, 72, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(136, 19, 55, 0.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--clr-brand-400);
  box-shadow: 0 8px 24px rgba(190, 18, 60, 0.12);
}

.product-card-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  width: calc(100% - 24px);
  margin: 12px 12px 0;
  border-radius: var(--radius-md);
  background: #fff5f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(225, 29, 72, 0.1);
  box-shadow: 0 2px 8px rgba(136, 19, 55, 0.05);
}

.product-card-thumb img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-thumb img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--grad-shiny-red);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
  z-index: 2;
}

.product-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-text-title);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-brand-700);
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-text-title);
}

.product-title a {
  color: inherit;
}

.product-title a:hover {
  color: var(--clr-brand-600);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-brand-700);
  margin: 12px 0 16px;
}

/* Product Detail Grid */
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-main-view {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(225, 29, 72, 0.18);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-main-view img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.product-info-panel {
  display: flex;
  flex-direction: column;
}

/* Forms */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(225, 29, 72, 0.22);
  color: #111827;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--clr-brand-600);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

/* ==========================================================================
   LUXURIOUS VELVET RED FOOTER
   ========================================================================== */

.site-footer {
  background: var(--grad-footer-bg);
  border-top: 1px solid rgba(225, 29, 72, 0.25);
  color: #ffffff !important;
  padding-top: 60px;
  padding-bottom: 30px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.site-footer p,
.site-footer span,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6,
.site-footer li,
.site-footer label {
  color: #ffffff !important;
  text-shadow: none !important;
}

.footer-newsletter-wrap {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 40px;
}

.newsletter-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box .badge {
  margin-bottom: 14px;
}

.newsletter-box h3 {
  color: #ffffff !important;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  margin-bottom: 24px;
  text-shadow: none !important;
}

/* Luxury Multi-Field Newsletter Form (Név + Email + Feliratkozás) */
.newsletter-form {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.newsletter-form:has(div) {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.newsletter-field-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 240px;
  min-width: 0;
  text-align: left;
  box-sizing: border-box;
}

.newsletter-label {
  display: block;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  padding-left: 14px;
  text-shadow: none !important;
  letter-spacing: 0.02em;
}

.newsletter-label-spacer {
  visibility: hidden;
  user-select: none;
}

.newsletter-btn-wrap {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

.newsletter-input,
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100% !important;
  height: 48px !important;
  padding: 12px 22px !important;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  font-size: 16px !important; /* Prevents iOS Safari auto-zoom */
  outline: none !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  font-family: inherit !important;
}

.newsletter-input::placeholder,
.newsletter-form input[type="text"]::placeholder,
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.9rem !important;
}

.newsletter-input:focus,
.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.35), 0 6px 22px rgba(0, 0, 0, 0.18) !important;
}

.newsletter-form button.btn {
  flex-shrink: 0;
  height: 48px !important;
  min-height: 48px !important;
  padding: 12px 26px !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  border-radius: 9999px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 18px rgba(225, 29, 72, 0.45) !important;
  box-sizing: border-box !important;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(30px, 4vw, 50px);
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.15rem;
  color: #ffffff !important;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
  text-shadow: none !important;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--clr-brand-500);
  border-radius: var(--radius-full);
}

.footer-contact-info {
  margin-bottom: 20px;
}

.footer-contact-info p {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 0.94rem;
  margin-top: 8px;
  line-height: 1.5;
  text-shadow: none !important;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #ffffff !important;
  font-size: 1.02rem;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-shadow: none !important;
  transition: color var(--transition-fast);
}

.contact-email-link span {
  color: #ffffff !important;
  text-decoration: underline !important;
  transition: color var(--transition-fast);
}

.contact-email-link:hover,
.contact-email-link:hover span {
  color: #FF3B6B !important;
  text-decoration: underline !important;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: #FF3B6B;
  border-color: #FF3B6B;
  color: #ffffff !important;
  transform: none;
}

.footer-nav-list, .footer-legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a, .footer-legal-list a {
  color: #ffffff !important;
  font-size: 0.94rem;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-shadow: none !important;
  transition: all var(--transition-fast);
}

.footer-nav-list a:hover, .footer-legal-list a:hover {
  color: #FF3B6B !important;
  text-decoration: underline !important;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: #ffffff !important;
  opacity: 1 !important;
}

.footer-bottom p {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff !important;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-shadow: none !important;
  transition: color var(--transition-fast);
}

.back-to-top:hover {
  color: #FF3B6B !important;
  text-decoration: underline !important;
}

/* ==========================================================================
   HIGH-CONTRAST TYPOGRAPHY ON DARK / BURGUNDY / MAROON SECTIONS
   Solid #FFFFFF, no glow/bloom, solid white underlined links, #FF3B6B hover
   ========================================================================== */

.embed-container,
.shader-bg,
body.shader-bg,
.vfx-card,
.dark-section,
[class*="bg-gray-900"],
[class*="bg-wix-red-950"],
[class*="from-gray-900"],
[class*="from-wix-red-950"],
[class*="bg-brand-900"],
[class*="bg-brand-800"],
[class*="bg-brand-700"],
[class*="bg-brand-reddark"] {
  color: #ffffff !important;
  text-shadow: none !important;
}

/* Remove text-shadow glow / bloom on dark containers */
.embed-container *,
.shader-bg *,
body.shader-bg *,
.vfx-card *,
.site-footer * {
  text-shadow: none !important;
}

/* Body text, subheadings, paragraphs, spans, labels on dark backgrounds */
.embed-container p,
.embed-container span:not(.btn):not(.neon-btn),
.embed-container h1,
.embed-container h2,
.embed-container h3,
.embed-container h4,
.embed-container h5,
.embed-container h6,
.embed-container li,
.embed-container label,
.shader-bg p,
.shader-bg span:not(.btn):not(.neon-btn),
.shader-bg h1,
.shader-bg h2,
.shader-bg h3,
.shader-bg h4,
.shader-bg h5,
.shader-bg h6,
.shader-bg li,
.vfx-card p,
.vfx-card span:not(.btn):not(.neon-btn),
.vfx-card h1,
.vfx-card h2,
.vfx-card h3,
.vfx-card h4,
.vfx-card h5,
.vfx-card h6,
.vfx-card li,
.glass p,
.glass h1,
.glass h2,
.glass h3,
.glass h4,
.glass h5,
.glass h6,
.glass span:not(.btn):not(.neon-btn),
.glass li,
.glass label,
.glass strong,
[class*="from-brand-800"] p,
[class*="from-brand-800"] span,
[class*="from-brand-800"] h1,
[class*="from-brand-800"] h2,
[class*="from-brand-800"] h3,
[class*="from-brand-800"] h4,
[class*="from-brand-800"] li,
[class*="from-brand-800"] label {
  color: #ffffff !important;
}

/* Target low-contrast Tailwind text classes on dark pages */
.embed-container .text-gray-200,
.embed-container .text-gray-300,
.embed-container .text-gray-400,
.embed-container .text-gray-500,
.embed-container .text-brand-100,
.embed-container .text-brand-200,
.embed-container .text-brand-300,
.embed-container .text-wix-red-200,
.embed-container .text-wix-red-300,
.embed-container .text-wix-red-400,
.embed-container .text-neutral-300,
.embed-container .text-neutral-400,
.embed-container .text-zinc-300,
.embed-container .text-zinc-400,
.shader-bg .text-gray-200,
.shader-bg .text-gray-300,
.shader-bg .text-gray-400,
.shader-bg .text-gray-500,
.shader-bg .text-brand-100,
.shader-bg .text-brand-200,
.shader-bg .text-brand-300,
.shader-bg .text-wix-red-200,
.shader-bg .text-wix-red-300,
.shader-bg .text-wix-red-400,
.vfx-card .text-gray-200,
.vfx-card .text-gray-300,
.vfx-card .text-gray-400,
.vfx-card .text-gray-500,
.vfx-card .text-brand-100,
.vfx-card .text-brand-200,
.vfx-card .text-brand-300,
.vfx-card .text-wix-red-200,
.vfx-card .text-wix-red-300,
.vfx-card .text-wix-red-400,
.glass .text-gray-200,
.glass .text-gray-300,
.glass .text-gray-400,
.glass .text-gray-500,
.glass .text-brand-100,
.glass .text-brand-200,
.glass .text-brand-300,
[class*="from-brand-800"] .text-brand-50,
[class*="from-brand-800"] .text-brand-100,
[class*="from-brand-800"] .text-brand-200,
[class*="from-brand-800"] .text-brand-300,
[class*="from-brand-800"] .text-gray-200,
[class*="from-brand-800"] .text-gray-300,
[class*="from-brand-800"] .text-gray-400,
[class*="bg-brand-reddark"] .text-gray-200,
[class*="bg-brand-reddark"] .text-gray-300,
[class*="bg-brand-reddark"] .text-gray-400,
[class*="bg-brand-reddark"] .text-gray-500,
[class*="bg-brand-900"] .text-brand-100,
[class*="bg-brand-900"] .text-brand-200,
[class*="bg-brand-900"] .text-brand-300,
[class*="bg-brand-900"] .text-gray-300,
[class*="bg-brand-900"] .text-gray-400,
[class*="bg-brand-800"] .text-brand-100,
[class*="bg-brand-800"] .text-brand-200,
[class*="bg-brand-800"] .text-brand-300,
[class*="bg-brand-800"] .text-gray-300,
[class*="bg-brand-800"] .text-gray-400,
[class*="bg-brand-700"] .text-brand-100,
[class*="bg-brand-700"] .text-brand-200,
[class*="bg-brand-700"] .text-brand-300,
[class*="bg-brand-700"] .text-gray-300,
[class*="bg-brand-700"] .text-gray-400 {
  color: #ffffff !important;
}

/* Links on dark backgrounds: solid white + underline, hover punch-pink #FF3B6B */
.embed-container a:not(.btn):not(.neon-btn):not(.social-btn),
.shader-bg a:not(.btn):not(.neon-btn):not(.social-btn),
.vfx-card a:not(.btn):not(.neon-btn):not(.social-btn),
[class*="bg-brand-900"] a:not(.btn):not(.neon-btn):not(.social-btn),
[class*="bg-brand-800"] a:not(.btn):not(.neon-btn):not(.social-btn),
[class*="bg-brand-700"] a:not(.btn):not(.neon-btn):not(.social-btn),
[class*="bg-brand-reddark"] a:not(.btn):not(.neon-btn):not(.social-btn),
.glass a:not(.btn):not(.neon-btn):not(.social-btn) {
  color: #ffffff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.embed-container a:not(.btn):not(.neon-btn):not(.social-btn):hover,
.shader-bg a:not(.btn):not(.neon-btn):not(.social-btn):hover,
.vfx-card a:not(.btn):not(.neon-btn):not(.social-btn):hover,
[class*="bg-brand-900"] a:not(.btn):not(.neon-btn):not(.social-btn):hover,
[class*="bg-brand-800"] a:not(.btn):not(.neon-btn):not(.social-btn):hover,
[class*="bg-brand-700"] a:not(.btn):not(.neon-btn):not(.social-btn):hover,
[class*="bg-brand-reddark"] a:not(.btn):not(.neon-btn):not(.social-btn):hover,
.glass a:not(.btn):not(.neon-btn):not(.social-btn):hover {
  color: #FF3B6B !important;
  text-decoration: underline !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .nav-pill-container {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-nav-drawer {
    display: block;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-group .btn {
    width: 100%;
  }

  /* Compact Luxury Mobile Newsletter Section */
  .site-footer {
    padding-top: 36px;
    padding-bottom: 24px;
  }
  .footer-newsletter-wrap {
    padding-bottom: 22px;
    margin-bottom: 24px;
  }
  .newsletter-box .badge {
    margin-bottom: 8px;
    font-size: 0.72rem;
    padding: 4px 12px;
  }
  .newsletter-box h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 18px;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    max-width: 380px;
    margin: 0 auto;
  }
  .newsletter-field-group {
    width: 100%;
    flex: none;
  }
  .newsletter-label-spacer {
    display: none !important;
  }
  .newsletter-btn-wrap {
    width: 100%;
  }
  .newsletter-form button.btn {
    width: 100% !important;
    margin-top: 4px;
  }
  .footer-main-grid {
    gap: 28px;
    margin-bottom: 30px;
  }
}
