.heart {
  width: 100px;
  height: 100px;
  background: url("https://cssanimation.rocks/images/posts/steps/heart.png") no-repeat;
  background-position: 0 0;
  cursor: pointer;
  transition: background-position 1s steps(28);
  transition-duration: 0s;

}

.heart.is-active {
  transition-duration: 1s;
  background-position: -2800px 0;
}

.addwishlist_mob {
  position: relative;
  right: 20px;
  top: 23%;
  display: flex;
  -webkit-box-align: center;
  box-sizing: border-box;
  -webkit-box-pack: center;
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.spa__img__list .addwishlist {
  position: relative;
  right: 5px;
  top: -125px;
  display: flex;
  -webkit-box-align: end;
  box-sizing: border-box;
  -webkit-box-pack: end;
  cursor: pointer;
  border: none;
  justify-content: end;
  align-items: end;
  text-align: end;
  float: right;
}

.spa__img__list .addwishlist::before {
  content: '';
  z-index: 2;
  background: #fff;
}

.spa__img__list button {
  border: none;
  background: transparent;
}

.addwishlist {
  position: relative;
  right: 10px;
  top: -90%;
  display: flex;
  -webkit-box-align: end;
  box-sizing: border-box;
  -webkit-box-pack: end;
  cursor: pointer;
  border: none;
  justify-content: end;
  align-items: end;
  text-align: end;
  float: right;
}

.addwishlist2 {
  position: absolute;
  right: 30px;
  top: 5%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  box-sizing: border-box;
  -webkit-box-pack: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
}

.addtowish {
  position: relative;
  right: 10px;
  top: -86%;
  display: flex;
  -webkit-box-align: end;
  box-sizing: border-box;
  -webkit-box-pack: end;
  cursor: pointer;
  border: none;
  justify-content: end;
  align-items: end;
  text-align: end;
  float: right;
}

.newaddwish {
  position: relative;
  left: 32px;
  top: -510px;
  display: flex;
  -webkit-box-align: end;
  box-sizing: border-box;
  -webkit-box-pack: end;
  cursor: pointer;
  border: none;
  justify-content: end;
  align-items: end;
  text-align: end;
  float: right;
}

.card__content button {
  border: none;
  background: transparent;
}

.categorywish {
  position: absolute;
  left: 30px;
  background: transparent;
  top: 10px;
  display: flex;
  -webkit-box-align: end;
  box-sizing: border-box;
  -webkit-box-pack: end;
  cursor: pointer;
  border: none;
  justify-content: end;
  align-items: end;
  text-align: end;
  float: right;
}

.newspawish {
  position: relative;
  right: 10px;
  top: -255px;
  display: flex;
  -webkit-box-align: end;
  box-sizing: border-box;
  -webkit-box-pack: end;
  cursor: pointer;
  border: none;
  justify-content: end;
  align-items: end;
  text-align: end;
  float: right;
}

.newaddwish2 {
  position: relative;
  left: 14px;
  top: -402px;
  display: flex;
  -webkit-box-align: end;
  box-sizing: border-box;
  -webkit-box-pack: end;
  cursor: pointer;
  border: none;
  justify-content: end;
  align-items: end;
  text-align: end;
  float: right;
}

.mob__card__content button {
  border: none;
  background: transparent;
}


/* thumbs like  */

.like-dislike-container {
  --dark-grey: #5c0c0c;
  --middle-grey: #767676;
  --lightest-grey: linear-gradient(#fafafa, #ebebeb);
  --shadow: 0 5px 15px 0 #00000026;
  --shadow-active: 0 5px 5px 0 #00000026;
  --border-radius-main: 10px;
  --border-radius-icon: 50px;
  position: relative;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  cursor: default;
  color: var(--dark-grey);
  opacity: .9;
  margin: auto;
  font-weight: 600;
  max-width: max-content;
  border-radius: var(--border-radius-main);
  transition: .2s ease all;
}


.like-dislike-container .tool-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  top: 0;
  right: 0;
}



.like-dislike-container .icons-box {
  display: flex;
}

.like-dislike-container .icons {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* opacity: .6; */
  margin: 0 0.5rem;
  cursor: pointer;
  user-select: none;
  transition: .2s ease all;
}

/*     
    .like-dislike-container .icons .svgs:active {
      opacity: .9;

    } */

.like-dislike-container .icons .btn-label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.5rem;
  cursor: pointer;
  position: relative;
}


.like-dislike-container .icons .svgs {
  width: 2.3rem;
  fill: #b76f5a;
  box-sizing: content-box;
  padding: 10px 10px;
  transition: .2s ease all;
}

