* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff7fb;
  color: #222;
}


/* =========================
   LANDING PAGE
========================== */

#landing {
  height: 100vh;
  background:
    linear-gradient(
      180deg,
      #ffd9ec 0%,
      #fff7fb 100%
    );

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 30px;
  position: relative;
}

.hero-content {
  text-align: center;
}

.mini-text {
  color: #ff4fa2;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1;
  color: #ff2f92;
}

.hero-title span {
  display: block;
  color: #c21872;
}

.hero-subtitle {
  margin-top: 20px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

#enterBtn {
  margin-top: 35px;
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 16px;

  background:
    linear-gradient(
      90deg,
      #ff4fa2,
      #ff87bf
    );

  color: white;
  font-size: 16px;
  font-weight: 600;

  box-shadow:
    0 10px 30px rgba(255,79,162,0.25);
}


/* =========================
   MAIN PAGE
========================== */

#main {
  display: none;
  padding: 24px;
  max-width: 500px;
  margin: auto;
}

.top-section {
  margin-bottom: 30px;
}

.small-heading {
  color: #ff4fa2;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  line-height: 1.1;
  margin-top: 10px;

  background: linear-gradient(
    90deg,
    #ff2f92,
    #c21872
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-subtitle {
  margin-top: 12px;
  color: #666;
  line-height: 1.6;
}


/* =========================
   INPUTS
========================== */

input {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;

  background: white;

  box-shadow:
    0 4px 15px rgba(0,0,0,0.04);

  font-size: 15px;
}

input:focus {
  outline: 2px solid #ff4fa2;
}


/* =========================
   SERVICES
========================== */

.service-group {
  margin-bottom: 28px;
}

.section-heading {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;

  color: #d81b78;
}

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-card {
  background: white;
  border-radius: 22px;
  padding: 18px;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.05);

  border: 2px solid transparent;

  transition: 0.25s ease;
}

.service-card:active {
  transform: scale(0.98);
}

.selected-service {
  border-color: #ff4fa2;

  background:
    linear-gradient(
      180deg,
      #fff0f7,
      white
    );
}

.service-type {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.service-duration {
  margin-top: 10px;
  color: #777;
  font-size: 14px;
}

.service-price {
  margin-top: 12px;
  color: #d81b78;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

.art-note {
  margin: 8px 0 30px;
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}


/* =========================
   DATE
========================== */

.date-wrapper {
  margin-bottom: 24px;
}

.date-wrapper label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #d81b78;
}


/* =========================
   SLOTS
========================== */

.slot-heading {
  font-size: 20px;
  font-weight: 700;
  color: #d81b78;
  margin-bottom: 16px;
}

#slotsContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.slot {
  background: white;
  padding: 14px 10px;
  border-radius: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;

  box-shadow:
    0 4px 12px rgba(0,0,0,0.04);
}

.slot.selected {
  background:
    linear-gradient(
      90deg,
      #ff4fa2,
      #ff87bf
    );

  color: white;
}

.slot.blocked {
  background: #ffe2ef;
  color: #ff4fa2;
}


/* =========================
   SUMMARY
========================== */

#summaryCard {
  margin-top: 30px;
  background: white;
  border-radius: 24px;
  padding: 24px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

#summaryCard h3 {
  color: #d81b78;
  margin-bottom: 16px;
  font-size: 22px;
}

#summaryCard p {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}


/* =========================
   BUTTON
========================== */

#confirmBtn {
  width: 100%;
  margin-top: 24px;
  border: none;
  border-radius: 20px;
  padding: 18px;

  background:
    linear-gradient(
      90deg,
      #ff4fa2,
      #ff87bf
    );

  color: white;
  font-size: 16px;
  font-weight: 700;

  box-shadow:
    0 12px 30px rgba(255,79,162,0.25);
}

#msg {
  margin-top: 20px;
  text-align: center;
  color: #d81b78;
  font-weight: 600;
  padding-bottom: 40px;
}


.tech-heading {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #d81b78;
}

#techniciansContainer {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;

  scrollbar-width: none;
}

#techniciansContainer::-webkit-scrollbar {
  display: none;
}

.tech-card {
  min-width: fit-content;

  background: white;

  padding: 12px 18px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  color: #555;

  box-shadow:
    0 4px 12px rgba(0,0,0,0.05);

  border: 2px solid transparent;

  transition: 0.2s ease;
}

.selected-tech {

  background:
    linear-gradient(
      90deg,
      #ff4fa2,
      #ff87bf
    );

  color: white;

  border-color: #ff4fa2;
}


.quick-date-wrapper {

  display: flex;

  gap: 12px;

  margin-bottom: 18px;

}


