/**************************************************************************************
 Makeup Appointment Form 
 */

.grid {
  list-style: none;
  margin-left: -40px;
}

.wpmkup.wpmkup--2-of-3 {
  min-height: 300px;
  background: #fafafa;
  border: solid 1px #fcfcfc;
  border-left: none;
  padding: 40px;
}

.wpmkup {
  box-sizing: border-box;
  display: inline-block;
  margin-right: -0.25em;
  min-height: 1px;
  padding-left: 40px;
  vertical-align: top;
}

.wpmkup--1-of-3 {
  width: 33.33333%;
}

.wpmkup--2-of-3 {
  width: 66.66666%;
}

.wp-makeupappointment-tabs {
  position: relative;
  max-width: 900px;
  margin: 100px auto 0;
}

.wp-makeupappointment-tabs .menu div {
  padding: 15px 20px 15px 40px;
  margin-bottom: 10px;
  color: #0e0a03;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  font-weight: 700;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.wp-makeupappointment-tabs .menu div:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.wp-makeupappointment-tabs .menu div span.light {
  height: 10px;
  width: 10px;
  position: absolute;
  top: 24px;
  left: 15px;
  background-color: #fff;
  border-radius: 100%;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.wp-makeupappointment-tabs .menu div.active span.light {
  background-color: #ceac58;
  left: 0;
  height: 100%;
  width: 3px;
  top: 0;
  border-radius: 0;
}

.wp-makeupappointment-tabs .menu div.active {
  color: #ceac58;
  padding: 15px 20px 15px 20px;
}

ul.wp-makeupappointment-tab {
  position: relative;
  height: 0px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

ul.wp-makeupappointment-tab li {
  opacity: 0;
  transform: translateX(50px);
  position: absolute;
  list-style: none;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

ul.wp-makeupappointment-tab li.active {
  transition-delay: 0.3s;
  z-index: 2;
  opacity: 1;
  transform: translateX(0px);
}

ul.wp-makeupappointment-tab li p {
  margin: 0;
}

@media (max-width: 768px) {
  .wpmkup--1-of-3 {
    width: 100%;
  }

  .wpmkup--2-of-3 {
    width: 90%;
  }

  .wpmkup.wpmkup--2-of-3 {
    margin-left: 40px;
  }
}

/* Select  Service ***/

.wp-makeupappointment-tab h3 {
  font-size: 20px;
  font-weight: 600;
}

.wpmkup-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 2em auto;
}

.wpmkup-service-item {
  border: solid 1px #eee;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 10px #0000001a;
  background: #fff;
  min-width: 180px;
}

label {
  font-size: 16px;
  cursor: pointer;
}

input[type="checkbox"] {
  margin-right: 10px;
}

/**
 Select Srvice Tab  
 */
.wpmkup-tab-content {
  display: none;
}
.wpmkup-tab-content.active {
  display: block;
}
.wpmkup-tab-navigation .wpmkup-service-item {
  cursor: pointer;
  padding: 10px;
  border: 1px solid #ddd;
}
.wpmkup-tab-navigation .wpmkup-service-item.active {
  background-color: #f4f9f6;
}

.wpmkup-service-item label {
  display: grid;
  grid-template-columns: 4fr 1fr;
}

/**
 * Date & Time 
 */

.wpmkup-date-time-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #f4f6f9;
  border-radius: 8px;
  gap: 20px;
}

.wpmkup-date-section {
  flex: 1;
}

.wpmkup-date-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.wpmkup-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.wpmkup-calendar-header a {
  font-size: 18px;
  font-weight: 400;
  color: #ceac58;
  text-decoration: none;
  border: solid 1px;
  padding: 0 10px;
  background: #fff;
}

.wpmkup-calendar-header span {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.wpmkup-calendar-body {
  display: grid;
  grid-template-rows: auto;
  gap: 0px;
}

.wpmkup-calendar-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0px;
  background: #fff;
}

.wpmkup-calendar-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0px;
  color: #666;
}

.wpmkup-day-name {
  font-weight: bold;
  color: #444;
  background: #f9f9f9;
}

.wpmkup-today {
  background: #ceac58;
  color: #fff;
  font-weight: bold;
}

/* Time Section */
.wpmkup-time-section {
  flex: 1;
}

.wpmkup-time-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Time Slots */
.wpmkup-time-slot-group h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.wpmkup-time-slot-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wpmkup-time-slot {
  padding: 10px;
  font-size: 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
}

.wpmkup-time-slot:hover {
  background: #ceac58;
  color: #fff;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wpmkup-date-time-container {
    flex-direction: column;
  }

  .wpmkup-date-section,
  .wpmkup-time-section {
    margin: 0;
  }
}

