/* ============================================================
   NOLIA Rooms — Category list page
   ============================================================ */
:root {
    --nd-moss: #526248;
    --nd-bronze: #af9666;
    --nd-cream: #f4f2eb;
    --nd-sand: #edeae0;
    --nd-line: rgba(82, 98, 72, 0.12);
}

.rooms-page {
    background-color: var(--nd-cream);
}

.nd-rooms-list {
    padding: 96px 0 120px;
    background-color: var(--nd-cream);
    color: var(--nd-moss);
}

.nd-rooms-list .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.nd-rooms-list__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    color: var(--nd-bronze);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nd-rooms-list__back:hover {
    opacity: 0.75;
}

.nd-rooms-list__back i {
    transition: transform 0.3s ease;
}

.nd-rooms-list__back:hover i {
    transform: translateX(-4px);
}

/* Header — cover + intro */
.nd-rooms-list__header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 56px;
}

@media (min-width: 992px) {
    .nd-rooms-list__header {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.nd-rooms-list__cover {
    overflow: hidden;
    border: 1px solid var(--nd-line);
    background-color: var(--nd-sand);
}

.nd-rooms-list__cover img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: grayscale(10%);
}

.nd-rooms-list__intro .nd-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--nd-bronze);
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.nd-rooms-list__title {
    margin: 0 0 20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    color: var(--nd-moss);
}

.nd-rooms-list__blurb {
    margin: 0 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(82, 98, 72, 0.85);
}

.nd-rooms-list__caption {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(82, 98, 72, 0.7);
}

/* Section title */
.nd-rooms-list__section-title {
    margin: 0 0 32px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--nd-line);
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 600;
    color: var(--nd-moss);
}

.nd-rooms-list__section-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nd-rooms-list__section-title a:hover {
    color: var(--nd-gold, #AF9666);
}

.nd-rooms-list__subsection {
    margin-bottom: 56px;
}

.nd-rooms-list__subsection:last-child {
    margin-bottom: 0;
}

.nd-rooms-list__subsection-head {
    margin-bottom: 24px;
}

.nd-rooms-list__subsection-desc {
    margin: -16px 0 24px;
    font-size: 14px;
    color: rgba(82, 98, 72, 0.8);
    line-height: 1.6;
}

/* Grid */
.nd-rooms-list__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .nd-rooms-list__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .nd-rooms-list__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.nd-rooms-list__card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--nd-line);
    background-color: var(--nd-sand);
    color: var(--nd-moss);
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.4s ease;
}

.nd-rooms-list__card:hover {
    border-color: rgba(175, 150, 102, 0.5);
}

.nd-rooms-list__card-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.nd-rooms-list__card-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.nd-rooms-list__card:hover .nd-rooms-list__card-thumb img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.nd-rooms-list__card-price {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 14px;
    border: 1px solid rgba(244, 242, 235, 0.35);
    background-color: rgba(82, 98, 72, 0.88);
    color: var(--nd-cream);
    backdrop-filter: blur(4px);
}

