:root {
  --bg-deep: #0d0817;
  --bg-card: rgba(255, 255, 255, 0.04);
  --purple: #6b4c9a;
  --purple-light: #9d7bd8;
  --gold: #d4af37;
  --gold-soft: #e8c96a;
  --text: #f0e6ff;
  --text-muted: #b8a8cc;
  --border: rgba(212, 175, 55, 0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body.site-body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 80px 120px, rgba(212,175,55,0.3), transparent),
    radial-gradient(1.5px 1.5px at 160px 60px, rgba(255,255,255,0.25), transparent),
    radial-gradient(1px 1px at 240px 180px, rgba(157,123,216,0.35), transparent),
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(107, 76, 154, 0.35), transparent),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(212, 175, 55, 0.08), transparent);
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 8, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-symbol {
  font-size: 1.5rem;
  color: var(--gold);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin-left: auto;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}

.header-social {
  display: flex;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.social-link {
  color: var(--text-muted);
  transition: color 0.2s;
}

.social-link:hover { color: var(--gold); }

.header-lang {
  display: flex;
  gap: 0.25rem;
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--border);
}

.lang-btn {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.lang-btn.active {
  color: #1a0f2e;
  background: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
}

.site-main {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.tab-panel[hidden] { display: none !important; }

.hero {
  text-align: center;
  padding: 3rem 1rem 3.5rem;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(107, 76, 154, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8941f);
  color: #1a0f2e;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: transparent;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.highlight-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--gold-soft);
}

.highlight-card p { color: var(--text-muted); font-size: 0.9rem; }

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.section-head p { color: var(--text-muted); }

.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cards-grid .service-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.cards-grid .subcategory-header {
  grid-column: 1 / -1;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(107, 76, 154, 0.15);
}

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

.card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1rem;
}

.service-tiempo {
  color: var(--gold-soft);
  font-size: 0.9rem;
  margin-bottom: 0.5rem !important;
}

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

.card-footer-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-footer-pay {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.price {
  font-weight: 600;
  color: var(--gold);
  font-size: 1.1rem;
}

.about-content {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-content p:last-child { margin-bottom: 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 0;
}

.stars-row {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-card footer {
  font-weight: 600;
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.empty-state span { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.footer-social a {
  color: var(--gold);
  text-decoration: none;
}

.footer-social a:hover { text-decoration: underline; }

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.08); }

/* ── VIDEO THUMB (clickable) ── */
.card-image.video-thumb,
.service-detail-media.video-thumb {
  cursor: pointer;
  position: relative;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  z-index: 1;
}
.card-image.video-thumb:hover .play-overlay,
.service-detail-media.video-thumb:hover .play-overlay {
  opacity: 1;
}
.play-overlay svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* ── VIDEO MODAL ── */
.video-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.video-container {
  aspect-ratio: 16 / 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container video {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── CATEGORY FILTERS ── */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.filter-btn {
  padding: .45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-soft); }
.filter-btn.is-active {
  background: var(--gold);
  color: #1a0f2e;
  border-color: var(--gold);
  font-weight: 600;
}

/* ── SUBCATEGORY FILTERS ── */
.subcategory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.subfilter-btn {
  padding: .35rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(157,123,216,.3);
  background: rgba(107,76,154,.12);
  color: var(--purple-light);
  font: inherit;
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.subfilter-btn:hover { border-color: var(--purple-light); color: var(--text); }
.subfilter-btn.is-active {
  background: var(--purple-light);
  color: #1a0f2e;
  border-color: var(--purple-light);
  font-weight: 600;
}

/* ── SUBCATEGORY HEADERS ── */
.service-group { margin-bottom: 1.5rem; }
.subcategory-header {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--purple-light);
  margin-bottom: .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(157,123,216,.2);
  letter-spacing: .03em;
}

/* Modal reserva */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.booking-modal.is-open {
  display: flex !important;
}

.booking-modal[hidden]:not(.is-open) {
  display: none !important;
}

body.booking-open {
  overflow: hidden;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.booking-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  background: #1a1028;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.booking-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.booking-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin-bottom: 0.25rem;
}

.booking-service-name {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.booking-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.booking-nav-btn {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
}

#booking-month-label {
  font-weight: 600;
  color: var(--text);
}

.booking-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.booking-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.booking-day--empty { background: transparent; border: none; }

.booking-day--disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-day:not(:disabled):hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
}

.booking-day.is-selected {
  background: var(--gold);
  color: #1a0f2e;
  font-weight: 700;
}

.booking-hint, .booking-times-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0.5rem;
}

.booking-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking-time {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold-soft);
  font: inherit;
  cursor: pointer;
}

.booking-time:hover, .booking-time.is-selected {
  background: var(--gold);
  color: #1a0f2e;
  border-color: var(--gold);
}

.booking-form label {
  display: block;
  margin-bottom: 1rem;
}

.booking-form label span {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.booking-form input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
}

.btn-block { width: 100%; margin-top: 0.5rem; }

.booking-summary {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.booking-success {
  text-align: center;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.booking-error {
  color: #f87171;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  text-align: center;
}

.booking-loading, .booking-no-slots {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .header-lang {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13, 8, 23, 0.98);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
  }

  .site-nav.is-open { display: flex; }

  .header-social { display: none; }

  .header-inner { flex-wrap: wrap; position: relative; }
}

/* Service Detail Page */
.service-detail {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.service-detail-media {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16/10;
  background: rgba(107, 76, 154, 0.15);
}

.service-detail-media img,
.service-detail-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.service-detail-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-detail-price {
  margin-bottom: 1.5rem;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-detail-share {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.share-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.share-whatsapp:hover { color: #25d366; border-color: #25d366; }
.share-facebook:hover { color: #1877f2; border-color: #1877f2; }

.share-btn.copied {
  color: #4ade80;
  border-color: #4ade80;
}

/* Share icon on service cards */
.card-share-icon {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 8, 23, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  color: var(--gold-soft);
  text-decoration: none;
  transition: all 0.2s;
  z-index: 2;
}

.card-share-icon:hover {
  background: var(--gold);
  color: #1a0f2e;
  border-color: var(--gold);
}

.service-card {
  position: relative;
}

/* Share Popover (iOS-style sheet) */
.share-popover {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.share-popover.is-open {
  display: flex !important;
}

.share-popover-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  animation: fadeIn 0.2s ease;
}

.share-popover-sheet {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  background: #1e1333;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  padding: 1rem 1.5rem 2rem;
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.share-popover-handle {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.share-popover-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-soft);
  text-align: center;
  margin-bottom: 1.25rem;
}

.share-popover-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.share-popover-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.share-popover-opt:hover {
  color: var(--text);
}

.share-opt-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}

.share-opt-icon:hover {
  transform: scale(1.08);
}

.share-opt-wa { background: #25d366; color: #fff; }
.share-opt-fb { background: #1877f2; color: #fff; }
.share-opt-tg { background: #0088cc; color: #fff; }
.share-opt-copy { background: rgba(255, 255, 255, 0.1); color: var(--gold-soft); }

@media (max-width: 400px) {
  .share-popover-options {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
  .share-opt-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

.toast-success {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #065f46;
  color: #d1fae5;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  animation: toast-in .3s ease-out;
}

.toast-success[hidden] {
  display: none !important;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-1rem); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.toast-success-content {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}

.toast-success-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.toast-success-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
