/* BASE */
body {
  background-color: #111;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
}


/* TABS (TOP) */
.nav-tabs .nav-link {
  color: #cccccc;
  font-weight: 600;
  transition: color 0.3s, background-color 0.3s;
}
.nav-tabs .nav-link.active {
  background-color: #d4af37;
  color: #111;
  border-color: #d4af37 #d4af37 #111;
}
.nav-tabs .nav-link:hover:not(.active) {
  color: #f5d76e;
}

.custom-tabs .nav-link {
  background-color: #1a1a1a;
  border: 1px solid #444;
  color: #cccccc;
}
.custom-tabs .nav-link.active {
  background-color: #d4af37;
  color: #111 !important;
  border-color: #d4af37;
}
.custom-tabs .nav-link .tab-content i {
  color: #d4af37;
}
.custom-tabs .nav-link.active .tab-content i {
  color: #111;
}

/* SIDE TABS */
.list-group-item {
  background-color: #1a1a1a;
  color: #cccccc;
  border: 1px solid #444;
}
.list-group-item:hover {
  background-color: #2a2a2a;
  color: #f5d76e;
}
.list-group-item.active {
  background-color: #d4af37;
  color: #111;
  font-weight: 700;
  border-color: #b08d2f;
}

/* SERVICE CARDS */
#servicesTable {
  background-color: #222222;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
}
.service-row {
  border-bottom: 1px solid #333;
}
.service-row:hover {
  background-color: #1f1f1f !important;
  color: #f5d76e;
}

/* CART BUTTON (BUBBLE) */
#cartBubble {
  background: linear-gradient(135deg, #d4af37, #b08d2f);
  color: #111;
  box-shadow: 0 6px 12px rgba(212, 175, 55, 0.4);
}
#cartBubble span {
  background-color: #ff1744;
}

/* CART POPUP */

#cartPopup {
  background: #222222;
  border: 1px solid #555;
  color: #f0f0f0;
}
#cartPopup .popup-header {
  border-bottom: 1px solid #444;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(145deg, #d4af37, #f5d76e, #b08d2f);
  border: 1px solid #b08d2f;
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
  background: linear-gradient(145deg, #f7e28e, #d4af37);
  color: #000;
}

/* OUTLINE BUTTONS */
.btn-outline-secondary {
  border: 1px solid #aaa;
  color: #ccc;
}
.btn-outline-secondary:hover {
  background-color: #333;
  color: #f5d76e;
}

/* CALENDAR & TIMES */
.calendar-day,
.time-slot-btn {
  border: 2px solid #d4af37;
  background-color: #111;
  color: #f5d76e;
}
.calendar-day.active,
.time-slot-btn.active {
  background-color: #d4af37;
  color: #111;
  border-color: #d4af37;
}
.time-slot-btn:hover:not(.active):not(:disabled) {
  background-color: #f5d76e;
  color: #111;
}

/* INPUT FIELDS */
.form-control {
  background-color: #111 !important;
  color: #f0f0f0;
  border: 1px solid #d4af37;
}
.form-control:focus {
  border-color: #f5d76e;
  box-shadow: 0 0 0 2px rgba(244, 215, 125, 0.3);
}
.form-label {
  color: #f5d76e;
}

/* SUMMARIES */
.bg-white {
  background-color: #222222 !important;
  color: #f0f0f0;
}

/* SCROLL BUTTONS */
.scroll-tab-btn {
  background: linear-gradient(145deg, #d4af37, #b08d2f);
  color: #111;
}

/* TOAST */
#toastNotification {
  background-color: #d4af37;
  color: #111;
}

/* DIVIDERS */
.border-top {
  border-top: 1px solid #555 !important;
}

/* CONFIRM BOX */
#summaryServices .d-flex,
#finalServices .d-flex {
  background-color: #1f1f1f;
  color: #f0f0f0;
}

/* MOBILE SIDE TABS */
#sideTabsMobile .list-group-item {
  background-color: #111;
  color: #ccc;
  border-color: #444;
}
#sideTabsMobile .list-group-item.active {
  background-color: #d4af37;
  color: #111;
}

