.accommodation-box {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    background: #fff;
    width: 400px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #333;
    opacity: 0.5;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: opacity 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}

.accommodation-slider {
    position: relative;
    height: 220px;
    width: 100%;
}

.accommodation-slider .swiper-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e91e63;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
    z-index: 10;
}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.accommodation-content {
    padding: 16px;
}

.accommodation-title {
    margin: 0 0 4px;
    font-size: 1.25rem;
    font-weight: 600;
}

.location {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 8px;
}

.rating {
    font-size: 0.9rem;
    color: #fbc02d;
    margin-bottom: 12px;
}

.description {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #444;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    color: #555;
}

.amenities li {
    background: #f2f2f2;
    padding: 4px 8px;
    border-radius: 8px;
}

.price-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.price {
    font-size: 1rem;
    color: #333;
}

.cta-button {
    background-color: transparent;
    border: 1px solid #B39342;
    padding: 8px 16px;
    text-transform: uppercase;
    border-radius: 0px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #B39342;
    color: #000;
}