/* Hide the default checkbox */
.like-dislike-container .icons .input-box {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.like-dislike-container .icons #icon-like-regular {
  display: block;
}

.like-dislike-container .icons #icon-like-solid {
  display: none;
}

.like-dislike-container .icons:hover :is(#icon-like-solid, #icon-like-regular) {
  animation: rotate-icon-like 0.7s ease-in-out both;
}

.like-dislike-container .icons #like-checkbox:checked~#icon-like-regular {
  display: none;
  animation: checked-icon-like 0.5s;
}

.like-dislike-container .icons #like-checkbox:checked~#icon-like-solid {
  display: block;
  animation: checked-icon-like 0.5s;
}


.like-dislike-container .icons .fireworks {
  transform: scale(0.4);
}

.like-dislike-container .icons #like-checkbox:checked~.fireworks>.checked-like-fx {
  position: absolute;
  width: 10px;
  height: 10px;
  right: 40px;
  border-radius: 50%;
  box-shadow: 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
  animation: 1s fireworks-bang ease-out forwards, 1s fireworks-gravity ease-in forwards, 5s fireworks-position linear forwards;
  animation-duration: 1.25s, 1.25s, 6.25s;
}


/* Checked Animation */
@keyframes checked-icon-like {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2) rotate(-10deg);
  }
}

@keyframes checked-icon-dislike {
  0% {
    transform: scale(0) rotate(180deg);
    opacity: 0;
  }

  50% {
    transform: scale(1.2) rotate(170deg);
  }
}

/* Fireworks Animation */
@keyframes fireworks-position {

  0%,
  19.9% {
    margin-top: 10%;
    margin-left: 40%;
  }

  20%,
  39.9% {
    margin-top: 40%;
    margin-left: 30%;
  }

  40%,
  59.9% {
    margin-top: 20%;
    margin-left: 70%;
  }

  60%,
  79.9% {
    margin-top: 30%;
    margin-left: 20%;
  }

  80%,
  99.9% {
    margin-top: 30%;
    margin-left: 80%;
  }
}

@keyframes fireworks-gravity {
  to {
    transform: translateY(200px);
    opacity: 0;
  }
}

@keyframes fireworks-bang {
  to {
    box-shadow: 114px -107.3333333333px #8800ff, 212px -166.3333333333px #a600ff, 197px -6.3333333333px #ff006a, 179px -329.3333333333px #3300ff, -167px -262.3333333333px #ff0062, 233px 65.6666666667px #ff008c, 81px 42.6666666667px #0051ff, -13px 54.6666666667px #00ff2b, -60px -183.3333333333px #0900ff, 127px -259.3333333333px #ff00e6, 117px -122.3333333333px #00b7ff, 95px 20.6666666667px #ff8000, 115px 1.6666666667px #0004ff, -160px -328.3333333333px #00ff40, 69px -242.3333333333px #000dff, -208px -230.3333333333px #ff0400, 30px -15.3333333333px #e6ff00, 235px -15.3333333333px #fb00ff, 80px -232.3333333333px #d5ff00, 175px -173.3333333333px #00ff3c, -187px -176.3333333333px #aaff00, 4px 26.6666666667px #ff6f00, 227px -106.3333333333px #ff0099, 119px 17.6666666667px #00ffd5, -102px 4.6666666667px #ff0088, -16px -4.3333333333px #00fff7, -201px -310.3333333333px #00ffdd, 64px -181.3333333333px #f700ff, -234px -15.3333333333px #00fffb, -184px -263.3333333333px #aa00ff, 96px -303.3333333333px #0037ff, -139px 10.6666666667px #0026ff, 25px -205.3333333333px #00ff2b, -129px -322.3333333333px #40ff00, -235px -187.3333333333px #26ff00, -136px -237.3333333333px #0091ff, -82px -321.3333333333px #6a00ff, 7px -267.3333333333px #ff00c8, -155px 30.6666666667px #0059ff, -85px -73.3333333333px #6a00ff, 60px -199.3333333333px #55ff00, -9px -289.3333333333px #00ffaa, -208px -167.3333333333px #00ff80, -13px -299.3333333333px #ff0004, 179px -164.3333333333px #ff0044, -112px 12.6666666667px #0051ff, -209px -125.3333333333px #ff00bb, 14px -101.3333333333px #00ff95, -184px -292.3333333333px #ff0099, -26px -168.3333333333px #09ff00, 129px -67.3333333333px #0084ff, -17px -23.3333333333px #0059ff, 129px 34.6666666667px #7300ff, 35px -24.3333333333px #ffd900, -12px -297.3333333333px #ff8400, 129px -156.3333333333px #0dff00, 157px -29.3333333333px #1a00ff, -221px 6.6666666667px #ff0062, 0px -311.3333333333px #ff006a, 155px 50.6666666667px #00ffaa, -71px -318.3333333333px #0073ff;
  }
}