/* SELECTED SERVICE PRICE TAG */
#selectedSummary strong,
#cartPopupContent strong {
  color: #f5d76e;
}

/* 🔧 OVERALL BACKGROUND DARK FIX */
body,
#mainContent,
#summaryServices .d-flex,
#finalServices .d-flex {
  background-color: #111 !important;
  color: #f0f0f0 !important;
}

/* 🔧 TOP TABS BACKGROUND FIX */
#topTabsContainer {
  background-color: #222222 !important;
  border: 1px solid #444 !important;
}
.custom-tabs .nav-link {
  background-color: #1a1a1a !important;
  color: #f5f5f5 !important;
  border: 1px solid #444 !important;
}
.custom-tabs .nav-link.active {
  background-color: #d4af37 !important;
  color: #111 !important;
  border-color: #d4af37 !important;
}
.custom-tabs .nav-link:hover:not(.active) {
  background-color: #2a2a2a !important;
  color: #f5d76e !important;
}
.custom-tabs .nav-link .tab-content i {
  color: #f5d76e !important;
}
.custom-tabs .nav-link.active .tab-content i {
  color: #111 !important;
}

/* 🔧 SIDE TABS FIX (Mobile + Desktop) */
#sideTabsMobile .list-group-item,
#sideTabsDesktop .list-group-item {
  background-color: #222222 !important;
  border: 1px solid #444 !important;
  color: #f0f0f0 !important;
}
#sideTabsMobile .list-group-item.active,
#sideTabsDesktop .list-group-item.active {
  background-color: #d4af37 !important;
  color: #222222 !important;
  font-weight: 700 !important;
  border-color: #b08d2f !important;
}
#sideTabsMobile .list-group-item:hover,
#sideTabsDesktop .list-group-item:hover {
  background-color: #2a2a2a !important;
  color: #f5d76e !important;
}

/* 🔧 CART TOTAL TOP BAR TEXT COLOR FIX */
#cartTotalDisplay {
  color: #f5d76e !important;
}

/* 🔧 "ADD" BUTTON FIX */
.service-row button,
.btn-outline-success {
  background: linear-gradient(145deg, #d4af37, #f5d76e, #b08d2f) !important;
  color: #111 !important;
  border: 1px solid #b08d2f !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
}
.service-row button:hover {
  background: linear-gradient(145deg, #f7e28e, #d4af37) !important;
  color: #000 !important;
}

/* 🔧 INLINE CHECKOUT BUTTON (FLOATING) */
#inlineChooseTimeBtn.btn-primary {
  background: linear-gradient(145deg, #d4af37, #f5d76e, #b08d2f) !important;
  border-color: #b08d2f !important;
  color: #111 !important;
  font-weight: 700 !important;
}
#inlineChooseTimeBtn.btn-primary:hover {
  background: linear-gradient(145deg, #f7e28e, #d4af37) !important;
  color: #000 !important;
}
/* 🔧 FULL BLACK SIDE TAB PANEL BACKGROUND */
#sideTabsMobile,
#sideTabsDesktop {
  background-color: #222222 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 8px !important;
  border-radius: 12px !important;
}
/* 🔧 "Back to Services" LINK COLOR FIX */
a.text-primary,
a.text-primary:visited {
  color: #d4af37 !important;
}
#textmuted {
  color: #e9e9e9 !important;
}
a.text-primary:hover {
  color: #f5d76e !important;
  text-decoration: underline !important;
}
a.text-primary i {
  color: #d4af37 !important;
}

/* 🔧 DATE BUTTONS — BASE + ACTIVE FIX */

.calendar-day {
  background-color: #111 !important;
  border: 2px solid #d4af37 !important;
  color: #f5d76e !important;
  transition: all 0.2s ease-in-out;
}
.calendar-day:hover {
  background-color: #2a2a2a !important;
  color: #f5d76e !important;
}
.calendar-day.active {
  background-color: #d4af37 !important;
  color: #111 !important;
  border-color: #f5d76e !important;
  font-weight: 700 !important;
}

