.hm-luxury-wrapper {
    background-color: #fff;
    font-family: 'Jost', sans-serif;
    color: #222;
}

.hm-gallery-mosaic-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 8px;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
    border-radius: 12px;
    overflow: hidden;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    cursor: pointer;
}

.mosaic-item:hover img {
    filter: brightness(0.9);
}

.main-item {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.mosaic-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.mosaic-item:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
    border-top-right-radius: 12px;
}

.mosaic-item:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

.mosaic-item:nth-child(5) {
    grid-column: 4;
    grid-row: 2;
    border-bottom-right-radius: 12px;
}

.view-all-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid #222;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.view-all-btn:hover {
    transform: scale(1.02);
    background: #f7f7f7;
}

.view-all-btn .material-symbols-outlined {
    font-size: 16px;
}

.hm-content-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.hm-title-header {
    margin-bottom: 25px;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.room-tag {
    font-size: 11px;
    font-weight: 700;
    color: #c77a53;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.rating-badge .material-symbols-outlined {
    font-size: 16px;
    color: #222;
    font-variation-settings: 'FILL' 1;
}

.hm-title-header h1 {
    font-family: 'Marcellus', serif;
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.2;
}

.location-line {
    font-size: 15px;
    color: #555;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.location-line .material-symbols-outlined {
    font-size: 18px;
}

.hm-feature-bar {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
}

.feature {
    display: flex;
    gap: 8px;
    font-size: 15px;
    color: #222;
}

.feature .material-symbols-outlined {
    font-size: 20px;
}

.hm-divider {
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
}

.hm-description-box {
    margin-bottom: 30px;
}

.host-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.host-badge img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.host-badge div {
    display: flex;
    flex-direction: column;
}

.host-badge strong {
    font-size: 16px;
    color: #222;
}

.host-badge span {
    font-size: 13px;
    color: #777;
}

.hm-description-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.hm-sleeping-arrangements h3, 
.hm-amenities-section h3, 
.hm-calendar-section h3 {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    margin-bottom: 20px;
}

.bed-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.bed-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bed-card .material-symbols-outlined {
    font-size: 28px;
    color: #c77a53;
}

.bed-card strong {
    font-size: 15px;
}

.bed-card span {
    font-size: 13px;
    color: #555;
}

.amenities-grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.amenity-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #444;
}

.amenity-row .material-symbols-outlined {
    font-size: 22px;
    color: #444;
}

.show-all-btn {
    background: #fff;
    border: 1px solid #222;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: 0.2s;
}

.show-all-btn:hover {
    background: #f7f7f7;
}

.hm-calendar-section .sub-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    display: block;
}

.mock-calendar-wrapper {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 15px;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 5px;
    font-size: 13px;
}

.day-name {
    font-weight: 600;
    color: #888;
    margin-bottom: 5px;
}

.day {
    padding: 8px 0;
    cursor: pointer;
    border-radius: 50%;
}

.day:hover:not(.empty) {
    background: #e0e0e0;
}

.day.active-start, .day.active-end {
    background: #222;
    color: #fff;
}

.day.active-range {
    background: #e0e0e0;
}

/* Sticky Sidebar */
.hm-content-sidebar {
    position: relative;
}

.hm-sticky-card {
    position: sticky;
    top: 100px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    background: #fff;
}