.userLog-brand {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.userLog__logo {
  width: 65px;
  height: 65px;
  display: block;
  margin: 0 auto;
}

.userLog__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.userLog-brand .text-light {
  background: linear-gradient(135deg, #22d3ee, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.userLog-auth-card,
#signupModal .modal-content {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 40px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 255, 255, .12);
}

.log-controls {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  border-radius: 14px;
  padding: 14px;
}

.log-controls::placeholder {
  color: #fefefe5d;
}

.log-controls:focus {
  background: rgba(255, 255, 255, .12);
  border-color: #38bdf8;
  box-shadow: none;
  color: #fff;
}

.log-controls option {
  color: #000
}

.userLog-otp-input {
  text-align: center;
  letter-spacing: 10px;
  font-size: 22px;
  font-weight: 600;
}

.log-btn-premium {
  background: linear-gradient(135deg, #22d3ee, #6366f1);
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  color: #fff;
  margin-top: 22px;
  cursor: pointer;
}

.log-btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(99, 102, 241, .4);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, .3), transparent);
  margin: 22px 0;
}

/* intl tel input */
.iti {
  width: 100%;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}

.iti__country-list {
  background: #000 !important;
}

/* Photo upload */
.userLog-photo-upload {
  border: 2px dashed rgba(255, 255, 255, .25);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
}

.userLog-photo-upload input {
  display: none
}

.userLog-photo-upload img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.custom-toast {
  background: rgba(15, 23, 42, .95);
  border-left: 5px solid #22d3ee;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
  animation: slideIn .4s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

/* Responsive info panel */
.userLog-info-panel {
  padding: 80px;
}

@media(max-width:991px) {
  .userLog-info-panel {
    padding: 40px 20px;
    text-align: center;
  }
}

.userLog-feature {
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.userLog-feature div p span {
  color: #22d3ee
}

.userLog-feature div p {
  font-size: 15px;
}

/* end here */
:root {
  --gold: #d4af37;
  --dark: #0b0b0f;
  --card: #15151c;
  --text: #cfcfd6;
}


/* HERO */
.ck-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #1a1a25, #000);
}

.ck-brand-line {
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 500;
}

/* BUTTONS */
.ck-btn-gold {
  background: linear-gradient(135deg, #f5d77a, #cfa63b);
  color: #000;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
}

.ck-btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
}

/* SERVICE CARDS */
.ck-service-card {
  background: var(--card);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: 0.4s;
}

.ck-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

/* COMPARISON TABLE */
.ck-compare-table {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  padding: 12px;
}

.ck-compare-table table {
  border-radius: 10px;
}

.ck-compare-table th {
  background: #1f1f2a;
  color: #fff;
}

.ck-compare-table td {
  color: #fefefe;
  font-weight: 600;
  padding: 10px;
}

/* HIGHLIGHT */
.ck-highlight {
  background: linear-gradient(135deg, #2a2105, #151108);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 25px;
}

/* MISSION / VISION */
.ck-mv-card {
  background: var(--card);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  background: var(--card);
  border: 1px solid #d4af37;
  border-radius: 12px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s;
}

.job-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #fefefe;
}

.job-info h4 {
  font-size: 1.35rem;
  color: #fefefe;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fefefe;
  font-size: 0.9rem;
}

.job-actions {
  display: flex;
  gap: 0.75rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #d4af37;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.icon-btn:hover {
  background: var(--gold);
  border-color: #fff;
  color: #fefefe;
}

.icon-btn.active {
  background: #fff;
  color: #fefefe;
  border-color: #fff;
}

.ck-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #1c1c2a, #000);
}

.ck-btn-gold {
  background: linear-gradient(135deg, #f5d77a, #cfa63b);
  color: #000;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
}

.ck-btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 30px;
}

.ck-role-card {
  background: var(--card);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  transition: 0.4s;
}

.ck-role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.ck-benefit-card {
  background: var(--card);
  border-radius: 16px;
  padding: 25px;
  height: 100%;
}

