/* Cabins by Size Grid */
.cabin-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cabin-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 250px;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cabin-card a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.cabin-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.cabin-card p {
  margin: 5px 0;
}

.cabin-card p:first-of-type {
  margin-top: 10px;
}

.cabin-title {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

.cabin-thumb {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
}
/* Text details */
.cabin-dimension {
    margin: 5px 0;
}

.cabin-area {
    margin: 5px 0;
    font-weight: bold;
}
