@charset "UTF-8";
.booking-wizard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.booking-wizard .back-button-container {
  margin-bottom: 20px;
}
.booking-wizard .back-button-container .btn-back-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #A11C25;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s;
}
.booking-wizard .back-button-container .btn-back-main svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}
.booking-wizard .back-button-container .btn-back-main:hover {
  background: #f8f9fa;
  color: #7D1620;
}
.booking-wizard .back-button-container .btn-back-main:hover svg {
  transform: translateX(-3px);
}
.booking-wizard .back-button-container .btn-back-main:active {
  background: #e9ecef;
}
.booking-wizard .wizard-breadcrumb {
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 2px solid #e9ecef;
}
.booking-wizard .wizard-breadcrumb .breadcrumb-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-wizard .wizard-breadcrumb .breadcrumb-container .breadcrumb-item-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-wizard .wizard-breadcrumb .breadcrumb-container .breadcrumb-item-wrapper .breadcrumb-item {
  font-size: 15px;
  font-weight: 500;
  color: #6c757d;
  transition: all 0.3s;
  padding: 8px 0;
}
.booking-wizard .wizard-breadcrumb .breadcrumb-container .breadcrumb-item-wrapper .breadcrumb-item.active {
  color: #dc3545;
  font-weight: 600;
}
.booking-wizard .wizard-breadcrumb .breadcrumb-container .breadcrumb-item-wrapper .breadcrumb-item.completed {
  color: #28a745;
}
.booking-wizard .wizard-breadcrumb .breadcrumb-container .breadcrumb-item-wrapper .breadcrumb-item.clickable {
  cursor: pointer;
}
.booking-wizard .wizard-breadcrumb .breadcrumb-container .breadcrumb-item-wrapper .breadcrumb-item.clickable:hover {
  color: #dc3545;
  text-decoration: underline;
}
.booking-wizard .wizard-breadcrumb .breadcrumb-container .breadcrumb-item-wrapper .breadcrumb-item:not(.clickable) {
  cursor: default;
}
.booking-wizard .wizard-breadcrumb .breadcrumb-container .breadcrumb-item-wrapper .breadcrumb-separator {
  font-size: 18px;
  color: #dee2e6;
  font-weight: 300;
}
.booking-wizard .wizard-content {
  min-height: 500px;
}
.booking-wizard .wizard-content .wizard-step {
  animation: fadeIn 0.3s;
}
.booking-wizard .wizard-content .step-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 30px 0;
  color: #212529;
}
.booking-wizard .wizard-content .region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.booking-wizard .wizard-content .region-grid .region-card {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
.booking-wizard .wizard-content .region-grid .region-card .region-image {
  height: 200px;
  overflow: hidden;
}
.booking-wizard .wizard-content .region-grid .region-card .region-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.booking-wizard .wizard-content .region-grid .region-card .region-info {
  padding: 20px;
  text-align: center;
}
.booking-wizard .wizard-content .region-grid .region-card .region-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}
.booking-wizard .wizard-content .region-grid .region-card .region-info p {
  color: #6c757d;
  margin: 0;
  font-size: 15px;
}
.booking-wizard .wizard-content .region-grid .region-card:hover {
  border-color: #A11C25;
  box-shadow: 0 4px 12px rgba(161, 28, 37, 0.15);
  transform: translateY(-2px);
}
.booking-wizard .wizard-content .region-grid .region-card:hover .region-image img {
  transform: scale(1.05);
}
.booking-wizard .wizard-content .branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.booking-wizard .wizard-content .branch-grid .branch-card {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .branch-grid .branch-card .branch-image {
  height: 180px;
  overflow: hidden;
}
.booking-wizard .wizard-content .branch-grid .branch-card .branch-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.booking-wizard .wizard-content .branch-grid .branch-card .branch-info {
  padding: 20px;
}
.booking-wizard .wizard-content .branch-grid .branch-card .branch-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.booking-wizard .wizard-content .branch-grid .branch-card .branch-info .address {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.booking-wizard .wizard-content .branch-grid .branch-card .branch-info .status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 8px;
}
.booking-wizard .wizard-content .branch-grid .branch-card .branch-info .status-badge.open {
  background: #d4edda;
  color: #155724;
}
.booking-wizard .wizard-content .branch-grid .branch-card .branch-info .status-badge.closed {
  background: #f8d7da;
  color: #721c24;
}
.booking-wizard .wizard-content .branch-grid .branch-card .branch-info .hours {
  font-size: 14px;
  color: #6c757d;
  margin-top: 8px;
}
.booking-wizard .wizard-content .branch-grid .branch-card .branch-info .hours .hours-label {
  font-weight: 600;
  color: #495057;
}
.booking-wizard .wizard-content .branch-grid .branch-card:hover {
  border-color: #A11C25;
  box-shadow: 0 4px 12px rgba(161, 28, 37, 0.15);
  transform: translateY(-2px);
}
.booking-wizard .wizard-content .service-layout {
  display: flex;
  gap: 30px;
}
.booking-wizard .wizard-content .service-layout .services-main {
  flex: 1;
}
.booking-wizard .wizard-content .service-layout .services-main .category-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.booking-wizard .wizard-content .service-layout .services-main .category-tabs .category-tab {
  padding: 8px 20px;
  border: 2px solid #e9ecef;
  background: white;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .service-layout .services-main .category-tabs .category-tab.active {
  background: #A11C25;
  color: white;
  border-color: #A11C25;
}
.booking-wizard .wizard-content .service-layout .services-main .category-tabs .category-tab:hover:not(.active) {
  border-color: #A11C25;
}
.booking-wizard .wizard-content .service-layout .services-main .services-list .service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .service-layout .services-main .services-list .service-item:hover {
  border-color: #A11C25;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}
.booking-wizard .wizard-content .service-layout .services-main .services-list .service-item .service-info {
  flex: 1;
}
.booking-wizard .wizard-content .service-layout .services-main .services-list .service-item .service-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.booking-wizard .wizard-content .service-layout .services-main .services-list .service-item .service-info .service-description {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 8px;
}
.booking-wizard .wizard-content .service-layout .services-main .services-list .service-item .service-info .service-details {
  color: #A11C25;
  font-weight: 600;
  font-size: 14px;
}
.booking-wizard .wizard-content .service-layout .services-main .services-list .service-item .btn-add-service {
  padding: 10px 24px;
  background: #A11C25;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .service-layout .services-main .services-list .service-item .btn-add-service.added {
  background: #28a745;
}
.booking-wizard .wizard-content .service-layout .services-main .services-list .service-item .btn-add-service:hover {
  transform: scale(1.05);
}
.booking-wizard .wizard-content .service-layout .cart-sidebar {
  width: 350px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 20px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .empty-cart {
  text-align: center;
  color: #6c757d;
  padding: 40px 0;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .cart-item .cart-item-info {
  flex: 1;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .cart-item .cart-item-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .cart-item .cart-item-info p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .cart-item .cart-item-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .cart-item .cart-item-right .price {
  font-weight: 600;
  color: #A11C25;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .cart-item .cart-item-right .btn-remove {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dc3545;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .cart-item .cart-item-right .btn-remove:hover {
  background: #c82333;
  transform: scale(1.1);
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .cart-total {
  padding: 20px 0;
  margin-top: 20px;
  border-top: 2px solid #e9ecef;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .cart-total .total-line {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: #A11C25;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .btn-continue {
  width: 100%;
  padding: 15px;
  background: #A11C25;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .service-layout .cart-sidebar .cart-items .btn-continue:hover {
  background: #7D1620;
}
.booking-wizard .wizard-content .booking-type-section .section-label {
  font-size: 28px;
  font-weight: 600;
  margin: 30px 0 20px 0;
}
.booking-wizard .wizard-content .booking-type-section .section-label:first-child {
  margin-top: 0;
}
.booking-wizard .wizard-content .booking-type-section .booking-type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.booking-wizard .wizard-content .booking-type-section .booking-type-card {
  padding: 30px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .booking-type-section .booking-type-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}
.booking-wizard .wizard-content .booking-type-section .booking-type-card p {
  color: #6c757d;
  margin: 0;
  font-size: 15px;
}
.booking-wizard .wizard-content .booking-type-section .booking-type-card:hover {
  border-color: #A11C25;
  box-shadow: 0 4px 12px rgba(161, 28, 37, 0.15);
  transform: translateY(-2px);
}
.booking-wizard .wizard-content .staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.booking-wizard .wizard-content .staff-grid .staff-card {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  position: relative;
}
.booking-wizard .wizard-content .staff-grid .staff-card.recommended {
  border-color: #ffc107;
  background: #fff3cd;
}
.booking-wizard .wizard-content .staff-grid .staff-card.recommended .star-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
}
.booking-wizard .wizard-content .staff-grid .staff-card .staff-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}
.booking-wizard .wizard-content .staff-grid .staff-card .staff-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.booking-wizard .wizard-content .staff-grid .staff-card .staff-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #A11C25;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 15px;
}
.booking-wizard .wizard-content .staff-grid .staff-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.booking-wizard .wizard-content .staff-grid .staff-card .staff-title {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 10px;
}
.booking-wizard .wizard-content .staff-grid .staff-card .staff-rating {
  font-size: 14px;
  margin-bottom: 10px;
}
.booking-wizard .wizard-content .staff-grid .staff-card .staff-bio {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.4;
}
.booking-wizard .wizard-content .staff-grid .staff-card:hover {
  border-color: #A11C25;
  box-shadow: 0 4px 12px rgba(161, 28, 37, 0.15);
  transform: translateY(-2px);
}
.booking-wizard .wizard-content .datetime-layout {
  display: flex;
  gap: 30px;
}
.booking-wizard .wizard-content .datetime-layout .calendar-section, .booking-wizard .wizard-content .datetime-layout .timeslots-section {
  flex: 1;
}
.booking-wizard .wizard-content .datetime-layout .calendar-section h3, .booking-wizard .wizard-content .datetime-layout .timeslots-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.booking-wizard .wizard-content .datetime-layout .calendar-section .date-picker, .booking-wizard .wizard-content .datetime-layout .timeslots-section .date-picker {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  font-size: 16px;
}
.booking-wizard .wizard-content .datetime-layout .calendar-section .time-grid, .booking-wizard .wizard-content .datetime-layout .timeslots-section .time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.booking-wizard .wizard-content .datetime-layout .calendar-section .time-grid .time-slot, .booking-wizard .wizard-content .datetime-layout .timeslots-section .time-grid .time-slot {
  padding: 12px;
  border: 2px solid #e9ecef;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .datetime-layout .calendar-section .time-grid .time-slot:hover:not(.unavailable), .booking-wizard .wizard-content .datetime-layout .timeslots-section .time-grid .time-slot:hover:not(.unavailable) {
  border-color: #A11C25;
  background: #f0f7ff;
}
.booking-wizard .wizard-content .datetime-layout .calendar-section .time-grid .time-slot.unavailable, .booking-wizard .wizard-content .datetime-layout .timeslots-section .time-grid .time-slot.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f8f9fa;
}
.booking-wizard .wizard-content .datetime-layout .calendar-section .no-slots, .booking-wizard .wizard-content .datetime-layout .timeslots-section .no-slots {
  text-align: center;
  padding: 40px;
  color: #6c757d;
}
.booking-wizard .wizard-content .time-preview {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}
.booking-wizard .wizard-content .time-preview h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.booking-wizard .wizard-content .time-preview .duration-info {
  font-weight: 600;
  color: #A11C25;
  margin: 10px 0;
}
.booking-wizard .wizard-content .time-preview .service-sequence {
  margin-top: 15px;
  font-size: 14px;
  color: #6c757d;
}
.booking-wizard .wizard-content .review-layout {
  display: flex;
  gap: 30px;
}
.booking-wizard .wizard-content .review-layout .review-summary {
  flex: 1;
}
.booking-wizard .wizard-content .review-layout .review-summary .summary-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}
.booking-wizard .wizard-content .review-layout .review-summary .summary-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.booking-wizard .wizard-content .review-layout .review-summary .summary-section p {
  margin: 5px 0;
  color: #495057;
}
.booking-wizard .wizard-content .review-layout .review-summary .summary-section .service-line, .booking-wizard .wizard-content .review-layout .review-summary .summary-section .total-line {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}
.booking-wizard .wizard-content .review-layout .review-summary .summary-section .total-line {
  font-weight: 600;
  font-size: 18px;
  color: #A11C25;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #e9ecef;
}
.booking-wizard .wizard-content .review-layout .payment-section {
  width: 400px;
}
.booking-wizard .wizard-content .review-layout .payment-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option:has(input:checked) {
  border-color: #A11C25;
  background: #f0f7ff;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label {
  display: block;
  cursor: pointer;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label input[type=radio] {
  margin-right: 10px;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details .payment-breakdown {
  background: white;
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details .payment-breakdown .breakdown-line {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details .payment-breakdown .breakdown-line.deposit {
  font-weight: 600;
  color: #A11C25;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details .payment-methods {
  margin-top: 15px;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details .payment-methods .payment-method {
  display: block;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #e9ecef;
  border-radius: 5px;
  cursor: pointer;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details .payment-methods .payment-method:has(input:checked) {
  background: white;
  border-color: #A11C25;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details .vip-card-select {
  width: 100%;
  padding: 10px;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  margin-top: 15px;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details .vip-card-info {
  background: white;
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details .vip-card-info p {
  margin: 5px 0;
}
.booking-wizard .wizard-content .review-layout .payment-section .payment-option .radio-label .payment-details .vip-card-info .no-payment {
  font-weight: 600;
  color: #28a745;
  font-size: 16px;
  margin-top: 10px;
}
.booking-wizard .wizard-content .review-layout .payment-section .guest-form {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.booking-wizard .wizard-content .review-layout .payment-section .guest-form h4 {
  margin-bottom: 15px;
}
.booking-wizard .wizard-content .review-layout .payment-section .guest-form input {
  width: 100%;
  padding: 10px;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  margin-bottom: 10px;
}
.booking-wizard .wizard-content .review-layout .payment-section .btn-complete-booking {
  width: 100%;
  padding: 15px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .review-layout .payment-section .btn-complete-booking:hover:not(:disabled) {
  background: #218838;
}
.booking-wizard .wizard-content .review-layout .payment-section .btn-complete-booking:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.booking-wizard .wizard-content .confirmation-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.booking-wizard .wizard-content .confirmation-content .success-icon {
  font-size: 80px;
  margin-bottom: 20px;
}
.booking-wizard .wizard-content .confirmation-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.booking-wizard .wizard-content .confirmation-content .booking-id {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 30px;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-details {
  text-align: left;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-details .email-sent {
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 5px;
  margin-bottom: 25px;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-details .booking-info, .booking-wizard .wizard-content .confirmation-content .confirmation-details .services-booked, .booking-wizard .wizard-content .confirmation-content .confirmation-details .payment-summary, .booking-wizard .wizard-content .confirmation-content .confirmation-details .next-steps {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-details .booking-info:last-child, .booking-wizard .wizard-content .confirmation-content .confirmation-details .services-booked:last-child, .booking-wizard .wizard-content .confirmation-content .confirmation-details .payment-summary:last-child, .booking-wizard .wizard-content .confirmation-content .confirmation-details .next-steps:last-child {
  border-bottom: none;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-details .booking-info h3, .booking-wizard .wizard-content .confirmation-content .confirmation-details .booking-info h4, .booking-wizard .wizard-content .confirmation-content .confirmation-details .services-booked h3, .booking-wizard .wizard-content .confirmation-content .confirmation-details .services-booked h4, .booking-wizard .wizard-content .confirmation-content .confirmation-details .payment-summary h3, .booking-wizard .wizard-content .confirmation-content .confirmation-details .payment-summary h4, .booking-wizard .wizard-content .confirmation-content .confirmation-details .next-steps h3, .booking-wizard .wizard-content .confirmation-content .confirmation-details .next-steps h4 {
  margin-bottom: 15px;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-details .booking-info ul, .booking-wizard .wizard-content .confirmation-content .confirmation-details .services-booked ul, .booking-wizard .wizard-content .confirmation-content .confirmation-details .payment-summary ul, .booking-wizard .wizard-content .confirmation-content .confirmation-details .next-steps ul {
  list-style: none;
  padding: 0;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-details .booking-info ul li, .booking-wizard .wizard-content .confirmation-content .confirmation-details .services-booked ul li, .booking-wizard .wizard-content .confirmation-content .confirmation-details .payment-summary ul li, .booking-wizard .wizard-content .confirmation-content .confirmation-details .next-steps ul li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-details .booking-info ul li:before, .booking-wizard .wizard-content .confirmation-content .confirmation-details .services-booked ul li:before, .booking-wizard .wizard-content .confirmation-content .confirmation-details .payment-summary ul li:before, .booking-wizard .wizard-content .confirmation-content .confirmation-details .next-steps ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #A11C25;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-actions .btn-action {
  padding: 12px 24px;
  background: #A11C25;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}
.booking-wizard .wizard-content .confirmation-content .confirmation-actions .btn-action:hover {
  background: #7D1620;
}
.booking-wizard .step-subtitle {
  font-size: 16px;
  color: #6c757d;
  margin: -20px 0 30px 0;
}
.booking-wizard .guests-list {
  max-width: 600px;
  margin: 0 auto;
}
.booking-wizard .guests-list .guest-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.booking-wizard .guests-list .guest-card.active {
  border-color: #A11C25;
  background: #f8f9ff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}
.booking-wizard .guests-list .guest-card:hover {
  border-color: #A11C25;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.booking-wizard .guests-list .guest-card .guest-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.booking-wizard .guests-list .guest-card .guest-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.booking-wizard .guests-list .guest-card .guest-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 20px;
  font-weight: 600;
}
.booking-wizard .guests-list .guest-card .guest-info {
  flex: 1;
}
.booking-wizard .guests-list .guest-card .guest-info h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}
.booking-wizard .guests-list .guest-card .guest-info .guest-services {
  margin: 0;
  font-size: 14px;
  color: #28a745;
}
.booking-wizard .guests-list .guest-card .guest-info .no-services {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
}
.booking-wizard .guests-list .guest-card .btn-remove-guest {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #dc3545;
  background: white;
  color: #dc3545;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-wizard .guests-list .guest-card .btn-remove-guest:hover {
  background: #dc3545;
  color: white;
}
.booking-wizard .guests-list .btn-add-guest {
  width: 100%;
  padding: 20px;
  border: 2px dashed #A11C25;
  border-radius: 10px;
  background: transparent;
  color: #A11C25;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.booking-wizard .guests-list .btn-add-guest .plus-icon {
  font-size: 24px;
  line-height: 1;
}
.booking-wizard .guests-list .btn-add-guest:hover {
  background: #f8f9ff;
  border-color: #7D1620;
  color: #7D1620;
  transform: translateY(-2px);
}
.booking-wizard .guests-list .btn-add-guest:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.booking-wizard .guests-list .btn-add-guest:disabled:hover {
  transform: none;
}
.booking-wizard .guest-actions {
  margin-top: 30px;
  text-align: center;
}
.booking-wizard .guest-actions .btn-primary {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  background: #A11C25;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .guest-actions .btn-primary:hover:not(:disabled) {
  background: #7D1620;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.booking-wizard .guest-actions .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.booking-wizard .guest-services-group {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}
.booking-wizard .guest-services-group:last-of-type {
  border-bottom: none;
}
.booking-wizard .guest-services-group .guest-name {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  margin: 0 0 10px 0;
}
.booking-wizard .guest-services-group .no-services-note {
  font-size: 13px;
  color: #6c757d;
  font-style: italic;
  margin: 5px 0;
}
.booking-wizard .group-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #A11C25;
}
.booking-wizard .vip-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  margin: 30px 0;
}
.booking-wizard .vip-cards-grid .vip-card {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
  position: relative;
}
.booking-wizard .vip-cards-grid .vip-card:hover {
  border-color: #A11C25;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
}
.booking-wizard .vip-cards-grid .vip-card.selected {
  border-color: #A11C25;
  background: #f8f9ff;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.2);
}
.booking-wizard .vip-cards-grid .vip-card.selected .card-header {
  border-bottom-color: #A11C25;
}
.booking-wizard .vip-cards-grid .vip-card .card-header {
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 20px;
}
.booking-wizard .vip-cards-grid .vip-card .card-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #212529;
}
.booking-wizard .vip-cards-grid .vip-card .card-header .card-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #A11C25;
}
.booking-wizard .vip-cards-grid .vip-card .card-header .card-price .currency {
  font-size: 16px;
  font-weight: 600;
}
.booking-wizard .vip-cards-grid .vip-card .card-header .card-price .amount {
  font-size: 32px;
  font-weight: 700;
}
.booking-wizard .vip-cards-grid .vip-card .card-body .card-description {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}
.booking-wizard .vip-cards-grid .vip-card .card-body .card-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: #495057;
}
.booking-wizard .vip-cards-grid .vip-card .card-body .card-features .feature .feature-icon {
  font-size: 18px;
  min-width: 24px;
}
.booking-wizard .vip-cards-grid .vip-card .btn-vip-selected {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}
.booking-wizard .no-selection {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin: 30px 0;
}
.booking-wizard .no-selection p {
  margin: 0;
  color: #6c757d;
  font-size: 16px;
}
.booking-wizard .vip-navigation {
  text-align: center;
  margin-top: 30px;
}
.booking-wizard .vip-navigation .btn-primary {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  background: #A11C25;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .vip-navigation .btn-primary:hover:not(:disabled) {
  background: #7D1620;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.booking-wizard .vip-navigation .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.booking-wizard .vip-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-top: 30px;
}
.booking-wizard .vip-checkout-layout .checkout-form h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #212529;
}
.booking-wizard .vip-checkout-layout .checkout-form .section-title {
  margin-top: 30px;
}
.booking-wizard .vip-checkout-layout .checkout-form .form-group {
  margin-bottom: 20px;
}
.booking-wizard .vip-checkout-layout .checkout-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #495057;
  font-size: 14px;
}
.booking-wizard .vip-checkout-layout .checkout-form .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}
.booking-wizard .vip-checkout-layout .checkout-form .form-group input:focus {
  outline: none;
  border-color: #A11C25;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.booking-wizard .vip-checkout-layout .checkout-form .user-info-display {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.booking-wizard .vip-checkout-layout .checkout-form .user-info-display p {
  margin: 10px 0;
  font-size: 15px;
  color: #495057;
}
.booking-wizard .vip-checkout-layout .checkout-form .user-info-display p strong {
  color: #212529;
  margin-right: 8px;
}
.booking-wizard .vip-checkout-layout .checkout-form .payment-methods {
  margin-bottom: 30px;
}
.booking-wizard .vip-checkout-layout .checkout-form .payment-methods .payment-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .vip-checkout-layout .checkout-form .payment-methods .payment-method:hover {
  border-color: #A11C25;
  background: #f8f9ff;
}
.booking-wizard .vip-checkout-layout .checkout-form .payment-methods .payment-method input[type=radio] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.booking-wizard .vip-checkout-layout .checkout-form .payment-methods .payment-method input[type=radio]:checked + .method-details {
  color: #A11C25;
  font-weight: 600;
}
.booking-wizard .vip-checkout-layout .checkout-form .payment-methods .payment-method .method-details {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.booking-wizard .vip-checkout-layout .checkout-form .payment-methods .payment-method .method-details .method-icon {
  font-size: 24px;
}
.booking-wizard .vip-checkout-layout .checkout-form .btn-complete-purchase {
  width: 100%;
  padding: 16px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .vip-checkout-layout .checkout-form .btn-complete-purchase:hover:not(:disabled) {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}
.booking-wizard .vip-checkout-layout .checkout-form .btn-complete-purchase:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.booking-wizard .vip-checkout-layout .order-summary {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
}
.booking-wizard .vip-checkout-layout .order-summary h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #212529;
}
.booking-wizard .vip-checkout-layout .order-summary .summary-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
}
.booking-wizard .vip-checkout-layout .order-summary .summary-card .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 15px;
}
.booking-wizard .vip-checkout-layout .order-summary .summary-card .summary-item .item-name {
  font-weight: 600;
  color: #212529;
  font-size: 16px;
}
.booking-wizard .vip-checkout-layout .order-summary .summary-card .summary-item .item-price {
  font-weight: 600;
  color: #A11C25;
  font-size: 18px;
}
.booking-wizard .vip-checkout-layout .order-summary .summary-card .summary-features {
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 15px;
}
.booking-wizard .vip-checkout-layout .order-summary .summary-card .summary-features p {
  margin: 8px 0;
  color: #6c757d;
  font-size: 14px;
}
.booking-wizard .vip-checkout-layout .order-summary .summary-card .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #212529;
}
.booking-wizard .vip-checkout-layout .order-summary .summary-card .summary-total .total-amount {
  color: #A11C25;
  font-size: 24px;
}
.booking-wizard .purchase-info {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}
.booking-wizard .purchase-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #212529;
}
.booking-wizard .purchase-info p {
  margin: 8px 0;
  font-size: 15px;
  color: #495057;
}
.booking-wizard .purchase-info .gift-message {
  font-style: italic;
  color: #6c757d;
  padding: 10px;
  background: #f8f9fa;
  border-left: 3px solid #A11C25;
  margin-top: 15px;
}
.booking-wizard .gift-card-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.booking-wizard .gift-card-amounts .amount-card {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 30px 20px;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
  position: relative;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.booking-wizard .gift-card-amounts .amount-card:hover {
  border-color: #A11C25;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
}
.booking-wizard .gift-card-amounts .amount-card.selected {
  border-color: #A11C25;
  background: #f8f9ff;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.2);
}
.booking-wizard .gift-card-amounts .amount-card .amount-value {
  font-size: 28px;
  font-weight: 700;
  color: #A11C25;
}
.booking-wizard .gift-card-amounts .amount-card .amount-label {
  font-size: 16px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 10px;
}
.booking-wizard .gift-card-amounts .amount-card.custom .custom-input {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
}
.booking-wizard .gift-card-amounts .amount-card.custom .custom-input:focus {
  outline: none;
  border-color: #A11C25;
}
.booking-wizard .gift-card-amounts .amount-card .selected-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #28a745;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.booking-wizard .gift-card-preview {
  margin: 40px 0;
  text-align: center;
}
.booking-wizard .gift-card-preview h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #212529;
}
.booking-wizard .gift-card-preview .preview-card {
  display: inline-block;
}
.booking-wizard .gift-card-preview .preview-card .card-design {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: white;
  min-width: 320px;
}
.booking-wizard .gift-card-preview .preview-card .card-design .card-logo {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}
.booking-wizard .gift-card-preview .preview-card .card-design .card-amount {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}
.booking-wizard .gift-card-preview .preview-card .card-design .card-text {
  font-size: 16px;
  opacity: 0.9;
}
.booking-wizard .gift-navigation {
  text-align: center;
  margin-top: 30px;
}
.booking-wizard .gift-navigation .btn-primary {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  background: #A11C25;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .gift-navigation .btn-primary:hover:not(:disabled) {
  background: #7D1620;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.booking-wizard .gift-navigation .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.booking-wizard .gift-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-top: 30px;
}
.booking-wizard .gift-checkout-layout .checkout-form h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #212529;
}
.booking-wizard .gift-checkout-layout .checkout-form .section-title {
  margin-top: 30px;
}
.booking-wizard .gift-checkout-layout .checkout-form .form-group {
  margin-bottom: 20px;
}
.booking-wizard .gift-checkout-layout .checkout-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #495057;
  font-size: 14px;
}
.booking-wizard .gift-checkout-layout .checkout-form .form-group input, .booking-wizard .gift-checkout-layout .checkout-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
  font-family: inherit;
}
.booking-wizard .gift-checkout-layout .checkout-form .form-group input:focus, .booking-wizard .gift-checkout-layout .checkout-form .form-group textarea:focus {
  outline: none;
  border-color: #A11C25;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.booking-wizard .gift-checkout-layout .checkout-form .form-group textarea {
  resize: vertical;
}
.booking-wizard .gift-checkout-layout .checkout-form .form-group .char-count {
  display: block;
  text-align: right;
  color: #6c757d;
  font-size: 12px;
  margin-top: 5px;
}
.booking-wizard .gift-checkout-layout .checkout-form .user-info-display {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.booking-wizard .gift-checkout-layout .checkout-form .user-info-display p {
  margin: 10px 0;
  font-size: 15px;
  color: #495057;
}
.booking-wizard .gift-checkout-layout .checkout-form .user-info-display p strong {
  color: #212529;
  margin-right: 8px;
}
.booking-wizard .gift-checkout-layout .checkout-form .payment-methods {
  margin-bottom: 30px;
}
.booking-wizard .gift-checkout-layout .checkout-form .payment-methods .payment-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .gift-checkout-layout .checkout-form .payment-methods .payment-method:hover {
  border-color: #A11C25;
  background: #f8f9ff;
}
.booking-wizard .gift-checkout-layout .checkout-form .payment-methods .payment-method input[type=radio] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.booking-wizard .gift-checkout-layout .checkout-form .payment-methods .payment-method input[type=radio]:checked + .method-details {
  color: #A11C25;
  font-weight: 600;
}
.booking-wizard .gift-checkout-layout .checkout-form .payment-methods .payment-method .method-details {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.booking-wizard .gift-checkout-layout .checkout-form .payment-methods .payment-method .method-details .method-icon {
  font-size: 24px;
}
.booking-wizard .gift-checkout-layout .checkout-form .btn-complete-purchase {
  width: 100%;
  padding: 16px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.booking-wizard .gift-checkout-layout .checkout-form .btn-complete-purchase:hover:not(:disabled) {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}
.booking-wizard .gift-checkout-layout .checkout-form .btn-complete-purchase:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.booking-wizard .gift-checkout-layout .order-summary {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
}
.booking-wizard .gift-checkout-layout .order-summary h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #212529;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card .gift-card-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 15px;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card .gift-card-summary .summary-icon {
  font-size: 36px;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card .gift-card-summary .summary-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #212529;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card .gift-card-summary .summary-details p {
  margin: 0;
  font-size: 14px;
  color: #6c757d;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card .summary-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
  color: #495057;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card .summary-amount .amount {
  font-weight: 600;
  color: #A11C25;
  font-size: 18px;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  padding-top: 15px;
  border-top: 2px solid #e9ecef;
  margin-top: 15px;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card .summary-total .total-amount {
  color: #A11C25;
  font-size: 24px;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card .gift-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}
.booking-wizard .gift-checkout-layout .order-summary .summary-card .gift-info p {
  margin: 8px 0;
  font-size: 14px;
  color: #6c757d;
}
.booking-wizard .loading {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
  font-size: 18px;
}
.booking-wizard .no-data {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
  font-size: 16px;
}
.booking-wizard .no-data p {
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .booking-wizard .service-layout,
  .booking-wizard .datetime-layout,
  .booking-wizard .review-layout {
    flex-direction: column;
  }
  .booking-wizard .cart-sidebar,
  .booking-wizard .payment-section {
    width: 100%;
    position: static;
  }
  .booking-wizard .region-grid,
  .booking-wizard .branch-grid,
  .booking-wizard .staff-grid {
    grid-template-columns: 1fr;
  }
  .booking-wizard .wizard-breadcrumb .breadcrumb-container {
    font-size: 13px;
  }
  .booking-wizard .wizard-breadcrumb .breadcrumb-container .breadcrumb-item-wrapper .breadcrumb-item {
    font-size: 13px;
    padding: 6px 0;
  }
  .booking-wizard .wizard-breadcrumb .breadcrumb-container .breadcrumb-separator {
    font-size: 16px;
  }
}
