/* Card Container */
.dhr-hotel-room-card {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #e0e0e0; */
    border-radius: 0px;
    overflow: hidden;
    /* background-color: #ffffff; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
}
.dhr-card-meta > div:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.dhr-card-meta > div:first-child > div {
    display: inline-flex;
    align-items: center;
}

.dhr-card-meta > div:first-child > div:not(:last-child)::after {
    content: '·';
    margin: 0 10px;
    font-size: 22px;
    line-height: 1em;
}
/* Card Header */
.dhr-card-header {
    position: relative;
    width: 100%;
}

.dhr-card-media {
    position: relative;
    width: 100%;
    height: 250px; /* Default height overridden by control */
    overflow: hidden;
	border-radius: 4px;
}

.dhr-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper Adjustments */
.dhr-card-media.swiper-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
}

.dhr-carousel-pagination .swiper-pagination-bullet {
    --swiper-pagination-bullet-size: 10px;
    background: #ffffff;
    opacity: 1;
    
}

.dhr-carousel-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #c99d65;
}

/* Price Badge Positions */
.dhr-price-badge {
    position: absolute;
    z-index: 10;
    background-color: #0073aa;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

.dhr-price-badge.dhr-pos-top-left {
    top: 20px;
    left: 20px;
}

.dhr-price-badge.dhr-pos-top-right {
    top: 15px;
    right: 15px;
}

.dhr-price-badge.dhr-pos-bottom-left {
    bottom: 15px;
    left: 15px;
}

.dhr-price-badge.dhr-pos-bottom-right {
    bottom: 15px;
    right: 15px;
}

/* Card Body */
.dhr-card-body {
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dhr-card-title {
    margin: 0;
    color: #222222;
    font-size: 20px;
    font-weight: 700;
}

.dhr-card-guests {
    font-size: 14px;
    color: #666666;
}


/* Amenities List */
.dhr-amenities-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px !important;
    /* margin: 4px 0; */
    max-height: 54px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dhr-amenities-wrapper:hover {
    max-height: 500px;
}

.dhr-amenity-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    font-size: 14px;
    color: #444444;
}

.dhr-amenity-item i {
    flex-shrink: 0;
    font-size: 16px;
    color: #0073aa;
}

.dhr-amenity-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}

.dhr-amenity-item svg path {
    fill: inherit;
}

/* Description */
.dhr-card-description {
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
}

/* Button */
.dhr-card-button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-color: #0073aa;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    /* margin-top: 8px; */
}

.dhr-card-button:hover {
    background-color: #005177;
    color: #ffffff;
}

.dhr-hotel-room-card .swiper-pagination-bullets.swiper-pagination-horizontal:not(.package-swiper-pagination.swiper-pagination-horizontal):not(.bys-room-image-pagination.swiper-pagination-horizontal) {
    left: 0px !important;
    transform: unset !important;
    text-align: left;
    padding-left: 20px;
    bottom: 20px;
}