@font-face {
  font-family: Delight;
  src: url("../font/delight/delight-regular.otf") format("opentype");
}

@font-face {
  font-family: Delight-Bold;
  src: url("../font/delight/delight-bold.otf") format("opentype");
}

@font-face {
  font-family: Delight-Medium;
  src: url("../font/delight/delight-medium.otf") format("opentype");
}

@font-face {
  font-family: Delight-Thin;
  src: url("../font/delight/delight-thin.otf") format("opentype");
}

@font-face {
  font-family: Champion;
  src: url("../font/champion/Champion-HTF-Middleweight.otf") format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Delight";
}

body {
  /* background: white; */
  background-color: #fafbfc!important;
  background: #fafbfc!important;
}

/* PAGE CONTAINER */
.page {
  /* max-width: 1200px; */
  margin: 20px 20px;
  border-radius: 24px;
  overflow: hidden;
  /* background: white; */
  /* background-color: #fafbfc; */
}

/* HERO */
.hero {
  position: relative;
  height: 640px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center; */
  object-position: top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* NAV */
.nav {
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  z-index: 2;
}

.logo {
  font-weight: 600;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  gap: 12px;
}

.nav-links a {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  font-size: 14px;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.nav-links a:hover {
  color: white;
}

.sc__button__primary{
    color: rgb(17, 17, 17);
    background: rgb(239, 191, 74);
}

.talk-btn {
  background: white;
  color: black;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
  background: none;
  border: none;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }

  .content{
    padding: 0px 0px!important;
  }

  .page{
    margin-left: 0px!important;
    margin-right: 0px!important;
    margin-top: 0px!important;
  }

  .trip-details .trip-details-card{
    padding: 0px 0px 0px!important;
  }

  .hero-text h1{
    font-size: 50px!important;
  }

  .content h2{
    font-size: 1.7rem!important;
    padding-top: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    gap: 15px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .talk-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  bottom: 220px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.hero-text h1 {
  font-size: 80px;
  font-weight: 600;
}

/* CONTENT */
.content {
  padding: 60px 40px;
  text-align: center;
}

.content h2 {
  font-size: 56px;
  margin-bottom: 20px;
}

/* CONTAINER */
.stepper {
  width: 700px;
  margin: 60px auto;
}

/* PROGRESS BAR */
.progress {
  position: relative;
  height: 8px!important;
  /*background: #e9e2d3;*/
  border-radius: 999px;
  overflow: hidden;
}

/* STRIPED FILL */
.progress-fill {
  width: 25%; /* change based on step */
  height: 100%;
  border-radius: 999px;
  background: repeating-linear-gradient(
    120deg,
    #F7C6544D,
    #F7C6544D 6px,
    #F7C654 6px,
    #F7C654 12px
  );
}

/* STEPS ROW */
.steps {
  display: flex;
  justify-content: space-between;
  margin-top: -28px; /* pulls circles onto bar */
  position: relative;
}

/* STEP */
.step {
  text-align: center;
  width: 25%;
  color: #9b9b9b;
}

/* CIRCLE */
.circle {
  width: 42px;
  height: 42px;
  /*margin: 0 auto 8px;*/
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #bbb;
}

/* ACTIVE STEP */
.step.active {
  color: #000;
}

.step.active .circle {
  background: #F7C654;
  color: #000;
}

/* NUMBER */
.number {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
  color: #c79a3c;
}

/* LABEL */
.step p {
  font-size: 16px;
  margin: 0;
}

/* TRIP OVERVIEW */
.trip-overview {
  padding: 20px;
}

.trip-overview h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #000;
}

/* CAROUSEL CONTAINER */
.carousel-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

/* CAROUSEL */
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 40px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 calc(100% - 80px);
  scroll-snap-align: center;
  border-radius: 8px;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* CAROUSEL NAVIGATION */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav-left {
  left: 0;
}

.carousel-nav-right {
  right: 0;
}

/* TRIP TITLE */
.trip-title {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0;
  color: #000;
}

/* TRIP HIGHLIGHTS */
.trip-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trip-highlights li {
  padding: 8px 0;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  padding-left: 12px;
}

.trip-highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F7C654;
  font-size: 16px;
}

.trip-section{
    margin-top: 40px;
    background-color: white;
    border-radius: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.trip-section-heading{
    margin: 20px;
    border-bottom: 1px solid #1919191A;
    font-size: 24px;
    padding-bottom: 20px;
}

.trip-inclusion-section{
    background-color: #f9f9f9;
    border-radius: 34px;
    padding-bottom: 10px;
}

.trip-inclusion-section h4{
    padding-top: 30px;
    padding-bottom: 20px;
}

.trip-inclusions{
    background-color: white;
    border-radius: 32px;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 20px;
}

.trip-inclusions .col-11{
    margin-bottom: 15px;
}


.trip-itinerary .itinerary-card {
  /* max-width: 1280px; */
  max-width: 1440px;
  margin: 0 auto;
  background: white;
  border-radius: 36px;
  padding: 42px 28px 48px;
}

.trip-itinerary .itinerary-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.trip-itinerary .1;
  margin-bottom: 26px;
}

.trip-itinerary .divider {
  height: 1px;
  background: #dddddd;
  margin-bottom: 32px;
}

.trip-itinerary .slider-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.trip-itinerary .slider-row::-webkit-scrollbar {
  display: none;
}

.trip-itinerary .day-card {
  min-width: 252px;
  flex: 0 0 252px;
}

.trip-itinerary .day-image-wrapper {
  position: relative;
  width: 100%;
  height: 305px;
  overflow: hidden;
  border-radius: 20px;
  background: #ddd;
}

.trip-itinerary .day-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trip-itinerary .day-label {
  margin-top: 10px;
  /* border-radius: 0 0 16px 16px; */
  border-radius: 12px;
  text-align: center;
  padding: 14px 12px 16px;
  background: #F7C654;
}

.trip-itinerary .day-card.active .day-label {
  background: #e9e9e9;
}

.trip-itinerary .day-number {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  margin-bottom: 4px;
}

.trip-itinerary .day-location {
  display: block;
  font-size: 18px;
  line-height: 1.trip-itinerary .1;
  font-weight: 700;
  color: #111;
}

.trip-itinerary .overlay-button {
  position: absolute;
  right: 12px;
  bottom: 118px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid #f5f5f5;
  background: #7f89ac;
  color: white;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
}

.trip-itinerary .content-row {
  display: grid;
  grid-template-columns: 290px 1fr 160px;
  gap: 18px;
  align-items: start;
  margin-top: 34px;
}

.trip-itinerary .heading-block h2 {
  font-size: 32px;
  line-height: 0.trip-itinerary .98;
  font-weight: 700;
  letter-spacing: -0.trip-itinerary .02em;
}

.trip-itinerary .description {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.trip-itinerary .5;
  color: #686868;
}

.trip-itinerary .description p + p {
  margin-top: 28px;
}

.trip-itinerary .description strong {
  display: block;
  color: #666;
  font-weight: 500;
  margin-bottom: 6px;
}

.trip-itinerary .nav-controls {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding-top: 30px;
}

.trip-itinerary .nav-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.trip-itinerary .5px solid #d5d5d5;
  background: transparent;
  font-size: 24px;
  color: #111;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .trip-itinerary .content-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trip-itinerary .nav-controls {
    justify-content: flex-start;
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  body {
    padding: 16px;
  }

  .trip-itinerary .itinerary-card {
    padding: 24px 18px 28px;
    border-radius: 24px;
  }

  .trip-itinerary .itinerary-title {
    font-size: 28px;
  }

  .trip-itinerary .day-card {
    min-width: 220px;
    flex-basis: 220px;
  }

  .trip-itinerary .day-image-wrapper {
    height: 250px;
  }

  .trip-itinerary .heading-block h2 {
    font-size: 32px;
  }

  .trip-itinerary .description {
    font-size: 18px;
  }

  .trip-itinerary .nav-btn {
    width: 64px;
    height: 64px;
    font-size: 34px;
  }
}


.trip-details .trip-details-section {
  /* background: #efefef; */
}

.trip-details .trip-details-card {
  /* max-width: 1240px; */
  max-width: 1440px;
  margin: 0 auto;
  /* background: #f5f5f5; */
  border-radius: 32px;
  padding: 0px 28px 36px;
}

.trip-details .trip-details-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.trip-details .1;
  /* color: #111111; */
  color: #040404;
}

.trip-details .trip-details-divider {
  margin: 1.trip-details .75rem 0 2rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-details .details-group {
  display: flex;
  flex-direction: column;
  background: #f0f0f0;
  border-radius: 32px;
  padding: 26px 10px 10px;
}

.trip-details .details-group-title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  color: #111111;
}

.trip-details .details-list-card {
  /* background: #f7f7f7; */
  background: white;
  border-radius: 32px;
  padding: 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trip-details .details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trip-details .details-item {
  gap: 16px;
}

.trip-details .details-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.trip-details .25rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

.trip-details .details-icon--include {
  color: #e2ae35;
  border: 1.5px solid #efc768;
  background: #f8f4e8;
}

.trip-details .details-icon--exclude {
  color: #d65d2d;
  border: 1.5px solid #efb4a0;
  background: #f9ece7;
  font-size: 24px;
}

.trip-details .details-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.trip-details .35;
  color: #666666;
}

@media (max-width: 991.trip-details .98px) {
  .trip-details .trip-details-card {
    padding: 22px 18px 26px;
    border-radius: 24px;
  }

  .trip-details .details-group {
    border-radius: 24px;
    padding: 20px 8px 8px;
  }

  .trip-details .details-list-card {
    border-radius: 24px;
    padding: 22px 20px;
  }

  .trip-details .trip-details-title {
    font-size: 1.trip-details .8rem;
  }

  .trip-details .details-group-title {
    font-size: 1.trip-details .75rem;
  }

  .trip-details .details-text {
    font-size: 1.trip-details .02rem;
  }
}

@media (max-width: 575.trip-details .98px) {
  .trip-details .trip-details-title {
    font-size: 1.trip-details .55rem;
  }

  .trip-details .details-group-title {
    font-size: 1.trip-details .5rem;
  }

  .trip-details .details-list {
    gap: 16px;
  }

  .trip-details .details-item {
    gap: 12px;
  }

  .trip-details .details-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .trip-details .details-text {
    font-size: 0.trip-details .98rem;
  }
}

.trip-overview {
  /* background: #efefef; */
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 0;
}

.trip-overview .trip-overview__card {
  /* max-width: 1240px; */
  max-width: 1440px;
  margin: 0 auto;
  /* background: #f6f6f6; */
  border-radius: 32px;
  /* padding: 28px 28px 34px; */
}

.trip-overview .trip-overview__title {
  margin: 0;
  /* font-size: 2.1rem; */
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #101010;
}

.trip-overview .trip-overview__divider {
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
  margin: 1.5rem 0 1.75rem;
}

.trip-overview .trip-overview__slider {
  margin-bottom: 2.1rem;
}

.trip-overview .trip-overview__slider-track {
  gap: 18px;
}

.trip-overview .trip-overview__side-image {
  width: 88px;
  min-width: 88px;
  height: 610px;
  height: 480px;
  overflow: hidden;
  border-radius: 28px;
  background: #ddd;
}

.trip-overview .trip-overview__main-image-wrapper {
  /* height: 610px; */
  height: 480px;
  /* overflow: hidden; */
  border-radius: 28px;
  background: #ddd;
}

.trip-overview .trip-overview__main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.trip-overview .trip-overview__side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trip-overview .trip-overview__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-size: 3.1rem;
  line-height: 1;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.trip-overview .trip-overview__nav--left {
  left: -36px;
}

.trip-overview .trip-overview__nav--right {
  right: -36px;
}

.trip-overview .trip-overview__nav:hover {
  background: #fafafa;
}

.trip-overview .trip-overview__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
}

.trip-overview .trip-overview__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
}

.trip-overview .trip-overview__dot--active {
  background: #ffffff;
}

.trip-overview .trip-overview__content {
  padding: 0 28px;
}

