/* -------------------------------------------------------------
 * Sakhi Makeup Studio - Cozy Plum & Champagne Pink Stylesheet
 * ------------------------------------------------------------- */

:root {
  /* Surfaces - Cozy Plum Theme */
  --bg-deep: #25091c;
  --bg-velvet: #320f27;
  --bg-card: #3d1631;
  --bg-input: #1a0413;
  
  /* Text colors */
  --text-cream: #faf2ea;
  --text-secondary: #d4beca;
  --text-muted: #9c8291;
  
  /* Accent colors */
  --pink-accent: #f7c6d7;
  --pink-light: #ffebf0;
  --champagne-gold: #f3d5b5;
  --champagne-light: #faeed6;
  --pink-dim: rgba(247, 198, 215, 0.12);
  
  /* System - Cozy Rounding */
  --border-pink: rgba(247, 198, 215, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  
  /* Typography */
  --font-headings: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Layout */
  --nav-h: 80px;
  --transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-cozy: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(247, 198, 215, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.container-narrow {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Eyebrow & Badges */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne-gold);
  margin-bottom: 0.75rem;
}

.badge-pink {
  background: rgba(247, 198, 215, 0.08);
  color: var(--pink-accent);
  border: 1px solid var(--border-pink);
  padding: 4px 14px;
  border-radius: var(--radius-lg);
  display: inline-block;
}

.text-pink {
  color: var(--pink-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-accent), var(--champagne-gold));
  color: var(--bg-deep);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(247, 198, 215, 0.25);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--pink-accent);
  color: var(--pink-accent);
}

.btn-outline:hover {
  background: var(--pink-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--pink-accent);
}

.btn-ghost:hover {
  border-color: var(--pink-accent);
  background: var(--pink-dim);
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 0.95rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Demo Banner */
.demo-banner {
  background: #170411;
  border-bottom: 1px solid var(--border-pink);
  padding: 8px 20px;
  font-size: 0.75rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  color: var(--text-secondary);
}

.demo-banner a {
  color: var(--pink-accent);
  font-weight: 600;
}

/* Navbar */
.nav {
  height: var(--nav-h);
  background: rgba(37, 9, 28, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-pink);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pink-accent);
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--champagne-gold);
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--pink-accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-accent), var(--champagne-gold));
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--pink-accent);
  transition: var(--transition);
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: var(--bg-velvet);
  border-bottom: 1px solid var(--border-pink);
  padding: 1.5rem;
  z-index: 99;
  box-shadow: var(--shadow-cozy);
  transition: var(--transition);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-links a {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-call-btn {
  color: var(--champagne-gold) !important;
  border-bottom: none !important;
  margin-top: 0.5rem;
}

/* Hero Section */
.hero-cozy {
  padding: clamp(3rem, 7vw, 7rem) 0;
  border-bottom: 1px solid var(--border-pink);
  position: relative;
  background: radial-gradient(circle at 80% 20%, #461436 0%, var(--bg-deep) 100%);
}

.hero-cozy-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content-cozy h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.4rem);
  margin-bottom: 1.5rem;
}

.hero-content-cozy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink-accent);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.75rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-pink);
  padding-top: 2rem;
}

.stat-cozy {
  display: flex;
  flex-direction: column;
}

.stat-cozy strong {
  font-family: var(--font-headings);
  font-size: 2rem;
  color: var(--pink-accent);
}

.stat-cozy span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.hero-cozy-frame {
  position: relative;
}

.organic-photo-border {
  background: var(--bg-velvet);
  border: 1px solid var(--border-pink);
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cozy);
  transform: rotate(1deg);
  transition: var(--transition);
}

.organic-photo-border:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-cozy-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* Sections General */
.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section-alt {
  background-color: var(--bg-velvet);
  border-top: 1px solid var(--border-pink);
  border-bottom: 1px solid var(--border-pink);
}

