/* ── TOKENS ── */
:root {
  --bg:        #f8f5ff;
  --surface:   #ffffff;
  --text:      #1a0a2e;
  --muted:     #7a6a8e;
  --border:    #e8dff5;
  --accent:    #4b03a5;
  --accent2:   #7b2fff;
  --radius:    16px;
  --shadow:    0 2px 16px rgba(75,3,165,.10);
  --font-head: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}
[data-theme="dark"] {
  --bg:      #0d0718;
  --surface: #170d2a;
  --text:    #f0eaff;
  --muted:   #9d8bbf;
  --border:  #2d1f4a;
  --shadow:  0 2px 16px rgba(0,0,0,.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); transition: background .3s, color .3s; }
a { text-decoration: none; color: inherit; }

/* ── TOPBAR ── */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 900;
}
.logo { display: flex; align-items: center; }
.logo img { height: 60px; width: auto; max-width: 150px; display: block; }
.logo-text { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--accent); line-height: 1.1; }
.logo-text span { display: block; font-size: 11px; font-weight: 400; font-family: var(--font-body); color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

.actions { display: flex; gap: 8px; align-items: center; }
.actions .action-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; font-size: 16px; transition: .2s;
}
.cart-btn {
  position: relative;
  background: var(--accent); color: #fff;
}
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: #ff4081; color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.action-btn.theme-btn { background: var(--border); color: var(--muted); }
.action-btn.menu-btn  { background: var(--accent); color: #fff; }
[data-theme="dark"] .action-btn.theme-btn { background: #2d1f4a; color: #c8b8e8; }

/* ── SIDEBAR ── */
.sidebar {
  position: fixed; top: 0; left: -270px; width: 260px; height: 100%;
  background: #0d0718; color: #fff; padding: 24px 20px;
  transition: left .3s; z-index: 1001; box-shadow: 4px 0 20px rgba(0,0,0,.3);
}

.sidebar li{
    list-style: none;
}
.sidebar.active { left: 0; }
.sidebar-close { cursor: pointer; font-size: 18px; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.sidebar-header h5 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #d4b8ff; }
.sidebar a {
  display: flex; align-items: center; gap: 10px;
  color: #ccc; margin: 4px 0; padding: 10px 12px;
  border-radius: 10px; transition: .2s; font-size: 15px; text-decoration: none;
}
.sidebar a:hover { background: rgba(180,100,255,.15); color: #d4b8ff; }
.sidebar a i { width: 20px; text-align: center; }
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  display: none; z-index: 1000;
}
.sidebar-overlay.active { display: block; }

/* ── HERO STRIP ── */
.hero-strip {
  background: linear-gradient(135deg, #4b03a5 0%, #7b2fff 60%, #c653ff 100%);
  color: #fff; padding: 44px 16px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,200,255,.10) 0%, transparent 50%);
}
.hero-strip h1 {
  font-family: var(--font-head);
  font-size: clamp(26px, 6vw, 42px);
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}
.hero-strip p {
  opacity: .88;
  font-size: 15px;
  max-width: 400px;
  margin: 0 auto 20px;
  line-height: 1.6;
  position: relative;
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  position: relative;
}
.hero-badge {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 5px 14px; border-radius: 20px; font-size: 13px; font-weight: 500;
}

/* ── FILTER BAR ── */
.filter-bar {
  padding: 14px 16px;
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 88px; z-index: 800;
}
.f-btn {
  padding: 7px 16px; border-radius: 20px; border: 1.5px solid var(--border);
  background: transparent; color: var(--text); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: .2s; font-family: var(--font-body);
}
.f-btn.active, .f-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.sort-select {
  margin-left: auto; padding: 7px 12px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--text); font-size: 13px; cursor: pointer; font-family: var(--font-body);
}

/* ── PRODUCTS AREA ── */
.packages-area {
  padding: 24px 16px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

/* ── SKELETON ── */
.loading-skeleton {
  display: contents;
}
.skeleton-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #ede9f5 25%, #f8f5ff 50%, #ede9f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.section-label {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.section-label h2 {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
}
.section-label .count { color: var(--muted); font-size: 13px; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

@media (min-width: 640px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cookie-strip {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: #0d0718;
  border-top: 1px solid rgba(123,47,255,.3);
  padding: 14px 20px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22,.68,0,1.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
}
.cookie-strip.visible {
  transform: translateY(0);
}
.cookie-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(123,47,255,.18);
  border: 1px solid rgba(123,47,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #c8a8ff;
  font-size: 17px;
  flex-shrink: 0;
}
.cookie-text {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cookie-text strong {
  color: #f0eaff;
  font-size: 14px;
  font-weight: 700;
}
.cookie-text span {
  color: #9d8bbf;
  font-size: 12.5px;
  line-height: 1.5;
}
.cookie-text a {
  color: #c8a8ff;
  text-decoration: underline;
}
.cookie-text a:hover { color: #fff; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn-accept,
.cookie-btn-decline {
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  border: none;
  font-family: var(--font-body);
}
.cookie-btn-accept {
  background: #4b03a5;
  color: #fff;
}
.cookie-btn-accept:hover { background: #7b2fff; }
.cookie-btn-decline {
  background: transparent;
  color: #9d8bbf;
  border: 1.5px solid rgba(123,47,255,.3);
}
.cookie-btn-decline:hover {
  border-color: #7b2fff;
  color: #c8a8ff;
}

@media (max-width: 540px) {
  .cookie-strip-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ── PRODUCT CARD ── */
.pkg-card {
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(75,3,165,.15);
}

.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #f3eaff, #e8d5ff);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.card-img-icon { font-size: 52px; opacity: .5; }

.card-img .badge-tag {
  position: absolute; top: 10px; left: 10px;
  background: #ff4081; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .4px; z-index: 1;
}
.card-img .badge-sale { background: var(--accent); }

[data-theme="dark"] .card-img {
  background: linear-gradient(135deg, #1e0f3a, #2d1858);
}

.card-body {
  padding: 14px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  margin: 4px 10px 0px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 4px 10px 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 6px;
  border: none;
  padding: 4px 0;
}

.card-price {
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  font-family: var(--font-head);
  margin-left: 9px;
  line-height: 1;
}
[data-theme="dark"] .card-price { color: #c8a8ff; }

.card-price-old {
  font-size: 11px;
  color: var(--muted);
  text-decoration: line-through;
}

.card-actions { display: flex; gap: 6px; align-items: center; }

.btn-cart {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(75,3,165,.12); color: var(--accent);
  border: 1.5px solid rgba(75,3,165,.2);
  margin-right: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: .25s; flex-shrink: 0;
}
.btn-cart:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

[data-theme="dark"] .btn-cart {
  background: rgba(123,47,255,.2);
  color: #c8a8ff;
  border-color: rgba(123,47,255,.35);
}
[data-theme="dark"] .btn-cart:hover { background: var(--accent2); color: #fff; border-color: var(--accent2); }

.btn-buy {
  width: 100%; border: none;
  background: var(--text); color: var(--surface);
  padding: 12px; border-radius: 12px;
  font-size: 14px; font-weight: 700;
  cursor: pointer; transition: .25s;
  font-family: var(--font-body);
  margin-top: auto;
}
.btn-buy:hover { background: var(--accent); color: #fff; }
/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 48px; margin-bottom: 12px; display: block; opacity: .4; }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: none; z-index: 2000; align-items: flex-end; justify-content: center;
}
.cart-overlay.open { display: flex; }
.cart-drawer {
  background: var(--surface); width: 100%; max-width: 500px;
  border-radius: 20px 20px 0 0; padding: 22px;
  max-height: 85vh; display: flex; flex-direction: column;
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cart-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px;
}
.cart-header h5 { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.cart-close { font-size: 20px; cursor: pointer; color: var(--muted); background: var(--border); border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.cart-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border-radius: 12px; padding: 12px;
  border: 1px solid var(--border);
}
.cart-item-icon { font-size: 28px; width: 48px; text-align: center; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info b { font-size: 14px; font-weight: 600; display: block; }
.cart-item-info span { font-size: 12px; color: var(--muted); }
.cart-item-price { font-weight: 700; color: var(--accent); font-size: 15px; white-space: nowrap; }
.cart-item-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 16px; padding: 4px; }
.cart-item-remove:hover { color: #e91e63; }
.cart-empty { text-align: center; padding: 40px 20px; color: var(--muted); }
.cart-empty i { font-size: 36px; display: block; margin-bottom: 10px; opacity: .4; }
.cart-footer {
  border-top: 1px solid var(--border); margin-top: 16px; padding-top: 16px;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.cart-total-row span { font-size: 15px; font-weight: 600; }
.cart-total-row strong { font-family: var(--font-head); font-size: 22px; color: var(--accent); }
.btn-checkout {
  width: 100%; padding: 14px; background: var(--accent); color: #fff;
  border: none; border-radius: 12px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: .2s; font-family: var(--font-body);
}
.btn-checkout:hover { background: var(--accent2); }

/* ── BUY MODAL ── */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: none; align-items: flex-end; justify-content: center; z-index: 2000;
}
.overlay.open { display: flex; }
.modal-box {
  background: var(--surface); width: 100%; max-width: 500px;
  border-radius: 20px 20px 0 0; padding: 22px;
  animation: slideUp .3s ease;
}
.modal-strip {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 18px;
}
.modal-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #f3eaff, #d4a8ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-right: 12px; flex-shrink: 0;
}
[data-theme="dark"] .modal-icon { background: linear-gradient(135deg, #2d1858, #4b03a5); }
.modal-left  { display: flex; align-items: center; }
.modal-info b     { font-size: 17px; font-family: var(--font-head); }
.modal-info small { color: var(--muted); font-size: 13px; }
.modal-right .price { font-size: 20px; font-weight: 800; color: var(--accent); font-family: var(--font-head); }
.modal-close { font-size: 20px; cursor: pointer; color: var(--muted); padding: 4px; margin-left: 10px; background: none; border: none; }

.fg { margin-top: 10px; }
.fg label { font-size: 13px; font-weight: 600; color: var(--muted); display: block; margin-bottom: 5px; }
.fg input, .fg textarea {
  width: 100%; padding: 12px 14px;
  border-radius: 10px; border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text);
  font-size: 15px; outline: none; transition: border-color .2s;
  font-family: var(--font-body);
}
.fg input:focus, .fg textarea:focus { border-color: var(--accent); }
.btn-pay {
  width: 100%; padding: 14px; background: var(--accent); color: #fff;
  border: none; border-radius: 12px; margin-top: 16px;
  font-size: 16px; font-weight: 700; cursor: pointer; transition: .2s;
  font-family: var(--font-body);
}
.btn-pay:hover { background: var(--accent2); }

/* ── TRACK MODAL ── */
.track-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: none; align-items: center; justify-content: center;
  z-index: 2000; padding: 16px;
}
.track-overlay.open { display: flex; }
.track-box {
  background: var(--surface); border-radius: 20px;
  padding: 24px; width: 100%; max-width: 460px;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.track-box h5 { font-family: var(--font-head); font-weight: 700; margin-bottom: 16px; font-size: 17px; }
.track-input-wrap { display: flex; gap: 8px; }
.track-input-wrap input {
  flex: 1; padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--bg); color: var(--text);
  font-size: 14px; outline: none; font-family: var(--font-body);
}
.track-input-wrap input:focus { border-color: var(--accent); }
.btn-track {
  padding: 11px 16px; background: var(--accent); color: #fff;
  border: none; border-radius: 10px; font-weight: 600; cursor: pointer; font-size: 14px;
  white-space: nowrap; font-family: var(--font-body);
}
.track-result-item {
  background: var(--bg); border-radius: 12px; padding: 14px;
  margin-top: 12px; border: 1px solid var(--border);
}
.tr-row   { display: flex; justify-content: space-between; padding: 4px 0; font-size: 14px; }
.tr-label { color: var(--muted); }
.tr-val   { font-weight: 600; }

/* ── FEATURES ── */
.features-section { padding: 48px 16px; max-width: 1100px; margin: 0 auto; }
.features-section .section-heading { text-align: center; margin-bottom: 32px; }
.features-section .section-heading h2 { font-family: var(--font-head); font-size: clamp(22px, 4vw, 28px); font-weight: 800; margin-bottom: 6px; }
.features-section .section-heading p  { color: var(--muted); font-size: 15px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 22px; border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, #f3eaff, #d4a8ff);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
[data-theme="dark"] .feature-icon { background: linear-gradient(135deg, #2d1858, #4b03a5); }
.feature-card h4  { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p   { color: var(--muted); font-size: 14px; line-height: 1.5; }

/* ── CTA BANNER ── */
.cta-banner {
  margin: 0 16px 40px;
  background: linear-gradient(135deg, #4b03a5, #7b2fff);
  border-radius: 20px; padding: 32px 24px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,200,255,.15) 0%, transparent 60%);
}
.cta-banner h3 { font-family: var(--font-head); font-size: clamp(20px, 4vw, 26px); font-weight: 800; margin-bottom: 10px; position: relative; }
.cta-banner p  { opacity: .88; font-size: 14px; margin-bottom: 20px; position: relative; }
.btn-cta {
  display: inline-block; padding: 12px 30px;
  background: #fff; color: var(--accent);
  border-radius: 30px; font-weight: 800; font-size: 15px;
  transition: transform .2s; position: relative;
}
.btn-cta:hover { transform: scale(1.04); color: var(--accent); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 800;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-tooltip {
  position: absolute; right: 60px; white-space: nowrap;
  background: #111; color: #fff; padding: 6px 12px;
  border-radius: 8px; font-size: 13px; font-weight: 500;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── FOOTER ── */
.footer {
  background: #0d0718; color: #ccc; padding: 40px 16px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px; max-width: 900px; margin: 0 auto 24px;
}
.footer-col h6    { color: #d4b8ff; font-weight: 700; margin-bottom: 12px; font-size: 15px; font-family: var(--font-head); }
.footer-col p,
.footer-col a     { font-size: 13px; color: #888; line-height: 1.8; display: block; }
.footer-col a:hover { color: #d4b8ff; }
.footer-bottom {
  text-align: center; font-size: 12px; color: #555;
  border-top: 1px solid #1e1035; padding-top: 18px; max-width: 900px; margin: 0 auto;
}

/* ── NOTICE BANNER ── */
.notice-banner {
  display: flex; align-items: flex-start; gap: 12px;
  background: #f3eaff; border-left: 4px solid var(--accent);
  padding: 12px 16px; margin: 12px 16px; border-radius: 8px;
  font-size: 13px; color: #3a006f;
}
.notice-banner i   { margin-top: 2px; flex-shrink: 0; }
.notice-close      { margin-left: auto; cursor: pointer; font-size: 16px; opacity: .6; flex-shrink: 0; }
.notice-close:hover { opacity: 1; }
[data-theme="dark"] .notice-banner { background: #1e0f3a; border-color: #7b2fff; color: #c8a8ff; }

/* ── TOAST ── */
.toast-wrap {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%);
  z-index: 9999; pointer-events: none;
}
.toast {
  background: #1a0a2e; color: #fff; padding: 10px 20px;
  border-radius: 30px; font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 20px rgba(75,3,165,.4);
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ── WA POPUP ── */
.wa-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 9999; padding: 0;
  animation: fadeInOverlay .3s ease;
}
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.wa-popup-overlay.hidden { display: none; }
.wa-popup {
  background: var(--surface); width: 100%; max-width: 480px;
  border-radius: 24px 24px 0 0; padding: 28px 22px 32px;
  animation: slideUp .35s cubic-bezier(.22,.68,0,1.2);
  position: relative;
}
.wa-popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; transition: .2s;
}
.wa-popup-close:hover { background: var(--border); color: var(--text); }
.wa-popup-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.wa-popup-icon { width: 56px; height: 56px; border-radius: 16px; background: #e8fef0; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.wa-popup-header h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.wa-popup-header p  { font-size: 13px; color: var(--muted); }
.wa-popup-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.btn-wa-join {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px; border-radius: 14px;
  background: #25D366; color: #fff; border: none;
  font-size: 16px; font-weight: 800; cursor: pointer; transition: .2s;
  text-decoration: none;
}
.btn-wa-join:hover { background: #20b858; color: #fff; }
.wa-popup-secondary { display: flex; justify-content: space-between; align-items: center; }
.btn-wa-later, .btn-wa-dismiss {
  background: none; border: none; color: var(--muted);
  font-size: 13px; cursor: pointer; padding: 4px; transition: .2s;
  font-family: var(--font-body);
}
.btn-wa-later:hover { color: var(--text); }
.btn-wa-dismiss:hover { color: #e91e63; }

/* ── SERVICE CARDS ── */
.service-section { padding: 0 16px 40px; max-width: 1100px; margin: 0 auto; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(75,3,165,.15); }
.service-card-header {
  background: linear-gradient(135deg, #4b03a5, #7b2fff);
  padding: 28px 20px; text-align: center; color: #fff;
}
.service-card-header .service-icon { font-size: 40px; margin-bottom: 10px; }
.service-card-header h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.service-card-body { padding: 16px 20px 20px; }
.service-card-body p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.service-price-row {
  display: flex; justify-content: space-between; align-items: center;
}
.service-price { font-weight: 800; color: var(--accent); font-size: 18px; font-family: var(--font-head); }
.btn-book {
  padding: 8px 18px; background: var(--accent); color: #fff;
  border: none; border-radius: 20px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: .2s; font-family: var(--font-body);
}
.btn-book:hover { background: var(--accent2); }