/* ============================================
   N&J Moments — Style.css
   ============================================ */

/* ---------- 1. Variables ---------- */
:root {
  /* Colors */
  --bg-page:        #FDF8F0;
  --bg-card:        #FFFFFF;
  --bg-frame:       #FEFCF8;
  --border-dashed:  #E8D9C5;
  --border-solid:   #EFE4D2;

  --pink-soft:      #F8D7D9;
  --pink-light:     #FBE4E6;
  --pink-deep:      #E8A0A8;

  --yellow-soft:    #F5E6B8;
  --blue-soft:      #C8DDE8;
  --beige-soft:     #F0DCC8;
  --green-soft:     #D4E0C8;

  --text-primary:   #3A3A3A;
  --text-secondary: #6B6B6B;
  --text-muted:     #A0A0A0;

  --btn-dark:       #4A3F35;
  --btn-dark-hover: #3A3028;

  --success:        #7FA87F;
  --error:          #E08A8A;

  /* Sizes */
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      32px;

  /* Shadows */
  --shadow-soft:    0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-hover:   0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-modal:   0 20px 60px rgba(0, 0, 0, 0.15);

  /* Font */
  --font-main:      'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- 2. Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ---------- 3. Header ---------- */
.header {
  padding: 20px 24px;
  background: transparent;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.logo-mark {
  font-size: 28px;
  font-weight: 800;
  color: var(--pink-deep);
  letter-spacing: 2px;
}

.logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 4px;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink-deep);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink-deep);
  border-radius: 2px;
}

.lang-btn {
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-solid);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.lang-btn:hover {
  background: var(--pink-light);
  border-color: var(--pink-deep);
  color: var(--pink-deep);
}

.user-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #FFFFFF;
  box-shadow: var(--shadow-soft);
}

/* ---------- 4. Main Container ---------- */
.main {
  padding: 0 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- 5. Card Frame (الإطار الكبير) ---------- */
.card-frame {
  background: var(--bg-frame);
  border: 2px dashed var(--border-dashed);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  position: relative;
}

/* ---------- 6. Brand Block ---------- */
.brand-block {
  text-align: center;
  margin-bottom: 40px;
}

.brand-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--pink-deep);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.heart {
  color: var(--pink-deep);
  font-size: 14px;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink-light);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ---------- 7. Week Selector ---------- */
.week-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.week-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.week-btn:hover {
  background: var(--pink-light);
  border-color: var(--pink-deep);
  color: var(--pink-deep);
  transform: scale(1.05);
}

.week-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 180px;
  text-align: center;
}

/* ---------- 8. Days Grid (الأعمدة الخمسة) ---------- */
.days-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.day-column {
  border: 2px dashed var(--border-dashed);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: #FFFFFF;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.day-header {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.day-sunday    .day-header { background: var(--pink-soft); }
.day-monday    .day-header { background: var(--yellow-soft); }
.day-tuesday   .day-header { background: var(--blue-soft); }
.day-wednesday .day-header { background: var(--beige-soft); }
.day-thursday  .day-header { background: var(--green-soft); }

/* ---------- 9. Workshop Card (كارد الورشة) ---------- */
.workshop-slider {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.workshop-card {
  background: #FEFCF8;
  border: 2px dashed var(--border-solid);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.workshop-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #F5EFE4;
}

.workshop-info {
  background: #F5F0E8;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.workshop-info-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.workshop-info-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.workshop-price {
  background: #FFFFFF;
  border: 1px dashed var(--border-solid);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.book-btn {
  background: var(--btn-dark);
  color: #FFFFFF;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  transition: background 0.2s, transform 0.1s;
}

.book-btn:hover {
  background: var(--btn-dark-hover);
}

.book-btn:active {
  transform: scale(0.97);
}

.book-btn:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

/* ---------- 10. Slider Dots (نقاط السلايدر) ---------- */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 4px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-dashed);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.slider-dot.active {
  background: var(--pink-deep);
  width: 18px;
  border-radius: 4px;
}

.slider-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.slider-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.slider-arrow:hover {
  background: var(--pink-light);
  border-color: var(--pink-deep);
  color: var(--pink-deep);
}

.slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ---------- 11. Footer Note ---------- */
.footer-note {
  background: var(--pink-light);
  border-radius: 100px;
  padding: 16px 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ---------- 12. Loading / Empty States ---------- */
.loading-state,
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-dashed);
  border-top-color: var(--pink-deep);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- 13. Modal Overlay ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60, 50, 40, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- 14. Booking Modal ---------- */
.modal {
  background: var(--bg-frame);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-modal);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--pink-light);
  color: var(--pink-deep);
}