.card-price-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.price-number {
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.price-period {
    font-size: 14px;
    color: #555;
}

.rating-mini {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating-mini .material-symbols-outlined {
    font-size: 14px;
    font-variation-settings: 'FILL' 1;
}

.booking-inputs {
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.date-row {
    display: flex;
    border-bottom: 1px solid #b0b0b0;
}

.date-box {
    flex: 1;
    padding: 10px;
    cursor: pointer;
}

.date-box.in {
    border-right: 1px solid #b0b0b0;
}

.date-box label, .guest-box label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 2px;
}

.date-box span, .guest-box span {
    font-size: 13px;
    color: #555;
}

.guest-box {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.hm-reserve-gradient-btn {
    width: 100%;
    background: linear-gradient(90deg, #c77a53 0%, #a8623d 100%);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Jost', sans-serif;
}

.hm-reserve-gradient-btn:hover {
    filter: brightness(1.1);
}

.charge-note {
    text-align: center;
    font-size: 13px;
    color: #777;
    margin-top: 15px;
    margin-bottom: 20px;
}

.price-breakdown .pb-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
    text-decoration: underline;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-weight: 700;
    font-size: 16px;
    color: #222;
}

.hm-related-section {
    background: #f7f7f7;
    padding: 60px 0;
    margin-top: 60px;
    border-top: 1px solid #ddd;
}

.hm-related-section h3 {
    font-family: 'Marcellus', serif;
    font-size: 26px;
    margin-bottom: 30px;
    color: #222;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-card {
    cursor: pointer;
}

.r-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 0.95;
    margin-bottom: 12px;
}

.r-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-card:hover .r-img img {
    transform: scale(1.05);
}

.fav-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    cursor: pointer;
}

.r-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.r-head h4 {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.r-head span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.r-head .star {
    font-size: 14px;
    font-variation-settings: 'FILL' 1;
}

.r-desc {
    font-size: 14px;
    color: #777;
    display: block;
}

.r-date {
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 6px;
}

.r-price {
    font-size: 15px;
    color: #222;
}

.r-price strong {
    font-weight: 700;
}

@media (max-width: 992px) {
    .hm-gallery-mosaic-container { grid-template-columns: 1fr; grid-template-rows: 250px; }
    .mosaic-item:not(.main-item) { display: none; } 
    .hm-content-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }
}

/* Room List */
.rm-list-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Jost', sans-serif;
}

.rm-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.rm-header-center {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rm-subtitle {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #c77a53;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.rm-title {
    font-family: 'Marcellus', serif;
    font-size: 48px;
    color: #2a1b15;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rm-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.rm-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.rm-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.rm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.rm-image-box {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.rm-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rm-card:hover .rm-image-box img {
    transform: scale(1.1);
}

.rm-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.rm-badge {
    background-color: #2a1b15;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.rm-badge.premium {
    background-color: #c77a53;
}

.rm-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.rm-card:hover .rm-actions {
    opacity: 1;
    transform: translateX(0);
}

.rm-action-btn {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a1b15;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.rm-action-btn:hover {
    background: #c77a53;
    color: #fff;
}

.rm-action-btn .material-symbols-outlined {
    font-size: 18px;
}

.rm-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rm-meta-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.rm-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.rm-meta .material-symbols-outlined {
    font-size: 18px;
    color: #c77a53;
}

.rm-room-title {
    font-family: 'Marcellus', serif;
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.rm-room-title a {
    color: #2a1b15;
    text-decoration: none;
    transition: 0.3s;
}

.rm-room-title a:hover {
    color: #c77a53;
}

.rm-room-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.rm-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.rm-price-box {
    display: flex;
    flex-direction: column;
}

.rm-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2px;
}

.rm-price {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: #c77a53;
    font-weight: 600;
}

.rm-period {
    font-size: 13px;
    color: #555;
    font-weight: 400;
}

.rm-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #2a1b15;
    color: #2a1b15;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.rm-book-btn:hover {
    background-color: #c77a53;
    border-color: #c77a53;
    color: #fff;
}

.rm-book-btn .material-symbols-outlined {
    font-size: 16px;
}

.rm-pagination-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.rm-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #2a1b15;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.page-link:hover {
    border-color: #c77a53;
    color: #c77a53;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.page-link.active {
    background-color: #c77a53;
    border-color: #c77a53;
    color: #fff;
    cursor: default;
    pointer-events: none;
}

.page-link.prev, .page-link.next {
    width: 50px;
    height: 50px;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
    border-color: #eee;
}

.page-dots {
    color: #999;
    font-size: 18px;
    padding: 0 5px;
}

@media (max-width: 1200px) {
    .rm-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rm-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .rm-title {
        font-size: 36px;
    }
    .rm-pagination {
        gap: 5px;
    }
    .page-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .page-link.prev, .page-link.next {
        width: 40px;
        height: 40px;
    }
}