/*------------------- New Design Changes -------------------*/
/*------------------- search-wrapper CSS -------------------*/
.maindiv {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 30px;
  padding: 70px 0;
}
.search-wrapper {
  display: flex;
  width: 100%;
  background-color: #ffffff;
  padding: 24px;
  text-align: center;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.search-wrapper .search-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.search-wrapper .search-form input,
.search-wrapper .search-form select,
.search-wrapper .search-form button {
  border-radius: 4px;
  width: 32.333%;
}
.search-wrapper .search-form input:focus,
.search-wrapper .search-form select:focus,
.search-wrapper .search-form button:focus {
  border-style: solid;
  border-color: #dddddd;
}
.search-wrapper .search-form select {
  cursor: pointer;
}
.search-wrapper .search-form button {
  background-color: #c5a862;
  color: #ffffff;
  border-radius: 4px;
  width: 32.333%;
  padding: 0;
  font-weight: 400;
  font-size: initial;
}
.search-wrapper .search-form button:hover {
  background-color: #111111;
}

/*------------------- listing wrapper CSS -------------------*/
.listing-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 0;
  margin: 0;
  max-width: 100%;
}
.listing-wrapper .listing-grid {
  display: grid;
  grid-template-columns: repeat(4,  minmax(0, 1fr));
  gap: 15px;
}
.listing-wrapper .listing-grid .listing-item {
  border: 0px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.listing-wrapper .listing-grid .listing-item a {
  display: flex;
  border-radius: 4px;
}
.listing-wrapper .listing-grid .listing-item a img {
  border-radius: 4px 4px 0 0;
  width: 100%;
  height: calc(100px + 60 * (100vw - 320px) / 1600);
  object-fit: cover;
}
.listing-wrapper .listing-grid .listing-item h3 {
  display: flex;
  margin: 12px 0 10px 0;
  font-size: 18px;
  justify-content: flex-start;
  line-height: 1.4;
}
.listing-wrapper .listing-grid .listing-item h3 a {
  display: flex;
  font-size: 18px;
  color: #111111;
  padding: 0 12px;
  text-align: left;
}
.listing-wrapper .listing-grid .listing-item h3 a:hover {
  color: #c5a862;
}
.listing-wrapper .listing-grid .listing-item p {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  padding: 0 12px;
  margin: 0 0 12px 0;
  color: #555555;
  font-size: 14px;
}
/*------------------- pagination CSS -------------------*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  margin: 25px 0px 0 0;
}
.pagination a {
  display: flex;
  padding: 3px 12px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  min-width: 32px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
}
.pagination a:hover,
.pagination a.active {
  background-color: #c5a862;
  color: #ffffff;
}

/*------------------- single/details page CSS -------------------*/
.yacht-single {
  display: flex;
  width: 100%;
  flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
  padding: 70px 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.yacht-single-title {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
.yacht-single-title h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0;
}
.yacht-single-slider-n-agent {
  display: flex;
  width: 100%;
  gap: 15px;
  align-items: flex-start;
  justify-content: space-between;
}
.yacht-single-slider {
  width: 100%;
  max-width: calc(100% - 265px);
  flex: 1;
}
.yacht-agent {
  display: flex;
  width: 250px;
  margin: 0;
}
.agent-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  border: 0;
  padding: 12px;
  text-align: center;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.agent-card h2 {
  font-size: 32px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  line-height: 1.3em;
}
.agent-card h2 span {
  color: #c5a862;
}
.agent-card img {
  margin: 15px 0;
  border-radius: 0;
  width: auto;
}
.agent-card h3 {
  font-size: 26px;
  color: #111111;
  margin: 5px 0;
  width: 100%;
  text-align: left;
}
.agent-card p {
  width: 100%;
  text-align: left;
}
.agent-card ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 0;
  padding: 0;
  text-align: left;
}
.agent-card ul li {
  display: flex;
  align-items: center;
  margin: 2px 0;
  list-style: none;
  gap: 5px;
}
.agent-card ul li a {
  word-break: break-all;
}
.agent-card ul li a:hover {
  color: #c5a862;
}
.yacht-details-wrap {
  display: flex;
  width: 100%;
  gap: 15px;
  background-color: #ffffff;
  padding: 15px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  align-items: flex-start;
}
.yacht-details-heading {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.yacht-details-heading .flag-registry {
  font-size: 13px;
}
.yacht-details-heading h2 {
  font-size: 40px;
  line-height: 1.1;
}
.yacht-details-heading h4 {
  font-size: 24px;
  line-height: 1.5;
}
.yacht-details-heading p {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.yacht-share-buttons {
  display: flex;
  width: 100%;
  margin: 15px 0;
  padding: 0;
  gap: 10px;
  flex-wrap: wrap;
}
.yacht-share-buttons li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  cursor: pointer;
}
.yacht-share-buttons li.facebook {
  background: #3b5998;
}
.yacht-share-buttons li.twitter {
  background: #1da1f2;
}
.yacht-share-buttons li.pinterest {
  background: #e60023;
}
.yacht-share-buttons li.email {
  background: #6c757d;
}
.yacht-share-buttons li.comment-sms {
  background: #28a745;
}
.yacht-share-buttons li.share-nodes {
  background: #ff9800;
}
.yacht-share-buttons li a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}
.yacht-share-buttons li a i {
  color: #fff;
}
.yacht-featured-list {
  display: flex;
  width: 100%;
  margin: 15px 0;
  padding: 0;
  gap: 10px;
  flex-wrap: wrap;
}
.yacht-featured-list li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 32px;
  border: 1px solid #dfdfdf;
  width: max-content;
  font-size: 13px;
  line-height: normal;
  border-radius: 4px;
}
.yacht-vessel-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  margin: 10px 0;
}
.yacht-details-features {
  width: 300px;
  text-align: left;
}
.yacht-details-features ul {
  margin-left: 0;
}
.yacht-details-features ul li {
  list-style: none;
  padding: 5px 20px;
  border: 1px solid #dddddd;
  border-bottom: 0;
}
.yacht-details-features ul.yacht-features {
  margin-bottom: 0;
}
.yacht-other-features li:last-child {
  border: 1px solid #dddddd;
}
.yacht-details-bonusbox {
  display: flex;
  width: 220px;
  flex-direction: column;
  border: 1px solid #dfdfdf;
  padding: 12px;
  border-radius: 4px;
  align-items: center;
}
.main-btn {
  background: none !important;
  border: 2px solid #c5a862 !important;
  color: #000 !important;
  padding: 7px 15px !important;
  transition: all 0.4s ease-in-out;
  transform: rotate(360deg) scale(1.003) skew(-14deg) translate(0px);
  text-align: center;
}
.main-btn:hover {
  color: #ffffff !important;
  background-color: #c5a862 !important;
}
.yacht-details-bonusbox-head {
  font-size: 22px;
  text-align: center;
  background-color: #111111;
  padding: 12px;
  border-radius: 4px;
  color: #ffffff;
  line-height: 1.4;
}
.yacht-details-bonusbox-price {
  color: #c5a862;
  font-size: 28px;
  text-align: center;
  line-height: 1.2;
  margin: 25px 0;
}
.yacht-details-bonusbox-contact {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 0 0 25px 0;
  padding: 0;
  text-align: left;
}
.yacht-details-bonusbox-contact li {
  display: flex;
  align-items: center;
  margin: 2px 0;
  list-style: none;
  gap: 5px;
}
.yacht-details-bonusbox-contact li a {
  word-break: break-all;
  padding: 3px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  border-radius: 4px;
  font-style: italic;
  transition: all 0.4s ease-in-out;
  transform: rotate(360deg) scale(1.003) skew(-14deg) translate(0px);
}
.yacht-details-bonusbox-contact li a:hover {
  background-color: #111111;
  color: #ffffff;
}
.yacht-details-bonusbox-contact li:last-child a {
  font-size: 13px;
  font-style: normal;
  padding: 6px;
  margin-top: 15px;
}

