.cozyhotelroom-section {
    margin: 60px auto;
    text-align: center;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
}

.section-title span {
    color: #53624e;
    margin-bottom: 0;
    font-family: Jost, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
}

.section-title h3 {
    font-family: 'Marcellus', serif;
    margin-top: 20px;
    line-height: 1.35;
    font-size: 48px;
    color: #1a1b1a;
    margin-bottom: 0;
    font-style: normal;
    word-wrap: break-word;
}

.section-title {
    font-family: 'Marcellus', serif;
    font-size: 36px;
    font-weight: 500;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.discover-all {
    background: #b99d75;
    color: #fff;
    padding: 0 47px;
    text-decoration: none;
    font-family: 'Marcellus', serif;
    transition: background 0.3s ease;
    height: 52px;
    font-size: 16px;
    font-family: 'Marcellus', serif;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.room-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 50px 0px 0px 0px;
    }

.room-card {
    text-align: left;
}

.room-image {
    position: relative;
    margin: 0 0 22px;
    overflow: hidden;
    height: 370px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-image:hover img {
    transform: scale(1.1);
}

.room-price {
     position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    font-size: 12px;
    padding: 10px 14px;
    font-weight: 500;
    color: #000;
    z-index: 1000;
    text-transform: uppercase;
    font-family: 'Marcellus', serif;
}

.room-title {
    font-family: 'Marcellus', serif;
    font-size: 30px;
    margin: 10px 0;
    color: #1a1b1a;
    margin-bottom: 10px;
}

.room-meta {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: #444;
}

.room-meta li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.room-meta i {
    margin-right: 6px;
}

.room-desc {
    font-size: 16px;
    color: #333632;
    font-family: 'Jost', sans-serif;
    margin: 15px 0;
    line-height: 1.6;
}

.room-link {
    display: inline-block;
    font-family: 'Marcellus', serif;
    font-size: 14px;
    color: #1a1b1a;
    position: relative;
    text-decoration: none;
    padding: 7px 0;
}

.room-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #bfa380;
  margin-top: 4px;
  transition: transform 0.4s ease;
  transform-origin: right;
}

.room-link:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}


.cozyhotelroom-section .owl-dots {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cozyhotelroom-section .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 5px;
    background: #ccc;
    display: block;
    border-radius: 50%;
}

.cozyhotelroom-section .owl-dot.active span {
    background: #333;
}

@media  (max-width: 992px) {
    .section-header {
        display: flex;
        flex-direction: column;
    }

    .section-title span {
        text-align: center;
        display: block;
    }

    .section-title h3 {
        font-size: 32px;
        text-align: center;
    }
    
    .discover-all {
        margin-top: 30px
    }
}