.section-head {
  max-width: 650px;
  margin-bottom: 4.5rem;
}

.section-head.text-center {
  margin-inline: auto;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--pink-accent);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Services Layout */
.services-columns-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.category-block-cozy h3 {
  font-size: 1.3rem;
  color: var(--champagne-gold);
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border-pink);
  padding-bottom: 0.5rem;
}

.services-list-cozy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item-cozy {
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  cursor: pointer;
}

.service-item-cozy:hover {
  transform: translateY(-2px);
  border-color: var(--pink-accent);
  box-shadow: var(--shadow-cozy);
}

.service-item-cozy.selected {
  border-color: var(--pink-accent);
  background: rgba(247, 198, 215, 0.05);
  box-shadow: 0 0 20px rgba(247, 198, 215, 0.1);
}

.item-details {
  flex: 1;
  padding-right: 1.5rem;
}

.item-name {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.item-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.item-action {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.item-price {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink-accent);
}

.add-cozy-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-velvet);
  border: 1px solid var(--border-pink);
  color: var(--pink-accent);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.service-item-cozy:hover .add-cozy-btn {
  background: var(--pink-accent);
  color: var(--bg-deep);
  border-color: var(--pink-accent);
}

.service-item-cozy.selected .add-cozy-btn {
  background: var(--pink-accent);
  color: var(--bg-deep);
  border-color: var(--pink-accent);
  transform: rotate(45deg);
}

/* Cozy Rounded Cart */
.cart-cozy-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.cart-cozy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-cozy);
}

.cart-cozy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-pink);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.cart-cozy-header h3 {
  font-size: 1.15rem;
  color: var(--pink-accent);
}

.cart-cozy-badge {
  background: var(--pink-accent);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: var(--radius-lg);
}

.cart-cozy-items {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-cozy-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem 0;
}

.cart-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  border-bottom: 1px dashed rgba(247, 198, 215, 0.08);
  padding-bottom: 0.6rem;
}

.cart-row-name {
  color: var(--text-cream);
  flex: 1;
}

.cart-row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-row-price {
  font-weight: 600;
  color: var(--pink-accent);
}

.cart-item-remove-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
}

.cart-item-remove-btn:hover {
  color: var(--pink-accent);
}

.cart-cozy-totals {
  border-top: 1px solid var(--border-pink);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.totals-row.discount {
  color: #34d399;
}

.totals-row.total {
  font-size: 1.15rem;
  font-weight: 700;
  border-top: 1px solid var(--border-pink);
  padding-top: 0.75rem;
  color: var(--text-cream);
}

.totals-row.total strong {
  color: var(--champagne-gold);
}

/* About Section */
.about-cozy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-info-cozy h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-info-cozy p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.details-cozy-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.details-cozy-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.bullet-heart {
  color: var(--pink-accent);
  font-size: 1.2rem;
  line-height: 1;
}

.details-cozy-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--pink-accent);
  margin-bottom: 4px;
}

.details-cozy-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-map-cozy {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-pink);
  height: 400px;
  box-shadow: var(--shadow-cozy);
}

.about-map-cozy iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Polaroid Reviews Grid */
.reviews-polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding-top: 1rem;
}

.polaroid-review {
  background: #fbf8f5;
  color: #2b1122;
  padding: 2.25rem 2.25rem 3.5rem 2.25rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  position: relative;
  text-align: center;
  transition: var(--transition);
}

.polaroid-review:nth-child(odd) {
  transform: rotate(-2deg);
}

.polaroid-review:nth-child(even) {
  transform: rotate(1.5deg);
}

.polaroid-review:hover {
  transform: rotate(0deg) scale(1.03);
  z-index: 5;
}

.polaroid-pin {
  font-size: 1.8rem;
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.polaroid-text {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 500;
  color: #3b2533;
}

.polaroid-footer {
  border-top: 1px dashed rgba(43,17,34,0.15);
  padding-top: 1rem;
}

.polaroid-footer h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2b1122;
}