.modal-header {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.modal-image {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: #F5EFE4;
  flex-shrink: 0;
}

.modal-workshop-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.modal-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.modal-meta {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-size: 11px;
  color: var(--text-muted);
}

.meta-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-section-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

/* ---------- 15. Slots Grid ---------- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.slot-btn {
  background: #FFFFFF;
  border: 2px solid var(--border-solid);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slot-btn:hover:not(:disabled) {
  border-color: var(--pink-deep);
  background: var(--pink-light);
}

.slot-btn.selected {
  border-color: var(--pink-deep);
  background: var(--pink-light);
  box-shadow: 0 0 0 3px rgba(232, 160, 168, 0.2);
}

.slot-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #F5F5F5;
}

.slot-time {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.slot-seats {
  font-size: 11px;
  color: var(--text-muted);
}

.slot-btn.selected .slot-seats {
  color: var(--pink-deep);
  font-weight: 600;
}

.slot-btn.full .slot-time {
  text-decoration: line-through;
  color: var(--text-muted);
}

/* ---------- 16. Buttons ---------- */
.btn-primary {
  background: var(--btn-dark);
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover:not(:disabled) {
  background: var(--btn-dark-hover);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--border-solid);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--pink-light);
  border-color: var(--pink-deep);
}

/* ---------- 17. Confirmation Card ---------- */
.confirmation-card {
  background: var(--bg-frame);
  border: 2px dashed var(--border-dashed);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  animation: slideUp 0.3s ease;
}

.confirmation-heart {
  font-size: 48px;
  color: var(--pink-deep);
  margin-bottom: 16px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}

.confirmation-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.confirmation-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.confirmation-text.small {
  font-size: 13px;
  color: var(--text-muted);
}

.confirmation-number {
  background: var(--pink-light);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  margin: 16px 0;
  font-size: 15px;
  color: var(--text-primary);
}

.confirmation-number strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--pink-deep);
  margin-right: 6px;
  letter-spacing: 1px;
}

.confirmation-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-deep);
  letter-spacing: 2px;
  margin: 16px 0 24px;
}

.confirmation-contact {
  background: var(--green-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.confirmation-contact p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #25D366;
  transition: opacity 0.2s;
}

.whatsapp-link:hover {
  opacity: 0.8;
}

.whatsapp-icon {
  font-size: 18px;
}

.confirmation-actions {
  display: flex;
  gap: 10px;
}

.confirmation-actions > * {
  flex: 1;
}

/* ---------- 18. Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--btn-dark);
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-modal);
  z-index: 2000;
  animation: slideUp 0.3s ease;
  max-width: 90%;
  text-align: center;
}

.toast.hidden {
  display: none;
}

.toast.success { background: var(--success); }
.toast.error   { background: var(--error); }

/* ---------- 19. Responsive ---------- */
@media (max-width: 1100px) {
  .days-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .brand-title { font-size: 32px; }
  .page-badge  { font-size: 16px; padding: 10px 20px; }
  .card-frame  { padding: 32px 16px; }

  .days-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal { padding: 24px 20px; }
  .modal-header { flex-direction: column; }
  .modal-image { width: 100%; height: 160px; }

  .slots-grid { grid-template-columns: 1fr; }
  .confirmation-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .days-grid {
    grid-template-columns: 1fr;
  }

  .week-label { font-size: 13px; min-width: 120px; }
  .brand-title { font-size: 28px; }
}

/* ---------- 20. RTL/LTR Adjustments ---------- */
html[dir="ltr"] .logo { align-items: flex-start; }
html[dir="ltr"] .modal-close { left: auto; right: 16px; }
html[dir="ltr"] .confirmation-number strong { margin-right: 0; margin-left: 6px; }

/* ---------- 21. Utility ---------- */
.hidden { display: none !important; }

/* ---------- 22. Admin Link ---------- */
.admin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: var(--pink-light);
  border: 1px solid var(--pink-deep);
  font-size: 13px;
  font-weight: 700;
  color: var(--pink-deep);
  transition: all 0.2s;
  white-space: nowrap;
}

