/* =========================================================
   PREVIEW WRAPPER
========================================================= */
body {
  background: #eef2f5;
  font-family: 'Poppins', sans-serif;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.preview-wrapper {
  width: 380px;
}

/* =========================================================
   CARD BASE
========================================================= */
.cruise-card {
  background: #ffffff;
  border: 2px solid #d0d0d0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.cruise-card:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  transform: translateY(-3px);
}

/* =========================================================
   IMAGE
========================================================= */
/* .cruise-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
} */

.cruise-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden; /* ensures rounded corners clip cleanly */
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Soft drop shadow under the image */
.cruise-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.12) 60%,
    rgba(0,0,0,0.18) 100%
  );
}

.cruise-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cruise-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 4px;
}

.cruise-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* =========================================================
   CONTENT PANEL
========================================================= */
.cruise-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left; /* LEFT JUSTIFIED */
}

/* =========================================================
   LOGO
========================================================= */
.cruise-line-logo {
  width: 250px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 6px;
}

/* =========================================================
   TITLE + SUBTITLE
========================================================= */
.cruise-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #003366;
}

.cruise-subtitle {
  font-size: 14px;
  color: #555;
  margin-top: -4px;
}

/* =========================================================
   INFO ROW
========================================================= */
.cruise-info-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cruise-info-item {
  display: flex;
  flex-direction: column;
}

.label {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value {
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
}

/* =========================================================
   ITINERARY
========================================================= */
.cruise-itinerary .value {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

/* =========================================================
   PRICE + BUTTON
========================================================= */
.cruise-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.price-label {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
}

.price-amount {
  font-size: 24px;
  font-weight: 700;
  color: #1a3d7c;
  margin-top: 2px;
}

.cruise-details-btn {
  padding: 10px 18px;
  background: #1a3d7c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cruise-details-btn:hover {
  background: #142f60;
}