/* 🔧 TIME BUTTONS */
.time-slot-btn {
  background-color: #111 !important;
  border: 2px solid #d4af37 !important;
  color: #f5d76e !important;
}
.time-slot-btn:hover:not(.active):not(:disabled) {
  background-color: #f5d76e !important;
  color: #111 !important;
}
.time-slot-btn.active {
  background-color: #d4af37 !important;
  color: #111 !important;
  border-color: #f5d76e !important;
}

/* 🔧 DISABLED TIME BUTTON */
.time-slot-btn.disabled {
  background-color: #222 !important;
  color: #666 !important;
  border: 2px solid #444 !important;
  cursor: not-allowed !important;
}

/* 🔧 CONFIRM BOOKING BUTTON FIX */
#confirmBtn.btn-primary {
  background: linear-gradient(145deg, #d4af37, #f5d76e, #b08d2f) !important;
  border-color: #b08d2f !important;
  color: #111 !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}
#confirmBtn.btn-primary:hover {
  background: linear-gradient(145deg, #f7e28e, #d4af37) !important;
  color: #000 !important;
}

/* 🔧 SEE MORE DATES BUTTON */
#seeMoreBtn {
  background-color: transparent !important;
  border: 1px solid #999 !important;
  color: #ccc !important;
}
#seeMoreBtn:hover {
  background-color: #222 !important;
  color: #f5d76e !important;
  border-color: #d4af37 !important;
}
/* 🔥 KILL THE BLUE ON SELECTED DATE */
.calendar-day.btn-outline-primary.active,
.calendar-day.active,
.calendar-day:focus,
.calendar-day:active,
.calendar-day:focus-visible {
  background-color: #d4af37 !important;
  color: #ffffff !important;
  border-color: #d4af37 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

/* 👆 Also guards against Bootstrap focus/active/focus-visible behaviors */

/* BONUS: UNSELECTED hover state still golden on dark */
.calendar-day:hover:not(.active) {
  background-color: #2a2a2a !important;
  color: #f5d76e !important;
  border-color: #f5d76e !important;
}
/* ✅ KILL ALL BLUE — SELECTED DATE BUTTON */
button.calendar-day.active,
button.calendar-day.btn-outline-primary.active,
.calendar-day.btn-outline-primary.active,
.calendar-day.btn-outline-primary:focus,
.calendar-day.btn-outline-primary:active,
.calendar-day:focus,
.calendar-day:active,
.calendar-day:focus-visible {
  background-color: #d4af37 !important;
  color: #ffffff !important;
  border-color: #d4af37 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
  outline: none !important;
}

/* ✅ Make sure hover on unselected dates is also golden */
.calendar-day:hover:not(.active) {
  background-color: #2a2a2a !important;
  color: #f5d76e !important;
  border-color: #f5d76e !important;
}

/* 🚫 FINAL: FORCE CALENDAR BUTTON ACTIVE STATE TO GOLD */
/* 🔥 FULL RESET FOR DATE SELECTION BUTTONS */
button.calendar-day,
.calendar-day {
  background-color: #111 !important;
  color: #f5d76e !important;
  border: 2px solid #d4af37 !important;
  border-radius: 12px !important;
  font-weight: 600;
  transition: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* 🟡 SELECTED DATE (ACTIVE) */
button.calendar-day.active,
.calendar-day.active,
button.calendar-day:focus,
button.calendar-day:active,
button.calendar-day:focus-visible,
.calendar-day:focus,
.calendar-day:active,
.calendar-day:focus-visible {
  background-color: #d4af37 !important;
  color: #ffffff !important;
  border-color: #f5d76e !important;
  font-weight: 700 !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ✨ HOVER STATE */
.calendar-day:hover {
  background-color: #2a2a2a !important;
  color: #f5d76e !important;
}

.text-muted {
  color: #999 !important;
}

.bg-light {
  background-color: #222222 !important;
  color: #fff !important;
}