.dyc-carousel.swiper {
  width: 100%;
}

.dyc-carousel .swiper-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dyc-carousel .card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 360px;
}

.dyc-carousel .image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  /* or 1/1 */
  overflow: hidden;
  background: #f2f2f2;
  /* visual consistency */
}

.dyc-carousel .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔥 KEY */
  object-position: center;
  display: block;
}

.dyc-carousel .card-body {
  padding: 16px;
  text-align: left;
  /* 🔥 IMPORTANT */
  flex-grow: 1;
}

.dyc-carousel .titlesec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.dyc-carousel .card-body h2 {
  text-align: center;
  font-size: 26px;
  margin: 0px;
  font-weight: 700;
  padding-bottom: 0px;
}

.dyc-carousel p.yatchlenth {
  padding: 0px;
}

.dyc-carousel p {
  text-align: center;
  padding: 5px 0px 0px;
}

.dyc-carousel ul {
  padding: 0px !important;
  margin: 0px 10px 5px 10px;
}

.dyc-carousel ul li {
  display: inline-block;
  width: 100%;
  max-width: 49%;
  padding: 0px 0px 2px;
  font-size: 14px;
  text-align: left;
}

.dyc-carousel ul li:nth-child(even) {
  text-align: right;
}

.dyc-carousel .actions a {
  text-decoration: none;
  color: #fff;
  width: 100%;
  max-width: 100px;
  display: inline-block;
  padding: 10px;
  background: #2074b3;
}

.dyc-carousel-title {
  font-weight: bold;
  text-transform: capitalize;
}

.dyc-carousel-yacht-info {
  font-size: 14px;
  font-family: 'Times New Roman', Times, serif;
}

.dyc-carousel-yacht-prices {
  font-weight: 600;
  font-family: 'Times New Roman', Times, serif;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: visible
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.custom-prev {
  left: -50px;
  /* carousel வெளியே */
}

.custom-next {
  right: -50px;
  /* carousel வெளியே */
}

.dyc-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.dyc-carousel-yacht-title {
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 16px;
}