/* ============================================================
   Purple Beauty Care — Custom Styles
   Luxury Beauty & Spa Palette: Deep Purple (#24132c) & Gold (#d4af37)
   ============================================================ */

/* ── Global Reset & Smooth Font Rendering ──────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--purple-bg, #24132c);
  color: var(--text-primary, #FCF8F2);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

:root {
  --purple-bg: #24132c;
  --purple-bg-deep: #170b1d;
  --purple-bg-elevated: #2f173b;
  --purple-primary: #6B21A8;
  --purple-light: #A855F7;
  --purple-dark: #3B0764;
  --purple-glass: rgba(36, 19, 44, 0.72);
  --purple-glass-card: rgba(46, 21, 59, 0.65);
  --purple-glass-hover: rgba(62, 28, 79, 0.85);

  --gold: #D4AF37;
  --gold-light: #F7E8A4;
  --gold-dark: #AA820A;
  --gold-border: rgba(212, 175, 55, 0.25);
  --gold-border-bright: rgba(212, 175, 55, 0.6);
  --gold-glow: rgba(212, 175, 55, 0.18);

  --rose-gold: #B76E79;
  --cream: #FDF8F0;
  --text-primary: #FCF8F2;
  --text-muted: rgba(243, 232, 255, 0.72);
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #190a21;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4AF37 0%, #6B21A8 100%);
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #F7E8A4 0%, #9333EA 100%);
}

/* Hide scrollbars for horizontal carousels while keeping functionality */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Glassmorphism Header */
#site-header {
  background: rgba(36, 19, 44, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

#site-header.scrolled {
  background: rgba(24, 10, 31, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
  border-bottom-color: rgba(212, 175, 55, 0.35);
}

/* Text Gradients */
.gradient-text {
  background: linear-gradient(135deg, #FFF6E5 0%, #F5D77F 45%, #D4AF37 80%, #AA820A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.gradient-purple-text {
  background: linear-gradient(135deg, #C084FC 0%, #E9D5FF 50%, #F3E5AB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════════
   GLASSMORPHISM DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════════════ */

/* Universal Glassmorphic Card */
.glass-card {
  background: rgba(46, 21, 59, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 1.25rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-5px);
  background: rgba(58, 26, 74, 0.78);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Elevated Glass Card (Header banners, Modals, Highlights) */
.glass-card-elevated {
  background: rgba(36, 19, 44, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

/* Glass Pill / Navigation Filter Button */
.glass-pill {
  background: rgba(46, 21, 59, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-pill:hover {
  background: rgba(68, 30, 88, 0.9);
  border-color: rgba(212, 175, 55, 0.6);
  color: #F7E8A4;
  transform: translateY(-1px);
}

.glass-pill.active {
  background: linear-gradient(135deg, #D4AF37 0%, #F7E8A4 50%, #B8860B 100%) !important;
  color: #170b1d !important;
  font-weight: 700 !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
}

/* Legacy Card-Luxury upgraded to Dark Luxury Glass */
.card-luxury {
  background: rgba(46, 21, 59, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #FCF8F2;
}

.card-luxury:hover {
  transform: translateY(-5px);
  background: rgba(58, 26, 74, 0.78);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Hero Glass Card */
.hero-glass-card {
  background: rgba(36, 19, 44, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-glass-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

/* Ambient Radial Glows */
.hero-ambient-glow {
  background: radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.25) 0%, rgba(107, 33, 168, 0.15) 35%, transparent 70%);
}

.luxury-ambient-bg {
  background-color: #24132c;
  background-image: 
    radial-gradient(at 0% 0%, rgba(107, 33, 168, 0.25) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(212, 175, 55, 0.15) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(36, 19, 44, 1) 0px, transparent 100%),
    radial-gradient(at 0% 100%, rgba(59, 7, 100, 0.3) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(212, 175, 55, 0.12) 0px, transparent 50%);
}

/* ═══════════════════════════════════════════════════════════════════════
   LUXURY BUTTONS & MICRO-INTERACTIONS
   ═══════════════════════════════════════════════════════════════════════ */

/* Gold Solid Button */
.btn-gold {
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #B8860B 100%);
  color: #170b1d;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.6);
  color: #000;
  filter: brightness(1.05);
}

/* Purple Glow Button */
.btn-purple {
  background: linear-gradient(135deg, #6B21A8 0%, #8B5CF6 100%);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(107, 33, 168, 0.4);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.55);
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
}

/* Outline Gold Button */
.btn-outline-gold {
  border: 1.5px solid #D4AF37;
  color: #F7E8A4;
  background: rgba(36, 19, 44, 0.5);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: #D4AF37;
  color: #170b1d;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  font-weight: 700;
}

/* Nav Links Underline Effect */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 70%;
}

.nav-link--active {
  color: #D4AF37 !important;
}

/* Mobile Nav Menu */
.mobile-menu-panel {
  background: rgba(24, 10, 31, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link--active {
  background: rgba(107, 33, 168, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
}

/* Section Dividers */
.gold-divider {
  height: 2px;
  width: 90px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 1rem auto;
  border-radius: 2px;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 32px rgba(212, 175, 55, 0.75); }
}

.pulse-gold {
  animation: pulseGlow 3s infinite;
}

/* Liquid Gold Shimmer Text */
@keyframes goldShimmerSweep {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-shimmer-text {
  background: linear-gradient(
    90deg,
    #D4AF37 0%,
    #FFF4D0 25%,
    #D4AF37 50%,
    #F3E5AB 75%,
    #D4AF37 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmerSweep 5s linear infinite;
  display: inline-block;
}

/* Golden Hour Pulsing Glow for Primary CTA */
@keyframes goldenHourPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 45px rgba(168, 85, 247, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.75), 0 0 65px rgba(212, 175, 55, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  }
}

.btn-hero-primary {
  position: relative;
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #B8860B 100%);
  color: #170b1d;
  font-weight: 700;
  animation: goldenHourPulse 3.5s infinite ease-in-out;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 35%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 65%
  );
  transform: rotate(25deg) translateY(-100%);
  animation: sparkleSweep 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@keyframes sparkleSweep {
  0% { transform: rotate(25deg) translateY(-120%); }
  30%, 100% { transform: rotate(25deg) translateY(120%); }
}

.btn-hero-secondary {
  position: relative;
  background: rgba(36, 19, 44, 0.65);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  color: #F3E5AB;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.btn-hero-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.8) 0%, rgba(107, 33, 168, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.btn-hero-secondary:hover::before {
  opacity: 1;
}

.btn-hero-secondary:hover {
  border-color: rgba(212, 175, 55, 0.95);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107, 33, 168, 0.4);
}

.btn-hero-secondary > * {
  position: relative;
  z-index: 1;
}

/* Staggered Entrance Animations */
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-fade-badge {
  opacity: 0;
  animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-fade-title {
  opacity: 0;
  animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-fade-sub {
  opacity: 0;
  animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.hero-fade-cta {
  opacity: 0;
  animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.hero-fade-stats {
  opacity: 0;
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
}

/* Floating Particle Canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* WhatsApp Floating Widget Animations */
@keyframes waPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.wa-pulse-btn {
  animation: waPulse 2.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-pulse-btn:hover {
  animation: none;
  transform: scale(1.1);
}

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

.animate-fadeIn {
  animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   INTERACTIVE BEFORE & AFTER SLIDER COMPONENT
   ========================================================================== */
.ba-slider-container {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  background: #170b1d;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ba-slider-container:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 45px -5px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 175, 55, 0.25);
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: ew-resize;
  background-color: #170b1d;
}

.ba-after-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-resize-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  will-change: width;
  z-index: 2;
  border-right: 2px solid #D4AF37;
  box-shadow: 2px 0 15px rgba(212, 175, 55, 0.5);
}

.ba-before-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

/* Draggable Handle Button */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #170b1d 0%, #2f173b 100%);
  border: 2px solid #D4AF37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 4px 12px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

.ba-slider:hover .ba-handle,
.ba-is-dragging .ba-handle {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.9), 0 6px 18px rgba(0, 0, 0, 0.9);
  border-color: #F7E8A4;
}

.ba-handle-arrows {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #F7E8A4;
  font-size: 13px;
  font-weight: bold;
}

/* Floating Glass Badges */
.ba-badge {
  position: absolute;
  top: 14px;
  z-index: 5;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(23, 11, 29, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #F7E8A4;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.ba-badge-before {
  left: 14px;
}

.ba-badge-after {
  right: 14px;
}

/* Hint overlay at bottom */
.ba-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(18, 8, 24, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(247, 232, 164, 0.85);
  pointer-events: none;
  white-space: nowrap;
  animation: baHintPulse 3s infinite ease-in-out;
}

@keyframes baHintPulse {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.5; transform: translateX(-50%) translateY(-2px); }
}

/* Accessibility Range Slider (visually hidden but focusable) */
.ba-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   ADMIN WRAPPER & SIDEBAR LAYOUT
   ========================================================================== */
.admin-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar Styling */
.sidebar {
    width: 260px;
    background-color: #24132c;
    color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 10px rgba(0,0,0,0.1);
}

.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.sidebar-header h3 {
    color: #d4af37;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.sidebar-menu {
    list-style: none;
    padding: 15px 10px;
    overflow-y: auto;
    flex-grow: 1;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    color: #e2d1ed;
    text-decoration: none;
    font-size: 13.5px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background-color: #4a235a;
    color: #d4af37;
    padding-left: 20px;
}

.badge {
    background-color: #d4af37;
    color: #24132c;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
}

/* Main Content Area */
.main-content {
    flex-grow: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: margin-left 0.3s ease-in-out;
    background-color: #f9f7fc;
}

.top-navbar {
    height: 60px;
    background: #ffffff;
    border-bottom: 1px solid #e2d1ed;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

.toggle-btn, .close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #4a235a;
}

.close-btn {
    display: none;
    color: #d4af37;
}

.content-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

/* ── Beauty Icon Tile ───────────────────────────────────────── */
.beauty-icon-tile {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 40, 207, 0.22);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #fce79a;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.beauty-icon-tile svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.25s ease;
}

.admin-nav-link:hover .beauty-icon-tile,
.sidebar-menu a:hover .beauty-icon-tile {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4) 0%, rgba(212, 175, 55, 0.3) 100%);
    border-color: rgba(212, 175, 55, 0.65);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
    transform: scale(1.08);
}

.admin-nav-link.active .beauty-icon-tile,
.sidebar-menu a.active .beauty-icon-tile {
    background: linear-gradient(135deg, #a855f7 0%, #d4af37 100%);
    border-color: #d4af37;
    color: #12031d;
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
}

.admin-nav-link.active .beauty-icon-tile svg,
.sidebar-menu a.active .beauty-icon-tile svg {
    stroke: #12031d;
}

/* In Mini Collapsed Sidebar Mode */
@media (min-width: 1024px) {
    .admin-sidebar.collapsed .beauty-icon-tile,
    .admin-layout.sidebar-collapsed .beauty-icon-tile,
    .sidebar.collapsed .beauty-icon-tile,
    .admin-wrapper.sidebar-collapsed .beauty-icon-tile {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        border-radius: 10px !important;
    }

    .admin-sidebar.collapsed .beauty-icon-tile svg,
    .admin-layout.sidebar-collapsed .beauty-icon-tile svg,
    .sidebar.collapsed .beauty-icon-tile svg,
    .admin-wrapper.sidebar-collapsed .beauty-icon-tile svg {
        width: 20px !important;
        height: 20px !important;
    }
}

/* ── Aesthetic Minimalist Vector Icon Badge ─────────────────── */
.aesthetic-vector-icon {
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
    filter: drop-shadow(0 4px 14px rgba(186, 85, 211, 0.12));
}

.aesthetic-vector-icon:hover,
.group:hover .aesthetic-vector-icon,
.category-card:hover .aesthetic-vector-icon,
.service-item:hover .aesthetic-vector-icon {
    transform: translateY(-3px) scale(1.06);
    filter: drop-shadow(0 8px 22px rgba(186, 85, 211, 0.25));
}

/* ── Contact Footer Strip with QR Box ──────────────────────── */
.contact-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(34, 7, 56, 0.95) 0%, rgba(47, 13, 77, 0.95) 50%, rgba(30, 7, 48, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .contact-footer {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(233, 213, 255, 0.95);
}

.contact-info a {
    color: #F7E8A4;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.qr-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #170b1d;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 2px solid #D4AF37;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    text-align: center;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-box:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

/* ── Section Title Wrapper ──────────────────────────────────── */
.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-wrapper h2,
.section-title-wrapper h3 {
    margin: 0;
    font-weight: 700;
    color: #ffffff;
}

/* ==========================================================================
   DESKTOP MINI ICON-ONLY SIDEBAR (COMPACT COLLAPSED MODE)
   ========================================================================== */
@media (min-width: 1024px) {
    /* 1. Sidebar Container collapses to 80px */
    .admin-sidebar,
    .sidebar {
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease, transform 0.3s ease !important;
    }

    .admin-sidebar.collapsed,
    .sidebar.collapsed,
    .admin-layout.sidebar-collapsed .admin-sidebar,
    .admin-wrapper.sidebar-collapsed .sidebar {
        width: 80px !important;
        padding: 1.25rem 0.5rem !important;
        transform: translateX(0) !important;
        overflow-x: hidden;
    }

    /* 2. Main content area adjusts padding to 80px */
    .admin-layout.sidebar-collapsed .admin-main,
    .admin-wrapper.sidebar-collapsed .admin-main,
    .admin-main.expanded,
    .sidebar-collapsed .admin-main,
    .admin-wrapper.sidebar-collapsed .main-content,
    .main-content.expanded {
        padding-left: 80px !important;
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* 3. Hide Brand Text, Subtitles, and Badges in Mini Mode */
    .admin-layout.sidebar-collapsed .admin-sidebar .font-playfair,
    .admin-layout.sidebar-collapsed .admin-sidebar .uppercase,
    .admin-wrapper.sidebar-collapsed .sidebar-header h3,
    .admin-wrapper.sidebar-collapsed .sidebar-header .close-btn,
    .admin-sidebar.collapsed .font-playfair,
    .admin-sidebar.collapsed .uppercase,
    .sidebar.collapsed .sidebar-header h3,
    .sidebar.collapsed .sidebar-header .close-btn {
        display: none !important;
    }

    .admin-layout.sidebar-collapsed .admin-sidebar .border-b > a,
    .admin-sidebar.collapsed .border-b > a,
    .sidebar.collapsed .sidebar-header,
    .admin-wrapper.sidebar-collapsed .sidebar-header {
        justify-content: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 4. Center Navigation Icons & Hide Text Labels */
    .admin-layout.sidebar-collapsed .admin-nav-link,
    .admin-sidebar.collapsed .admin-nav-link,
    .admin-wrapper.sidebar-collapsed .sidebar-menu a,
    .sidebar.collapsed .sidebar-menu a {
        justify-content: center !important;
        padding: 0.75rem 0 !important;
        gap: 0 !important;
        text-align: center;
        border-radius: 0.75rem;
    }

    .admin-layout.sidebar-collapsed .admin-nav-link span:not(:first-child),
    .admin-sidebar.collapsed .admin-nav-link span:not(:first-child),
    .admin-wrapper.sidebar-collapsed .sidebar-menu a span:not(:first-child),
    .sidebar.collapsed .sidebar-menu a span:not(:first-child),
    .admin-layout.sidebar-collapsed .admin-nav-link .badge,
    .admin-sidebar.collapsed .admin-nav-link .badge,
    .admin-wrapper.sidebar-collapsed .sidebar-menu a .badge,
    .sidebar.collapsed .sidebar-menu a .badge,
    .admin-layout.sidebar-collapsed .admin-nav-link .ml-auto,
    .admin-sidebar.collapsed .admin-nav-link .ml-auto {
        display: none !important;
    }

    .admin-layout.sidebar-collapsed .admin-nav-link span:first-child,
    .admin-sidebar.collapsed .admin-nav-link span:first-child,
    .admin-wrapper.sidebar-collapsed .sidebar-menu a span:first-child,
    .sidebar.collapsed .sidebar-menu a span:first-child {
        font-size: 1.3rem !important;
        margin: 0 !important;
        transition: transform 0.2s ease;
    }

    .admin-layout.sidebar-collapsed .admin-nav-link:hover span:first-child,
    .admin-sidebar.collapsed .admin-nav-link:hover span:first-child,
    .admin-wrapper.sidebar-collapsed .sidebar-menu a:hover span:first-child,
    .sidebar.collapsed .sidebar-menu a:hover span:first-child {
        transform: scale(1.2);
    }

    /* 5. User Profile Card & Bottom Action in Mini Mode */
    .admin-layout.sidebar-collapsed .admin-sidebar .pt-4 .flex-1,
    .admin-layout.sidebar-collapsed .admin-sidebar .pt-4 .text-xs,
    .admin-layout.sidebar-collapsed .admin-sidebar .mx-2 .min-w-0,
    .admin-sidebar.collapsed .pt-4 .flex-1,
    .admin-sidebar.collapsed .pt-4 .text-xs,
    .admin-sidebar.collapsed .mx-2 .min-w-0,
    .admin-layout.sidebar-collapsed .admin-sidebar a[target="_blank"] span:not(:first-child),
    .admin-sidebar.collapsed a[target="_blank"] span:not(:first-child) {
        display: none !important;
    }

    .admin-layout.sidebar-collapsed .admin-sidebar .pt-4 .flex,
    .admin-sidebar.collapsed .pt-4 .flex,
    .admin-layout.sidebar-collapsed .admin-sidebar .mx-2,
    .admin-sidebar.collapsed .mx-2 {
        justify-content: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Responsive Breakpoints for Mobile/Tablet */
@media (max-width: 1023px) {
    .admin-sidebar,
    .sidebar {
        transform: translateX(-100%) !important;
        width: 270px !important;
    }
    .admin-sidebar.active,
    .admin-sidebar.sidebar-open,
    .sidebar.active,
    .sidebar.sidebar-open {
        transform: translateX(0) !important;
    }
    .admin-main,
    .main-content {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    .close-btn {
        display: flex;
    }
}


