/* ============================================================
   FOGLALÁS OLDAL – foglalas.css
   Teljesen illeszkedik az Ágoston Szilvia design rendszerhez
   Dark luxury | Arany accents | Playfair Display
   ============================================================ */

/* ---- Hero ---- */
.booking-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 80px;
}
.booking-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.12) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}
.booking-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  animation: float 15s ease-in-out infinite reverse;
}
.booking-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
}
.booking-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold, #d4af37);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  color: var(--secondary-gold, #f4e4c1);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-weight: 500;
}
.booking-hero-badge i {
  color: var(--primary-gold, #d4af37);
  font-size: 18px;
}
.booking-hero-title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 3px;
  margin: 0 0 16px;
  background: var(--gradient-gold, linear-gradient(135deg, #d4af37, #f4e4c1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}
.booking-hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  margin: 0;
  font-family: var(--font-body, "Montserrat", sans-serif);
  letter-spacing: 1px;
}

/* ---- Utility classes (JS-generated HTML számára) ---- */
.icon-lg {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
.calendar-error {
  grid-column: 1 / -1;
  text-align: center;
  color: #e53935;
  padding: 40px;
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-size: 14px;
}
.calendar-loading-inner {
  grid-column: 1 / -1;
}
.btn-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ---- Main Layout ---- */
.booking-main {
  background: var(--gray-light, #f5f5f5);
  padding: 60px 0 100px;
}
.booking-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Progress Steps ---- */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  gap: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}
.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  /* Force hardware acceleration and border radius */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.step-circle i {
  font-size: 24px;
  color: #bbb;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.step.active .step-circle {
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  transform: scale(1.1) translateZ(0);
  -webkit-transform: scale(1.1) translateZ(0);
  background: transparent;
}
/* Foolproof way to do a rounded gradient that scales in Safari */
.step.active .step-circle::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f4e4c1);
  z-index: 1;
}
.step.active .step-circle i {
  color: #0a0a0a;
}
.step.done .step-circle {
  background: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.step.done .step-circle i {
  color: var(--primary-gold, #d4af37);
  font-size: 22px;
}
.step-label {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body, "Montserrat", sans-serif);
  transition: color 0.3s;
}
.step.active .step-label {
  color: var(--primary-gold, #d4af37);
}
.step.done .step-label {
  color: #0a0a0a;
}
.step-line {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  max-width: 120px;
  margin: 0 8px;
  margin-bottom: 30px;
  transition: background 0.4s;
}
.step-line.done {
  background: linear-gradient(90deg, var(--primary-gold, #d4af37), #f4e4c1);
}

/* ---- Step Content ---- */
.booking-step-content {
  animation: fadeInUp 0.4s ease;
}
.booking-step-content.hidden {
  display: none;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Section Header ---- */
.step-header {
  text-align: center;
  margin-bottom: 40px;
}
.step-header h2 {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-dark, #0a0a0a);
  margin: 0 0 10px;
  font-weight: 700;
}
.step-subtitle-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-gold, #d4af37);
  margin-bottom: 12px;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.step-header p {
  color: var(--gray-medium, #4a4a4a);
  font-size: 15px;
  margin: 0;
}
.calendar-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px !important;
  font-size: 14px;
}
.legend-box {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  vertical-align: middle;
}
.legend-box.available {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 1px solid #a5d6a7;
}
.legend-box.busy {
  background: #f0f0f0;
  border: 1px solid #e8e8e8;
}

/* ============================
   STEP 1: KOMPAKT KEZELÉS LISTA
   ============================ */

/* Keresősor + szűrő */
.service-filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.service-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.service-search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-gold, #d4af37);
  font-size: 18px;
}
.service-search {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  font-family: var(--font-body, "Montserrat", sans-serif);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  color: #0a0a0a;
}
.service-search:focus {
  outline: none;
  border-color: var(--primary-gold, #d4af37);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.category-filter {
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  font-family: var(--font-body, "Montserrat", sans-serif);
  color: #0a0a0a;
  cursor: pointer;
  transition: border-color 0.2s;
}
.category-filter:focus {
  outline: none;
  border-color: var(--primary-gold, #d4af37);
}

/* Scrollozható kezelés lista */
.service-list-container {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  overflow: hidden;
  padding: 10px 0;
}
.service-category-group {
  margin-bottom: 40px;
}
.category-group-title {
  color: var(--primary-gold, #d4af37);
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 22px;
  font-weight: 700;
  margin: 35px 24px 15px 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.service-category-group:first-child .category-group-title {
  margin-top: 20px;
}
.service-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  margin: 8px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.service-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #ffffff, #fffcf5);
}
.service-list-item.selected {
  background: linear-gradient(135deg, #fffcf5, #fff8e8);
  border: 2px solid var(--primary-gold, #d4af37);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
  transform: scale(1.01);
}
.service-list-item.hidden-item {
  display: none;
}

.service-icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f4e4c1, #d4af37);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon-wrap i {
  font-size: 20px;
  color: #0a0a0a;
}
.service-list-info {
  flex: 1;
  min-width: 0;
}
.service-list-category {
  font-size: 10px;
  color: var(--primary-gold, #d4af37);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body, "Montserrat", sans-serif);
  margin-bottom: 2px;
}
.service-list-name {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1rem;
  color: #0a0a0a;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-list-subtitle {
  font-size: 12px;
  color: #7a7a7a;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Ár opciók inline */
.service-price-pills {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.price-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fafafa;
  min-width: 85px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.price-pill:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: #fffdf5;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(212, 175, 55, 0.1);
}
.price-pill.active {
  border-color: var(--primary-gold, #d4af37);
  background: linear-gradient(135deg, #f4e4c1, #d4af37);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}
.price-pill input[type="radio"] {
  display: none;
}
.price-pill-duration {
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0a;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.price-pill-price {
  font-size: 11px;
  color: #7a7a7a;
  font-family: var(--font-body, "Montserrat", sans-serif);
  margin-top: 2px;
}
.price-pill.active .price-pill-duration,
.price-pill.active .price-pill-price {
  color: #0a0a0a;
}

.service-select-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #d4af37, #f4e4c1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  color: #0a0a0a;
  font-size: 18px;
}
.service-select-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}
.no-services {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.no-results-msg {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
  font-family: var(--font-body, "Montserrat", sans-serif);
  display: none;
}

/* ============================
   STEP 2: HÉT NÉZET
   ============================ */

/* Selected Service Banner */
.selected-service-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.selected-service-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.selected-service-info i {
  font-size: 24px;
  color: var(--primary-gold, #d4af37);
}
.selected-service-name {
  display: block;
  font-family: var(--font-display, "Playfair Display", serif);
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}
.selected-service-duration {
  display: block;
  font-size: 12px;
  color: rgba(212, 175, 55, 0.8);
  letter-spacing: 1px;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.btn-change-service {
  padding: 8px 18px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  color: var(--primary-gold, #d4af37);
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  font-weight: 500;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.btn-change-service:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--primary-gold, #d4af37);
}

/* Week Navigator */
.week-navigator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.week-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  color: var(--gray-medium, #4a4a4a);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.week-nav-btn:hover:not(:disabled) {
  border-color: var(--primary-gold, #d4af37);
  color: #0a0a0a;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
}
.week-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.week-title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.1rem;
  color: var(--primary-dark, #0a0a0a);
  font-weight: 600;
  text-align: center;
}

/* Week Calendar – New Day-Selector + Time Grid Layout */
.week-calendar {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

/* ---- Day Selector Strip ---- */
.day-selector-strip {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-top: 8px; /* Room for hover translation */
  padding-bottom: 8px; /* Room for active shadow */
  -webkit-overflow-scrolling: touch;
}
.day-selector-strip::-webkit-scrollbar {
  height: 3px;
}
.day-selector-strip::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 10px;
}
.day-selector-btn {
  flex: 1;
  min-width: 80px;
  padding: 14px 8px 12px;
  border-radius: 14px;
  border: 2px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-family: var(--font-body, "Montserrat", sans-serif);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.day-selector-btn:hover:not(:disabled) {
  border-color: var(--primary-gold, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.15);
}
.day-selector-btn.active {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-color: var(--primary-gold, #d4af37);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}
.day-selector-btn.active .ds-name {
  color: var(--primary-gold, #d4af37);
}
.day-selector-btn.active .ds-num {
  color: #fff;
}
.day-selector-btn.active .ds-status {
  color: rgba(244, 228, 193, 0.9);
}
.day-selector-btn.is-today {
  border-color: var(--primary-gold, #d4af37);
}
.day-selector-btn.is-today:not(.active) .ds-num {
  color: var(--primary-gold, #d4af37);
}
.day-selector-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ds-name {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #888;
}
.ds-num {
  font-size: 22px;
  font-weight: 800;
  color: #0a0a0a;
  font-family: var(--font-display, "Playfair Display", serif);
  line-height: 1.1;
}
.ds-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.day-free .ds-status {
  color: #2e7d32;
}
.day-few .ds-status {
  color: #e65100;
}
.day-full .ds-status {
  color: #bbb;
}
.day-closed .ds-status {
  color: #ccc;
}

/* ---- Time Grid ---- */
.day-time-grid {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  padding: 24px;
  min-height: 120px;
}
.time-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}
.tg-day {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
}
.tg-count {
  font-size: 13px;
  color: #2e7d32;
  font-weight: 600;
  background: #e8f5e9;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.time-grid-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}
.time-grid-btn {
  padding: 12px 8px;
  border-radius: 10px;
  border: 2px solid #e8f5e9;
  background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
  color: #1b5e20;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.time-grid-btn:hover {
  background: linear-gradient(135deg, #c8e6c9, #81c784);
  border-color: #81c784;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}
.time-grid-btn.selected {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  color: #0a0a0a;
  border-color: #d4af37;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

/* No slots message */
.no-slots-msg {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}
.no-slots-msg i {
  font-size: 40px;
  color: #ddd;
  margin-bottom: 12px;
  display: block;
}
.no-slots-msg p {
  font-size: 14px;
  font-family: var(--font-body, "Montserrat", sans-serif);
  margin: 0;
}

.calendar-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-medium, #4a4a4a);
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e8e8e8;
  border-top-color: var(--primary-gold, #d4af37);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile responsive */
@media (max-width: 600px) {
  .day-selector-strip {
    gap: 4px;
  }
  .day-selector-btn {
    min-width: 75px;
    padding: 10px 4px 8px;
  }
  .ds-num {
    font-size: 18px;
  }
  .ds-name {
    font-size: 8.5px;
    letter-spacing: 0px;
  }
  .day-time-grid {
    padding: 16px;
  }
  .time-grid-buttons {
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 6px;
  }
  .time-grid-btn {
    padding: 10px 6px;
    font-size: 13px;
  }
}

/* ============================
   STEP 3: ADATOK + FORM
   ============================ */

/* Booking Summary Card */
.booking-summary-card {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.summary-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.summary-row i {
  font-size: 20px;
  color: var(--primary-gold, #d4af37);
  margin-top: 2px;
  flex-shrink: 0;
}
.summary-label {
  display: block;
  font-size: 10px;
  color: rgba(212, 175, 55, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 3px;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.summary-value {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-body, "Montserrat", sans-serif);
}

/* Contact Form */
.booking-form {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group-full {
  grid-column: 1/-1;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-dark, #1a1a1a);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.form-group label i {
  color: var(--primary-gold, #d4af37);
  font-size: 16px;
}
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 15px;
  color: #0a0a0a;
  background: #fafafa;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold, #d4af37);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}
.form-hint {
  font-size: 11px;
  color: #aaa;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-privacy {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(250, 250, 250, 0.8);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-medium, #4a4a4a);
  cursor: pointer;
  line-height: 1.5;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.privacy-label input {
  margin-top: 3px;
  accent-color: var(--primary-gold, #d4af37);
  transform: scale(1.1);
}
.privacy-label a {
  color: var(--primary-gold, #d4af37);
  text-decoration: underline;
  font-weight: 600;
}

.form-error {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(231, 76, 60, 0.05);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  color: #c0392b;
  font-size: 14px;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.form-error.hidden {
  display: none;
}
.form-error i {
  font-size: 20px;
  flex-shrink: 0;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 10px;
}
.btn-back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--primary-gold, #d4af37);
  border-radius: 14px;
  color: var(--primary-dark, #0a0a0a);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body, "Montserrat", sans-serif);
  letter-spacing: 0.5px;
}
.btn-back:hover {
  background: var(--gradient-gold, linear-gradient(135deg, #d4af37, #f4e4c1));
  color: #0a0a0a;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}
.btn-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gradient-gold, linear-gradient(135deg, #d4af37, #f4e4c1));
  color: #0a0a0a;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body, "Montserrat", sans-serif);
  letter-spacing: 0.5px;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}
.btn-submit:hover::before {
  width: 300px;
  height: 300px;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}
.btn-submit i {
  position: relative;
  z-index: 1;
}
.btn-submit span {
  position: relative;
  z-index: 1;
}

/* ============================
   SUCCESS STATE
   ============================ */
.success-container {
  text-align: center;
  padding: 40px 20px;
  max-width: 580px;
  margin: 0 auto;
}
.success-icon {
  margin-bottom: 28px;
}
.success-checkmark {
  display: inline-block;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
  border-radius: 50%;
  padding: 16px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}
@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.success-checkmark svg {
  width: 100%;
  height: 100%;
}
.success-checkmark svg circle {
  stroke: rgba(0, 0, 0, 0.15);
  stroke-width: 2;
}
.success-checkmark svg path {
  stroke: #0a0a0a;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: draw 0.5s 0.3s ease forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.success-title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 2.2rem;
  color: var(--primary-dark, #0a0a0a);
  margin: 0 0 14px;
  font-weight: 700;
}
.success-subtitle {
  color: var(--gray-medium, #4a4a4a);
  font-size: 16px;
  margin: 0 0 28px;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.success-details {
  background: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 20px;
  text-align: left;
}
.success-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.success-detail-row:last-child {
  border: none;
}
.success-detail-label {
  font-size: 12px;
  color: rgba(212, 175, 55, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.success-detail-value {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
.success-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbea;
  border: 1px solid #ffd77a;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 28px;
  text-align: left;
}
.success-note i {
  color: #e8a000;
  font-size: 20px;
  flex-shrink: 0;
}
.success-note p {
  margin: 0;
  font-size: 13px;
  color: #5a4500;
  line-height: 1.5;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-home,
.btn-new-booking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-family: var(--font-body, "Montserrat", sans-serif);
  letter-spacing: 0.5px;
}
.btn-home {
  background: transparent;
  border: 2px solid var(--primary-gold, #d4af37);
  color: var(--primary-dark, #0a0a0a);
}
.btn-home:hover {
  background: var(--gradient-gold, linear-gradient(135deg, #d4af37, #f4e4c1));
}
.btn-new-booking {
  background: var(--gradient-gold, linear-gradient(135deg, #d4af37, #f4e4c1));
  border: none;
  color: #0a0a0a;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}
.btn-new-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* ============================
   CANCEL PAGE
   ============================ */
.cancel-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light, #f5f5f5);
  padding: 120px 20px 60px;
}
.cancel-container {
  max-width: 540px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
  padding: 52px 44px;
  text-align: center;
  box-shadow: var(--shadow-medium, 0 10px 40px rgba(0, 0, 0, 0.1));
}
.cancel-icon {
  font-size: 72px;
  margin-bottom: 20px;
  line-height: 1;
}
.cancel-icon-success {
  color: #4caf50;
}
.cancel-icon-warning {
  color: #ff9800;
}
.cancel-icon-error {
  color: #e53935;
}
.cancel-title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.9rem;
  color: var(--primary-dark, #0a0a0a);
  margin: 0 0 12px;
  font-weight: 700;
}
.cancel-message {
  color: var(--gray-medium, #4a4a4a);
  font-size: 15px;
  margin: 0 0 24px;
  line-height: 1.6;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.cancel-booking-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}
.cancel-booking-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cancel-booking-row:last-child {
  border: none;
}
.cancel-booking-row i {
  color: var(--primary-gold, #d4af37);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.cancel-booking-label {
  display: block;
  font-size: 10px;
  color: var(--primary-gold, #d4af37);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.cancel-booking-value {
  display: block;
  font-size: 14px;
  color: #0a0a0a;
  font-weight: 600;
  margin-top: 2px;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.cancel-email-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-medium, #4a4a4a);
  margin-bottom: 24px;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.cancel-phone {
  font-size: 15px;
  color: var(--gray-medium, #4a4a4a);
  margin-bottom: 24px;
  font-family: var(--font-body, "Montserrat", sans-serif);
}
.cancel-phone a {
  color: var(--primary-gold, #d4af37);
  font-weight: 700;
}
.cancel-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cancel-home,
.btn-cancel-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  font-family: var(--font-body, "Montserrat", sans-serif);
  letter-spacing: 0.5px;
}
.btn-cancel-home {
  background: transparent;
  border: 2px solid var(--primary-gold, #d4af37);
  color: var(--primary-dark, #0a0a0a);
}
.btn-cancel-home:hover {
  background: var(--gradient-gold, linear-gradient(135deg, #d4af37, #f4e4c1));
}
.btn-cancel-new {
  background: var(--gradient-gold, linear-gradient(135deg, #d4af37, #f4e4c1));
  border: none;
  color: #0a0a0a;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}
.btn-cancel-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .booking-hero {
    min-height: 40vh;
  }
  .booking-steps {
    gap: 0;
  }
  .step-line {
    max-width: 40px;
    margin: 0 4px;
    margin-bottom: 25px;
  }
  .step-circle {
    width: 50px;
    height: 50px;
  }
  .step-circle i {
    font-size: 20px;
  }
  .step.active .step-circle {
    transform: scale(1.05);
  }

  .service-list-item {
    flex-wrap: wrap;
    padding: 16px;
    gap: 15px;
  }
  .service-price-pills {
    align-self: flex-start;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .category-group-title {
    margin: 25px 16px 15px 16px;
  }
  .booking-form {
    padding: 24px 20px;
  }
  .booking-summary-card {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }
  .cancel-container {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .booking-hero-title {
    letter-spacing: 1px;
    font-size: 2rem;
  }
  .booking-hero-subtitle {
    font-size: 0.9rem;
  }

  /* Progress steps shrinking for tiny screens */
  .step-line {
    max-width: 25px;
    margin: 0 2px;
    margin-bottom: 20px;
  }
  .step-circle {
    width: 40px;
    height: 40px;
    border-width: 1px;
  }
  .step-circle i {
    font-size: 16px;
  }
  .step.done .step-circle i {
    font-size: 16px;
  }
  .step-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }

  /* Service list items and filters */
  .service-filter-bar {
    flex-direction: column;
    gap: 10px;
  }
  .service-search-wrap {
    width: 100%;
  }
  .category-filter {
    width: 100%;
  }

  .service-icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .service-list-name {
    font-size: 15px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
  }
  .service-list-subtitle {
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.4;
  }
  .price-pill {
    padding: 8px 12px;
    font-size: 12px;
  }
  .service-check-wrap {
    position: absolute;
    right: 16px;
    top: 16px;
    margin: 0;
  }
  .service-list-item {
    position: relative;
    padding-top: 50px;
  } /* Room for absolutely positioned checkbox */

  /* Calendar & Forms */
  .booking-summary-card {
    grid-template-columns: 1fr;
  }
  .week-navigator {
    flex-direction: column;
    gap: 8px;
  }
  .week-title {
    order: -1;
  }
  .form-actions {
    justify-content: center;
  }
  .btn-submit,
  .btn-back {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  /* Modal Mobile Fixes */
  .service-modal-body {
    padding: 20px 15px;
  }
  .upsell-modal-body h3 {
    font-size: 1.3rem;
  }
  .upsell-subtitle {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  .upsell-icon-wrap {
    width: 45px;
    height: 45px;
    font-size: 24px;
    margin: 0 auto 15px;
  }
  .upsell-actions {
    margin-top: 15px;
  }
  .premium-offer-box {
    padding: 10px;
  }
  .premium-offer-content h4 {
    font-size: 14px;
  }
  .premium-offer-content p {
    font-size: 12px;
  }
}

/* ============================================================
   MULTI-SELECT & CART BAR
   ============================================================ */

/* Multi-select checkbox container */
.service-check-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.service-check-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  background: transparent;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 20px;
}

.service-list-item:hover .service-check-btn {
  border-color: var(--primary-gold, #d4af37);
}

/* Kiválasztott állapot */
.service-list-item.selected {
  border-color: var(--primary-gold, #d4af37);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  background: #fffdf8;
}

.service-list-item.selected .service-check-btn {
  background: var(--primary-gold, #d4af37);
  border-color: var(--primary-gold, #d4af37);
  color: #fff;
  transform: scale(1.05);
}

.service-list-item.selected .service-check-btn i::before {
  content: "\ea3f"; /* bx-check */
}

/* Lebegő kosár sáv (Cart Bar) */
.booking-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.12);
  padding: 16px 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 2px solid var(--primary-gold, #d4af37);
}

.booking-cart-bar.visible {
  transform: translateY(0);
}

.cart-info {
  display: flex;
  flex-direction: column;
}

.cart-count {
  font-size: 13px;
  color: var(--gray-medium, #4a4a4a);
  font-family: var(--font-body, "Montserrat", sans-serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-duration {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark, #0a0a0a);
  font-family: "Playfair Display", serif;
}

.btn-cart-next {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: var(--primary-gold, #d4af37);
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 10, 10, 0.2);
}

.btn-cart-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 10, 10, 0.3);
  color: #fff;
}

/* Továbbfejlesztett Siker / Összegző lista lépés 3-ban */
.summary-service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.summary-service-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark, #0a0a0a);
  background: #f9f9f9;
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid var(--primary-gold, #d4af37);
}

@media (min-width: 768px) {
  .booking-cart-bar {
    max-width: 800px;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, 120%);
    border-radius: 12px 12px 0 0;
    bottom: 0;
  }
  .booking-cart-bar.visible {
    transform: translate(-50%, 0);
  }
}
@media (max-width: 480px) {
  .booking-cart-bar {
    padding: 14px 16px;
  }
  .btn-cart-next {
    padding: 10px 20px;
    font-size: 14px;
  }
}
#futureLimitMsg.hidden {
  display: none;
}

/* ====================================
   FEW SLOTS BADGE
   ==================================== */
.few-slots-badge {
  font-size: 0.75rem;
  color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  animation: pulseGlow 2s infinite alternate;
}

.few-slots-badge i {
  font-size: 1rem;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2);
  }
  100% {
    box-shadow: 0 0 8px 0 rgba(212, 175, 55, 0.1);
  }
}
/* ===================== INFO MODAL ===================== */
.service-list-name {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.service-info-btn {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-gold);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service-info-btn:hover {
  background: var(--primary-gold);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.service-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 15px;
}

.service-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-content {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-modal-body {
  padding: 40px 30px;
  overflow-y: auto;
  max-height: 90vh;
  border-radius: 16px;
}

/* Custom scrollbar for modal body */
.service-modal-body::-webkit-scrollbar {
  width: 6px;
}
.service-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  margin: 15px 0;
}
.service-modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 10px;
}

.service-modal-overlay.active .service-modal-content {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid #eee;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
}

.service-modal-close:hover {
  background: #f8f8f8;
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: rotate(90deg);
}

.modal-service-name {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-right: 40px;
  line-height: 1.3;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 15px;
}

.modal-service-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 300;
}

.modal-service-tech {
  font-size: 0.95rem;
  color: #222;
  background: rgba(212, 175, 55, 0.05);
  padding: 15px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-gold);
  margin-top: 20px;
}
.modal-service-tech strong {
  color: var(--primary-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hidden-item {
  display: none !important;
}

/* Premium Offer Box (Modal) */
.premium-offer-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-left: 4px solid #D4AF37;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.premium-offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.3) 50%, transparent 55%);
    background-size: 200% 200%;
    animation: shine 4s infinite linear;
    pointer-events: none;
}

.premium-offer-icon {
    font-size: 1.8rem;
    color: #D4AF37;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-offer-content h4 {
    color: #D4AF37;
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-offer-content p {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   UPSELL MODAL
   ========================================= */
.upsell-modal-content {
    background: #fff;
    text-align: center;
    border-top: 5px solid var(--primary-gold, #D4AF37);
}

.upsell-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.upsell-modal-body h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.upsell-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.upsell-modal-body .premium-offer-box {
    text-align: left;
}

.upsell-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.btn-upsell-accept {
    background: var(--primary-gold, #D4AF37);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-upsell-accept:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-upsell-decline {
    background: transparent;
    color: #888;
    border: none;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
}

.btn-upsell-decline:hover {
    color: #555;
}