.nd-rooms-list__card-amounts {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.nd-rooms-list__card-from {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
}

.nd-rooms-list__card-amount {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nd-rooms-list__card-amount-old {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.7;
}

.nd-rooms-list__card-discount {
    margin-top: 4px;
    padding-top: 6px;
    color: var(--nd-cream);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(244, 242, 235, 0.35);
}

.nd-rooms-list__card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.nd-rooms-list__card-title {
    margin: 0 0 10px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.25;
    color: var(--nd-moss);
    transition: color 0.3s ease;
}

.nd-rooms-list__card:hover .nd-rooms-list__card-title {
    color: var(--nd-bronze);
}

.nd-rooms-list__card-desc {
    flex: 1;
    margin: 0 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(82, 98, 72, 0.85);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(14px * 1.6 * 3);
}

.nd-rooms-list__card-desc > * {
    display: inline;
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

.nd-rooms-list__card-desc br {
    display: none;
}

.nd-rooms-list__card-cta {
    margin-top: auto;
    color: var(--nd-bronze);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* Empty */
.nd-rooms-list__empty {
    text-align: center;
    padding: 64px 24px;
    border: 1px dashed var(--nd-line);
    background-color: var(--nd-sand);
    color: var(--nd-moss);
}

.nd-rooms-list__empty i {
    font-size: 36px;
    color: var(--nd-bronze);
    margin-bottom: 16px;
}

.nd-rooms-list__empty h3 {
    margin: 0 0 8px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

.nd-rooms-list__empty p {
    margin: 0 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(82, 98, 72, 0.75);
}

/* Pagination spacing */
.nd-rooms-list .pagination,
.nd-rooms-list .nd-pagination {
    margin-top: 48px;
}

/* ============================================================
   Room detail
   ============================================================ */
.room-detail-page {
    background-color: var(--nd-cream);
}

.nd-room-detail {
    padding: 20px 0 120px;
    background-color: var(--nd-cream);
    color: var(--nd-moss);
}

.nd-room-detail .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.nd-room-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    color: var(--nd-bronze);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nd-room-detail__back:hover {
    opacity: 0.75;
}

.nd-room-detail__back:hover i {
    transform: translateX(-4px);
}

.nd-room-detail__back i {
    transition: transform 0.3s ease;
}

/* Header */
.nd-room-detail__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .nd-room-detail__header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.nd-room-detail__heading .nd-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--nd-bronze);
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.nd-room-detail__title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.1;
    color: var(--nd-moss);
    letter-spacing: -0.01em;
}

.nd-room-detail__price-box {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 20px;
    border: 1px solid rgba(82, 98, 72, 0.2);
    background-color: var(--nd-sand);
}

.nd-room-detail__price-amounts {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.nd-room-detail__price-from {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(82, 98, 72, 0.7);
}

.nd-room-detail__price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--nd-moss);
}

.nd-room-detail__price-amount-old {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(82, 98, 72, 0.6);
    text-decoration: line-through;
}

.nd-room-detail__price-discount {
    margin-top: 4px;
    padding-top: 6px;
    color: var(--nd-moss);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(82, 98, 72, 0.2);
}

/* Hero */
.nd-room-detail__hero {
    overflow: hidden;
    margin-bottom: 56px;
    aspect-ratio: 21 / 9;
}

.nd-room-detail__hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease-out;
}

.nd-room-detail__hero:hover img {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .nd-room-detail__hero {
        aspect-ratio: 21 / 8;
        margin-bottom: 72px;
    }
}

.nd-room-detail__carousel-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.nd-room-detail__carousel,
.nd-room-detail__carousel .owl-stage-outer,
.nd-room-detail__carousel .owl-stage,
.nd-room-detail__carousel .owl-item,
.nd-room-detail__slide {
    height: 100%;
}

.nd-room-detail__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-room-detail__carousel .owl-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.nd-room-detail__carousel .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.3s ease, transform 0.3s ease;
}

.nd-room-detail__carousel .owl-dots .owl-dot.active span {
    background: #fff;
    transform: scale(1.2);
}

.nd-room-detail__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.85);
    color: var(--nd-moss);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nd-room-detail__nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}

.nd-room-detail__nav--prev {
    left: 16px;
}

.nd-room-detail__nav--next {
    right: 16px;
}

/* Body */
.nd-room-detail__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 992px) {
    .nd-room-detail__body {
        grid-template-columns: 2fr 1fr;
        gap: 64px;
    }
}

.nd-room-detail__section-title {
    margin: 0 0 18px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 600;
    color: var(--nd-moss);
}

.nd-room-detail__lead {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(82, 98, 72, 0.85);
    white-space: pre-line;
}

.nd-room-detail__about .nd-room-detail__lead {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(82, 98, 72, 0.9);
    margin-bottom: 24px;
}

.nd-room-detail__card .nd-room-detail__lead {
    margin: 0 0 28px;
    padding-bottom: 24px;
    border-bottom: 1px dashed rgba(82, 98, 72, 0.18);
}

.nd-room-detail__card .nd-room-detail__lead:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.nd-room-detail__content {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(82, 98, 72, 0.9);
}

.nd-room-detail__content p {
    margin: 0 0 16px;
}

.nd-room-detail__content img {
    max-width: 100%;
    height: auto;
}

/* Aside card */
.nd-room-detail__aside {
    position: sticky;
    top: 96px;
}

.nd-room-detail__card {
    padding: 32px;
    border: 1px solid rgba(175, 150, 102, 0.3);
    background-color: var(--nd-sand);
    transition: box-shadow 0.5s ease;
}

.nd-room-detail__card:hover {
    box-shadow: 0 12px 30px -12px rgba(82, 98, 72, 0.25);
}

.nd-room-detail__card-title {
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(82, 98, 72, 0.2);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--nd-moss);
}

.nd-room-detail__specs {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--nd-moss);
}

.nd-room-detail__specs li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.nd-room-detail__specs li + li {
    border-top: 1px dashed rgba(82, 98, 72, 0.12);
}

.nd-room-detail__spec-label {
    opacity: 0.7;
}

.nd-room-detail__spec-value {
    font-weight: 500;
    text-align: right;
}

.nd-room-detail__cta {
    display: block;
    width: 100%;
    padding: 16px 18px;
    background-color: var(--nd-moss);
    color: var(--nd-cream);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.5s ease;
}

.nd-room-detail__cta:hover {
    background-color: var(--nd-bronze);
    color: var(--nd-cream);
}
