@import './vars.css';
@import './gallery.css';
@import './desktop-style.css';
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h5 {
  margin: 0;
}

p {
  margin-bottom: 0;
  margin-top: 0;
}

main {
  background: #fcfbf7;
  position: relative;
}

.yacht-theme-button--primary {
  height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 500;
  color: #0f1a3a;
  background-color: #f6f4e7;
  border: 0;
  cursor: pointer;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f1a3a;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  transition: all 0.3s ease;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.read-more:hover {
  cursor: pointer;
}

.read-more--expanded svg {
  transform: rotate(180deg);
}
.yacht-theme-button--primary:focus {
  outline: none;
}

.line-sep {
  width: 100%;
  height: 1px;
  background: rgba(15, 26, 58, 0.05);
}

.yacht-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .yacht-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 332px;
    max-width: 1060px;
    column-gap: 90px;
    grid-template-areas: 'left-content right-sidebar';
    margin: 0 auto;
    margin-top: 32px;
  }
}

.right-wrapper {
  grid-area: right-sidebar;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.left-wrapper {
  grid-area: left-content;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.yacht-description-wrapper {
  background-color: #f9efe0;
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (min-width: 1024px) {
  .yacht-description-wrapper {
    padding: 32px;
    border-radius: 16px;
    /* grid-area: left-content; */
    height: fit-content;
  }
}

.deck-plan .deck-plan__title {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 153.846% */
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.dekc-plan__image-wrapper {
  width: 100%;
  height: 230px;
  border-radius: 8px;
  background-color: #fff;
  padding: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.deck-plan .dekc-plan__image-wrapper .deck-plan__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

@media (min-width: 1024px) {
  .dekc-plan__image-wrapper {
    max-width: 350px;
  }
}

.yacht-bar--hidden {
  transform: translateY(100%) !important;
  opacity: 0 !important;
}
.yacht-bar:not(.yacht-bar--hidden) {
  transform: translateY(0);
  opacity: 1;
}

.yacht-bar {
  z-index: 999;
  width: 100vw;
  position: fixed;
  bottom: 0;
  background: #192c5d;
  box-shadow: 0px -7px 14px 0px rgba(3, 5, 12, 0.2);
  padding: 12px 20px;

  display: grid;
  grid-template-columns: minmax(90px, 1fr) minmax(108px, 1fr) minmax(108px, 1fr);
  gap: 16px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

@media (min-width: 500px) and (max-width: 1023px) {
  .yacht-bar {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .yacht-bar .yacht-bar__details {
    align-items: center;
  }
}


.yacht-bar--tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.yacht-bar--tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}

.yacht-bar--tooltip-content {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0F1A3A;
  color: #F6F4E7;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-whyte);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12px;
  white-space: normal;
  line-height: normal;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 332px;
  min-width: 332px;
}

.yacht-bar--tooltip-content svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #F6F4E7;
}

.yacht-bar--tooltip-arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #2c3e50;
}



.yacht-bar .yacht-bar__price-section,
.yacht-bar .yacht-bar__details,
.yacht-bar .yacht-bar__cta {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  overflow: hidden;
}

.yacht-bar .yacht-bar__price-section {
  text-align: right;
}
.yacht-bar .yacht-bar__price-section .yacht-bar__price {
  color: #f6f4e7;
  font-family: var(--font-saol);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  height: 38px;
}

.yacht-bar__text {
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
  color: #c5cdec;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 24px;
}

.yacht-bar__pax,
.yacht-bar__date {
  color: #e3af64;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.yacht-bar__date {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yacht-bar__cta {
  display: flex;
  height: 48px;
  min-height: 48px;
  width: auto;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #4a629e;
  color: #f6f4e7;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.14px;
  text-decoration: none;
}

.yacht-bar__cta:hover {
  cursor: pointer;
}

.yacht-bar__cta--disabled {
  pointer-events: none;
  opacity: 0.4;
  cursor: not-allowed;
}

@media (min-width: 1024px) {
  .yacht-bar.yacht-bar--desktop {
    z-index: unset;
    width: auto;
    position: relative;
    bottom: unset;
    /* grid-area: right-sidebar; */
    padding: 12px 20px 20px 20px;
    border-radius: 16px;
    box-shadow: unset;
    height: fit-content;
    flex-direction: column;
    grid-template-columns: unset;
    display: flex;
  }
  .yacht-bar .yacht-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .yacht-bar .yacht-bar-wrapper .yacht-bar__price {
    color: #f6f4e7;
    font-family: var(--font-saol);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 118.75% */
  }
  .yacht-bar__cta {
    width: 100%;
  }
}

.yacht-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yacht-description--margin {
  margin-bottom: 32px;
}

.yacht-description__title {
  color: #0f1a3a;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  font-family: var(--font-saol);
}

.yacht-description__text {
  font-weight: 300;
  font-family: var(--font-whyte);
  font-size: 16px;
  line-height: 25.6px;
  font-style: normal;
  color: #37405b;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  transition: all 0.3s ease;
}

.yacht-description__text--expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.yacht-detail-wrapper {
  position: relative;
  height: 610px;
}

@media (min-width: 1024px) {
  .yacht-detail-wrapper {
    height: 400px;
    margin-top: 90px;
  }
  .yacht-detail-wrapper::after {
    content: " ";
    width: 100%;
    height: 90px;
    position: absolute;
    background: #FCFBF7;
    top: -90px;
    left: 0;
}
}

.yacht__details {
  z-index: 9;
  width: 100vw;

  border-radius: 32px 32px 0px 0px;
  background: #fcfbf7;
  padding: 16px 20px;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -1px;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .yacht__details {
    width: auto;
    position: relative;
    transform: unset;
    left: unset;
    bottom: unset;
    padding-bottom: 0;
    padding-left: 0;

    /* grid-area: left-content; */
  }
}

.yacht__details .yacht__details-header {
  display: flex;
  flex-direction: column;
}

.yacht__details .yacht__details-header .yacht-name-special {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.yacht-special-wrapper {
  display: flex;
  height: 28px;
  padding: 0px 8px;
  justify-content: center;
  align-items: center;
  background: #516ac7;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
}
.yacht-special-wrapper span {
  overflow: hidden;
  color: #f6f4e7;
  text-overflow: ellipsis;
  font-family: var(--font-whyte);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.12px;
  white-space: nowrap;
}

.yacht-special-wrapper .yacht-special-wrapper__description {
  display: none;
}

.yacht-special-wrapper:hover .yacht-special-wrapper__description {
  display: flex;
  position: absolute;
  background: #0f1a3a;
  color: #f6f4e7;
  padding: 8px;
  border-radius: 8px;
  top: 65px;
  right: 20px;
  width: 80%;
  font-family: var(--font-whyte);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.yacht__details .yacht__details-header h1 {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 39px;
  white-space: nowrap;
  font-style: normal;
  font-weight: 300;
  line-height: 59px;
  min-width: 55%;
  text-transform: capitalize;
}

@media (min-width: 1024px) {
  .yacht__details .yacht__details-header h1 {
    font-size: 61px;
    font-style: normal;
    font-weight: 400;
    line-height: 59px; /* 96.721% */
    min-width: auto;
  }

  .yacht__details .yacht__details-header .yacht-name-special {
    justify-content: unset;
    gap: 32px;
  }
}

.yacht__details__more-info {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yacht__details__more-info-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  white-space: nowrap;
  color: #37405b;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.more-items {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #a4a39a;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  white-space: nowrap;
  font-weight: 300;
  line-height: normal;
  text-transform: lowercase;
}

@media (max-width: 800px) {
  .more-items {
      flex-wrap: wrap;
      row-gap: 0px;
      column-gap: 4px;
  }
}

.deco {
  font-size: 6px;
}
.yacht__details .yacht__details-reviews {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  min-height: 60px;
}

.yacht__details-rating {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.reviews-count {
  color: #a4a39a;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}

.yacht__details-rating-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.yacht__details-reviews .yacht__details-rating-stars svg {
  width: 14px;
  height: 14px;
}

.captain-info {
  display: flex;
  gap: 8px;
  align-items: center;
}

.captain-image {
  width: 32px;
  height: 32px;
  position: relative;
}

.captain-image--padding img {
  padding: 5px;
}

.captain-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  background-color: #F6F4E7;
  z-index: 1; /* Put overlay on top if needed */
}

.captain-info img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
  position: relative;
  z-index: 2; /* Ensure image is above the ::before background if needed */
}

.captain-info__name {
  display: flex;
  flex-direction: column;
}

.captain-info__name .captain-name {
  color: #37405b;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.crew-info-label {
  color: #0f1a3a;
  font-size: 14px;
  font-family: var(--font-whyte);
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;

  display: flex;
  gap: 8px;
  align-items: center;
}

h1.yacht-name {
  font-size: 39px;
  color: #000;
}

.yacht-calendar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yacht-calendar-wrapper__main {
  display: flex;
  padding: 8px 8px 16px 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 26, 58, 0.05);
  background: #fff;
}

@media (min-width: 1024px) {
  .yacht-calendar-wrapper__main {
    width: 332px;
    max-width: 332px;
  }
  .yacht__details-rating-stars {
    gap: 2px;
  }
}

.yacht-calendar__guest-button-wrapper {
  /* Kolory bazowe jako zmienne — łatwo zmienić w jednym miejscu */
  --bg-default: #f9efe0;
  --bg-error: #f9d5d0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 10px 16px;
  border-radius: 8px;
  background: var(--bg-default);

  position: relative;

  transition: background-color 0.3s ease, transform 0.2s ease;
}


.yacht-calendar__guest-button-wrapper--error,
.yacht-calendar-wrapper__main--error {
  animation: pulsateRed 1s ease-in-out 1;
}


@keyframes pulsateRed {
  0%, 100% {
    background-color: var(--bg-default);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
  50% {
    background-color: var(--bg-error);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
  }
}

.yacht-calendar__guest-button-wrapper .guest-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%; /* makes hover background circular */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.2s ease;
}

.yacht-calendar__guest-button-wrapper .guest-button:hover {
  background: rgba(15, 26, 58, 0.08); /* soft hover background */
  transform: scale(1.1);
}

.yacht-calendar__guest-button-wrapper span {
  overflow: hidden;
  color: rgba(15, 26, 58, 0.8);
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-whyte);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  flex: 1;
  text-align: center;
}

.yacht-info-panel {
  display: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.yacht-info-panel.slide-enter-from,
.yacht-info-panel.slide-leave-to {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
}

.yacht-info-panel.slide-enter-to,
.yacht-info-panel.slide-leave-from {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}

.yacht-info-content {
  padding: 20px;
  text-align: center;
}

.yacht-info-content h3 {
  color: #0f1a3a;
  font-family: var(--font-whyte);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  margin: 0 0 12px 0;
}

.yacht-info-content p {
  color: #37405b;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 25.6px */
  margin: 0 0 16px 0;
}

.yacht-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f1a3a;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.yacht-info-icon {
  width: 16px;
  height: 16px;
}

/* Animation classes for Vue transitions */
.slide-enter-active,
.slide-leave-active {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-enter-from {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
}

.slide-leave-to {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
}

.calendar-price-menu__inner {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(15, 26, 58, 0.05);
  margin-bottom: 16px;
}

.price-wrapper {
  display: flex;
  gap: 16px;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.price-wrapper:-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.price-card {
  min-width: 268px;
  width: 268px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 16px;
  border: 1px solid rgba(15, 26, 58, 0.05);

  background: #fff;
}

.price-card__title {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card__list-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-card__list-item span {
  color: #37405b;
  font-family: var(--font-whyte);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 25.6px */
}

.calendar-price-menu__item {
  position: relative;
  display: flex;
  padding: 12px 8px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #0f1a3a;
  font-family: var(--font-whyte);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  cursor: pointer;
}

.calendar-price-menu__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #0f1a3a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.calendar-price-menu__item--active {
  font-weight: 400;
}

.calendar-price-menu__item--active::after {
  transform: scaleX(1);
}

.yacht-calendar-header {
  display: flex;
  flex-direction: column;
}

.yacht-calendar-header h2 {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 152% */
}

.yacht-calendar-header p {
  color: #37405b;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
}

.yacht-calendar-footer {
  padding: 0 16px;
}

.yacht-calendar-footer .yacht-calendar-footer__clear {
  color: #0f1a3a;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.yacht-calendar-footer .yacht-calendar-footer__clear:hover {
  cursor: pointer;
}

.yacht-offer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.yacht-offer-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.yacht-offer-section-title {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.3px;
}

.yacht-offer-section .offers-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 8px;
}

.yacht-offer-section .offers-list .offer-item {
  display: flex;
  align-items: center;
  padding: 4px 0px;
  gap: 8px;
}

.yacht-offer-section .offers-list .offer-item span,
.yacht-offer-other-toys {
  color: #37405b;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
}



.offer-list--hidden {
  display: none;
}

.line-sep {
  width: 100%;
  margin: 0 auto;
  height: 1px;
  background-color: rgba(15, 26, 58, 0.05);
}

.yacht-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .yacht-reviews {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-right: 0;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.yacht-reviews .reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.yacht-reviews .reviews__header-title .reviews__header-title__rating {
  display: flex;
  gap: 8px;
  align-items: center;
}

.yacht-reviews .reviews__header-title {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.yacht-reviews .reviews__header-title .reviews__header-title__rating span {
  color: #0f1a3a;

  /* Yachts/H5 */
  font-family: var(--font-saol);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 150% */
}

.reviews__wrapper {
  display: flex;
  gap: 16px;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.reviews__wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.review__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 311px;
  min-width: 311px;
  height: 262px;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(15, 26, 58, 0.05);
  background: #F9EFE0;
   transition: background-color 0.3s ease;
}

.review__item:hover {
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

@media (min-width: 1024px) {
  .reviews__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .review__item {
    width: auto;
  }
}

.review__item-title {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 30px */
}

.review__author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review__author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  object-fit: cover;
}

.review__author-name {
  color: #37405b;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}

.review__content {
  height: 100%;
}

.reviews-modal__content {
    scroll-behavior: smooth;
}

.review__item.highlight {
    background-color: #F9EFE0 !important;
}

.review__content p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #37405b;
  text-overflow: ellipsis;
  font-family: var(--font-whyte);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

.review__content--no-clamp p {
   -webkit-line-clamp: unset;
}

.review__item-footer {
  display: flex;
  gap: 4px;
  align-items: center;
}

.review__date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a4a39a;
}

.review__date .date {
  font-family: var(--font-whyte);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.review__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.crew {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 0;
}

@media (max-width: 1023.98px) {
  .crew {
    order: 5;
  }

  .crew::before {
    content: '';
    position: absolute;
    top: 0px;
    transform: translateX(-50%);
    left: 50%;
    width: calc(100% - 40px);
    right: 0;
    height: 1px;
    background-color: rgba(15, 26, 58, 0.05);
  }
}

.crew .crew__title {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 152% */
  margin-bottom: 8px;
}

.crew-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.crew__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.crew-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.crew__details .crew__description {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  transition: all 0.3s ease;

  color: #37405b;

  font-family: var(--font-whyte);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

.crew .crew__details .crew__description--expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.crew__details .crew__read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f1a3a;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  transition: all 0.3s ease;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.crew__details .crew__read-more--expanded svg {
  transform: rotate(180deg);
}
.swiper__crew {
  width: 100%;
  height: 242px;
  aspect-ratio: 178/119;
  position: relative;
}

.swiper__crew .swiper__crew-wrapper .swiper__crew-slide {
  border-radius: 8px;
}

.swiper__crew-indicator {
  background-color: #0f1a3a;
  border-radius: 8px;

  position: absolute;
  right: 8px;
  bottom: 8px;

  padding: 0 8px;

  font-size: 12px;
  font-family: var(--font-whyte);
  font-weight: 300;
  font-style: normal;
  line-height: 24px;
  z-index: 5;
  color: #f6f4e7;
  min-width: 20px;
}

.crew__featured {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crew__featured .crew__featured-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.crew__featured .crew__featured-item span {
  color: #37405b;
  font-size: 16px;
  font-family: var(--font-whyte);
  font-style: normal;
  font-weight: 300;
  line-height: 25.6px;
}

.yacht-delight {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .crew {
    display: flex;
    grid-column: 1 / -1;
    padding: 64px 0;
  }

  .crew-wrapper {
    flex-direction: row;
    gap: 32px;
  }

  .swiper__crew {
    width: 100%;
    height: 323px;
    min-width: 484px;
  }

  .yacht-delight {
    padding: 0 32px;
  }
  .yacht-delight__title.yacht-delight__title {
    padding-left: 0;
  }
}

.yacht-delight__title {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
}

.yacht-delight__menu {
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yacht-delight__menu > * {
  color: #37405b;
  font-family: var(--font-whyte);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 25.6px */
  text-align: left !important;
}

.yacht-delight__menu--expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

.yacht-delight__menu--expanded::after {
  display: none;
}

.yacht-delight__menu strong {
  margin-bottom: 16px;
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.yacht-delight__menu span:not(strong) {
  color: #37405b;
  font-family: var(--font-whyte) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

.yacht-delight__menu-gallery-preview {
  display: flex;
  gap: 8px;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding-left: 20px;
  padding-right: 20px;
}

.yacht-delight__menu-gallery-preview img {
  width: 143px;
  height: 143px;
  min-width: 143px;
  object-fit: cover;
}

.yacht-delight__menu-gallery-preview img:first-child {
  border-radius: 8px 0px 0px 8px;
}

.yacht-delight__menu-gallery-preview img:last-child {
  border-radius: 0 8px 8px 0;
}

.yacht-delight__menu-gallery-preview::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.see-all {
  color: #0f1a3a;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
   display: inline-block;
  position: relative;
}

.see-all:hover {
  color: #e3af64;
}

.reviews-modal {
  position: fixed;
  top: 0;
  left: 0;
  background: #fcfbf7;
  z-index: -1;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 64px 20px;
  
  /* Animation properties */
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.reviews-modal--opened {
  z-index: 9999;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.reviews-modal-header {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  margin-bottom: 20px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .reviews-modal-header {
    width: 700px;
    margin: 0 auto 48px auto;
  }
}



.reviews-modal-header h2 {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 152% */
}

.reviews-modal__content {
  max-height: 90vh;
  overflow-y: auto;
  width: 100%;
  max-width: 700px;
}

/* Scrollbar styl optional */
.reviews-modal__content::-webkit-scrollbar {
  display: none;
}

/* Opinie */
.reviews-modal__content .review__item {
  width: 100%;
  background-color: transparent;
  border: none;
  -webkit-line-clamp: unset;
  min-height: 314px;
  height: auto;
}

/* Separator */
.sep {
  width: 100%;
  height: 1px;
  background-color: rgba(15, 26, 58, 0.1);
  margin: 32px 0;
}

/* Yacht Booking Modal - Improved Styles */

/* Modal Overlay - Full Screen */
.yacht-booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: #fcfbf7;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease-out;
}

.yacht-booking-modal--show {
  display: block;
  z-index: 999999;

}

@media (min-width: 750px) {
  .yacht-booking-modal--show {
  overflow-y: auto;
  }
}

/* Modal Content Container - Full Height with Scroll */
.yacht-booking-modal__content {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: #fcfbf7;
  overflow-x: hidden;
}

/* Yacht Details Section */
.booking-form-yacht__details {
  padding: 32px 20px;
  background: #192c5d;
  color: #f6f4e7;
  position: relative;
}

/* Form Section */
.booking-fluent-form {
  padding: 30px 20px 100px 20px;
  background: #fcfbf7;
  position: relative;
}

/* Scrollable Content */
.yacht-booking-modal__content {
  overflow-y: auto;
  scroll-behavior: smooth;
}

@media (min-width: 1024px) {
  .yacht-booking-modal__content {
    display: flex;
    overflow-y: hidden;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 32px;
  }
}


/* Enhanced Scrollbar Styling for Full Height */
.yacht-booking-modal__content::-webkit-scrollbar {
  width: 12px;
}

.yacht-booking-modal__content::-webkit-scrollbar-track {
  background: rgba(25, 44, 93, 0.1);
}

.yacht-booking-modal__content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #192c5d, #1a2f63);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background 0.3s ease;
}

.yacht-booking-modal__content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1a2f63, #1e3470);
  background-clip: padding-box;
}

/* Firefox scrollbar */
.yacht-booking-modal__content {
  scrollbar-width: auto;
  scrollbar-color: #192c5d rgba(25, 44, 93, 0.1);
}

/* Animations */
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Design - Full Screen */
@media (max-width: 768px) {
  .yacht-booking-modal__close {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .yacht-booking-modal__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Focus and accessibility */
.yacht-booking-modal:focus-within {
  outline: none;
}

.yacht-booking-modal__content:focus {
  outline: 2px solid #192c5d;
  outline-offset: 4px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .yacht-booking-modal,
  .yacht-booking-modal__content,
  .yacht-booking-modal__close {
    animation: none;
    transition: none;
  }
}

.yacht-booking-modal__header,
.yacht-booking-desktop__close {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.yacht-booking-desktop__header {
  display: none;
}

.yacht-booking-modal__header span,
.yacht-booking-desktop__header span {
  color: #f6f4e7;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 32.5px */
}

.booking-fluent-form {
  position: relative;
}

.booking-fluent-form .decorators {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  position: absolute;
  left: 0;
  top: -25px;
}

.booking-fluent-form .decorators span {
  min-width: 37px;
  width: 37px;
  height: 37px;
  border-radius: 18px;
  background-color: #192c5d;
}

.booking-yacht-dates {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(246, 244, 231, 0.05);
  border-bottom: 1px solid rgba(246, 244, 231, 0.05);
}

.booking-yacht-dates .booking-yacht-dates__row .info {
  color: #f6f4e7;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
  padding: 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-yacht-dates .booking-yacht-dates__row .detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f6f4e7;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  padding: 4px 0;
}

.booking-yacht-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
}

.booking-yacht-price .booking-yacht-price__row,
.booking-yacht-dates .booking-yacht-dates__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 8px;
}

.booking-yacht-price .booking-yacht-price__row .info {
  color: #f6f4e7;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
  padding: 4px 0;
}

.booking-yacht-price .booking-yacht-price__row .price {
  color: #f6f4e7;
  text-align: right;
font-size: 16px;
  font-family: var(--font-saol);
font-style: normal;
font-weight: 500;
line-height: 140%; /* 22.4px */
  padding: 4px 0;
}

.booking-yacht-price .booking-yacht-price__row .price--big {
  text-align: right;
  font-family: var(--font-saol);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 30.8px */
  padding: 4px 0;
}

.booking-yacht-disclaimer {
    color: #37405B;
    color: #F6F4E7;

  font-family: var(--font-whyte);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 200% */
}

.booking-yacht-teaser {
  padding: 16px 0 24px 0;
  display: flex;
  gap: 16px;
}

.booking-yacht-teaser__details {
  overflow: hidden;
}

.booking-yacht-teaser .booking-yacht-teaser__image-wrapper {
  min-width: 126px;
  width: 126px;
  height: 84px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.booking-yacht-teaser .booking-yacht-teaser__image-wrapper:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(25, 44, 93, 0.1);
}

.booking-yacht-teaser .booking-yacht-teaser__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
  transform: scale(1);
}

/* Image hover effect */
.booking-yacht-teaser .booking-yacht-teaser__image-wrapper:hover img {
  transform: scale(1.05);
}

.booking-yacht-title {
  color: #f6f4e7;
  font-family: var(--font-saol);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 190% */
}

.booking-yacht-teaser__details .title-review {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-yacht-teaser__details .title-review .review {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f6f4e7;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.booking-yacht-teaser__details .location {
  align-items: center;
  display: flex;
  gap: 4px;
  color: #f6f4e7;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-yacht-teaser__details .others {
  padding-top: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f6f4e7;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 171.429% */
  white-space: nowrap;
}

.yacht-teaser__others-item--overflow {
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-form-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
     margin-bottom: 32px;
}

.booking-form-title .members-list {
  display: flex;
    gap: 16px;
    align-items: center;
}

.booking-form-title .members-list .member-logo {
    height: 12px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


.booking-form-title .members-list  .member-logo img { 
  max-height: 11px;
  width: auto; 
  object-fit: contain; 
  filter: brightness(0) saturate(100%) invert(24%) sepia(15%) saturate(1086%) hue-rotate(200deg) brightness(95%) contrast(93%);
  transition: filter 0.3s ease;
}

.member-img-2 {
  max-height: 14px!important;
}

.member-img-3 {
  max-height: 15px!important;
}

.booking-form-title span {
  color: #0f1a3a;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 32.5px */
  white-space: nowrap;
}

.full-screen-deck-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.full-screen-deck-overlay--opened {
  display: flex;
}

.full-screen-deck-img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  transform: rotate(-90deg);
}

.full-screen-deck-title {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  cursor: pointer;
  top: 64px;
  left: 20px;
}

@media (min-width: 1024px) {
  .booking-yacht-disclaimer {
    color: #37405B;
   }
  .full-screen-deck-title {
    width: 790px;
    margin: 0 auto;
    left: unset;
  }
}



.full-screen-deck-title span {
  color:  #0F1A3A;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 152% */
}

.booking-yacht-submit-button {
  display: none;
  height: 64px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 8px;
  background: #26428b;
  color: #f6f4e7;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 0.14px;
  margin-top: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.booking-yacht-submit-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.booking-yacht-submit-button:hover::before {
  width: 100%;
  height: 300px;
}
.booking-yacht-submit-button:hover {
  background-color: #0f1a3a;
}

.yacht-booking-desktop__header {
  width: 1040px;
  margin: 32px auto;
  cursor: pointer;
}
.yacht-booking-desktop__header span {
  color: #0f1a3a;
}

@media (min-width: 1024px) {
  .booking-yacht-submit-button {
    display: flex;
  }
  .booking-fluent-form {
    width: 605px;
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid rgba(15, 26, 58, 0.05);
    background: #fff;
    height: fit-content;
  }
  .booking-form-yacht__details {
    max-width: 423px;
    min-width: 432px;
  }
  .yacht-booking-modal__header {
    display: none;
  }
  .yacht-booking-desktop__header {
    display: flex;
  }
  .booking-fluent-form .decorators {
    display: none;
  }
  .booking-form-yacht__details {
    background-color: transparent;
  }
  .yacht-booking-modal__header span,
  .booking-yacht-teaser__details .others,
  .booking-yacht-teaser__details .location,
  .booking-yacht-teaser__details .title-review .review,
  .booking-yacht-price .booking-yacht-price__row .price,
  .booking-yacht-price .booking-yacht-price__row .info,
  .booking-yacht-dates .booking-yacht-dates__row .detail,
  .booking-yacht-dates .booking-yacht-dates__row .info,
  .booking-yacht-title {
    color: #0f1a3a;
  }

  .booking-yacht-dates {
    border-top: 1px solid rgba(15, 26, 58, 0.05);
    border-bottom: 1px solid rgba(15, 26, 58, 0.05);
  }
  .booking-form-yacht__details {
    padding-top: 0;
  }
  .booking-yacht-teaser {
    padding-top: 0;
  }
}


.map {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.map__title {
  color:#0F1A3A;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; 
}

.map__info {
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.map__info .map__location {
  display: flex;
  gap: 4px;
  align-items: center;
}

.map__info .map__location span { 
  color: #37405B;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; 
}

.map__link {
  display: flex;
  gap: 8px;
  align-items: center;
}

.map__link a {
  color:  #0F1A3A;
  font-family: var(--font-whyte);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.map__link:hover a,
.map__link:hover svg {
  color:#e3af64;
}


.map__wrapper {
  margin-top: 24px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}


.yacht-video {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
}

.yacht-video h2 {
  color:  #0F1A3A;
  font-family: var(--font-saol);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 152% */
}

.yacht-video__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yacht-video__wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(16, 21, 40, 0.50) 0%,
    rgba(54, 71, 133, 0.00) 17.78%
  );
}

.yacht-video__wrapper svg {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}


.yacht-video__wrapper:hover img,
.yacht-video__wrapper:hover video {
 transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.yacht-video__wrapper:hover::after {
  background: linear-gradient(
    180deg,
    rgba(16, 21, 40, 0.65) 0%,
    rgba(54, 71, 133, 0.15) 40%
  );
}

.yacht-video__wrapper:hover img,
.yacht-video__wrapper:hover video {
  transform: scale(1.05);
}

.yacht-video__placeholder,
.yacht-video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yacht-video__iframe {
  z-index: 7;
  border: 0;
}


@media (min-width: 1024px) {
  .yacht-video {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 32px;
}
  .yacht-map-component {
    padding: 0;
    grid-column: 1 / -1;
  }
  .map {
    padding: 0;
    margin-top: 0;
  }
  .map__wrapper {
    height: 240px;
  }
  .line-sep__full {
     grid-column: 1 / -1;
  }
}