.polaroid-footer .stars {
  color: #d97706;
  font-size: 0.85rem;
  display: block;
  margin-top: 2px;
}

/* Cozy Booking Wrapper */
.cozy-booking-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-cozy);
}

.booking-head h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.booking-head p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.cozy-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group-cozy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-cozy label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-accent);
}

.cozy-booking-form input,
.cozy-booking-form select,
.cozy-booking-form textarea {
  background-color: var(--bg-input);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-md);
  color: var(--text-cream);
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.cozy-booking-form input:focus,
.cozy-booking-form select:focus,
.cozy-booking-form textarea:focus {
  outline: none;
  border-color: var(--pink-accent);
}

.form-row-cozy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Footer Section */
.footer {
  background-color: #170411;
  border-top: 1px solid var(--border-pink);
  padding: 3.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left h3 {
  font-size: 1.35rem;
  color: var(--pink-accent);
  font-family: var(--font-headings);
}

.footer-left p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.credit {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.credit a {
  color: var(--pink-accent);
  font-weight: 600;
}

/* Floating WhatsApp button */
.wa-cozy-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background: var(--bg-card);
  color: var(--pink-accent);
  border: 1px solid var(--pink-accent);
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-cozy);
  transition: var(--transition);
  animation: cozy-pulse-wa 2.5s infinite;
}

.wa-cozy-float-btn svg {
  width: 20px;
  height: 20px;
}

.wa-cozy-float-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: var(--pink-accent);
  color: var(--bg-deep);
}

@keyframes cozy-pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(247, 198, 215, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(247, 198, 215, 0); }
  100% { box-shadow: 0 0 0 0 rgba(247, 198, 215, 0); }
}

/* Responsiveness */
@media (max-width: 968px) {
  .hero-cozy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content-cozy h1 {
    font-size: 2.8rem;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-stats-row {
    justify-content: center;
  }
  
  .hero-cozy-frame {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }
  
  .services-columns-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-cozy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-map-cozy {
    height: 320px;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .service-item-cozy {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  
  .item-action {
    width: 100%;
    justify-content: space-between;
  }
  
  /* Mobile menu active */
  .nav.active-mobile-menu .nav-toggle .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav.active-mobile-menu .nav-toggle .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav.active-mobile-menu .nav-toggle .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .cozy-booking-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .cozy-booking-form .form-row-cozy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .wa-cozy-float-btn span {
    display: none;
  }
  
  .wa-cozy-float-btn {
    padding: 14px;
    right: 1.25rem;
    bottom: 1.25rem;
    border-radius: var(--radius-md);
  }
  
  .organic-photo-border {
    padding: 10px;
  }
  
  .polaroid-review {
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
  }
}

/* Before/After Image Comparison Slider */
.slider-comparison-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-pink);
  padding: 14px;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cozy);
}
.before-after-slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.before-after-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.image-before-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--pink-accent);
}
.image-before {
  filter: grayscale(80%) sepia(30%) brightness(85%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
}
.slider-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}
.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--pink-accent);
  z-index: 3;
  pointer-events: none;
}
.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: var(--bg-card);
  border: 1px solid var(--pink-accent);
  color: var(--pink-accent);
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 4;
  pointer-events: none;
}

/* Custom status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
  width: fit-content;
}
.status-badge.open {
  background: rgba(247, 198, 215, 0.08);
  color: var(--pink-accent);
  border-color: rgba(247, 198, 215, 0.2);
}
.status-badge.closed {
  background: rgba(239, 68, 68, 0.08);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.2);
}
.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50% !important;
  display: inline-block;
}
.status-indicator.status-open {
  background-color: var(--pink-accent);
  box-shadow: 0 0 10px var(--pink-accent);
}
.status-indicator.status-closed {
  background-color: #ef4444;
  box-shadow: 0 0 10px #ef4444;
}

