/* -------------------------------------------------------------
 * Saloni Studio Unisex Salon - Custom Modern Slate & Amber/Teal Stylesheet
 * ------------------------------------------------------------- */

:root {
  /* Surface colors - Slate theme */
  --bg-darkest: #0b0f19;
  --bg-darker: #131b2e;
  --bg-dark: #1e293b;
  --bg-card: #162238;
  --bg-input: #0f172a;
  
  /* Text colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Accent colors */
  --accent-amber: #f59e0b;
  --accent-amber-light: #fbbf24;
  --accent-teal: #06b6d4;
  --accent-teal-light: #22d3ee;
  
  /* System */
  --border-color: rgba(148, 163, 184, 0.12);
  --border-glow: rgba(6, 182, 212, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Typography */
  --font-headings: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --nav-h: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 10px 30px rgba(6, 182, 212, 0.1);
  --shadow-flat: 0 4px 20px rgba(0, 0, 0, 0.25);
}

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

body {
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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: 650px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

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

.badge-teal {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-teal-light);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
}

/* Text Gradients */
.text-gradient-amber {
  background: linear-gradient(135deg, var(--accent-amber), var(--accent-amber-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-teal {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
  color: var(--bg-darkest);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35);
}

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

.btn-outline:hover {
  background: rgba(6, 182, 212, 0.1);
  transform: translateY(-2px);
}

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

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

/* Demo Banner */
.demo-banner {
  background: linear-gradient(90deg, var(--bg-darker), var(--bg-darkest));
  border-bottom: 1px solid var(--border-color);
  padding: 8px 20px;
  font-size: 0.75rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

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

/* Navbar */
.nav {
  height: var(--nav-h);
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  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-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

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

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

.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(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-teal);
  transition: var(--transition);
}

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

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

.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(--text-primary);
  transition: var(--transition);
}

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

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

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

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

/* Hero Section */
.hero-split-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--border-color);
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero-text-content h1 em {
  font-style: normal;
  font-weight: 700;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  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-color);
  padding-top: 2rem;
}

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

.stat-number {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-teal-light);
}

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

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  height: 480px;
}

.hero-img-split {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.image-overlay-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  z-index: -1;
}

.image-floating-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--bg-card);
  border: 1px solid var(--accent-teal);
  box-shadow: var(--shadow-glow);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  animation: float 4s ease-in-out infinite;
}

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

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

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

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

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

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

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

/* Tabs Switcher styling */
.services-tab-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1px;
}

.tab-btn {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--accent-teal-light);
  border-bottom-color: var(--accent-teal);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

/* Service Menu grid & Cards */
.services-columns-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.service-category-block h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

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

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

.service-item:hover {
  border-color: var(--accent-teal);
  box-shadow: var(--shadow-glow);
  transform: translateX(4px);
}

.service-item.selected {
  border-color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.04);
}

.service-details {
  flex: 1;
  padding-right: 2rem;
}

.service-name {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

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

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

.service-price {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-teal-light);
}

.service-item.selected .service-price {
  color: var(--accent-amber-light);
}

.btn-add-service {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.service-item:hover .btn-add-service {
  border-color: var(--accent-teal);
  background: var(--accent-teal);
  color: var(--bg-darkest);
}

.service-item.selected .btn-add-service {
  background: var(--accent-amber);
  border-color: var(--accent-amber);
  color: var(--bg-darkest);
}

/* Shopping Cart UI */
.interactive-cart-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  box-shadow: var(--shadow-flat);
}

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

.cart-count-badge {
  background: var(--accent-teal);
  color: var(--bg-darkest);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 3px 10px;
  border-radius: 999px;
}

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

.cart-empty-message {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem 0;
}

.cart-row-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.cart-row-name {
  font-size: 0.9rem;
  color: var(--text-primary);
  flex: 1;
}

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

.cart-row-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-teal-light);
}

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

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

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

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

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

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

.totals-row.estimated-total strong {
  color: var(--accent-amber);
}

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

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

.info-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-detail-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

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

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

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

/* Reviews Grid */
.reviews-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.modern-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
}

.modern-review-card:hover {
  border-color: var(--accent-amber);
  transform: translateY(-4px);
}

.stars-row {
  color: var(--accent-amber);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.review-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-teal-light);
}

.review-meta h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.review-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Booking Card & Form styling */
.booking-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-flat);
}

.booking-card-head {
  margin-bottom: 2.5rem;
}

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

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

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

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

.modern-booking-form input:focus,
.modern-booking-form select:focus,
.modern-booking-form textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

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

.field-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: -2px;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* Footer Section */
.footer {
  border-top: 1px solid var(--border-color);
  background: var(--bg-darkest);
  padding: 3rem 0;
}

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

.footer-left h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

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

.footer-right {
  text-align: right;
}

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

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

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

/* Floating WhatsApp button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float-btn svg {
  width: 24px;
  height: 24px;
}

.whatsapp-float-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsiveness */
@media (max-width: 968px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-text-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-stats-row {
    justify-content: center;
  }
  
  .hero-image-frame {
    height: 380px;
    max-width: 500px;
    margin-inline: auto;
    width: 100%;
  }
  
  .image-floating-card {
    left: 2rem;
  }
  
  .services-columns-layout {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-map-panel {
    height: 300px;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-right {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* 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);
  }
  
  .booking-card-wrapper {
    padding: 2rem 1.25rem;
  }
  
  .form-row-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .whatsapp-float-btn span {
    display: none;
  }
  
  .whatsapp-float-btn {
    padding: 14px;
    right: 1.25rem;
    bottom: 1.25rem;
  }
  
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .service-action-area {
    width: 100%;
    justify-content: space-between;
  }
  
  .tabs-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .tab-btn {
    text-align: center;
    padding: 0.75rem 1rem;
  }
}

/* Custom status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  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(34, 211, 238, 0.08);
  color: var(--accent-teal-light);
  border-color: rgba(34, 211, 238, 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%;
  display: inline-block;
}
.status-indicator.status-open {
  background-color: var(--accent-teal);
  box-shadow: 0 0 10px var(--accent-teal);
}
.status-indicator.status-closed {
  background-color: #ef4444;
  box-shadow: 0 0 10px #ef4444;
}