.trip-overview .trip-overview__heading {
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.trip-overview .trip-overview__text {
  font-size: 18px;
  line-height: 1.4;
  color: #676767;
  margin-bottom: 1.75rem;
  max-width: 1060px;
}

.trip-overview .trip-overview__highlights {
  margin-top: 2rem;
}

.trip-overview .trip-overview__highlight {
  gap: 12px;
  color: #3f8ba2;
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 0.7rem;
}

.trip-overview .trip-overview__highlight:last-child {
  margin-bottom: 0;
}

.trip-overview .trip-overview__highlight-icon {
  width: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  margin-top: 2px;
  color: #3f8ba2;
}

.trip-overview .trip-overview__content-divider {
  border: 0;
  border-top: 1px solid #e2e2e2;
  opacity: 1;
  margin: 1.7rem 0 1.8rem;
}

.trip-overview .trip-overview__meta-item {
  gap: 16px;
}

.trip-overview .trip-overview__meta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.trip-overview .trip-overview__meta-icon--price {
  background: #ea6d2f;
}

.trip-overview .trip-overview__meta-icon--duration {
  background: #368aa0;
}

.trip-overview .trip-overview__meta-label {
  font-size: 1rem;
  line-height: 1.2;
  color: #666666;
  margin-bottom: 0.35rem;
}

.trip-overview .trip-overview__meta-value {
  font-size: 1.1rem;
  line-height: 1.2;
  color: #101010;
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .trip-overview .trip-overview__main-image-wrapper,
  .trip-overview .trip-overview__side-image {
    height: 520px;
  }

  .trip-overview .trip-overview__heading {
    font-size: 2.6rem;
  }
}

@media (max-width: 991.98px) {
  .trip-overview .trip-overview__card {
    padding: 22px 18px 26px;
    border-radius: 24px;
  }

  .trip-overview .trip-overview__main-image-wrapper {
    height: 440px;
    border-radius: 22px;
  }

  .trip-overview .trip-overview__main-image {
    border-radius: 22px;
  }

  .trip-overview .trip-overview__nav {
    width: 60px;
    height: 60px;
    font-size: 2.4rem;
  }

  .trip-overview .trip-overview__nav--left {
    left: 12px;
  }

  .trip-overview .trip-overview__nav--right {
    right: 12px;
  }

  .trip-overview .trip-overview__content {
    padding: 0;
  }

  .trip-overview .trip-overview__heading {
    font-size: 2.2rem;
  }

  .trip-overview .trip-overview__text {
    font-size: 1.02rem;
  }
}

@media (max-width: 575.98px) {
  .trip-overview {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-overview .trip-overview__title {
    font-size: 1.7rem;
  }

  .trip-overview .trip-overview__main-image-wrapper {
    height: 300px;
    border-radius: 18px;
  }

  .trip-overview .trip-overview__main-image {
    border-radius: 18px;
  }

  .trip-overview .trip-overview__nav {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .trip-overview .trip-overview__heading {
    font-size: 1.85rem;
  }

  .trip-overview .trip-overview__text {
    font-size: 0.96rem;
    margin-bottom: 1.25rem;
  }

  .trip-overview .trip-overview__highlight {
    font-size: 0.94rem;
  }

  .trip-overview .trip-overview__meta-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  .trip-overview .trip-overview__meta-value {
    font-size: 1rem;
  }
}

.trip-booking-progress {
  /* background: #f2f3f5; */
  padding-left: 1rem;
  padding-right: 1rem;
  /* max-width: 840px; */
  margin: auto;
}

.trip-booking-progress .trip-booking-progress__wrapper {
  max-width: 1220px;
  margin: 0 auto;
}

.trip-booking-progress .trip-booking-progress__track {
  position: relative;
  width: 100%;
  height: 60px;
  background: #f1ede0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  max-width: 840px;
  margin: auto;
}

.trip-booking-progress .trip-booking-progress__fill {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  background:repeating-linear-gradient(135deg, #efbf4a78 0, #efbf4a66 8px, #e7b53f 8px, #e7b53f 16px);
  border-radius: 999px;
  z-index: 1;
}

.trip-booking-progress .trip-booking-progress__step {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.trip-booking-progress .trip-booking-progress__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-booking-progress .trip-booking-progress__step--active .trip-booking-progress__circle {
  background: #efbf4a;
}

.trip-booking-progress .trip-booking-progress__check {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  color: #9a9a9a;
}

.trip-booking-progress .trip-booking-progress__step--active .trip-booking-progress__check {
  color: #111111;
}

.trip-booking-progress .trip-booking-progress__labels {
  max-width: 1024px;
  margin: auto;
  margin-top: 26px;
}

.trip-booking-progress .trip-booking-progress__number {
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 500;
  color: #9a9a9a;
  margin-bottom: 0.55rem;
}

.trip-booking-progress .trip-booking-progress__number--active {
  color: #efbf4a;
}

.trip-booking-progress .trip-booking-progress__label {
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 500;
  color: #9a9a9a;
}

.trip-booking-progress .trip-booking-progress__label--active {
  color: #111111;
  font-weight: 600;
}

@media (min-width: 768px) {
  .trip-booking-progress .trip-booking-progress__number {
    /* font-size: 1.85rem; */
    font-size: 20px;
  }

  .trip-booking-progress .trip-booking-progress__label {
    /* font-size: 1.45rem; */
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .trip-booking-progress .trip-booking-progress__track {
    height: 74px;
    padding: 0 10px;
  }

  .trip-booking-progress .trip-booking-progress__circle {
    width: 48px;
    height: 48px;
  }

  .trip-booking-progress .trip-booking-progress__check {
    font-size: 1.45rem;
  }

  .trip-booking-progress .trip-booking-progress__fill {
    left: 34px;
    height: 10px;
  }

  .trip-booking-progress .trip-booking-progress__labels {
    margin-top: 18px;
  }

  .trip-booking-progress .trip-booking-progress__label {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .trip-booking-progress {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-booking-progress .trip-booking-progress__track {
    height: 64px;
  }

  .trip-booking-progress .trip-booking-progress__circle {
    width: 40px;
    height: 40px;
  }

  .trip-booking-progress .trip-booking-progress__check {
    font-size: 1.1rem;
  }

  .trip-booking-progress .trip-booking-progress__fill {
    left: 28px;
    height: 8px;
  }

  .trip-booking-progress .trip-booking-progress__number {
    font-size: 1.1rem;
  }

  .trip-booking-progress .trip-booking-progress__label {
    font-size: 0.8rem;
  }
}

.trip-time-of-travel {
  /* background: #efefef; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-time-of-travel .trip-time-of-travel__card {
  max-width: 1440px;
  margin: 0 auto;
  /* background: #f6f6f6; */
  border-radius: 32px;
  /* padding: 34px 40px 38px; */
}

.trip-time-of-travel .trip-time-of-travel__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.trip-time-of-travel .trip-time-of-travel__divider {
  margin: 1.75rem 0 2.25rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-time-of-travel .trip-time-of-travel__notice {
  background: #FAFAFA;
  border-radius: 20px;
  padding: 22px 24px;
  gap: 18px;
  margin-bottom: 2.1rem;
}

.trip-time-of-travel .trip-time-of-travel__notice-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #151515;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  color: #151515;
  margin-top: 2px;
}

.trip-time-of-travel .trip-time-of-travel__notice-title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #111111;
}

.trip-time-of-travel .trip-time-of-travel__notice-text {
  font-size: 16px;
  line-height: 1.45;
  color: #6a6a6a;
  max-width: 1200px;
}

.trip-time-of-travel .trip-time-of-travel__year-bar {
  background: #FAFAFA;
  border-radius: 20px;
  min-height: 96px;
  /* gap: 42px; */
  margin-bottom: 2.25rem;
}

.trip-time-of-travel .trip-time-of-travel__year-btn {
  border: 0;
  background: transparent;
  color: #8e8e8e;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trip-time-of-travel .trip-time-of-travel__year-btn:hover {
  color: #5f5f5f;
}

.trip-time-of-travel .trip-time-of-travel__year-value {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #111111;
  min-width: 110px;
  text-align: center;
}

.trip-time-of-travel .trip-time-of-travel__months {
  margin-bottom: 2.2rem;
}

.trip-time-of-travel .trip-time-of-travel__month-label {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1rem;
}

.trip-time-of-travel .trip-time-of-travel__month-card {
  display: block;
  cursor: pointer;
  margin: 0;
}

.trip-time-of-travel .trip-time-of-travel__month-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trip-time-of-travel .trip-time-of-travel__month-content {
  min-height: 94px;
  border-radius: 18px;
  background: #f3f3f3;
  border: 2px solid transparent;
  padding: 0 10px;
  transition: 0.2s ease;
}

.trip-time-of-travel .trip-time-of-travel__month-left {
  gap: 14px;
}

.trip-time-of-travel .trip-time-of-travel__price-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #111111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  color: #111111;
}

.trip-time-of-travel .trip-time-of-travel__price {
  /* font-size: 2rem; */
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #efbb43;
}

.trip-time-of-travel .trip-time-of-travel__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d4d4d4;
  background: transparent;
  display: inline-block;
  position: relative;
}

.trip-time-of-travel .trip-time-of-travel__month-input:checked + .trip-time-of-travel__month-content {
  border-color: #efbb43;
  background: #f5f5f5;
}

.trip-time-of-travel .trip-time-of-travel__month-input:checked + .trip-time-of-travel__month-content .trip-time-of-travel__radio {
  border-color: #efbb43;
}

.trip-time-of-travel .trip-time-of-travel__month-input:checked + .trip-time-of-travel__month-content .trip-time-of-travel__radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #efbb43;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.trip-time-of-travel .trip-time-of-travel__field-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
}

.trip-time-of-travel .trip-time-of-travel__field {
  position: relative;
}

.trip-time-of-travel .trip-time-of-travel__input {
  min-height: 58px;
  border-radius: 10px;
  border: 1px solid #0404041A;
  background: white;
  box-shadow: none;
  padding-left: 74px;
  padding-right: 70px;
  font-size: 16px;
  color: #8f8f8f;
}

.trip-time-of-travel .trip-time-of-travel__input:focus {
  border-color: #cfcfcf;
  box-shadow: none;
  background: #f8f8f8;
}

.trip-time-of-travel .trip-time-of-travel__field-icon--left {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: #9b9b9b;
  z-index: 2;
}

.trip-time-of-travel .trip-time-of-travel__field-toggle {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: #d6d6d6;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trip-time-of-travel .trip-time-of-travel__field-toggle:hover {
  background: #c8c8c8;
}

@media (max-width: 1199.98px) {
  .trip-time-of-travel .trip-time-of-travel__card {
    padding: 28px 24px 30px;
  }

  .trip-time-of-travel .trip-time-of-travel__price {
    font-size: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  .trip-time-of-travel .trip-time-of-travel__title {
    font-size: 2rem;
  }

  .trip-time-of-travel .trip-time-of-travel__year-bar {
    min-height: 82px;
    gap: 28px;
  }

  .trip-time-of-travel .trip-time-of-travel__year-btn {
    font-size: 2.4rem;
  }

  .trip-time-of-travel .trip-time-of-travel__year-value {
    font-size: 1.65rem;
  }

  .trip-time-of-travel .trip-time-of-travel__month-content {
    min-height: 82px;
    padding: 0 18px;
  }

  .trip-time-of-travel .trip-time-of-travel__price {
    font-size: 1.6rem;
  }

  .trip-time-of-travel .trip-time-of-travel__input {
    min-height: 78px;
  }
}

@media (max-width: 767.98px) {
  .trip-time-of-travel {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-time-of-travel .trip-time-of-travel__card {
    border-radius: 24px;
    padding: 22px 18px 24px;
  }

  .trip-time-of-travel .trip-time-of-travel__title {
    font-size: 1.75rem;
  }

  .trip-time-of-travel .trip-time-of-travel__notice {
    padding: 18px 16px;
    gap: 14px;
  }

  .trip-time-of-travel .trip-time-of-travel__notice-text {
    font-size: 0.95rem;
  }

  .trip-time-of-travel .trip-time-of-travel__year-bar {
    min-height: 74px;
  }

  .trip-time-of-travel .trip-time-of-travel__month-content {
    min-height: 76px;
  }

  .trip-time-of-travel .trip-time-of-travel__price {
    font-size: 1.45rem;
  }

  .trip-time-of-travel .trip-time-of-travel__radio {
    width: 28px;
    height: 28px;
    border-width: 3px;
  }

  .trip-time-of-travel .trip-time-of-travel__input {
    min-height: 72px;
    padding-left: 62px;
    padding-right: 60px;
    font-size: 1rem;
  }

  .trip-time-of-travel .trip-time-of-travel__field-icon--left {
    left: 20px;
    font-size: 1.25rem;
  }

  .trip-time-of-travel .trip-time-of-travel__field-toggle {
    right: 18px;
    width: 30px;
    height: 30px;
  }
}

.trip-travelers {
  /* background: #eef0f2; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-travelers .trip-travelers__card {
  max-width: 1220px;
  margin: 0 auto;
  /* background: #f7f7f7; */
  border-radius: 32px;
  /* padding: 28px 30px 40px; */
}

.trip-travelers .trip-travelers__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.trip-travelers .trip-travelers__divider {
  margin: 1.75rem 0 2rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-travelers .trip-travelers__controls {
  gap: 28px;
  min-height: 90px;
}

.trip-travelers .trip-travelers__btn {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #f1f1f1;
  color: #111111;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 400;
  box-shadow: none;
}

.trip-travelers .trip-travelers__btn:hover,
.trip-travelers .trip-travelers__btn:focus {
  background: #ebebeb;
  color: #111111;
  box-shadow: none;
}

.trip-travelers .trip-travelers__count {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: #111111;
  min-width: 120px;
  text-align: center;
}

@media (max-width: 991.98px) {
  .trip-travelers .trip-travelers__card {
    border-radius: 24px;
    padding: 24px 20px 30px;
  }

  .trip-travelers .trip-travelers__title {
    font-size: 1.8rem;
  }

  .trip-travelers .trip-travelers__controls {
    gap: 20px;
    min-height: 80px;
  }

  .trip-travelers .trip-travelers__btn {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    border-radius: 14px;
  }
}

@media (max-width: 575.98px) {
  .trip-travelers {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-travelers .trip-travelers__card {
    padding: 20px 16px 24px;
  }

  .trip-travelers .trip-travelers__title {
    font-size: 1.6rem;
  }

  .trip-travelers .trip-travelers__divider {
    margin: 1.25rem 0 1.5rem;
  }

  .trip-travelers .trip-travelers__controls {
    gap: 16px;
    flex-wrap: nowrap;
  }

  .trip-travelers .trip-travelers__btn {
    width: 56px;
    height: 56px;
    font-size: 20px;
    border-radius: 12px;
  }

  .trip-travelers .trip-travelers__count {
    font-size: 1rem;
    min-width: auto;
  }
}

.trip-accommodation {
  /* background: #eef0f2; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-accommodation .trip-accommodation__card {
  max-width: 1240px;
  margin: 0 auto;
  /* background: #f7f7f7; */
  border-radius: 32px;
  /* padding: 28px 28px 34px; */
}

.trip-accommodation .trip-accommodation__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.trip-accommodation .trip-accommodation__divider {
  margin: 1.5rem 0 1.75rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-accommodation .trip-accommodation__gallery {
  margin-bottom: 2.2rem;
}

.trip-accommodation .trip-accommodation__gallery-stack {
  min-height: 100%;
}

.trip-accommodation .trip-accommodation__image-wrap {
  overflow: hidden;
  border-radius: 22px;
  background: #e9e9e9;
}

.trip-accommodation .trip-accommodation__image-wrap--large {
  height: 360px;
}

.trip-accommodation .trip-accommodation__image-wrap--medium {
  height: 290px;
}

.trip-accommodation .trip-accommodation__image-wrap--small {
  height: 235px;
}

.trip-accommodation .trip-accommodation__image {
  display: block;
  object-fit: cover;
}

.trip-accommodation .trip-accommodation__content {
  padding: 0 1.25rem;
}

.trip-accommodation .trip-accommodation__heading {
  margin: 0 0 1rem;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111111;
}

.trip-accommodation .trip-accommodation__description {
  max-width: 1100px;
  font-size: 18px;
  line-height: 1.45;
  color: #696969;
}

.trip-accommodation .trip-accommodation__read-more {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: #efbb43;
}

.trip-accommodation .trip-accommodation__read-more:hover {
  color: #d8a531;
}

.trip-accommodation .trip-accommodation__content-divider {
  margin: 1.9rem 0 1.85rem;
  border: 0;
  border-top: 1px solid #e0e0e0;
  opacity: 1;
}

.trip-accommodation .trip-accommodation__feature {
  gap: 16px;
}

.trip-accommodation .trip-accommodation__feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
}

.trip-accommodation .trip-accommodation__feature-icon--orange {
  background: #ea6d2f;
}

.trip-accommodation .trip-accommodation__feature-icon--yellow {
  background: #efbf4a;
}

.trip-accommodation .trip-accommodation__feature-icon--blue {
  background: #3d8da5;
}

.trip-accommodation .trip-accommodation__feature-text {
  min-width: 0;
}

.trip-accommodation .trip-accommodation__feature-label {
  font-size: 1rem;
  line-height: 1.25;
  color: #6c6c6c;
  margin-bottom: 0.3rem;
}

.trip-accommodation .trip-accommodation__feature-value {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
}

@media (max-width: 1199.98px) {
  .trip-accommodation .trip-accommodation__image-wrap--large {
    height: 310px;
  }

  .trip-accommodation .trip-accommodation__image-wrap--medium {
    height: 245px;
  }

  .trip-accommodation .trip-accommodation__image-wrap--small {
    height: 210px;
  }

  .trip-accommodation .trip-accommodation__heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .trip-accommodation .trip-accommodation__card {
    border-radius: 24px;
    padding: 24px 20px 28px;
  }

  .trip-accommodation .trip-accommodation__title {
    font-size: 1.85rem;
  }

  .trip-accommodation .trip-accommodation__content {
    padding: 0;
  }

  .trip-accommodation .trip-accommodation__heading {
    font-size: 2.2rem;
  }

  .trip-accommodation .trip-accommodation__image-wrap--large {
    height: 280px;
  }

  .trip-accommodation .trip-accommodation__image-wrap--medium {
    height: 220px;
  }

  .trip-accommodation .trip-accommodation__image-wrap--small {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .trip-accommodation {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-accommodation .trip-accommodation__card {
    padding: 20px 16px 24px;
  }

  .trip-accommodation .trip-accommodation__title {
    font-size: 1.65rem;
  }

  .trip-accommodation .trip-accommodation__heading {
    font-size: 1.95rem;
  }

  .trip-accommodation .trip-accommodation__description {
    font-size: 0.96rem;
  }

  .trip-accommodation .trip-accommodation__image-wrap--large,
  .trip-accommodation .trip-accommodation__image-wrap--medium,
  .trip-accommodation .trip-accommodation__image-wrap--small {
    height: 240px;
  }

  .trip-accommodation .trip-accommodation__feature-icon {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }
}

.trip-extra-activities {
  /* background: #eef0f2; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-extra-activities .trip-extra-activities__card {
  max-width: 1560px;
  margin: 0 auto;
  /* background: #f7f7f7; */
  border-radius: 32px;
  /* padding: 28px 32px 34px; */
}

.trip-extra-activities .trip-extra-activities__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.trip-extra-activities .trip-extra-activities__divider {
  margin: 1.6rem 0 2rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-extra-activities .trip-extra-activities__gallery {
  margin-bottom: 2rem;
}

.trip-extra-activities .trip-extra-activities__image-wrap {
  height: 237px;
  overflow: hidden;
  border-radius: 24px;
  background: #ececec;
}

.trip-extra-activities .trip-extra-activities__image {
  display: block;
  object-fit: cover;
}

.trip-extra-activities .trip-extra-activities__content {
  max-width: 100%;
}

.trip-extra-activities .trip-extra-activities__heading {
  margin: 0 0 1rem;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
}

.trip-extra-activities .trip-extra-activities__option-card {
  background: #f3f3f3;
  border-radius: 24px;
  padding: 26px 24px 28px;
}

.trip-extra-activities .trip-extra-activities__top {
  margin-bottom: 1.25rem;
}

.trip-extra-activities .trip-extra-activities__price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.trip-extra-activities .trip-extra-activities__price-prefix {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  color: #9a9a9a;
}

.trip-extra-activities .trip-extra-activities__price {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #efbb43;
}

.trip-extra-activities .trip-extra-activities__select {
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.trip-extra-activities .trip-extra-activities__select-label {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  color: #9a9a9a;
}

.trip-extra-activities .trip-extra-activities__radio-input,
.trip-extra-activities .trip-extra-activities__checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trip-extra-activities .trip-extra-activities__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d4d4d4;
  background: transparent;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.trip-extra-activities .trip-extra-activities__radio-input:checked + .trip-extra-activities__radio,
.trip-extra-activities .trip-extra-activities__checkbox-input:checked + .trip-extra-activities__radio {
  border-color: #efbb43;
}

.trip-extra-activities .trip-extra-activities__radio-input:checked + .trip-extra-activities__radio::after,
.trip-extra-activities .trip-extra-activities__checkbox-input:checked + .trip-extra-activities__radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #efbb43;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.trip-extra-activities .trip-extra-activities__description {
  max-width: 1320px;
  font-size: 14px;
  line-height: 1.45;
  color: #8b8b8b;
}

@media (max-width: 1399.98px) {
  .trip-extra-activities .trip-extra-activities__image-wrap {
    height: 340px;
  }
}

@media (max-width: 991.98px) {
  .trip-extra-activities .trip-extra-activities__card {
    border-radius: 24px;
    padding: 24px 20px 28px;
  }

  .trip-extra-activities .trip-extra-activities__title {
    font-size: 1.85rem;
  }

  .trip-extra-activities .trip-extra-activities__image-wrap {
    height: 280px;
    border-radius: 20px;
  }

  .trip-extra-activities .trip-extra-activities__option-card {
    border-radius: 20px;
    padding: 22px 20px 24px;
  }
}

@media (max-width: 767.98px) {
  .trip-extra-activities {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-extra-activities .trip-extra-activities__card {
    padding: 20px 16px 24px;
  }

  .trip-extra-activities .trip-extra-activities__title {
    font-size: 1.65rem;
  }

  .trip-extra-activities .trip-extra-activities__image-wrap {
    height: 220px;
  }

  .trip-extra-activities .trip-extra-activities__heading {
    font-size: 1.05rem;
  }

  .trip-extra-activities .trip-extra-activities__top {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .trip-extra-activities .trip-extra-activities__price {
    font-size: 1.5rem;
  }

  .trip-extra-activities .trip-extra-activities__description {
    font-size: 0.95rem;
  }
}

.trip-special-preferences {
  /* background: #eef0f2; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-special-preferences .trip-special-preferences__card {
  max-width: 1520px;
  margin: 0 auto;
  /* background: #f7f7f7; */
  border-radius: 32px;
  /* padding: 34px 40px 36px; */
}

.trip-special-preferences .trip-special-preferences__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.trip-special-preferences .trip-special-preferences__divider {
  margin: 1.6rem 0 2rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-special-preferences .trip-special-preferences__field-group {
  width: 100%;
}

.trip-special-preferences .trip-special-preferences__label {
  display: inline-block;
  margin-bottom: 0.95rem;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
}

.trip-special-preferences .trip-special-preferences__select-wrap {
  position: relative;
}

.trip-special-preferences .trip-special-preferences__select,
.trip-special-preferences .trip-special-preferences__textarea {
  border: 0;
  box-shadow: none;
  background-color: #f2f2f2;
  color: #111111;
}

.trip-special-preferences .trip-special-preferences__select {
  min-height: 58px;
  border-radius: 10px;
  padding: 1.2rem 4.25rem 1.2rem 1.35rem;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #9a9a9a;
  background-image: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.trip-special-preferences .trip-special-preferences__select-wrap::after {
  /* content: "⌄"; */
  content: url("../img/icons/dropdown.svg");
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d2d2d2;
  color: #ffffff;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.trip-special-preferences .trip-special-preferences__select:focus,
.trip-special-preferences .trip-special-preferences__textarea:focus {
  background-color: #f2f2f2;
  border: 0;
  box-shadow: none;
}

.trip-special-preferences .trip-special-preferences__textarea {
  min-height: 380px;
  border-radius: 18px;
  padding: 1.35rem;
  font-size: 1rem;
  line-height: 1.45;
  color: #111111;
  resize: vertical;
}

.trip-special-preferences .trip-special-preferences__select::placeholder,
.trip-special-preferences .trip-special-preferences__textarea::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.trip-special-preferences .trip-special-preferences__textarea.form-control::placeholder {
  color: #9a9a9a;
}

.trip-special-preferences .trip-special-preferences__select.form-select:disabled,
.trip-special-preferences .trip-special-preferences__textarea.form-control:disabled {
  background-color: #ececec;
  opacity: 1;
}

@media (max-width: 1199.98px) {
  .trip-special-preferences .trip-special-preferences__card {
    padding: 28px 24px 30px;
  }

  .trip-special-preferences .trip-special-preferences__textarea {
    min-height: 320px;
  }
}

@media (max-width: 991.98px) {
  .trip-special-preferences .trip-special-preferences__title {
    font-size: 1.95rem;
  }

  .trip-special-preferences .trip-special-preferences__select {
    min-height: 82px;
  }

  .trip-special-preferences .trip-special-preferences__textarea {
    min-height: 280px;
  }
}

@media (max-width: 767.98px) {
  .trip-special-preferences {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-special-preferences .trip-special-preferences__card {
    border-radius: 24px;
    padding: 22px 18px 24px;
  }

  .trip-special-preferences .trip-special-preferences__title {
    font-size: 1.7rem;
  }

  .trip-special-preferences .trip-special-preferences__divider {
    margin: 1.25rem 0 1.5rem;
  }

  .trip-special-preferences .trip-special-preferences__label {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .trip-special-preferences .trip-special-preferences__select {
    min-height: 72px;
    border-radius: 16px;
    padding: 1rem 3.8rem 1rem 1.1rem;
    font-size: 0.98rem;
  }

  .trip-special-preferences .trip-special-preferences__select-wrap::after {
    right: 18px;
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  .trip-special-preferences .trip-special-preferences__textarea {
    min-height: 240px;
    border-radius: 16px;
    padding: 1.1rem;
    font-size: 0.98rem;
  }
}

.trip-book-summary {
  /* background: #eef0f2; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-book-summary .trip-book-summary__card {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 34px;
  padding: 42px 15px 44px;
}

.trip-book-summary .trip-book-summary__title {
  margin: 0 0 1.9rem;
  /* font-size: 2.15rem; */
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.trip-book-summary .trip-book-summary__section {
  margin-bottom: 2.25rem;
}

.trip-book-summary .trip-book-summary__section:last-of-type {
  margin-bottom: 2rem;
}

.trip-book-summary .trip-book-summary__heading {
  margin: 0 0 1.15rem;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
}

.trip-book-summary .trip-book-summary__row {
  gap: 1.25rem;
  padding: 1rem 0 1.05rem;
  border-bottom: 1px solid #dddddd;
}

.trip-book-summary .trip-book-summary__row:first-child {
  padding-top: 0;
}

.trip-book-summary .trip-book-summary__row--no-border {
  border-bottom: 0;
  padding-bottom: 0;
}

.trip-book-summary .trip-book-summary__label {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  color: #9a9a9a;
  flex: 1 1 auto;
}

.trip-book-summary .trip-book-summary__value {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: #111111;
  flex: 0 0 auto;
  max-width: 62%;
}

.trip-book-summary .trip-book-summary__value--primary {
  font-weight: 700;
}

.trip-book-summary .trip-book-summary__notice {
  background: #f0f0f0;
  border-radius: 20px;
  padding: 18px 20px;
  gap: 14px;
  margin-bottom: 1rem;
}

.trip-book-summary .trip-book-summary__notice-icon {
  width: 20px;
  height: 20px;
  border: 1px solid #111111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  color: #111111;
  margin-top: 2px;
}

.trip-book-summary .trip-book-summary__notice-text {
  font-size: 12px;
  line-height: 1.55;
  color: #3f3f3f;
}

.trip-book-summary .trip-book-summary__price-list {
  margin-bottom: 1rem;
}

.trip-book-summary .trip-book-summary__price-row {
  gap: 1rem;
  padding: 0 0 1rem;
}

.trip-book-summary .trip-book-summary__price-row:last-child {
  padding-bottom: 1.1rem;
}

.trip-book-summary .trip-book-summary__price-label {
  font-size: 14px;
  line-height: 1.3;
  color: #9a9a9a;
}

.trip-book-summary .trip-book-summary__price-value {
  font-size: 14px;
  line-height: 1.3;
  color: #9a9a9a;
  text-align: right;
}

.trip-book-summary .trip-book-summary__total {
  border-top: 1px solid #dddddd;
  padding-top: 1rem;
  gap: 1rem;
}

.trip-book-summary .trip-book-summary__total-label {
  font-size: 1rem;
  line-height: 1.3;
  color: #8f8f8f;
}

.trip-book-summary .trip-book-summary__total-value {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  color: #111111;
}

.trip-book-summary .trip-book-summary__due-box {
  border: 2px solid #d9d9d9;
  border-radius: 20px;
  background: #fbfbfb;
  padding: 1.2rem 1.35rem;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trip-book-summary .trip-book-summary__due-title {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #efbb43;
  margin-bottom: 0.45rem;
}

.trip-book-summary .trip-book-summary__due-subtitle {
  font-size: 12px;
  line-height: 1.3;
  color: #9a9a9a;
}

.trip-book-summary .trip-book-summary__due-amount {
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  color: #efbb43;
  text-align: right;
  white-space: nowrap;
}

.trip-book-summary .trip-book-summary__actions {
  margin-top: 0;
}

.trip-book-summary .trip-book-summary__btn {
  min-height: 41px;
  border-radius: 999px;
  border: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: none;
}

.trip-book-summary .trip-book-summary__btn--secondary {
  background: #ececec;
  color: #111111;
}

.trip-book-summary .trip-book-summary__btn--secondary:hover,
.trip-book-summary .trip-book-summary__btn--secondary:focus {
  background: #e2e2e2;
  color: #111111;
  box-shadow: none;
}

.trip-book-summary .trip-book-summary__btn--primary {
  background: #efbf4a;
  color: #111111;
}

.trip-book-summary .trip-book-summary__btn--primary:hover,
.trip-book-summary .trip-book-summary__btn--primary:focus {
  background: #e4b33f;
  color: #111111;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .trip-book-summary .trip-book-summary__card {
    padding: 32px 26px 32px;
    border-radius: 28px;
  }

  .trip-book-summary .trip-book-summary__title {
    font-size: 1.9rem;
  }

  .trip-book-summary .trip-book-summary__due-amount {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .trip-book-summary {
    /* padding-left: 0.75rem;
    padding-right: 0.75rem; */
    padding-left: 0px;
    padding-right: 0px;
  }

  .trip-book-summary .trip-book-summary__card {
    padding: 24px 18px 24px;
    border-radius: 22px;
  }

  .trip-book-summary .trip-book-summary__title {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }

  .trip-book-summary .trip-book-summary__row {
    padding: 0.85rem 0 0.9rem;
  }

  .trip-book-summary .trip-book-summary__value {
    max-width: 56%;
  }

  .trip-book-summary .trip-book-summary__notice {
    padding: 16px;
    border-radius: 18px;
  }

  .trip-book-summary .trip-book-summary__notice-text {
    font-size: 0.92rem;
  }

  .trip-book-summary .trip-book-summary__due-box {
    padding: 1rem 1rem;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .trip-book-summary .trip-book-summary__due-amount {
    text-align: left;
    font-size: 1.5rem;
  }

  .trip-book-summary .trip-book-summary__btn {
    min-height: 64px;
  }
}

.trip-account{
  margin-top: 0;
}

.trip-account-auth {
  /* background: #eef0f2; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-account-auth .trip-account-auth__card {
  max-width: 1520px;
  margin: 0 auto;
  /* background: #f7f7f7; */
  border-radius: 32px;
  /* padding: 42px 40px 34px; */
}

.trip-account-auth .trip-account-auth__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.03em;
}

.trip-account-auth .trip-account-auth__divider {
  margin: 2rem 0 2rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-account-auth .trip-account-auth__field-group {
  width: 100%;
}

.trip-account-auth .trip-account-auth__label {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #6e6e6e;
}

.trip-account-auth .trip-account-auth__required {
  color: #e8612a;
}

.trip-account-auth .trip-account-auth__input {
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background: #f2f2f2;
  box-shadow: none;
  padding: 1.25rem 1.4rem;
  font-size: 16px;
  line-height: 1.2;
  color: #111111;
}

.trip-account-auth .trip-account-auth__input::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.trip-account-auth .trip-account-auth__input:focus {
  border: 0;
  box-shadow: none;
  background: #f2f2f2;
  color: #111111;
}

.trip-account-auth .trip-account-auth__input--password {
  padding-right: 4.5rem;
}

.trip-account-auth .trip-account-auth__password-wrap {
  position: relative;
}

.trip-account-auth .trip-account-auth__toggle {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #9a9a9a;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.trip-account-auth .trip-account-auth__toggle:hover,
.trip-account-auth .trip-account-auth__toggle:focus {
  color: #777777;
  box-shadow: none;
}

.trip-account-auth .trip-account-auth__toggle-icon {
  display: block;
}

.trip-account-auth .trip-account-auth__submit {
  min-height: 43px;
  margin-top: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: #efbf4a;
  color: #111111;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: none;
}

.trip-account-auth .trip-account-auth__submit:hover,
.trip-account-auth .trip-account-auth__submit:focus {
  background: #e5b640;
  color: #111111;
  box-shadow: none;
}

.trip-account-auth .trip-account-auth__links {
  margin-top: 2rem;
}

.trip-account-auth .trip-account-auth__link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.trip-account-auth .trip-account-auth__link--accent {
  color: #e8612a;
  font-weight: 500;
}

.trip-account-auth .trip-account-auth__link--accent:hover {
  color: #cf5220;
}

.trip-account-auth .trip-account-auth__links > .trip-account-auth__link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 16px;
  line-height: 1.3;
}

.trip-account-auth .trip-account-auth__register {
  font-size: 1rem;
  line-height: 1.3;
  color: #3a3a3a;
  font-weight: 500;
}

.trip-account-auth .trip-account-auth__register .trip-account-auth__link {
  margin-left: 0.15rem;
}

@media (max-width: 1199.98px) {
  .trip-account-auth .trip-account-auth__card {
    padding: 34px 28px 30px;
  }

  .trip-account-auth .trip-account-auth__title {
    font-size: 2.3rem;
  }
}

@media (max-width: 991.98px) {
  .trip-account-auth .trip-account-auth__title {
    font-size: 2rem;
  }

  .trip-account-auth .trip-account-auth__input {
    min-height: 84px;
  }

  .trip-account-auth .trip-account-auth__submit {
    min-height: 66px;
  }
}

@media (max-width: 767.98px) {
  .trip-account-auth {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-account-auth .trip-account-auth__card {
    border-radius: 24px;
    padding: 24px 18px 24px;
  }

  .trip-account-auth .trip-account-auth__title {
    font-size: 1.7rem;
  }

  .trip-account-auth .trip-account-auth__divider {
    margin: 1.4rem 0 1.5rem;
  }

  .trip-account-auth .trip-account-auth__label {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .trip-account-auth .trip-account-auth__input {
    min-height: 72px;
    border-radius: 16px;
    padding: 1rem 1.1rem;
    font-size: 0.98rem;
  }

  .trip-account-auth .trip-account-auth__input--password {
    padding-right: 3.8rem;
  }

  .trip-account-auth .trip-account-auth__toggle {
    right: 18px;
  }

  .trip-account-auth .trip-account-auth__submit {
    min-height: 60px;
    font-size: 1rem;
  }

  .trip-account-auth .trip-account-auth__links {
    margin-top: 1.5rem;
  }

  .trip-account-auth .trip-account-auth__links > .trip-account-auth__link {
    margin-bottom: 1rem;
  }
}

.trip-policy {
  /* background: #eef0f2; */
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 0;
}

.trip-policy .trip-policy__card {
  max-width: 1240px;
  margin: 0 auto;
  /* background: #f7f7f7; */
  border-radius: 32px;
  /* padding: 34px 34px 30px; */
}

.trip-policy .trip-policy__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.trip-policy .trip-policy__divider,
.trip-policy .trip-policy__bottom-divider {
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-policy .trip-policy__divider {
  margin: 1.6rem 0 1.9rem;
}

.trip-policy .trip-policy__bottom-divider {
  margin: 2rem 0 1.5rem;
}

.trip-policy .trip-policy__content-box {
  background: #f2f2f2;
  border-radius: 22px;
  padding: 28px 26px 22px;
}

.trip-policy .trip-policy__heading {
  margin: 0 0 1rem;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  color: #111111;
}

.trip-policy .trip-policy__subheading {
  margin: 2rem 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
  color: #111111;
}

.trip-policy .trip-policy__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #6f6f6f;
}

.trip-policy .trip-policy__list {
  margin-top: 0.25rem;
  padding-left: 1.45rem;
}

.trip-policy .trip-policy__list-item {
  font-size: 1rem;
  line-height: 1.5;
  color: #6f6f6f;
  margin-bottom: 0.15rem;
}

.trip-policy .trip-policy__list-item:last-child {
  margin-bottom: 0;
}

.trip-policy .trip-policy__read-more {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  color: #efbb43;
}

.trip-policy .trip-policy__read-more:hover,
.trip-policy .trip-policy__read-more:focus {
  color: #dfa932;
}

.trip-policy .trip-policy__consent {
  padding-bottom: 0.25rem;
}

.trip-policy .trip-policy__check-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 44px;
}

.trip-policy .trip-policy__checkbox.form-check-input {
  width: 24px;
  height: 24px;
  margin: 0;
  border-radius: 6px;
  border: 0;
  background-color: #efbf4a;
  box-shadow: none;
  background-size: 16px 16px;
  flex-shrink: 0;
}

.trip-policy .trip-policy__checkbox.form-check-input:focus {
  box-shadow: none;
}

.trip-policy .trip-policy__checkbox.form-check-input:checked {
  background-color: #efbf4a;
  border-color: #efbf4a;
}

.trip-policy .trip-policy__checkbox.form-check-input:not(:checked) {
  background-color: #e4e4e4;
  border-color: #e4e4e4;
}

.trip-policy .trip-policy__check-label {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  color: #3a3a3a;
  cursor: pointer;
}

.trip-policy .trip-policy__required {
  color: #e8612a;
}

@media (max-width: 991.98px) {
  .trip-policy .trip-policy__card {
    border-radius: 24px;
    padding: 26px 22px 24px;
  }

  .trip-policy .trip-policy__title {
    font-size: 1.9rem;
  }

  .trip-policy .trip-policy__content-box {
    border-radius: 18px;
    padding: 22px 20px 20px;
  }
}

@media (max-width: 767.98px) {
  .trip-policy {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-policy .trip-policy__card {
    padding: 22px 16px 22px;
  }

  .trip-policy .trip-policy__title {
    font-size: 1.7rem;
  }

  .trip-policy .trip-policy__divider {
    margin: 1.25rem 0 1.5rem;
  }

  .trip-policy .trip-policy__bottom-divider {
    margin: 1.5rem 0 1.2rem;
  }

  .trip-policy .trip-policy__heading,
  .trip-policy .trip-policy__subheading {
    font-size: 1rem;
  }

  .trip-policy .trip-policy__text,
  .trip-policy .trip-policy__list-item,
  .trip-policy .trip-policy__check-label {
    font-size: 0.95rem;
  }

  .trip-policy .trip-policy__checkbox.form-check-input {
    width: 28px;
    height: 28px;
    background-size: 14px 14px;
  }

  .trip-policy .trip-policy__check-wrap {
    gap: 0.75rem;
    align-items: flex-start;
  }
}

.trip-enquiry {
  /* background: #eef0f2; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-enquiry .trip-enquiry__wrapper {
  max-width: 1280px;
  margin: 0 auto;
  /* background: #f7f7f7; */
  border-radius: 32px;
  /* padding: 30px; */
}

.trip-enquiry .trip-enquiry__card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 360px;
  background: #d9d9d9;
  isolation: isolate;
}

.trip-enquiry .trip-enquiry__card--large {
  min-height: 360px;
}

.trip-enquiry .trip-enquiry__card--small {
  min-height: 360px;
}

.trip-enquiry .trip-enquiry__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-enquiry .trip-enquiry__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(20, 20, 20, 0.28) 0%,
      rgba(20, 20, 20, 0.36) 45%,
      rgba(20, 20, 20, 0.42) 100%
    );
}

.trip-enquiry .trip-enquiry__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trip-enquiry .trip-enquiry__content--center {
  /* align-items: center; */
  justify-content: space-between;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.trip-enquiry .trip-enquiry__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.trip-enquiry .trip-enquiry__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  color: #ffffff;
}

.trip-enquiry .trip-enquiry__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.trip-enquiry .trip-enquiry__title {
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 100%;
  margin-top: 90px;
}

.trip-enquiry .trip-enquiry__title--large {
  max-width: 700px;
  font-size: 28px;
}

.trip-enquiry .trip-enquiry__title--small {
  font-size: 28px;
  max-width: 320px;
  margin-top: 75px;
  margin-bottom: 20px;
}

.trip-enquiry .trip-enquiry__button {
  min-height: 41px;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 0;
  background: #efbf4a;
  color: #111111;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: none;
}

.trip-enquiry .trip-enquiry__button:hover,
.trip-enquiry .trip-enquiry__button:focus {
  background: #e5b640;
  color: #111111;
  box-shadow: none;
}

@media (max-width: 1199.98px) {
  .trip-enquiry .trip-enquiry__title--large {
    font-size: 2.35rem;
    max-width: 580px;
  }

  .trip-enquiry .trip-enquiry__title--small {
    font-size: 1.7rem;
  }
}

@media (max-width: 991.98px) {
  .trip-enquiry .trip-enquiry__wrapper {
    padding: 22px;
    border-radius: 24px;
  }

  .trip-enquiry .trip-enquiry__card,
  .trip-enquiry .trip-enquiry__card--large,
  .trip-enquiry .trip-enquiry__card--small {
    min-height: 320px;
    border-radius: 22px;
  }

  .trip-enquiry .trip-enquiry__content {
    padding: 24px;
  }

  .trip-enquiry .trip-enquiry__icon-wrap {
    width: 62px;
    height: 62px;
  }

  .trip-enquiry .trip-enquiry__title--large {
    font-size: 2rem;
    max-width: 520px;
  }

  .trip-enquiry .trip-enquiry__title--small {
    font-size: 1.55rem;
    max-width: 280px;
  }
}

@media (max-width: 767.98px) {
  .trip-enquiry {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-enquiry .trip-enquiry__wrapper {
    padding: 16px;
    border-radius: 20px;
  }

  .trip-enquiry .trip-enquiry__card,
  .trip-enquiry .trip-enquiry__card--large,
  .trip-enquiry .trip-enquiry__card--small {
    min-height: 280px;
    border-radius: 18px;
  }

  .trip-enquiry .trip-enquiry__content {
    padding: 18px;
  }

  .trip-enquiry .trip-enquiry__icon-wrap {
    width: 56px;
    height: 56px;
  }

  .trip-enquiry .trip-enquiry__icon {
    width: 24px;
    height: 24px;
  }

  .trip-enquiry .trip-enquiry__title--large {
    font-size: 1.6rem;
    max-width: 100%;
  }

  .trip-enquiry .trip-enquiry__title--small {
    font-size: 1.35rem;
    max-width: 240px;
  }

  .trip-enquiry .trip-enquiry__button {
    min-height: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

.trip-payment-schedule {
  /* background: #eef0f2; */
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-payment-schedule .trip-payment-schedule__card {
  max-width: 1320px;
  margin: 0 auto;
  /* background: #f7f7f7; */
  border-radius: 32px;
  /* padding: 34px 34px 40px; */
}

.trip-payment-schedule .trip-payment-schedule__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.trip-payment-schedule .trip-payment-schedule__divider,
.trip-payment-schedule .trip-payment-schedule__section-divider {
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-payment-schedule .trip-payment-schedule__divider {
  margin: 1.6rem 0 2rem;
}

.trip-payment-schedule .trip-payment-schedule__section-divider {
  margin: 3rem 0 3rem;
}

.trip-payment-schedule .trip-payment-schedule__heading {
  margin: 0 0 1.8rem;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
  max-width: 920px;
}

.trip-payment-schedule .trip-payment-schedule__plan-options {
  margin-bottom: 3rem;
}

.trip-payment-schedule .trip-payment-schedule__plan-card {
  display: block;
  margin: 0;
  cursor: pointer;
}

.trip-payment-schedule .trip-payment-schedule__plan-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trip-payment-schedule .trip-payment-schedule__plan-content {
  min-height: 100px;
  border-radius: 10px;
  background: #f2f2f2;
  border: 2px solid transparent;
  padding: 1.5rem 1.45rem;
  transition: 0.2s ease;
}

.trip-payment-schedule .trip-payment-schedule__plan-card--active .trip-payment-schedule__plan-content,
.trip-payment-schedule .trip-payment-schedule__plan-input:checked + .trip-payment-schedule__plan-content {
  background: #f4f0e6;
  border-color: #efbb43;
}

.trip-payment-schedule .trip-payment-schedule__plan-copy {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.trip-payment-schedule .trip-payment-schedule__plan-title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
}

.trip-payment-schedule .trip-payment-schedule__plan-subtitle {
  font-size: 16px;
  line-height: 1.25;
  color: #666666;
}

.trip-payment-schedule .trip-payment-schedule__plan-price {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #efbb43;
}

.trip-payment-schedule .trip-payment-schedule__plan-price--dark {
  color: #111111;
}

.trip-payment-schedule .trip-payment-schedule__summary {
  margin-bottom: 1.75rem;
}

.trip-payment-schedule .trip-payment-schedule__summary-label {
  font-size: 16px;
  line-height: 1.3;
  color: #9a9a9a;
  margin-bottom: 0.3rem;
}

.trip-payment-schedule .trip-payment-schedule__summary-amount {
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
}

.trip-payment-schedule .trip-payment-schedule__progress-wrap {
  margin-bottom: 2.3rem;
}

.trip-payment-schedule .trip-payment-schedule__progress {
  display: flex;
  gap: 6px;
  width: 100%;
  margin-bottom: 1.5rem;
}

.trip-payment-schedule .trip-payment-schedule__progress-paid,
.trip-payment-schedule .trip-payment-schedule__progress-unpaid {
  height: 48px;
  border-radius: 12px;
}

.trip-payment-schedule .trip-payment-schedule__progress-paid {
  background: #efbf4a;
  min-width: 140px;
}

.trip-payment-schedule .trip-payment-schedule__progress-unpaid {
  flex: 1 1 auto;
  background: #f2f2f2;
}

.trip-payment-schedule .trip-payment-schedule__legend {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.trip-payment-schedule .trip-payment-schedule__legend-row {
  gap: 1rem;
}

.trip-payment-schedule .trip-payment-schedule__legend-left {
  gap: 0.7rem;
}

.trip-payment-schedule .trip-payment-schedule__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.trip-payment-schedule .trip-payment-schedule__legend-dot--paid {
  background: #efbf4a;
}

.trip-payment-schedule .trip-payment-schedule__legend-dot--unpaid {
  background: #ededed;
  border: 1px solid #e1e1e1;
}

.trip-payment-schedule .trip-payment-schedule__legend-label,
.trip-payment-schedule .trip-payment-schedule__legend-value {
  font-size: 16px;
  line-height: 1.25;
  color: #9a9a9a;
}

.trip-payment-schedule .trip-payment-schedule__milestones {
  margin-bottom: 2.2rem;
}

.trip-payment-schedule .trip-payment-schedule__milestone {
  min-height: 196px;
  border-radius: 18px;
  background: #f2f2f2;
  padding: 1.2rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
}

.trip-payment-schedule .trip-payment-schedule__milestone--active {
  background: #f4f0e6;
  border: 1.5px solid #efbb43;
}

.trip-payment-schedule .trip-payment-schedule__milestone-date {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
  margin-bottom: 1.3rem;
}

.trip-payment-schedule .trip-payment-schedule__milestone-amount {
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
  margin-bottom: auto;
}

.trip-payment-schedule .trip-payment-schedule__milestone-status {
  font-size: 10px;
  line-height: 1.25;
  font-weight: 500;
  margin-top: 1.2rem;
}

.trip-payment-schedule .trip-payment-schedule__milestone-status--paid {
  color: #efbb43;
}

.trip-payment-schedule .trip-payment-schedule__milestone-status--warning {
  color: #e8612a;
}

.trip-payment-schedule .trip-payment-schedule__milestone-status--upcoming {
  color: #3b8fa6;
}

.trip-payment-schedule .trip-payment-schedule__notice {
  background: #f2f2f2;
  border-radius: 18px;
  padding: 1.2rem 1.25rem;
  gap: 0.95rem;
}

.trip-payment-schedule .trip-payment-schedule__notice-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #111111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  color: #111111;
  margin-top: 2px;
}

.trip-payment-schedule .trip-payment-schedule__notice-title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.55rem;
}

.trip-payment-schedule .trip-payment-schedule__notice-text {
  font-size: 16px;
  line-height: 1.45;
  color: #666666;
}

.trip-payment-schedule .trip-payment-schedule__section-title {
  margin: 0 0 1.6rem;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
}

.trip-payment-schedule .trip-payment-schedule__field-group {
  width: 100%;
}

.trip-payment-schedule .trip-payment-schedule__label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #6f6f6f;
}

.trip-payment-schedule .trip-payment-schedule__required {
  color: #e8612a;
}

.trip-payment-schedule .trip-payment-schedule__select-wrap {
  position: relative;
}

.trip-payment-schedule .trip-payment-schedule__select-icon {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  color: #9a9a9a;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trip-payment-schedule .trip-payment-schedule__select,
.trip-payment-schedule .trip-payment-schedule__input {
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background: #f2f2f2;
  box-shadow: none;
  color: #111111;
  font-size: 16px;
}

.trip-payment-schedule .trip-payment-schedule__select {
  padding: 1.2rem 4rem 1.2rem 4.25rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  color: #9a9a9a;
}

.trip-payment-schedule .trip-payment-schedule__select-wrap::after {
  content: url("../img/icons/dropdown.svg");
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d2d2d2;
  color: #ffffff;
  font-size: 0.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.trip-payment-schedule .trip-payment-schedule__input {
  padding: 1.2rem 1.25rem;
}

.trip-payment-schedule .trip-payment-schedule__select::placeholder,
.trip-payment-schedule .trip-payment-schedule__input::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.trip-payment-schedule .trip-payment-schedule__select:focus,
.trip-payment-schedule .trip-payment-schedule__input:focus {
  background: #f2f2f2;
  box-shadow: none;
  border: 0;
}

@media (max-width: 1199.98px) {
  .trip-payment-schedule .trip-payment-schedule__card {
    padding: 28px 24px 32px;
  }

  .trip-payment-schedule .trip-payment-schedule__heading {
    font-size: 1.75rem;
  }

  .trip-payment-schedule .trip-payment-schedule__milestone {
    min-height: 180px;
  }
}

@media (max-width: 991.98px) {
  .trip-payment-schedule .trip-payment-schedule__title {
    font-size: 1.9rem;
  }

  .trip-payment-schedule .trip-payment-schedule__section-title {
    font-size: 1.45rem;
  }

  .trip-payment-schedule .trip-payment-schedule__select,
  .trip-payment-schedule .trip-payment-schedule__input {
    min-height: 82px;
  }

  .trip-payment-schedule .trip-payment-schedule__progress-paid,
  .trip-payment-schedule .trip-payment-schedule__progress-unpaid {
    height: 56px;
  }
}

@media (max-width: 767.98px) {
  .trip-payment-schedule {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-payment-schedule .trip-payment-schedule__card {
    border-radius: 24px;
    padding: 22px 16px 24px;
  }

  .trip-payment-schedule .trip-payment-schedule__title {
    font-size: 1.7rem;
  }

  .trip-payment-schedule .trip-payment-schedule__divider,
  .trip-payment-schedule .trip-payment-schedule__section-divider {
    margin: 1.4rem 0 1.8rem;
  }

  .trip-payment-schedule .trip-payment-schedule__heading {
    font-size: 1.45rem;
    margin-bottom: 1.4rem;
  }

  .trip-payment-schedule .trip-payment-schedule__plan-content {
    min-height: 120px;
    padding: 1.2rem 1rem;
    border-radius: 16px;
  }

  .trip-payment-schedule .trip-payment-schedule__summary-amount {
    font-size: 1.7rem;
  }

  .trip-payment-schedule .trip-payment-schedule__progress-paid,
  .trip-payment-schedule .trip-payment-schedule__progress-unpaid {
    height: 46px;
    border-radius: 10px;
  }

  .trip-payment-schedule .trip-payment-schedule__milestone {
    min-height: 160px;
    border-radius: 16px;
  }

  .trip-payment-schedule .trip-payment-schedule__notice {
    padding: 1rem;
    border-radius: 16px;
  }

  .trip-payment-schedule .trip-payment-schedule__notice-text,
  .trip-payment-schedule .trip-payment-schedule__legend-label,
  .trip-payment-schedule .trip-payment-schedule__legend-value {
    font-size: 0.95rem;
  }

  .trip-payment-schedule .trip-payment-schedule__select,
  .trip-payment-schedule .trip-payment-schedule__input {
    min-height: 72px;
    border-radius: 16px;
    font-size: 0.98rem;
  }

  .trip-payment-schedule .trip-payment-schedule__select {
    padding-left: 3.75rem;
  }

  .trip-payment-schedule .trip-payment-schedule__select-icon {
    left: 18px;
  }

  .trip-payment-schedule .trip-payment-schedule__select-wrap::after {
    right: 18px;
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }
}

.chale-profile-page {
  padding-left: 1rem;
  padding-right: 1rem;
}

.chale-profile-page .chale-profile-page__sidebar,
.chale-profile-page .chale-profile-page__main,
.chale-profile-page .chale-profile-page__progress-panel {
  background: white;
  border-radius: 30px;
  padding: 28px 28px 30px;
}

.chale-profile-page .chale-profile-page__panel-title {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
}

.chale-profile-page .chale-profile-page__panel-title--main {
  font-size: 1.6rem;
}

.chale-profile-page .chale-profile-page__divider {
  margin: 1.4rem 0 1.55rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.chale-profile-page .chale-profile-page__menu-group + .chale-profile-page__menu-group {
  margin-top: 2rem;
}

.chale-profile-page .chale-profile-page__menu-heading {
  font-size: 1rem;
  line-height: 1.2;
  color: #9a9a9a;
  margin-bottom: 1rem;
}

.chale-profile-page .chale-profile-page__menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #666666;
  font-size: 1rem;
  line-height: 1.25;
  padding: 0.55rem 10px;
}

.chale-profile-page .chale-profile-page__menu-link:hover {
  color: #111111;
}

.chale-profile-page .chale-profile-page__menu-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  flex-shrink: 0;
}

.chale-profile-page .chale-profile-page__menu-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.chale-profile-page .chale-profile-page__hero {
  margin-bottom: 1.5rem;
}

.chale-profile-page .chale-profile-page__avatar-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: #efdcb1;
  flex-shrink: 0;
}

.chale-profile-page .chale-profile-page__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chale-profile-page .chale-profile-page__hero-name {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
}

.chale-profile-page .chale-profile-page__hero-meta {
  font-size: 1rem;
  line-height: 1.3;
  color: #9a9a9a;
}

.chale-profile-page .chale-profile-page__edit-btn {
  min-height: 48px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #fafafa;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: none;
}

.chale-profile-page .chale-profile-page__edit-btn:hover,
.chale-profile-page .chale-profile-page__edit-btn:focus {
  background: #f1f1f1;
  color: #111111;
  box-shadow: none;
}

.chale-profile-page .chale-profile-page__edit-btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.chale-profile-page .chale-profile-page__edit-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.chale-profile-page .chale-profile-page__info-card {
  background: #f2f2f2;
  border-radius: 24px;
  padding: 22px 24px;
  margin-bottom: 1.35rem;
}

.chale-profile-page .chale-profile-page__section-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
}

.chale-profile-page .chale-profile-page__meta-block {
  min-width: 0;
}

.chale-profile-page .chale-profile-page__meta-label {
  font-size: 0.95rem;
  line-height: 1.25;
  color: #9a9a9a;
  margin-bottom: 0.45rem;
}

.chale-profile-page .chale-profile-page__meta-value {
  font-size: 1rem;
  line-height: 1.3;
  color: #111111;
  font-weight: 500;
  word-break: break-word;
}

.chale-profile-page .chale-profile-page__payment-brand {
  min-width: 96px;
  height: 64px;
  padding: 0 1rem;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  background: #ffffff;
  color: #1a3196;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.chale-profile-page .chale-profile-page__progress-chart-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.9rem;
}

.chale-profile-page .chale-profile-page__progress-chart {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
}

.chale-profile-page .chale-profile-page__progress-ring {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  /* background: conic-gradient(#efbf4a 0 40%, #ededed 40% 100%); */
  display: grid;
  place-items: center;
  position: relative;
}

.chale-profile-page .chale-profile-page__progress-ring::before {
  content: "";
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #f7f7f7;
  position: absolute;
}

.chale-profile-page .chale-profile-page__progress-value {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #111111;
}

.chale-profile-page .chale-profile-page__checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chale-profile-page .chale-profile-page__checklist-item {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 0.7rem;
}

.chale-profile-page .chale-profile-page__check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  background: #f3f3f3;
  color: #c6c6c6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  line-height: 1;
}

.chale-profile-page .chale-profile-page__checklist-item--done .chale-profile-page__check-icon {
  border-color: #efbf4a;
  background: #f7f0de;
  color: #efbf4a;
}

.chale-profile-page .chale-profile-page__check-text {
  font-size: 0.98rem;
  line-height: 1.25;
  color: #333333;
}

.chale-profile-page .chale-profile-page__check-points {
  font-size: 0.95rem;
  line-height: 1.2;
  color: #7f7f7f;
}

.chale-profile-page .chale-profile-page__check-points--accent {
  color: #efbf4a;
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  .chale-profile-page .chale-profile-page__sidebar,
  .chale-profile-page .chale-profile-page__main,
  .chale-profile-page .chale-profile-page__progress-panel {
    padding: 24px 22px 24px;
    border-radius: 24px;
  }

  .chale-profile-page .chale-profile-page__avatar-wrap {
    width: 120px;
    height: 120px;
  }

  .chale-profile-page .chale-profile-page__progress-chart {
    width: 150px;
    height: 150px;
  }

  .chale-profile-page .chale-profile-page__progress-ring {
    width: 140px;
    height: 140px;
  }

  .chale-profile-page .chale-profile-page__progress-ring::before {
    width: 104px;
    height: 104px;
  }
}

@media (max-width: 767.98px) {
  .chale-profile-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .chale-profile-page .chale-profile-page__sidebar,
  .chale-profile-page .chale-profile-page__main,
  .chale-profile-page .chale-profile-page__progress-panel {
    padding: 20px 16px 20px;
    border-radius: 20px;
  }

  .chale-profile-page .chale-profile-page__panel-title,
  .chale-profile-page .chale-profile-page__panel-title--main {
    font-size: 1.4rem;
  }

  .chale-profile-page .chale-profile-page__divider {
    margin: 1.15rem 0 1.25rem;
  }

  .chale-profile-page .chale-profile-page__hero-left {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .chale-profile-page .chale-profile-page__avatar-wrap {
    width: 100px;
    height: 100px;
  }

  .chale-profile-page .chale-profile-page__hero-name {
    font-size: 1.2rem;
  }

  .chale-profile-page .chale-profile-page__info-card {
    border-radius: 18px;
    padding: 18px 16px;
  }

  .chale-profile-page .chale-profile-page__payment {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .chale-profile-page .chale-profile-page__progress-chart-wrap {
    margin-bottom: 1.5rem;
  }

  .chale-profile-page .chale-profile-page__checklist-item {
    grid-template-columns: 22px 1fr;
  }

  .chale-profile-page .chale-profile-page__check-points {
    grid-column: 2;
    margin-left: 0;
  }
}

.profile-trips {
  padding-left: 1rem;
  padding-right: 1rem;
}

.profile-trips .profile-trips__card {
  background: white;
  border-radius: 32px;
  padding: 28px 28px 36px;
}

.profile-trips .profile-trips__title {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.profile-trips .profile-trips__divider {
  margin: 1.5rem 0 1.75rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.profile-trips .profile-trips__tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1f1f1;
  border-radius: 999px;
  padding: 0.6rem;
  margin-bottom: 1.75rem;
}

.profile-trips .profile-trips__tab {
  border: 0;
  background: transparent;
  color: #666666;
  min-height: 52px;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
}

.profile-trips .profile-trips__tab--active {
  background: #efbf4a;
  color: #111111;
}

.profile-trips .profile-trips__list {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}

.profile-trips .profile-trips__item {
  background: #f3f3f3;
  border-radius: 28px;
  padding: 24px 22px;
}

.profile-trips .profile-trips__image-wrap {
  width: 184px;
  min-width: 184px;
  height: 184px;
  border-radius: 24px;
  overflow: hidden;
  background: #e5e5e5;
}

.profile-trips .profile-trips__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-trips .profile-trips__content {
  min-width: 0;
  padding-top: 0.2rem;
}

.profile-trips .profile-trips__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.profile-trips .profile-trips__badge--orange {
  color: #f06b34;
  border: 1px solid #efc2b0;
  background: #f8f2ef;
}

.profile-trips .profile-trips__badge--gray {
  color: #777777;
  border: 1px solid #cfcfcf;
  background: #f3f3f3;
}

.profile-trips .profile-trips__item-title {
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e2e2;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
}

.profile-trips .profile-trips__meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.profile-trips .profile-trips__meta--muted .profile-trips__meta-item {
  color: #707070;
}

.profile-trips .profile-trips__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.profile-trips .profile-trips__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #2c85a0;
  font-weight: 400;
}

.profile-trips .profile-trips__meta-icon {
  font-size: 0.95rem;
  line-height: 1;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.profile-trips .profile-trips__price-box {
  width: 100%;
  max-width: 200px;
  background: #ececec;
  border-radius: 26px;
  padding: 16px 14px 12px;
  text-align: center;
}

.profile-trips .profile-trips__price {
  margin-bottom: 0.95rem;
  color: #111111;
  line-height: 1;
  white-space: nowrap;
}

.profile-trips .profile-trips__price--muted {
  color: #9a9a9a;
}

.profile-trips .profile-trips__price-value {
  font-size: 1.55rem;
  font-weight: 700;
}

.profile-trips .profile-trips__price-unit {
  font-size: 0.95rem;
  color: #777777;
}

.profile-trips .profile-trips__action-btn {
  min-height: 50px;
  width: 100%;
  border-radius: 999px;
  border: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  box-shadow: none;
}

.profile-trips .profile-trips__action-btn--gold {
  background: #efbf4a;
  color: #111111;
  padding-top: 15px;
}

.profile-trips .profile-trips__action-btn--gold:hover,
.profile-trips .profile-trips__action-btn--gold:focus {
  background: #e4b33f;
  color: #111111;
  box-shadow: none;
}

.profile-trips .profile-trips__action-btn--dark {
  background: #000000;
  color: #ffffff;
  padding-top: 15px;
}

.profile-trips .profile-trips__action-btn--dark:hover,
.profile-trips .profile-trips__action-btn--dark:focus {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

@media (max-width: 1199.98px) {
  .profile-trips .profile-trips__image-wrap {
    width: 164px;
    min-width: 164px;
    height: 164px;
  }

  .profile-trips .profile-trips__price-box {
    max-width: 190px;
  }
}

@media (max-width: 991.98px) {
  .profile-trips .profile-trips__card {
    border-radius: 24px;
    padding: 22px 20px 28px;
  }

  .profile-trips .profile-trips__title {
    font-size: 1.9rem;
  }

  .profile-trips .profile-trips__item {
    border-radius: 22px;
    padding: 20px 18px;
  }

  .profile-trips .profile-trips__image-wrap {
    width: 150px;
    min-width: 150px;
    height: 150px;
    border-radius: 20px;
  }

  .profile-trips .profile-trips__item-title {
    font-size: 1.2rem;
  }

  .profile-trips .profile-trips__price-box {
    max-width: 220px;
  }
}

@media (max-width: 767.98px) {
  .profile-trips {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .profile-trips .profile-trips__card {
    border-radius: 20px;
    padding: 18px 16px 22px;
  }

  .profile-trips .profile-trips__title {
    font-size: 1.65rem;
  }

  .profile-trips .profile-trips__divider {
    margin: 1.1rem 0 1.3rem;
  }

  .profile-trips .profile-trips__tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0.45rem;
  }

  .profile-trips .profile-trips__tab {
    min-height: 46px;
    padding: 0.75rem 1.2rem;
    white-space: nowrap;
  }

  .profile-trips .profile-trips__item {
    border-radius: 18px;
    padding: 16px;
  }

  .profile-trips .profile-trips__image-wrap {
    width: 100%;
    min-width: 100%;
    height: 220px;
    border-radius: 18px;
  }

  .profile-trips .profile-trips__badge {
    font-size: 0.88rem;
  }

  .profile-trips .profile-trips__item-title {
    font-size: 1.1rem;
    padding-bottom: 0.6rem;
    margin-bottom: 0.8rem;
  }

  .profile-trips .profile-trips__meta-item {
    font-size: 0.95rem;
  }

  .profile-trips .profile-trips__price-box {
    max-width: 100%;
    border-radius: 20px;
  }

  .profile-trips .profile-trips__price-value {
    font-size: 1.4rem;
  }
}

.profile-edit {
  padding-left: 1rem;
  padding-right: 1rem;
}

.profile-edit .profile-edit__card {
  background: white;
  border-radius: 32px;
  padding: 30px 28px 36px;
}

.profile-edit .profile-edit__title {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.profile-edit .profile-edit__divider {
  margin: 1.5rem 0 1.8rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.profile-edit .profile-edit__top {
  margin-bottom: 1.8rem;
}

.profile-edit .profile-edit__avatar-wrap {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0dfb8;
  flex-shrink: 0;
}

.profile-edit .profile-edit__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-edit .profile-edit__photo-actions {
  padding-top: 2rem;
}

.profile-edit .profile-edit__btn {
  min-height: 58px;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  box-shadow: none;
}

.profile-edit .profile-edit__btn--outline {
  border: 1px solid #d7d7d7;
  background: #fafafa;
  color: #111111;
}

.profile-edit .profile-edit__btn--outline:hover,
.profile-edit .profile-edit__btn--outline:focus {
  background: #f1f1f1;
  color: #111111;
  box-shadow: none;
}

.profile-edit .profile-edit__btn--muted {
  border: 0;
  background: #ebebeb;
  color: #111111;
  min-width: 146px;
}

.profile-edit .profile-edit__btn--muted:hover,
.profile-edit .profile-edit__btn--muted:focus {
  background: #e0e0e0;
  color: #111111;
  box-shadow: none;
}

.profile-edit .profile-edit__photo-note {
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #9a9a9a;
}

.profile-edit .profile-edit__section {
  margin-bottom: 1.9rem;
}

.profile-edit .profile-edit__section-title {
  margin: 0 0 1.1rem;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
}

.profile-edit .profile-edit__field-group {
  margin-bottom: 1.5rem;
}

.profile-edit .profile-edit__label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
}

.profile-edit .profile-edit__label--muted {
  font-weight: 400;
  color: #9a9a9a;
}

.profile-edit .profile-edit__input,
.profile-edit .profile-edit__input.form-control {
  min-height: 82px;
  border-radius: 18px;
  border: 1px solid #dcdcdc;
  background: #fafafa;
  box-shadow: none;
  padding: 1rem 1.15rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #111111;
}

.profile-edit .profile-edit__input::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.profile-edit .profile-edit__input:focus,
.profile-edit .profile-edit__input.form-control:focus {
  border-color: #d0d0d0;
  box-shadow: none;
  background: #fafafa;
}

.profile-edit .profile-edit__payment-methods {
  margin-bottom: 1.6rem;
}

.profile-edit .profile-edit__payment-option {
  cursor: pointer;
  margin: 0;
}

.profile-edit .profile-edit__payment-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.profile-edit .profile-edit__payment-box {
  min-width: 86px;
  height: 58px;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  transition: 0.2s ease;
}

.profile-edit .profile-edit__payment-input:checked + .profile-edit__payment-box {
  border-color: #efbf4a;
  box-shadow: inset 0 0 0 1px #efbf4a;
}

.profile-edit .profile-edit__payment-box--visa {
  color: #1a3196;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.profile-edit .profile-edit__payment-box--discover {
  color: #222222;
  font-size: 0.95rem;
  font-weight: 700;
}

.profile-edit .profile-edit__payment-box--amex {
  background: #2d7bd9;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
}

.profile-edit .profile-edit__payment-box--mastercard {
  gap: 0;
}

.profile-edit .profile-edit__mc-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-block;
}

.profile-edit .profile-edit__mc-circle + .profile-edit__mc-circle {
  margin-left: -7px;
}

.profile-edit .profile-edit__mc-circle--red {
  background: #ea001b;
}

.profile-edit .profile-edit__mc-circle--yellow {
  background: #f79e1b;
}

.profile-edit .profile-edit__payment-box--paypal {
  color: #1f66c2;
  font-size: 1.05rem;
  font-weight: 700;
}

.profile-edit .profile-edit__input-wrap {
  position: relative;
}

.profile-edit .profile-edit__input--with-icon {
  padding-right: 3.8rem;
}

.profile-edit .profile-edit__input-icon-btn {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #9a9a9a;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.profile-edit .profile-edit__input-icon-btn:hover,
.profile-edit .profile-edit__input-icon-btn:focus {
  color: #6f6f6f;
  box-shadow: none;
}

.profile-edit .profile-edit__input-icon-btn svg {
  width: 100%;
  height: 100%;
  display: block;
}

.profile-edit .profile-edit__checks {
  margin-top: 0.4rem;
}

.profile-edit .profile-edit__check {
  gap: 0.8rem;
  margin-bottom: 0.85rem;
  cursor: pointer;
}

.profile-edit .profile-edit__check:last-child {
  margin-bottom: 0;
}

.profile-edit .profile-edit__check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.profile-edit .profile-edit__check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}

.profile-edit .profile-edit__check-icon--info {
  font-weight: 700;
}

.profile-edit .profile-edit__check-icon--checked {
  font-size: 0.85rem;
}

.profile-edit .profile-edit__check-text {
  font-size: 0.98rem;
  line-height: 1.4;
  color: #8a8a8a;
}

.profile-edit .profile-edit__actions {
  margin-top: 2.5rem;
}

.profile-edit .profile-edit__save-btn {
  min-width: 210px;
  min-height: 64px;
  padding: 0.95rem 1.75rem;
  border: 0;
  border-radius: 999px;
  background: #efbf4a;
  color: #111111;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  box-shadow: none;
}

.profile-edit .profile-edit__save-btn:hover,
.profile-edit .profile-edit__save-btn:focus {
  background: #e5b640;
  color: #111111;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .profile-edit .profile-edit__card {
    border-radius: 24px;
    padding: 24px 20px 28px;
  }

  .profile-edit .profile-edit__title {
    font-size: 1.85rem;
  }

  .profile-edit .profile-edit__avatar-wrap {
    width: 150px;
    height: 150px;
  }

  .profile-edit .profile-edit__photo-actions {
    padding-top: 0;
  }

  .profile-edit .profile-edit__input,
  .profile-edit .profile-edit__input.form-control {
    min-height: 74px;
    border-radius: 16px;
  }
}

@media (max-width: 767.98px) {
  .profile-edit {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .profile-edit .profile-edit__card {
    border-radius: 20px;
    padding: 18px 16px 24px;
  }

  .profile-edit .profile-edit__title {
    font-size: 1.6rem;
  }

  .profile-edit .profile-edit__divider {
    margin: 1.15rem 0 1.3rem;
  }

  .profile-edit .profile-edit__avatar-wrap {
    width: 120px;
    height: 120px;
  }

  .profile-edit .profile-edit__btn {
    min-height: 50px;
    padding: 0.75rem 1.1rem;
  }

  .profile-edit .profile-edit__btn--muted {
    min-width: 120px;
  }

  .profile-edit .profile-edit__input,
  .profile-edit .profile-edit__input.form-control {
    min-height: 66px;
    padding: 0.9rem 1rem;
    font-size: 0.96rem;
  }

  .profile-edit .profile-edit__payment-box {
    min-width: 74px;
    height: 52px;
  }

  .profile-edit .profile-edit__payment-box--visa {
    font-size: 1.55rem;
  }

  .profile-edit .profile-edit__save-btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }
}

.trip-details-page {
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-details-page .trip-details-page__card {
  background: #f7f7f7;
  border-radius: 32px;
  padding: 26px 24px 32px;
}

.trip-details-page .trip-details-page__topbar {
  min-height: 44px;
}

.trip-details-page .trip-details-page__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #111111;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

.trip-details-page .trip-details-page__back-link:hover {
  color: #111111;
}

.trip-details-page .trip-details-page__back-icon {
  font-size: 1.55rem;
  line-height: 1;
  margin-top: -2px;
}

.trip-details-page .trip-details-page__divider {
  margin: 1.25rem 0 1.6rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-details-page .trip-details-page__panel {
  background: #f3f3f3;
  border-radius: 32px;
  padding: 38px 38px 30px;
}

.trip-details-page .trip-details-page__header {
  margin-bottom: 1.4rem;
}

.trip-details-page .trip-details-page__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 34px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #9cc3d2;
  background: #eef6f9;
  color: #3a86a3;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 0.95rem;
}

.trip-details-page .trip-details-page__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a86a3;
  display: inline-block;
}

.trip-details-page .trip-details-page__title {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.08;
  font-weight: 700;
  color: #111111;
}

.trip-details-page .trip-details-page__hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 360px;
  min-height: 360px;
  background: #dcdcdc;
  margin-bottom: 2rem;
}

.trip-details-page .trip-details-page__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.trip-details-page .trip-details-page__hero-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(110, 74, 44, 0.82) 0%, rgba(228, 174, 110, 0.72) 52%, rgba(0, 128, 214, 0.72) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px 24px;
}

.trip-details-page .trip-details-page__hero-meta-item {
  color: #ffffff;
  padding-right: 2.1rem;
  position: relative;
}

.trip-details-page .trip-details-page__hero-meta .col-md-auto:not(:last-child) .trip-details-page__hero-meta-item::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: calc(100% - 8px);
  background: rgba(255, 255, 255, 0.45);
}

.trip-details-page .trip-details-page__hero-meta-label {
  font-size: 0.95rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.45rem;
}

.trip-details-page .trip-details-page__hero-meta-value {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
}

.trip-details-page .trip-details-page__summary {
  margin-bottom: 2rem;
}

.trip-details-page .trip-details-page__stat-card {
  background: #f7f7f7;
  border-radius: 24px;
  padding: 22px 22px 24px;
  min-height: 200px;
}

.trip-details-page .trip-details-page__stat-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #d6d6d6;
  color: #222222;
  font-size: 0.95rem;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.trip-details-page .trip-details-page__stat-divider {
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  margin-bottom: 1.35rem;
}

.trip-details-page .trip-details-page__stat-value {
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 800;
  color: #111111;
  margin-bottom: 0.7rem;
}

.trip-details-page .trip-details-page__stat-value--blue {
  color: #3c86a0;
}

.trip-details-page .trip-details-page__stat-value--orange {
  color: #e6632f;
}

.trip-details-page .trip-details-page__stat-subtext {
  font-size: 1rem;
  line-height: 1.35;
  color: #8f8f8f;
}

.trip-details-page .trip-details-page__content-card {
  background: #f7f7f7;
  border-radius: 28px;
  padding: 24px 24px 26px;
}

.trip-details-page .trip-details-page__content-card--tall {
  min-height: 540px;
}

.trip-details-page .trip-details-page__section-title {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
}

.trip-details-page .trip-details-page__section-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.35;
  color: #9a9a9a;
}

.trip-details-page .trip-details-page__progress-header {
  margin-bottom: 0.7rem;
}

.trip-details-page .trip-details-page__progress-amount,
.trip-details-page .trip-details-page__progress-percent {
  font-size: 1rem;
  line-height: 1.2;
  color: #3c86a0;
  font-weight: 500;
}

.trip-details-page .trip-details-page__progress-bar {
  height: 14px;
  background: #ececec;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.8rem;
}

.trip-details-page .trip-details-page__progress-fill {
  height: 100%;
  background: #3c86a0;
  border-radius: 999px;
}

.trip-details-page .trip-details-page__timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.trip-details-page .trip-details-page__timeline-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eaf1f4;
  color: #3c86a0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 700;
}

.trip-details-page .trip-details-page__timeline-item--pending .trip-details-page__timeline-icon {
  background: transparent;
  border: 2px dashed #d7d7d7;
  color: transparent;
}

.trip-details-page .trip-details-page__timeline-title {
  font-size: 1rem;
  line-height: 1.25;
  color: #111111;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.trip-details-page .trip-details-page__timeline-title--muted {
  color: #7c7c7c;
}

.trip-details-page .trip-details-page__timeline-meta {
  font-size: 0.98rem;
  line-height: 1.35;
  color: #7c7c7c;
}

.trip-details-page .trip-details-page__timeline-meta--muted {
  color: #a1a1a1;
}

.trip-details-page .trip-details-page__timeline-divider {
  width: 100%;
  height: 1px;
  background: #e3e3e3;
  margin: 1.2rem 0;
}

.trip-details-page .trip-details-page__payment-options {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.trip-details-page .trip-details-page__payment-option {
  position: relative;
  border-radius: 18px;
  border: 1px solid #d8d8d8;
  background: #fafafa;
  padding: 22px 18px;
}

.trip-details-page .trip-details-page__payment-option--featured {
  border-color: #f07a46;
  background: #fffaf7;
}

.trip-details-page .trip-details-page__payment-badge {
  position: absolute;
  top: -14px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #e96b34;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.1;
  font-weight: 600;
}

.trip-details-page .trip-details-page__payment-title {
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.3rem;
}

.trip-details-page .trip-details-page__payment-text {
  font-size: 1rem;
  line-height: 1.35;
  color: #6f6f6f;
}

.trip-details-page .trip-details-page__payment-price {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 800;
  color: #e6632f;
  white-space: nowrap;
}

.trip-details-page .trip-details-page__payment-price--dark {
  color: #111111;
}

.trip-details-page .trip-details-page__payment-divider {
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  margin-top: -0.1rem;
  margin-bottom: -0.1rem;
}

.trip-details-page .trip-details-page__payment-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eeeeee;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
}

.trip-details-page .trip-details-page__countdown-box {
  border: 1px solid #f0c1af;
  border-radius: 18px;
  background: #fbf6f4;
  padding: 24px 18px;
  text-align: center;
  margin-top: 0.2rem;
}

.trip-details-page .trip-details-page__countdown-number {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
  color: #e6632f;
  margin-bottom: 0.55rem;
}

.trip-details-page .trip-details-page__countdown-text {
  font-size: 1rem;
  line-height: 1.3;
  color: #ef8b68;
}

.trip-details-page .trip-details-page__footer-note {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.35;
  color: #666666;
}

.trip-details-page .trip-details-page__footer-link {
  color: #e6632f;
}

.trip-details-page .trip-details-page__footer-link:hover {
  color: #d65928;
}

@media (max-width: 1199.98px) {
  .trip-details-page .trip-details-page__panel {
    padding: 28px 24px 24px;
  }

  .trip-details-page .trip-details-page__title {
    font-size: 2rem;
  }

  .trip-details-page .trip-details-page__content-card--tall {
    min-height: auto;
  }
}

@media (max-width: 991.98px) {
  .trip-details-page .trip-details-page__card {
    border-radius: 24px;
    padding: 20px 18px 24px;
  }

  .trip-details-page .trip-details-page__panel {
    border-radius: 24px;
    padding: 22px 18px 22px;
  }

  .trip-details-page .trip-details-page__hero {
    min-height: 320px;
  }

  .trip-details-page .trip-details-page__hero-image {
    min-height: 320px;
  }

  .trip-details-page .trip-details-page__hero-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
  }

  .trip-details-page .trip-details-page__title {
    font-size: 1.8rem;
  }

  .trip-details-page .trip-details-page__section-title {
    font-size: 1.45rem;
  }

  .trip-details-page .trip-details-page__stat-card {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .trip-details-page {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-details-page .trip-details-page__card {
    border-radius: 20px;
    padding: 16px 14px 18px;
  }

  .trip-details-page .trip-details-page__panel {
    border-radius: 20px;
    padding: 18px 14px 18px;
  }

  .trip-details-page .trip-details-page__divider {
    margin: 1rem 0 1.2rem;
  }

  .trip-details-page .trip-details-page__title {
    font-size: 1.55rem;
  }

  .trip-details-page .trip-details-page__hero {
    border-radius: 18px;
    min-height: 280px;
  }

  .trip-details-page .trip-details-page__hero-image {
    min-height: 280px;
  }

  .trip-details-page .trip-details-page__hero-overlay {
    border-radius: 16px;
    padding: 14px;
  }

  .trip-details-page .trip-details-page__hero-meta .col-md-4:not(:last-child) .trip-details-page__hero-meta-item::after {
    display: none;
  }

  .trip-details-page .trip-details-page__hero-meta-item {
    padding-right: 0;
  }

  .trip-details-page .trip-details-page__stat-card,
  .trip-details-page .trip-details-page__content-card {
    border-radius: 18px;
    padding: 18px 16px;
  }

  .trip-details-page .trip-details-page__stat-value {
    font-size: 1.7rem;
  }

  .trip-details-page .trip-details-page__timeline-icon {
    width: 40px;
    height: 40px;
  }

  .trip-details-page .trip-details-page__payment-option,
  .trip-details-page .trip-details-page__countdown-box {
    border-radius: 16px;
  }

  .trip-details-page .trip-details-page__payment-main {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .trip-details-page .trip-details-page__payment-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }

  .trip-details-page .trip-details-page__countdown-number {
    font-size: 1.8rem;
  }
}

.trip-booking-footer {
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: white;
  margin-top: 100px;
}

.trip-booking-footer .trip-booking-footer__inner {
  background: white;
  border-radius: 0;
  padding: 38px 36px 20px;
}

.trip-booking-footer .trip-booking-footer__title {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 700;
  color: #3b3b3b;
}

.trip-booking-footer .trip-booking-footer__text {
  max-width: 290px;
  font-size: 1rem;
  line-height: 1.45;
  color: #686868;
}

.trip-booking-footer .trip-booking-footer__socials {
  margin-top: 2rem;
}

.trip-booking-footer .trip-booking-footer__social {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  color: #737373;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.2s ease;
}

.trip-booking-footer .trip-booking-footer__social:hover {
  color: #111111;
  border-color: #bfbfbf;
  background: #f2f2f2;
}

.trip-booking-footer .trip-booking-footer__social svg {
  width: 22px;
  height: 22px;
  display: block;
}

.trip-booking-footer .trip-booking-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trip-booking-footer .trip-booking-footer__link,
.trip-booking-footer .trip-booking-footer__bottom-link {
  text-decoration: none;
  color: #686868;
  font-size: 1rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.trip-booking-footer .trip-booking-footer__link:hover,
.trip-booking-footer .trip-booking-footer__bottom-link:hover {
  color: #111111;
}

.trip-booking-footer .trip-booking-footer__brand {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.trip-booking-footer .trip-booking-footer__logo {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
}

.trip-booking-footer .trip-booking-footer__divider {
  margin: 4rem 0 2rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.trip-booking-footer .trip-booking-footer__bottom-link,
.trip-booking-footer .trip-booking-footer__copyright {
  font-size: 0.98rem;
  line-height: 1.35;
  color: #4f4f4f;
}

@media (min-width: 992px) {
  .trip-booking-footer .trip-booking-footer__brand {
    justify-content: flex-end;
  }
}

@media (max-width: 991.98px) {
  .trip-booking-footer .trip-booking-footer__inner {
    padding: 28px 24px 18px;
  }

  .trip-booking-footer .trip-booking-footer__divider {
    margin: 2.5rem 0 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .trip-booking-footer {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-booking-footer .trip-booking-footer__inner {
    padding: 24px 18px 18px;
  }

  .trip-booking-footer .trip-booking-footer__text {
    max-width: 100%;
  }

  .trip-booking-footer .trip-booking-footer__social {
    width: 52px;
    height: 52px;
  }

  .trip-booking-footer .trip-booking-footer__logo {
    max-width: 130px;
  }

  .trip-booking-footer .trip-booking-footer__divider {
    margin: 2rem 0 1.25rem;
  }
}

.trip-booking-footer-newsletter {
  padding-left: 1rem;
  padding-right: 1rem;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__card {
  max-height: 560px;
  border-radius: 36px;
  background: #d9d9d9;
  isolation: isolate;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(18, 18, 18, 0.26) 0%,
      rgba(18, 18, 18, 0.10) 36%,
      rgba(18, 18, 18, 0.04) 62%,
      rgba(18, 18, 18, 0.14) 100%
    );
  z-index: 1;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 64px 56px;
  /* display: flex; */
  align-items: center;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__copy {
  max-width: 700px;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__title {
  margin: 0 0 1.5rem;
  font-size: 6.4rem;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__text {
  max-width: 640px;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__form {
  margin-top: 2.5rem;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__input-group {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__input,
.trip-booking-footer-newsletter .trip-booking-footer-newsletter__input.form-control {
  flex: 1 1 auto;
  min-height: 72px;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0 1.6rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #111111;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__input::placeholder {
  color: #c1c1c1;
  opacity: 1;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__input:focus,
.trip-booking-footer-newsletter .trip-booking-footer-newsletter__input.form-control:focus {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__button {
  min-width: 180px;
  min-height: 72px;
  padding: 0.95rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  box-shadow: none;
  flex-shrink: 0;
}

.trip-booking-footer-newsletter .trip-booking-footer-newsletter__button:hover,
.trip-booking-footer-newsletter .trip-booking-footer-newsletter__button:focus {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

@media (max-width: 1399.98px) {
  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__card {
    min-height: 620px;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__title {
    font-size: 5.4rem;
  }
}

@media (max-width: 1199.98px) {
  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__card {
    max-height: 560px;
    border-radius: 30px;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__content {
    padding: 48px 40px;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__title {
    font-size: 4.6rem;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__text {
    font-size: 1.08rem;
  }
}

@media (max-width: 991.98px) {
  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__card {
    min-height: 500px;
    border-radius: 24px;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__content {
    padding: 36px 28px;
    align-items: flex-end;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__title {
    font-size: 3.8rem;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__input-group {
    max-width: 100%;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__input,
  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__input.form-control,
  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__button {
    min-height: 64px;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__button {
    min-width: 160px;
  }
}

@media (max-width: 767.98px) {
  .trip-booking-footer-newsletter {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__card {
    min-height: 440px;
    border-radius: 20px;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__content {
    padding: 28px 20px;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__text {
    font-size: 1rem;
    max-width: 100%;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__form {
    margin-top: 1.75rem;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__input-group {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-radius: 24px;
    padding: 10px;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__input,
  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__input.form-control {
    min-height: 58px;
    padding: 0 1rem;
  }

  .trip-booking-footer-newsletter .trip-booking-footer-newsletter__button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }
}

#payment-error .hide {
    display: none;
}

.trip-booking-coupon {
  width: 100%;
  margin-bottom: 40px;
}

.trip-booking-coupon .trip-booking-coupon__inner {
  width: 100%;
}

.trip-booking-coupon .trip-booking-coupon__title {
  margin: 0 0 1.25rem;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.trip-booking-coupon .trip-booking-coupon__form {
  margin: 0;
}

.trip-booking-coupon .trip-booking-coupon__input,
.trip-booking-coupon .trip-booking-coupon__input.form-control {
  min-height: 41px;
  border-radius: 24px;
  border: 2px solid #dddddd;
  background: #fafafa;
  box-shadow: none;
  padding: 1rem 1rem;
  font-size: 16px;
  line-height: 1.2;
  color: #111111;
}

.trip-booking-coupon .trip-booking-coupon__input::placeholder {
  color: #b1b1b1;
  opacity: 1;
}

.trip-booking-coupon .trip-booking-coupon__input:focus,
.trip-booking-coupon .trip-booking-coupon__input.form-control:focus {
  border-color: #d2d2d2;
  background: #fafafa;
  box-shadow: none;
}

.trip-booking-coupon .trip-booking-coupon__button {
  /* min-width: 260px; */
  min-height: 55px;
  border: 0;
  border-radius: 24px;
  background: #efefef;
  color: #111111;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  box-shadow: none;
  padding: 1rem 2rem;
}

.trip-booking-coupon .trip-booking-coupon__button:hover,
.trip-booking-coupon .trip-booking-coupon__button:focus {
  background: #e6e6e6;
  color: #111111;
  box-shadow: none;
}

.trip-booking-coupon .trip-booking-coupon__message {
  margin-top: 1.1rem;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  color: #3f8ba2;
}

@media (max-width: 991.98px) {
  .trip-booking-coupon .trip-booking-coupon__title {
    font-size: 1.8rem;
  }

  .trip-booking-coupon .trip-booking-coupon__input,
  .trip-booking-coupon .trip-booking-coupon__input.form-control,
  .trip-booking-coupon .trip-booking-coupon__button {
    min-height: 86px;
    border-radius: 20px;
  }

  .trip-booking-coupon .trip-booking-coupon__input,
  .trip-booking-coupon .trip-booking-coupon__input.form-control {
    font-size: 1.1rem;
    padding: 0.9rem 1.4rem;
  }

  .trip-booking-coupon .trip-booking-coupon__button {
    min-width: 210px;
    font-size: 1.05rem;
  }
}

@media (max-width: 767.98px) {
  .trip-booking-coupon .trip-booking-coupon__title {
    font-size: 1.55rem;
    margin-bottom: 1rem;
  }

  .trip-booking-coupon .trip-booking-coupon__input,
  .trip-booking-coupon .trip-booking-coupon__input.form-control,
  .trip-booking-coupon .trip-booking-coupon__button {
    min-height: 68px;
    border-radius: 18px;
  }

  .trip-booking-coupon .trip-booking-coupon__input,
  .trip-booking-coupon .trip-booking-coupon__input.form-control {
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }

  .trip-booking-coupon .trip-booking-coupon__button {
    min-width: 0;
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }

  .trip-booking-coupon .trip-booking-coupon__message {
    font-size: 0.95rem;
  }
}

.profile-wishlist-trips {
  padding-left: 1rem;
  padding-right: 1rem;
}

.profile-wishlist-trips .profile-wishlist-trips__card {
  background: white;
  border-radius: 32px;
  padding: 28px 28px 36px;
}

.profile-wishlist-trips .profile-wishlist-trips__title {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 700;
  color: #111111;
}

.profile-wishlist-trips .profile-wishlist-trips__divider {
  margin: 1.5rem 0 2rem;
  border: 0;
  border-top: 1px solid #dddddd;
  opacity: 1;
}

.profile-wishlist-trips .profile-wishlist-trips__item {
  background: #FAFAFA;
  border-radius: 28px;
  padding: 28px 28px 24px;
  height: 100%;
}

.profile-wishlist-trips .profile-wishlist-trips__image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #e5e5e5;
  height: 299px;
  margin-bottom: 1.6rem;
}

.profile-wishlist-trips .profile-wishlist-trips__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-wishlist-trips .profile-wishlist-trips__favorite-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  /* border: 1px solid rgba(255, 255, 255, 0.75); */
  /* background: rgba(226, 239, 247, 0.85); */
  /* backdrop-filter: blur(4px); */
  /* -webkit-backdrop-filter: blur(4px); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.profile-wishlist-trips .profile-wishlist-trips__favorite-btn:hover,
.profile-wishlist-trips .profile-wishlist-trips__favorite-btn:focus {
  /* background: rgba(226, 239, 247, 0.95); */
  /* box-shadow: none; */
}

.profile-wishlist-trips .profile-wishlist-trips__favorite-heart {
  color: #ea6d2f;
  font-size: 1.9rem;
  line-height: 1;
}

.profile-wishlist-trips .profile-wishlist-trips__content {
  min-width: 0;
}

.profile-wishlist-trips .profile-wishlist-trips__item-title {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
}

.profile-wishlist-trips .profile-wishlist-trips__meta {
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.profile-wishlist-trips .profile-wishlist-trips__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #9ec5d4;
  color: #3f8ba2;
  background: #f5fafc;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 500;
}

.profile-wishlist-trips .profile-wishlist-trips__meta-text {
  font-size: 1rem;
  line-height: 1.25;
  color: #666666;
}

.profile-wishlist-trips .profile-wishlist-trips__meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #efbf4a;
  display: inline-block;
}

.profile-wishlist-trips .profile-wishlist-trips__footer {
  background: #F0F0F0;
  border-radius: 999px;
  padding: 12px 12px 12px 24px;
}

.profile-wishlist-trips .profile-wishlist-trips__price {
  color: #111111;
  line-height: 1;
  white-space: nowrap;
}

.profile-wishlist-trips .profile-wishlist-trips__price-value {
  font-size: 2rem;
  font-weight: 700;
}

.profile-wishlist-trips .profile-wishlist-trips__price-unit {
  font-size: 1rem;
  color: #666666;
}

.profile-wishlist-trips .profile-wishlist-trips__button {
  min-width: 200px;
  min-height: 56px;
  padding: 1.2rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: #efbf4a;
  color: #111111;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  box-shadow: none;
}

.profile-wishlist-trips .profile-wishlist-trips__button:hover,
.profile-wishlist-trips .profile-wishlist-trips__button:focus {
  background: #e4b33f;
  color: #111111;
  box-shadow: none;
}

@media (max-width: 1199.98px) {
  .profile-wishlist-trips .profile-wishlist-trips__image-wrap {
    height: 299px;
  }

  .profile-wishlist-trips .profile-wishlist-trips__item-title {
    font-size: 1.45rem;
  }
}

@media (max-width: 991.98px) {
  .profile-wishlist-trips .profile-wishlist-trips__card {
    border-radius: 24px;
    padding: 22px 20px 28px;
  }

  .profile-wishlist-trips .profile-wishlist-trips__title {
    font-size: 1.8rem;
  }

  .profile-wishlist-trips .profile-wishlist-trips__item {
    border-radius: 22px;
    padding: 20px 20px 20px;
  }

  .profile-wishlist-trips .profile-wishlist-trips__image-wrap {
    border-radius: 22px;
    height: 299px;
  }

  .profile-wishlist-trips .profile-wishlist-trips__favorite-btn {
    width: 62px;
    height: 62px;
  }

  .profile-wishlist-trips .profile-wishlist-trips__favorite-heart {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .profile-wishlist-trips {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .profile-wishlist-trips .profile-wishlist-trips__card {
    border-radius: 20px;
    padding: 18px 16px 22px;
  }

  .profile-wishlist-trips .profile-wishlist-trips__title {
    font-size: 1.6rem;
  }

  .profile-wishlist-trips .profile-wishlist-trips__divider {
    margin: 1.1rem 0 1.4rem;
  }

  .profile-wishlist-trips .profile-wishlist-trips__item {
    border-radius: 18px;
    padding: 16px;
  }

  .profile-wishlist-trips .profile-wishlist-trips__image-wrap {
    height: 250px;
    border-radius: 18px;
    margin-bottom: 1.2rem;
  }

  .profile-wishlist-trips .profile-wishlist-trips__favorite-btn {
    width: 56px;
    height: 56px;
    top: 12px;
    right: 12px;
  }

  .profile-wishlist-trips .profile-wishlist-trips__favorite-heart {
    font-size: 1.45rem;
  }

  .profile-wishlist-trips .profile-wishlist-trips__item-title {
    font-size: 1.3rem;
  }

  .profile-wishlist-trips .profile-wishlist-trips__meta {
    margin-bottom: 1.4rem;
    gap: 0.6rem;
  }

  .profile-wishlist-trips .profile-wishlist-trips__meta-text {
    font-size: 0.95rem;
  }

  .profile-wishlist-trips .profile-wishlist-trips__footer {
    border-radius: 24px;
    padding: 12px;
  }

  .profile-wishlist-trips .profile-wishlist-trips__price-value {
    font-size: 1.7rem;
  }

  .profile-wishlist-trips .profile-wishlist-trips__button {
    min-width: 100%;
    width: 100%;
    min-height: 52px;
  }
}