.ck-highlight-line {
  background: linear-gradient(135deg, #1d1807, #0f0d05);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 30px;
}

.ck-value-card {
  background: var(--card);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
}

.ck-form-card {
  background: var(--card);
  border-radius: 20px;
  padding: 35px;
}

.ck-form-control,
.ck-form-select {
  background: #0f0f15;
  border: 1px solid #2a2a35;
  color: #fff;
}

.ck-form-control:focus,
.ck-form-select:focus {
  border-color: var(--gold);
  box-shadow: none;
}

.ck-btn-gold {
  background: linear-gradient(135deg, #f5d77a, #cfa63b);
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
}

.ck-microcopy {
  font-size: 14px;
  color: var(--muted);
}

.ck-sidebar {
  background: #ffffff;
  height: 100vh;
  padding: 20px 16px;
  border-right: 1px solid #eaeaea;
  position: sticky;
  top: 0;
}

.ck-sidebar-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6f42c1;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.ck-sidebar-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
}

.ck-sidebar-accordion .accordion-button {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  background: #f8f9fb;
  border-radius: 8px;
  box-shadow: none;
}

.ck-sidebar-accordion .accordion-button:not(.collapsed) {
  background: #efe9ff;
  color: #6f42c1;
}

.ck-sidebar-accordion .accordion-button::after {
  transform: scale(.8);
}

.ck-sidebar-accordion .accordion-body {
  padding: 10px 8px;
}

.ck-sidebar-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ck-sidebar-list li {
  padding: 8px 10px;
  font-size: 14px;
  color: #555;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s ease;
}

.ck-sidebar-list li:hover {
  background: #f1f1f8;
  color: #6f42c1;
}

.ck-sidebar-list li.active {
  background: #6f42c1;
  color: #ffffff;
  font-weight: 500;
}

/* ========== MAIN CONTENT ========== */
.ck-content-area {
  padding: 40px;
  background: #ffffff;
}

.ck-content-area section {
  margin-bottom: 60px;
}

.ck-content-area h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* ========== RIGHT TOC ========== */
.ck-toc {
  background: #ffffff;
  height: 100vh;
  padding: 20px;
  border-left: 1px solid #eaeaea;
  position: sticky;
  top: 0;
}

.ck-toc-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6f42c1;
  letter-spacing: .5px;
  margin-bottom: 15px;
}

.ck-toc .nav-link {
  font-size: 14px;
  color: #555;
  padding-left: 12px;
  border-left: 2px solid transparent;
}

.ck-toc .nav-link.active {
  color: #6f42c1;
  font-weight: 600;
  border-left: 2px solid #6f42c1;
  background: transparent;
}

.lt-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}

.lt-tab {
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid #dee2e6;
  background-color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lt-tab.active,
.lt-tab:hover {
  background: linear-gradient(135deg, #f5d77a, #cfa63b);
  color: #000;
  font-weight: 600;
  border-color: #fefefe;
}

/* Leader grid */
.lt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.lt-card {
  background: #15151c;
  height: 100%;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 350px;
  border-bottom: 3px solid #dbb54e;
}

.lt-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.lt-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #fefefe;
  color: #dbb54e;
  font-weight: 700;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border-bottom: 3px solid #dbb54e;
}

.lt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.lt-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fefefe;
}

.lt-role {
  font-size: 1rem;
  color: #adb5bd;
  margin-bottom: 15px;
}

.lt-philosophy {
  font-size: 0.95rem;
  color: #d0d2d4;
  margin-bottom: 20px;
  font-style: italic;
}