.admin-link:hover {
  background: var(--pink-deep);
  color: #FFFFFF;
}

/* ---------- 23. Past States ---------- */
.day-column.day-past {
  opacity: 0.55;
  filter: grayscale(0.3);
}

.day-column.day-past .day-header {
  background: #E8E8E8 !important;
  color: #909090;
}

.day-column.day-past .book-btn {
  background: #C8C8C8 !important;
  cursor: not-allowed;
}

.slot-btn.past {
  opacity: 0.45;
  cursor: not-allowed;
  background: #F0F0F0;
}

.slot-btn.past .slot-time {
  text-decoration: line-through;
  color: #909090;
}

/* ---------- Empty Week State ---------- */
.empty-week-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-frame);
  border: 2px dashed var(--border-dashed);
  border-radius: var(--radius-lg);
  max-width: 500px;
  margin: 0 auto;
}

.empty-week-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.empty-week-state h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.empty-week-state p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* ============================================
   DARK MODE
   ============================================ */

html[data-theme="dark"] {
  --bg-page:        #1A1A1A;
  --bg-card:        #252525;
  --bg-frame:       #1F1F1F;
  --border-dashed:  #3A3A3A;
  --border-solid:   #333333;

  --pink-soft:      #4A2A2D;
  --pink-light:     #3A2025;
  --pink-deep:      #E8A0A8;

  --yellow-soft:    #4A4030;
  --blue-soft:      #2A3A45;
  --beige-soft:     #3D2F25;
  --green-soft:     #2F3D28;

  --text-primary:   #E8E8E8;
  --text-secondary: #A8A8A8;
  --text-muted:     #707070;

  --btn-dark:       #E8A0A8;
  --btn-dark-hover: #F0B0B8;

  --success:        #7FA87F;
  --error:          #E08A8A;

  --shadow-soft:    0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover:   0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-modal:   0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Header adjustments */
html[data-theme="dark"] .header {
  background: #1A1A1A;
}

/* Card frame */
html[data-theme="dark"] .card-frame {
  background: var(--bg-frame);
}

/* User avatar */
html[data-theme="dark"] .user-avatar {
  border-color: #3A3A3A;
}

/* Language button */
html[data-theme="dark"] .lang-btn {
  background: #252525;
  border-color: #3A3A3A;
}

html[data-theme="dark"] .lang-btn:hover {
  background: var(--pink-light);
}

/* Admin link */
html[data-theme="dark"] .admin-link {
  background: var(--pink-light);
}

/* Book button */
html[data-theme="dark"] .book-btn {
  color: #1A1A1A;
}

/* Slot buttons */
html[data-theme="dark"] .slot-btn {
  background: #252525;
  border-color: #3A3A3A;
}

html[data-theme="dark"] .slot-btn:hover:not(:disabled) {
  background: var(--pink-light);
  border-color: var(--pink-deep);
}

html[data-theme="dark"] .slot-btn.selected {
  background: var(--pink-light);
  border-color: var(--pink-deep);
}

html[data-theme="dark"] .slot-btn:disabled {
  background: #202020;
}

/* Modals */
html[data-theme="dark"] .modal {
  background: var(--bg-frame);
}

html[data-theme="dark"] .modal-overlay {
  background: rgba(0, 0, 0, 0.75);
}

html[data-theme="dark"] .modal-close {
  background: #333;
  color: var(--text-primary);
}

/* Inputs */
html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  background: #252525 !important;
  color: var(--text-primary) !important;
  border-color: #3A3A3A !important;
}