/*------------------- Box Wraper CSS -------------------*/
.yacht-box-wraper {
  display: flex;
  width: 100%;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 10px 20px;
  flex-wrap: wrap;
}
.yacht-box-wraper-heading {
  display: flex;
  width: 100%;
  background-color: #111111;
  padding: 12px;
  border-radius: 4px;
  margin: 20px 0;
  border-bottom: 4px solid #c5a862;
}
.yacht-box-wraper-heading h3 {
  font-size: 22px;
  margin: 0;
  color: #ffffff;
  font-family: Play, sans-serif;
  gap: 10px;
}
.yacht-box-wraper-heading h3 small {
  font-size: 13px;
}
.yacht-box-wraper h2,
.yacht-box-wraper h3,
.yacht-box-wraper h4,
.yacht-box-wraper h5,
.yacht-box-wraper h6 {
  display: flex;
  width: 100%;
  font-family: Play, sans-serif;
}
.yacht-box-wraper-content {
  display: flex;
  width: 100%;
  gap: 20px;
}
.yacht-box-wraper-content-boxes {
  display: flex;
  flex-direction: column;
}
.yacht-box-specifications {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  flex: 1;
}
.catamaran-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 20px;
}

.gallery-item {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catamaran-gallery .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.catamaran-gallery .gallery-item:hover .overlay {
  opacity: 1;
}
/* .catamaran-slider-wrapper {
  max-width: 900px; 
  margin: 0 auto;
} */

.catamaran-main-slider {
  width: 100%;
  height: 500px;
}

.catamaran-main-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catamaran-thumbs-slider {
  margin-top: 15px;
  height: 120px;
  box-sizing: border-box;
}

.catamaran-thumbs-slider .swiper-slide {
  width: 100px;
  height: 100%;
  opacity: 0.5;
  cursor: pointer;
}

.catamaran-thumbs-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #007bff;
}