.lt-icons a {
  margin: 0 8px;
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.lt-icons a:hover {
  color: #dbb54e;
}

@media (max-width: 768px) {
  .lt-grid {
    grid-template-columns: 1fr;
  }
}
.scnf-page-wrap {
    max-width: 1070px;
    margin: 0 auto;
}

/* ── TOP GRADIENT BANNER ───────────────── */
.scnf-booking-banner {
    background: var(--bg2);
    border-radius: 18px 18px 0 0;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.scnf-booking-banner::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.scnf-booking-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 30%;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.scnf-banner-left .sub {
    font-size: 0.67rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
}

.scnf-banner-left .scnf-bid {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.scnf-banner-right {
    text-align: right;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.scnf-banner-right strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    font-size: 0.9rem;
}

/* ── MAIN CARD ─────────────────────────── */
.scnf-booking-card {
    background: #fefefe;
    border-radius: 0 0 18px 18px;
    border: 1px solid #ebebeb;
    border-top: none;
    box-shadow: 0 16px 48px rgba(201,20,20,0.12), 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* ── SECTION BLOCK ─────────────────────── */
.scnf-section-block {
    padding: 1.6rem 2rem;
    border-bottom: 1px solid #ebebeb;
}

.scnf-section-block:last-child { border-bottom: none; }

.scnf-section-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scnf-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ebebeb;
}

/* ── PAY TABS ──────────────────────────── */
.scnf-pay-tab-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.scnf-pay-tab {
    padding: 1.1rem 1.3rem;
    border-radius: 10px;
    cursor: pointer;
    border: 1.5px solid #ebebeb;
    background: #fafafa;
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
}

.scnf-pay-tab:hover {
    border-color: var(--p-color);
    background: rgba(201, 20, 20, 0.05);
}

.scnf-pay-tab.active {
    border-color: var(--p-color);
    background: rgba(201, 20, 20, 0.08);
    box-shadow: 0 4px 16px rgba(201,20,20,0.1);
}

.scnf-pay-tab.active::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bg2);
}

.scnf-pay-tab .scnf-tab-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.scnf-pay-tab.active .scnf-tab-label { color: var(--p-color); }

.scnf-pay-tab .scnf-tab-sub {
    font-size: 0.75rem;
    color: #999;
}

.scnf-pay-tab.active .scnf-tab-sub.has-discount { color: #28a745; font-weight: 600; }

/* ── PAYCONTENT ────────────────────────── */
.scnf-paycontent { display: none; }
.scnf-paycontent.visible { display: block; }

/* ── ACCORDION ─────────────────────────── */
.scnf-acc-wrap { margin-top: 1rem; }

.scnf-acc-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: #fafafa;
    border: 1.5px solid #ebebeb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.scnf-acc-trigger:hover { border-color: rgba(201, 20, 20, 0.15); }
.scnf-acc-trigger.open { border-color: var(--p-color); border-radius: 10px 10px 0 0; border-bottom-color: transparent; }

.scnf-acc-left .scnf-acc-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 3px;
}

.scnf-acc-left .scnf-acc-amt {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--p-color);
}

.scnf-acc-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(201, 20, 20, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--p-color);
    font-size: 0.85rem;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.scnf-acc-trigger.open .scnf-acc-icon { transform: rotate(180deg); background: var(--p-color); color: white; }

.scnf-acc-body {
    display: none;
    background: #fafafa;
    border: 1.5px solid var(--p-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 0.4rem 1.2rem 1rem;
}

.scnf-acc-body.open { display: block; }

.scnf-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #ebebeb;
    font-size: 0.87rem;
}

.scnf-price-row:last-child { border-bottom: none; padding-top: 0.85rem; }