html[data-theme="dark"] input::placeholder {
  color: var(--text-muted) !important;
}

/* Theme toggle button */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-secondary);
}

.theme-toggle:hover {
  background: var(--pink-light);
  border-color: var(--pink-deep);
  transform: scale(1.05);
}

html[data-theme="dark"] .theme-toggle {
  background: #252525;
  border-color: #3A3A3A;
}

/* ============================================
   DARK MODE — Extra Fixes
   ============================================ */

/* Day columns */
html[data-theme="dark"] .day-column {
  background: #252525;
  border-color: #3A3A3A;
}

/* Workshop cards */
html[data-theme="dark"] .workshop-card {
  background: #1F1F1F;
  border-color: #3A3A3A;
}

html[data-theme="dark"] .workshop-info {
  background: #2A2A2A;
}

html[data-theme="dark"] .workshop-info-label {
  color: #A8A8A8;
}

html[data-theme="dark"] .workshop-info-value {
  color: #E8E8E8;
}

html[data-theme="dark"] .workshop-price {
  background: #2A2A2A;
  border-color: #3A3A3A;
  color: #E8E8E8;
}

/* Empty state */
html[data-theme="dark"] .empty-state {
  color: #A8A8A8;
}

/* Slider arrows */
html[data-theme="dark"] .slider-arrow {
  background: #2A2A2A;
  border-color: #3A3A3A;
  color: #A8A8A8;
}

html[data-theme="dark"] .slider-arrow:hover {
  background: var(--pink-light);
  border-color: var(--pink-deep);
  color: var(--pink-deep);
}

/* Slider dots */
html[data-theme="dark"] .slider-dot {
  background: #3A3A3A;
}

/* Week arrows */
html[data-theme="dark"] .week-btn {
  background: #2A2A2A;
  border-color: #3A3A3A;
  color: #A8A8A8;
}

html[data-theme="dark"] .week-btn:hover {
  background: var(--pink-light);
  border-color: var(--pink-deep);
  color: var(--pink-deep);
}

/* Footer note */
html[data-theme="dark"] .footer-note {
  background: var(--pink-light);
  color: #E8E8E8;
}

/* Day headers - darker */
html[data-theme="dark"] .day-sunday .day-header {
  background: #4A2A2D;
  color: #E8E8E8;
}

html[data-theme="dark"] .day-monday .day-header {
  background: #4A4030;
  color: #E8E8E8;
}

html[data-theme="dark"] .day-tuesday .day-header {
  background: #2A3A45;
  color: #E8E8E8;
}

html[data-theme="dark"] .day-wednesday .day-header {
  background: #3D2F25;
  color: #E8E8E8;
}

html[data-theme="dark"] .day-thursday .day-header {
  background: #2F3D28;
  color: #E8E8E8;
}

/* Book button */
html[data-theme="dark"] .book-btn {
  background: var(--pink-deep);
  color: #1A1A1A;
  font-weight: 800;
}

html[data-theme="dark"] .book-btn:hover {
  background: #F0B0B8;
}

html[data-theme="dark"] .book-btn:disabled {
  background: #3A3A3A;
  color: #707070;
}

/* Page badge */
html[data-theme="dark"] .page-badge {
  background: var(--pink-light);
  color: #E8E8E8;
}

/* Brand title */
html[data-theme="dark"] .brand-title,
html[data-theme="dark"] .brand-subtitle,
html[data-theme="dark"] .logo-mark {
  color: var(--pink-deep);
}

/* Logo sub في الدارك مود */
html[data-theme="dark"] .logo-sub {
  color: var(--pink-deep);
  opacity: 0.85;
}