/**
* Details 
*/

/* General Form Container */
.wpmkup-form-container {
  width: 100%;
  width: 550px;
  margin: 0 auto;
  padding: 20px;

  border-radius: 8px;

  background-color: #fff;
  font-family: Arial, sans-serif;
}

.wpmkup-form-container h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 1.5rem;
}

.wpmkup-form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.wpmkup-form-group label {
  font-size: 0.9rem;
  font-weight: bold;
  color: #555;
  margin-bottom: 5px;
}

.wpmkup-required {
  color: #d9534f;
}

.wpmkup-form-group input,
.wpmkup-form-group select,
.wpmkup-form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.wpmkup-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.wpmkup-phone-input {
  display: flex;
  gap: 10px;
}

.wpmkup-phone-input select {
  width: 80px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .wpmkup-phone-input {
    flex-direction: column;
  }

  .wpmkup-phone-input select {
    width: 100%;
  }
}

/* 
 Payments
 */
.wpmkup-summary-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;

  background-color: #fff;
  font-family: Arial, sans-serif;
}

/* Header */
.wpmkup-summary-header {
  text-align: center;
  margin-bottom: 20px;
}

.wpmkup-summary-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.wpmkup-summary-header p {
  color: #666;
  font-size: 0.9rem;
}

/* Summary Details */
.wpmkup-summary-details {
  margin-bottom: 20px;
}

.wpmkup-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 1rem;
}

.wpmkup-summary-row span {
  color: #555;
}

.wpmkup-summary-row strong {
  color: #333;
}

/* Divider */
.wpmkup-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

/* Payment Details */
.wpmkup-payment-details {
  margin-bottom: 20px;
}

.wpmkup-payment-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 1.1rem;
}

.wpmkup-payment-row .wpmkup-amount {
  color: green;
  font-weight: bold;
}

.wpmkup-payment-row .wpmkup-cost {
  color: #333;
}

/* Booking Policy */
.wpmkup-booking-policy {
  padding: 15px;
  border: 1px solid #d3b56b;
  background-color: #fafafa;
  border-radius: 4px;
  margin-bottom: 20px;
}

.wpmkup-policy-notice p {
  margin: 0;
  color: #333;
  font-size: 0.9rem;
  text-align: center;
}

/* Payment Method */
.wpmkup-payment-method h4 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.wpmkup-payment-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.wpmkup-payment-option {
  padding: 10px 35px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  background-color: #d3b56b;
  transition: background-color 0.3s ease;
}

.wpmkup-payment-option:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 600px) {
  .wpmkup-payment-buttons {
    flex-direction: column;
  }

  .wpmkup-payment-option {
    width: 100%;
    text-align: center;
  }
}

/**

Studio 
*/

.wpmkup-service-selection {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  background: #fff;
  border: solid 1px #eee;
}

.wpmkup-section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Service Card Styling */
.wpmkup-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.wpmkup-service.wpmkup-selected {
  border-color: #a78c45;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wpmkup-service:hover {
  border-color: #c5c5c5;
}

/* Service Icon */
.wpmkup-service-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Service Details */
.wpmkup-service-details {
  flex: 1;
  margin-left: 15px;
}

.wpmkup-service-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  color: #333;
}

.wpmkup-service-price {
  font-size: 0.9rem;
  color: #666;
}

.wpmkup-price-value {
  color: #d3b56b;
  font-weight: bold;
}

/* Selected Indicator */
.wpmkup-service-selected-indicator {
  font-size: 1.2rem;
  color: #d3b56b;
  font-weight: bold;
}

.wpmkup-checkmark {
  display: inline-block;
  font-size: 1.5rem;
}

/**

Home
*/

/* General Styling */
.wpmkup-home-appointment {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  background: #fff;
}

.wpmkup-section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Service Card Styling */
.wpmkup-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.wpmkup-service.wpmkup-selected {
  border-color: #d3b56b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wpmkup-service:hover {
  border-color: #c5c5c5;
}

/* Service Icon */
.wpmkup-service-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Service Details */
.wpmkup-service-details {
  flex: 1;
  margin-left: 15px;
}

.wpmkup-service-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  color: #333;
}

.wpmkup-service-price {
  font-size: 0.9rem;
  color: #666;
}

.wpmkup-price-value {
  color: #d3b56b;
  font-weight: bold;
}

/* Selected Indicator */
.wpmkup-service-selected-indicator {
  font-size: 1.2rem;
  color: #d3b56b;
  font-weight: bold;
}

.wpmkup-checkmark {
  display: inline-block;
  font-size: 1.5rem;
}