.scnf-price-row .scnf-pr-label { color: #5a3030; font-weight: 500; }
.scnf-price-row .scnf-pr-value { color: var(--text-dark); font-weight: 600; }
.scnf-price-row .scnf-pr-value.green { color: #28a745; }
.scnf-price-row.scnf-total-row .scnf-pr-label {
    font-size: 0.95rem;
    color: var(--text-dark);
}
.scnf-price-row.scnf-total-row .scnf-pr-value {
    font-size: 1.25rem;
    color: var(--p-color);
}

/* ── PAY NOW BUTTON ────────────────────── */
.scnf-pay-cta-wrap {
    padding: 1.2rem 0 0.4rem;
    display: flex;
    justify-content: center;
}

.scnf-pay-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2.5rem;
    background: var(--bg2);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 24px rgba(201,20,20,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.scnf-pay-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201,20,20,0.45);
    color: white;
    text-decoration: none;
}

.scnf-pay-cta-btn.paid-btn {
    background: linear-gradient(135deg, #1e7e34, #0d4018);
    box-shadow: 0 8px 24px rgba(30,126,52,0.3);
    cursor: default;
}

/* ── SPA SECTION ───────────────────────── */
.scnf-spa-section {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.scnf-spa-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #ebebeb;
    flex-shrink: 0;
}

.scnf-spa-tag {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(201, 20, 20, 0.08);
    color: var(--p-color);
    border: 1px solid rgba(201, 20, 20, 0.15);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.scnf-spa-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.scnf-spa-addr {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.scnf-spa-addr i { color: var(--p-color); margin-right: 4px; }

.scnf-dir-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.48rem 1.1rem;
    border: 1.5px solid rgba(201, 20, 20, 0.15);
    border-radius: 50px;
    color: var(--p-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    background: rgba(201, 20, 20, 0.05);
}

.scnf-dir-btn:hover {
    background: rgba(201, 20, 20, 0.08);
    border-color: var(--p-color);
    text-decoration: none;
    color: #631010;
}

/* ── DETAILS GRID ──────────────────────── */
.scnf-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.scnf-detail-cell {
    padding: 1.2rem 1.6rem;
    border-right: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.scnf-detail-cell:nth-child(4n) { border-right: none; }

.scnf-detail-cell .scnf-dc-label {
    font-size: 0.63rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
}

.scnf-detail-cell .scnf-dc-val {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    word-break: break-word;
}

.scnf-detail-cell .scnf-dc-val.serif {
    font-size: 0.95rem;
}

.scnf-detail-cell .scnf-dc-val i {
    color: var(--p-color);
    margin-right: 2px;
}

.scnf-badge-row { display: flex; gap: 8px; margin-top: 4px; }

.scnf-info-badge {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(201, 20, 20, 0.08);
    color: var(--p-color);
    border: 1px solid rgba(201, 20, 20, 0.15);
    font-weight: 600;
}

/* wide cell */
.scnf-detail-cell.col-span-2 { grid-column: span 2; }
.scnf-detail-cell.col-span-3 { grid-column: span 3; }

/* ── PAYMENT DETAILS SECTION ───────────── */
.scnf-pay-detail-section {
    padding: 1.6rem 2rem 0.6rem;
    border-bottom: 1px solid #ebebeb;
}

/* ── CANCEL AREA ───────────────────────── */
.scnf-cancel-area {
    padding: 1.4rem 2rem 1.8rem;
    display: flex;
    justify-content: center;
}

.scnf-cancel-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.7rem 2rem;
    border: 1.5px solid rgba(201, 20, 20, 0.15);
    border-radius: 50px;
    color: var(--p-color);
    font-family: 'Nunito', sans-serif;
    font-size: 0.87rem;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.scnf-cancel-btn:hover {
    background: rgba(201, 20, 20, 0.08);
    border-color: var(--p-color);
    text-decoration: none;
    color: #631010;
}

@keyframes booking-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes status-dot-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.booking-animate-card { animation: booking-fade-up 0.42s ease both; }
.booking-animate-card:nth-child(1) { animation-delay: 0.06s; }
.booking-animate-card:nth-child(2) { animation-delay: 0.13s; }
.booking-animate-card:nth-child(3) { animation-delay: 0.20s; }
.booking-animate-card:nth-child(4) { animation-delay: 0.27s; }
.booking-animate-card:nth-child(5) { animation-delay: 0.34s; }

/* ── HERO SECTION ── */
.booking-hero-section {
    background: linear-gradient(135deg, rgb(201, 20, 20), #631010);
    padding: 54px 20px 68px;
    position: relative;
    overflow: hidden;
}

.booking-hero-circle-top-right {
    position: absolute; top: -55px; right: -55px;
    width: 190px; height: 190px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
}
.booking-hero-circle-bottom-left {
    position: absolute; bottom: -80px; left: 5%;
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.booking-hero-circle-mid-right {
    position: absolute; top: 40%; right: -20px;
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.booking-hero-top-line {
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: rgba(255,255,255,0.18);
}

.booking-hero-back-button {
    position: absolute; top: 17px; left: 17px;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.14);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.95rem; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    text-decoration: none; transition: background 0.2s;
}
.booking-hero-back-button:hover { background: rgba(255,255,255,0.24); }

.booking-hero-share-button {
    position: absolute; top: 17px; right: 17px;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.14);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.88rem; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
}

.booking-hero-status-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.24);
    padding: 4px 13px; border-radius: 50px;
    font-size: 0.66rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    margin-bottom: 13px;
}
.booking-hero-status-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #7dffa0;
    animation: status-dot-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(125,255,160,0.6);
}

.booking-hero-id {
    font-family: 'Fraunces', serif;
    font-size: 1.85rem; font-weight: 700;
    color: #fff; letter-spacing: -0.01em; line-height: 1.1;
    margin-bottom: 10px;
}
.booking-hero-meta {
    font-size: 0.79rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.8;
}
.booking-hero-meta strong {
    color: rgba(255,255,255,0.92); font-weight: 600;
}

.booking-hero-price-chip {
    position: absolute; bottom: 20px; right: 20px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 14px; padding: 9px 16px; text-align: right;
}
.booking-hero-price-chip-label {
    font-size: 0.6rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.58); margin-bottom: 2px;
}
.booking-hero-price-chip-amount {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem; font-weight: 700; color: #fff;
}

/* ── MAIN CONTENT WRAPPER ── */
.booking-content-wrapper {
    padding: 0 12px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

/* ── SECTION CARD ── */
.booking-section-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.085);
    overflow: hidden;
    margin-bottom: 11px;
    border: 1px solid rgba(0,0,0,0.038);
}

.booking-card-header {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 15px 11px;
    border-bottom: 1px solid #e8e8e8;
}
.booking-card-header-icon {
    width: 32px; height: 32px; border-radius: 9px;
    background: linear-gradient(135deg, rgba(201,20,20,0.1), rgba(99,16,16,0.05));
    display: flex; align-items: center; justify-content: center;
    color: rgb(201, 20, 20); font-size: 0.87rem; flex-shrink: 0;
    border: 1px solid rgba(201,20,20,0.18);
}
.booking-card-header-title {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #5c3030;
}

/* ── PAYMENT TABS ── */
.payment-tab-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 9px; padding: 13px 13px 0;
}
.payment-tab-item {
    position: relative; padding: 12px 13px;
    border-radius: 13px; cursor: pointer;
    border: 1.5px solid #e8e8e8;
    background: #fafafa;
    transition: all 0.2s ease; overflow: hidden;
}
.payment-tab-item:active { transform: scale(0.98); }
.payment-tab-item.active {
    border-color: rgb(201, 20, 20);
    background: linear-gradient(135deg, rgba(201,20,20,0.07), rgba(99,16,16,0.03));
}
.payment-tab-item.active::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(135deg, rgb(201, 20, 20), #631010);
    border-radius: 13px 13px 0 0;
}
.payment-tab-icon {
    width: 27px; height: 27px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; margin-bottom: 7px;
    background: #e8e8e8; color: #ababab; transition: all 0.2s;
}
.payment-tab-item.active .payment-tab-icon {
    background: linear-gradient(135deg, rgb(201, 20, 20), #631010);
    color: white;
}
.payment-tab-label {
    font-size: 0.84rem; font-weight: 600; color: #1a0606; margin-bottom: 2px;
}
.payment-tab-item.active .payment-tab-label { color: rgb(201, 20, 20); }
.payment-tab-sublabel { font-size: 0.69rem; color: #ababab; }
.payment-tab-item.active .payment-tab-sublabel.has-discount {
    color: #16a34a; font-weight: 600;
}

/* ── PAY CONTENT PANELS ── */
.paycontent { display: none; }
.paycontent.visible { display: block; }

/* ── PRICE BREAKDOWN ACCORDION ── */
.price-breakdown-wrapper { padding: 13px; }

.price-accordion-trigger {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 13px;
    background: linear-gradient(135deg, rgba(201,20,20,0.1), rgba(99,16,16,0.05));
    border-radius: 13px; cursor: pointer;
    border: 1.5px solid rgba(201,20,20,0.18);
    user-select: none; transition: all 0.2s;
}
.price-accordion-trigger.open {
    border-radius: 13px 13px 0 0;
    border-bottom-color: transparent;
    background: linear-gradient(135deg, rgb(201, 20, 20), #631010);
}
.price-accordion-trigger-left .price-accordion-sublabel {
    font-size: 0.65rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: #ababab; margin-bottom: 3px;
    transition: color 0.2s;
}
.price-accordion-trigger.open .price-accordion-trigger-left .price-accordion-sublabel {
    color: rgba(255,255,255,0.65);
}
.price-accordion-trigger-left .price-accordion-amount {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem; font-weight: 700;
    color: rgb(201, 20, 20); transition: color 0.2s;
}
.price-accordion-trigger.open .price-accordion-trigger-left .price-accordion-amount {
    color: white;
}
.price-accordion-chevron {
    width: 27px; height: 27px; border-radius: 50%;
    background: rgba(201,20,20,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgb(201, 20, 20); font-size: 0.78rem;
    transition: all 0.24s; flex-shrink: 0;
}
.price-accordion-trigger.open .price-accordion-chevron {
    transform: rotate(180deg);
    background: rgba(255,255,255,0.2);
    color: white;
}

.price-accordion-body {
    display: none;
    border: 1.5px solid rgba(201,20,20,0.18);
    border-top: none;
    border-radius: 0 0 13px 13px;
    background: white;
    padding: 3px 13px 9px;
}
.price-accordion-body.open { display: block; }

.price-breakdown-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px dashed #f0f0f0; font-size: 0.83rem;
}
.price-breakdown-row:last-child { border-bottom: none; padding-top: 11px; }
.price-breakdown-row-label  { color: #5c3030; }
.price-breakdown-row-value  { font-weight: 600; color: #1a0606; }
.price-breakdown-row-value.amount-green  { color: #16a34a; }
.price-breakdown-row.price-total-row .price-breakdown-row-label {
    font-family: 'Fraunces', serif;
    font-size: 0.87rem; font-weight: 600; color: #1a0606;
}
.price-breakdown-row.price-total-row .price-breakdown-row-value {
    font-family: 'Fraunces', serif;
    font-size: 1.08rem; color: rgb(201, 20, 20);
}

/* ── PAY NOW BUTTON (inline, not fixed) ── */
.pay-now-button-wrapper {
    padding: 4px 13px 13px;
    display: flex; justify-content: center;
}
.pay-now-button {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, rgb(201, 20, 20), #631010);
    color: white; border: none;
    border-radius: 13px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem; font-weight: 700;
    cursor: pointer; text-decoration: none; letter-spacing: 0.02em;
    box-shadow: 0 8px 28px rgba(201,20,20,0.3);
    transition: transform 0.15s, box-shadow 0.2s;
}
.pay-now-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(201,20,20,0.42);
    color: white; text-decoration: none;
}
.pay-now-button:active { transform: scale(0.98); color: white; text-decoration: none; }
.pay-now-button-price {
    font-family: 'Fraunces', serif; font-size: 1.08rem;
}
.pay-now-button-separator {
    width: 1px; height: 17px;
    background: rgba(255,255,255,0.28); margin: 0 2px;
}
.pay-now-button.payment-done {
    background: linear-gradient(135deg, #1e7e34, #0d4018);
    box-shadow: 0 8px 28px rgba(30,126,52,0.3);
}

/* ── SPA SECTION ── */
.spa-section-inner { padding: 13px; }
.spa-section-image {
    width: 100%; height: 155px; object-fit: cover;
    border-radius: 13px; margin-bottom: 13px;
    border: 1px solid #e8e8e8;
}
.spa-partner-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: linear-gradient(135deg, rgba(201,20,20,0.1), rgba(99,16,16,0.05));
    border: 1px solid rgba(201,20,20,0.18);
    padding: 3px 11px; border-radius: 50px;
    font-size: 0.63rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgb(201, 20, 20); margin-bottom: 8px;
}
.spa-business-name {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem; font-weight: 600;
    color: #1a0606; line-height: 1.35; margin-bottom: 9px;
}
.spa-business-name em { font-size: 0.88rem; font-weight: 400; color: #5c3030; }

.spa-address-row { display: flex; gap: 8px; margin-bottom: 13px; }
.spa-address-icon {
    width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; margin-top: 2px;
    background: linear-gradient(135deg, rgba(201,20,20,0.1), rgba(99,16,16,0.05));
    display: flex; align-items: center; justify-content: center;
    color: rgb(201, 20, 20); font-size: 0.7rem;
    border: 1px solid rgba(201,20,20,0.18);
}
.spa-address-text { font-size: 0.78rem; color: #ababab; line-height: 1.55; }

.spa-directions-button {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 10px; width: 100%;
    border: 1.5px solid rgba(201,20,20,0.18); border-radius: 13px;
    color: rgb(201, 20, 20); font-size: 0.82rem; font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(201,20,20,0.1), rgba(99,16,16,0.05));
    transition: all 0.2s;
}
.spa-directions-button:active { transform: scale(0.98); }
.spa-directions-button:hover { color: #631010; text-decoration: none; }

/* ── INFO GRID ── */
.booking-info-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: #e8e8e8;
}
.booking-info-cell { background: white; padding: 13px 15px; }
.booking-info-cell.full-width { grid-column: span 2; }

.booking-info-cell-label {
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #ababab; margin-bottom: 4px;
}
.booking-info-cell-value {
    font-size: 0.87rem; font-weight: 600;
    color: #1a0606; line-height: 1.4;
}
.booking-info-cell-value.serif-value {
    font-family: 'Fraunces', serif; font-size: 0.93rem;
}
.booking-info-cell-value i { color: rgb(201, 20, 20); }

.booking-info-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 3px; }
.booking-info-badge {
    font-size: 0.69rem; font-weight: 700;
    padding: 3px 10px; border-radius: 50px;
    background: linear-gradient(135deg, rgba(201,20,20,0.1), rgba(99,16,16,0.05));
    color: rgb(201, 20, 20);
    border: 1px solid rgba(201,20,20,0.18);
}

/* ── PAYMENT SUMMARY CARD ── */
.payment-summary-inner { padding: 13px; }

.booking-cancel-row {
    padding: 5px 13px 13px;
    display: flex; justify-content: center;
}
.booking-cancel-button {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 24px;
    border: 1.5px solid rgba(201,20,20,0.22); border-radius: 50px;
    color: rgba(201,20,20,0.75);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.83rem; font-weight: 600;
    background: transparent; cursor: pointer;
    text-decoration: none; transition: all 0.2s;
    width: 100%; justify-content: center;
}
.booking-cancel-button:active { transform: scale(0.97); }
.booking-cancel-button:hover {
    background: rgba(201,20,20,0.05);
    border-color: rgb(201, 20, 20);
    color: #631010; text-decoration: none;
}