.quick-date-btn {

  flex: 1;

  background: white;

  padding: 14px;

  border-radius: 18px;

  text-align: center;

  font-weight: 600;

  color: #666;

  box-shadow:
    0 4px 12px rgba(0,0,0,0.05);

  border: 2px solid transparent;

  transition: 0.2s ease;

}


.active-date {

  background:
    linear-gradient(
      90deg,
      #ff4fa2,
      #ff87bf
    );

  color: white;

  border-color: #ff4fa2;

}

/* =========================
   DATE SECTION
========================= */

.date-section {

  margin-top: 10px;

  margin-bottom: 30px;

}


.date-top {

  margin-bottom: 18px;

}


.date-small-text {

  color: #ff4fa2;

  font-size: 12px;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 6px;

}


.date-heading {

  font-size: 28px;

  line-height: 1.1;

  font-family: 'Playfair Display', serif;

  background:
    linear-gradient(
      90deg,
      #ff2f92,
      #c21872
    );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}


.quick-date-wrapper {

  display: flex;

  gap: 12px;

  margin-bottom: 18px;

}


.quick-date-btn {

  flex: 1;

  background: white;

  border-radius: 22px;

  padding: 18px;

  text-align: center;

  border: 2px solid transparent;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.05);

  transition: 0.25s ease;

}


.day-name {

  display: block;

  font-size: 16px;

  font-weight: 700;

  color: #222;

}


.day-date {

  display: block;

  margin-top: 6px;

  font-size: 13px;

  color: #777;

}


.active-date {

  background:
    linear-gradient(
      135deg,
      #ff4fa2,
      #ff87bf
    );

  border-color: #ff4fa2;

}


.active-date .day-name,
.active-date .day-date {

  color: white;

}


.custom-date-wrapper {

  background: white;

  border-radius: 22px;

  padding: 18px;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.05);

}


.custom-date-wrapper label {

  display: block;

  margin-bottom: 12px;

  color: #d81b78;

  font-weight: 600;

}


.custom-date-wrapper input {

  margin-bottom: 0;

}

/* ======================================
   COMBO BUTTON
====================================== */

.combo-btn {

  width: 100%;

  margin:
    12px 0 18px 0;

  padding:
    15px 18px;

  border-radius: 22px;

  border:
    1px solid
    rgba(255,255,255,0.18);

  background:
    rgba(255,255,255,0.12);

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);

  color: #111;

  font-size: 15px;

  font-weight: 600;

  letter-spacing: 0.3px;

  box-shadow:
    0 8px 32px
    rgba(0,0,0,0.08);

}


/* ======================================
   COMBO SHEET
====================================== */

.combo-sheet {

  position: fixed;

  left: 0;
  right: 0;
  bottom: -100%;

  width: 100%;

  height: 85vh;

  z-index: 99999;

  overflow-y: auto;

  transition: 0.35s ease;

  border-top-left-radius: 34px;
  border-top-right-radius: 34px;

  background:
    rgba(255,255,255,0.72);

  backdrop-filter:
    blur(12px);

  -webkit-backdrop-filter:
    blur(12px);

  border-top:
    1px solid
    rgba(255,255,255,0.35);

  box-shadow:
    0 -10px 40px
    rgba(0,0,0,0.08);

}

.combo-sheet.active {

  bottom: 0;

}


/* ======================================
   CONTENT
====================================== */

.combo-sheet-content {

  padding: 24px;

}


/* ======================================
   HEADER
====================================== */

.combo-header {

  font-size: 24px;

  font-weight: 700;

  margin-bottom: 25px;

}


/* ======================================
   COMBO CARD
====================================== */

.combo-card {

  background:
    rgba(255,255,255,0.82);

  border:
    1px solid
    rgba(255,255,255,0.25);

  border-radius: 26px;

  padding: 20px;

  margin-bottom: 18px;

  box-shadow:
    0 8px 24px
    rgba(0,0,0,0.05);

    position: relative;
z-index: 3;

}


.combo-card h3 {

  font-size: 17px;

  line-height: 1.4;

  margin-bottom: 10px;

  font-weight: 600;

}


.combo-card p {

  font-size: 15px;

  font-weight: 700;

  color: #111;

  margin-bottom: 8px;

}


.combo-card small {

  display: block;

  color: #777;

  font-size: 12px;

  margin-bottom: 16px;

}


/* ======================================
   SELECT BUTTON
====================================== */

.select-combo-btn {

  width: 100%;

  border: none;

  padding: 14px;

  border-radius: 14px;

  background: black;

  color: white;

  font-weight: 600;

}


/* ======================================
   CLOSE BUTTON
====================================== */

.close-combo-btn {

  width: 100%;

  margin-top: 20px;

  border: none;

  padding: 16px;

  border-radius: 16px;

  background: #eaeaea;

  font-weight: 600;

}