.catamaran-thumbs-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.multiple-video-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.multiple-video-section .video-inner {
  height: 400px;
  width: 100%;
}
.multiple-video-section .video-inner iframe {
  width: 100%;
  height: 100%;
}

.ai-generated-broker-notes {
background: rgba(212, 175, 55, 0.15); /* gold highlight with 15% opacity */
border-left: 4px solid rgba(212, 175, 55, 0.5); /* semi-opaque gold border */
border-radius: 8px;
padding: 1rem 1.25rem;
margin: 1.5rem 0;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
font-family: "Georgia", serif;
}


.ai-generated-broker-notes .review-title {
font-size: 1.1rem;
font-weight: 700;
color: #7c6f3c; /* darker gold text */
margin: 0 0 0.5rem;
text-transform: uppercase;
letter-spacing: 0.5px;
font-style: italic;
}


.ai-generated-broker-notes .review-text {
font-size: 1rem;
font-style: italic;
color: #2e2e2e;
line-height: 1.6;
margin: 0;
}



/*------------------- Responsive CSS -------------------*/
@media (max-width: 1440px) {
}
@media (max-width: 1366px) {
}
@media (max-width: 1199px) {
}
@media (max-width: 1024px) {
}
@media (max-width: 991px) {
}

@media (max-width: 768px) {
  .search-wrapper {
    padding: 12px;
  }
  .search-wrapper .search-form input,
  .search-wrapper .search-form select,
  .search-wrapper .search-form button {
    width: 32%;
  }
  .search-wrapper .search-form input,
  .search-wrapper .search-form select,
  .search-wrapper .search-form button {
    width: 29%;
    padding: 8px;
  }
  .listing-wrapper .listing-grid {
    grid-template-columns: repeat(2,  minmax(0, 1fr)) !important;
  }
  .yacht-single-slider-n-agent {
    flex-direction: column;
  }
  .yacht-single-slider {
    max-width: calc(100% - 0px);
  }
  .yacht-details-wrap {
    flex-direction: column;
  }
  .catamaran-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .yacht-single {
    padding: 40px 0;
  }
  .yacht-details-heading h2 {
    font-size: 30px;
  }
  .yacht-details-heading p {
    font-size: 18px;
  }
  .yacht-details-features {
    width: 100%;
  }
  .yacht-box-specifications {
    grid-template-columns: repeat(2,  minmax(0, 1fr));
  }
  .multiple-video-section {
    flex-direction: column;
  }
  .yacht-box-wraper-content {
    flex-direction: column;
  }
  .yacht-single h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
}
@media (max-width: 576px) {
  .listing-wrapper .listing-grid {
    grid-template-columns: repeat(2,  minmax(0, 1fr)) !important;
  }
}
