/* Hiraya Cove Resort and Spa - Custom Design System */

:root {
    /* Colors */
    --hiraya-olive: #4e5e3a;
    --hiraya-cream: #f0eae0;
    --hiraya-dark: #252812;
    --hiraya-muted-olive: #626321;
    --hiraya-white: #ffffff;

    /* Typography */
    --font-heading: 'Canela', serif;
    --font-body: 'Work Sans', sans-serif;
    --letter-spacing-heading: -0.02em;
    --letter-spacing-cta: 0.15em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fonts */
@font-face {
    font-family: 'Canela';
    src: url('../fonts/hiraya/Canela/CanelaText-Regular-Trial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Canela';
    src: url('../fonts/hiraya/Canela/CanelaText-Bold-Trial.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Canela';
    src: url('../fonts/hiraya/Canela/CanelaText-Light-Trial.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/hiraya/Work_Sans/WorkSans-VariableFont_wght.ttf') format('truetype');
}

/* Navigation & Branding */
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    background: transparent !important;
}

#header.header-standard {
    position: relative;
    background-color: var(--hiraya-dark) !important;
    padding: 15px 0;
}

#header-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#header_logo {
    display: block;
    margin-bottom: 25px;
}

#nav-main {
    width: auto;
    margin: 0 auto;
    background-color: var(--hiraya-cream) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hiraya-nav-links {
    list-style: none;
    padding: 12px 45px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.hiraya-nav-links a {
    color: var(--hiraya-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.hiraya-nav-links a:hover {
    opacity: 0.7;
}

.hiraya-nav-links a.nav-cta {
    background: var(--hiraya-dark);
    color: var(--hiraya-white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
}

/* Body-Based Hero (Index Only) */
.hero-main {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(37, 40, 18, 0.75) 0%, rgba(37, 40, 18, 0.4) 100%);
    z-index: 1;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.text-white {
    color: white !important;
}

.hero-inner {
    position: relative;
    z-index: 10;
    padding-top: 50px;
    /* Offset for absolute header */
}

/* Header & Hero Overrides */
.header-top {
    display: none;
    /* Removed as we moved content to body hero */
}

.search-panel-wrapper {
    margin-top: 60px;
    width: 80%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}

.hero-text-large {
    font-size: 5rem;
    color: var(--hiraya-white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 300;
    color: var(--hiraya-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--hiraya-white);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.btn-hiraya-white {
    background-color: var(--hiraya-white);
    color: var(--hiraya-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
}

.btn-hiraya-white:hover {
    transform: scale(1.05);
    background-color: var(--hiraya-cream);
    color: var(--hiraya-dark);
}

/* Page Structural Tweaks for Immersion */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

#page,
.columns-container,
#columns,
#center_column {
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
}

.index .breadcrumb,
.cms-id-4 .breadcrumb,
.cms-id-5 .breadcrumb,
.cms-id-6 .breadcrumb,
.authentication .breadcrumb,
.index #slider_row,
.cms-id-4 #slider_row,
.cms-id-5 #slider_row,
.cms-id-6 #slider_row {
    display: none !important;
}

/* Hide Default QloApps Sections */
.hotel-about-main-section,
.hotel-about-text,
#hotel_header_info,
#hotel_header_info_inner,
.header-top-menu,
.banner,
.header-desc-container {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Panel Inputs */
.search-panel-wrapper input,
.search-panel-wrapper select {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 4px;
    height: 45px;
}

/* Global Styles */
body {
    font-family: var(--font-body);
    color: var(--hiraya-dark);
    background-color: var(--hiraya-cream);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--hiraya-olive);
}

/* Premium UI Components */

.premium-card {
    background: var(--hiraya-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Premium Buttons */
.btn-hiraya {
    background-color: var(--hiraya-olive);
    color: var(--hiraya-cream);
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-decoration: none;
}

.btn-hiraya:hover {
    background-color: var(--hiraya-muted-olive);
    color: var(--hiraya-white);
    transform: scale(1.05);
}

/* Pill-Shaped Visuals */
.pill-img-container {
    width: 480px;
    height: 160px;
    border-radius: 100px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pill-img-container:hover {
    transform: scale(1.05);
}

.pill-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 15%;
}

.feature-item p {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--hiraya-dark);
    margin: 0;
    letter-spacing: 0.01em;
}

/* Layout Utilities */
.section-padding {
    padding: 120px 0;
}

.padding-20 {
    padding: 20px;
}

.padding-40 {
    padding: 40px;
}

.flex-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.shadow {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-text {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: var(--letter-spacing-heading);
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Specific Styles */
.hiraya-features .premium-card {
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.hiraya-features .premium-card img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.hiraya-features h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hiraya-info {
    position: relative;
    height: 80vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hiraya-info h2 {
    color: white;
}

.hiraya-restaurant {
    background-color: var(--hiraya-cream);
}

.restaurant-main-img {
    border-radius: 40px;
    width: 100%;
    height: auto;
}

.food-slider {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.food-slider::-webkit-scrollbar {
    display: none;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.food-ticker-inner {
    display: flex;
    gap: 30px;
    animation: slide 30s linear infinite;
    width: max-content;
}

.food-item {
    flex: 0 0 350px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.food-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiraya-cta {
    min-height: 500px;
    height: 70vh;
    display: flex;
    align-items: center;
    padding-bottom: 0 !important;
}

@media (max-width: 768px) {
    .flex-center {
        flex-direction: column;
        text-align: center;
    }

    .flex-center .col-md-6 {
        margin-bottom: 30px;
    }

    .hero-text {
        font-size: 2.2rem;
    }
}

/* Minimalist Footer */
.footer-container {
    background-color: var(--hiraya-dark) !important;
    color: var(--hiraya-cream) !important;
    padding: 80px 0 40px !important;
    margin-top: 0;
}

#footer {
    background: transparent !important;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--hiraya-cream);
    margin-bottom: 30px !important;
    letter-spacing: 0.15em;
}

.footer-col p,
.footer-col a {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(240, 234, 224, 0.7);
    line-height: 2;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--hiraya-white);
}

.footer-bottom {
    border-top: 1px solid rgba(240, 234, 224, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(240, 234, 224, 0.3);
    letter-spacing: 0.05em;
}

.footer-bottom a {
    color: rgba(240, 234, 224, 0.4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--hiraya-cream);
}

/* Hide Default Footer & Structural Hooks */
.footer-container .row.margin-btm-50,
.footer-container #displayAfterDefautlFooterHook,
.footer-container #footer_before,
[id*="displayColumnsBottom"],
[id*="displayFooterBefore"],
.footer_before {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Authentication Page Styling */
body.authentication {
    background-image: url('../img/hiraya/Home/Hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.authentication::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 32, 10, 0.8);
    /* Darker overlay for focus */
    z-index: 0;
}

body.authentication #page {
    position: relative;
    z-index: 1;
    background: transparent !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}

body.authentication .columns-container {
    background: transparent !important;
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding: 260px 0 100px;
    /* Pushed significantly lower to clear navigation */
}

body.authentication #center_column {
    width: 100%;
}

body.authentication #center_column .row {
    display: flex;
    justify-content: center;
    gap: 100px;
    /* Precise 100px gap between the two forms */
}

body.authentication #center_column .row>div {
    width: auto;
    flex: 0 1 520px;
}

body.authentication .page-heading {
    color: var(--hiraya-white) !important;
    font-family: var(--font-heading);
    text-align: center;
    margin: 0 0 60px !important;
    font-size: 3.4rem;
    border: none !important;
    letter-spacing: -0.01em;
    text-transform: none;
}

body.authentication .box {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px !important;
    color: var(--hiraya-cream) !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    margin: 0;
    /* Removed auto margins for flex gap control */
    width: 100%;
}

body.authentication .page-subheading {
    color: var(--hiraya-white) !important;
    font-family: var(--font-heading);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding-bottom: 20px;
    margin-bottom: 35px;
    font-size: 1.8rem;
    text-transform: none !important;
    font-weight: 400;
}

body.authentication label {
    color: var(--hiraya-cream) !important;
    font-weight: 300;
    margin-bottom: 14px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    opacity: 1;
}

body.authentication .form-group {
    margin-bottom: 30px;
}

body.authentication .form-control {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    height: 60px !important;
    color: white !important;
    transition: all 0.3s ease;
    padding: 0 25px !important;
    font-size: 1.1rem !important;
}

body.authentication .form-control:focus {
    background: rgba(0, 0, 0, 0.4) !important;
    border-color: var(--hiraya-cream) !important;
    box-shadow: 0 0 0 1px var(--hiraya-cream) !important;
}

body.authentication .btn.button-medium,
body.authentication #SubmitLogin,
body.authentication #SubmitCreate {
    background: var(--hiraya-cream) !important;
    color: var(--hiraya-dark) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 20px 45px !important;
    /* Taller buttons */
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 1rem;
    /* Larger button text */
    width: 100%;
}

/* Authentication Page Styling */
body.authentication {
    background-image: url('../img/hiraya/Home/Hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex !important;
    flex-direction: column !important;
}

body.authentication::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 32, 10, 0.85);
    /* Slightly darker for deeper focus */
    z-index: 0;
}

body.authentication #page {
    position: relative;
    z-index: 1;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

body.authentication .columns-container {
    background: transparent !important;
    flex: 1 !important;
    display: flex !important;
    align-items: flex-start !important;
    padding: 340px 0 100px !important;
    /* Pushed significantly lower to clear navigation completely */
}

body.authentication #center_column {
    width: 100% !important;
}

body.authentication #center_column .row {
    display: flex !important;
    justify-content: center !important;
    gap: 100px !important;
    /* Strict 100px gap between the two forms */
    margin: 0 !important;
}

body.authentication #center_column .row>div {
    width: auto !important;
    flex: 0 1 500px !important;
    padding: 0 !important;
}

body.authentication .page-heading {
    color: var(--hiraya-white) !important;
    font-family: var(--font-heading);
    text-align: center;
    margin: 0 0 80px !important;
    /* More space after heading */
    font-size: 3.6rem !important;
    border: none !important;
    letter-spacing: -0.01em;
    text-transform: none;
    font-weight: 400;
}

body.authentication .box {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 50px !important;
    color: var(--hiraya-cream) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    margin: 0 !important;
    width: 100% !important;
}

body.authentication .page-subheading {
    color: var(--hiraya-white) !important;
    font-family: var(--font-heading);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding-bottom: 25px;
    margin-bottom: 40px;
    font-size: 1.8rem;
    text-transform: none !important;
    font-weight: 400;
}

body.authentication label {
    color: var(--hiraya-cream) !important;
    font-weight: 300;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-size: 1.15rem;
    opacity: 1;
}

body.authentication .form-group {
    margin-bottom: 35px;
}

body.authentication .form-control {
    background: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 14px !important;
    height: 64px !important;
    color: white !important;
    transition: all 0.3s ease;
    padding: 0 25px !important;
    font-size: 1.15rem !important;
}

body.authentication .btn.button-medium,
body.authentication #SubmitLogin,
body.authentication #SubmitCreate {
    background: var(--hiraya-cream) !important;
    color: var(--hiraya-dark) !important;
    border: none !important;
    border-radius: 60px !important;
    padding: 22px 45px !important;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 1.05rem;
    width: 100%;
}

body.authentication .btn.button-medium:hover {
    background: var(--hiraya-white) !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

body.authentication .lost_password {
    margin-top: 25px;
    text-align: right;
}

body.authentication .lost_password a {
    color: var(--hiraya-cream) !important;
    opacity: 0.75;
    font-size: 1rem;
    text-decoration: none;
}

body.authentication .footer-container {
    margin-top: 0 !important;
    z-index: 2;
}

#center_column .alert {
    border-radius: 20px;
    background: rgba(217, 83, 79, 0.3);
    border: 1px solid rgba(217, 83, 79, 0.4);
    color: #ffdce0;
    max-width: 520px;
    margin: 0 auto 50px;
    padding: 25px;
    font-size: 1.15rem;
}

@media (max-width: 1199px) {
    body.authentication #center_column .row {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    body.authentication #center_column .row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    body.authentication .columns-container {
        padding: 240px 20px 80px !important;
    }

    body.authentication #center_column .row>div {
        flex: 1 1 100%;
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    body.authentication .page-heading {
        font-size: 2.4rem !important;
        margin-bottom: 50px !important;
    }

    body.authentication .box {
        padding: 40px 30px !important;
    }
}

/* ================================
   ROOMS PAGE STYLING
   ================================ */

/* Room Cards Section */
.hiraya-rooms-section {
    padding: 100px 0;
}

.room-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.room-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Room Carousel */
.room-carousel-wrapper {
    flex: 1;
    min-width: 50%;
}

.room-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Timer bar on carousel */
.room-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--hiraya-olive);
    z-index: 10;
    transition: none;
}

.room-carousel.animating::after {
    animation: carouselTimer 4s linear;
}

@keyframes carouselTimer {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.room-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-carousel-img.active {
    opacity: 1;
    z-index: 1;
}

/* Room Thumbnails */
.room-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.room-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.room-thumb:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.room-thumb.active {
    opacity: 1;
}

/* Room Info */
.room-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.room-title {
    font-family: 'Canela', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--hiraya-dark);
    margin: 0;
}

.room-details {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--hiraya-muted-olive);
    line-height: 1.8;
    margin: 0;
}

.room-price {
    font-family: 'Canela', serif;
    font-size: 2rem;
    color: var(--hiraya-olive);
    margin: 10px 0;
    font-weight: 400;
}

.btn-hiraya-dark {
    display: inline-block;
    padding: 16px 40px;
    background: var(--hiraya-dark);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--hiraya-dark);
    align-self: flex-start;
}

.btn-hiraya-dark:hover {
    background: transparent;
    color: var(--hiraya-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 40, 18, 0.2);
}

/* Inclusions List */
.inclusions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inclusions-list p {
    margin: 0;
    font-size: 1.3rem;
}

/* Responsive Design for Rooms */
@media (max-width: 991px) {
    .room-card {
        flex-direction: column !important;
        gap: 40px;
        padding: 30px;
    }

    .room-carousel-wrapper {
        width: 100%;
        min-width: 100%;
    }

    .room-info {
        text-align: center;
        align-items: center;
    }

    .btn-hiraya-dark {
        align-self: center;
    }

    .room-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hiraya-rooms-section {
        padding: 60px 0;
    }

    .room-card {
        margin-bottom: 60px;
        padding: 25px;
    }

    .room-title {
        font-size: 1.8rem;
    }

    .room-price {
        font-size: 1.6rem;
    }

    .inclusions-list p {
        font-size: 1.1rem;
    }
}

/* ================================
   CUSTOM HIRAYA SEARCH FORM
   ================================ */

.hiraya-search-form {
    background: var(--hiraya-cream);
    padding: 40px 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hiraya-form-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
}

.hiraya-form-group {
    display: flex;
    flex-direction: column;
    min-width: 160px;
    position: relative;
}

.hiraya-form-group-dates {
    min-width: 280px;
}

.hiraya-form-group label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--hiraya-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hiraya-form-group input[type="date"],
.hiraya-form-group input[type="text"],
.hiraya-form-group select {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(78, 94, 58, 0.2);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--hiraya-dark);
    font-family: var(--font-body);
    height: 52px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hiraya-form-group input[type="date"]:hover,
.hiraya-form-group input[type="text"]:hover,
.hiraya-form-group select:hover {
    border-color: rgba(78, 94, 58, 0.4);
    background: rgba(255, 255, 255, 1);
}

.hiraya-form-group input[type="date"]:focus,
.hiraya-form-group input[type="text"]:focus,
.hiraya-form-group select:focus {
    border-color: var(--hiraya-olive);
    background: rgba(255, 255, 255, 1);
    outline: none;
    box-shadow: 0 0 0 3px rgba(78, 94, 58, 0.1);
}

.btn-search-rooms {
    background: var(--hiraya-olive);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 52px;
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-search-rooms:hover {
    background: var(--hiraya-muted-olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 94, 58, 0.3);
}

.btn-search-rooms:active {
    transform: translateY(0);
}

/* Guests Dropdown */
.hiraya-guests-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid rgba(78, 94, 58, 0.2);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

.guests-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(78, 94, 58, 0.1);
}

.guests-row:last-of-type {
    border-bottom: none;
    margin-bottom: 12px;
}

.guests-row label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--hiraya-dark);
    margin: 0;
    text-transform: none;
}

.guests-control {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guests-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(78, 94, 58, 0.3);
    background: white;
    color: var(--hiraya-olive);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.guests-btn:hover {
    background: var(--hiraya-olive);
    color: white;
    border-color: var(--hiraya-olive);
}

.guests-control span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hiraya-dark);
    min-width: 30px;
    text-align: center;
}

.btn-guests-done {
    width: 100%;
    background: var(--hiraya-olive);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-guests-done:hover {
    background: var(--hiraya-muted-olive);
}

/* Responsive */
@media (max-width: 991px) {
    .hiraya-form-row {
        flex-wrap: wrap;
    }

    .hiraya-form-group {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
    }
}

@media (max-width: 767px) {
    .hiraya-search-form {
        padding: 30px 25px;
    }

    .hiraya-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .hiraya-form-group {
        width: 100%;
    }

    .btn-search-rooms {
        width: 100%;
    }
}

/* ================================
   OLD SEARCH FORM (HIDDEN)
   ================================ */

/* Hide the old module search form */
.header-rmsearch-container {
    display: none !important;
}

.header-rmsearch-inner-wrapper {
    display: none !important;
}

/* ================================
   CATEGORY/ROOM SELECTION PAGE
   ================================ */

/* Hide breadcrumbs and page heading on category page */
body.category .breadcrumb,
body.category .page-heading {
    display: none;
}

/* Category page layout */
body.category #left_column {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body.category #center_column {
    padding: 0 15px 0 20px;
}

/* Force columns to stay side by side on desktop */
@media (min-width: 768px) {
    body.category #left_column {
        float: left !important;
        width: 25% !important;
        padding-right: 15px;
    }

    body.category #center_column {
        float: left !important;
        width: 75% !important;
        padding-left: 15px;
        padding-right: 0;
    }
}

/* Left sidebar styling */
#left_column .block {
    margin-bottom: 30px;
    border: none;
    background: transparent;
}

#left_column .title_block {
    background: transparent;
    border: none;
    color: var(--hiraya-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0 0 15px 0;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(78, 94, 58, 0.15);
}

#left_column .block_content {
    padding: 0;
    background: transparent;
}

#left_column ul li {
    padding: 8px 0;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

#left_column ul li label {
    color: #666;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s ease;
}

#left_column ul li label:hover {
    color: var(--hiraya-olive);
}

#left_column input[type="checkbox"] {
    margin-right: 8px;
}

/* Price slider styling */
#left_column .ui-slider {
    background: #e0e0e0;
    border: none;
    height: 6px;
    border-radius: 3px;
}

#left_column .ui-slider .ui-slider-range {
    background: var(--hiraya-olive);
}

#left_column .ui-slider .ui-slider-handle {
    background: var(--hiraya-olive);
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Main category container */
.cat_cont {
    background-color: var(--hiraya-cream);
    border: none;
    padding: 40px 30px;
    margin-bottom: 40px;
    border-radius: 0;
    overflow: visible;
}

#category_data_cont {
    overflow: visible;
}

/* Fix the col-sm-12 inside category that forces full width */
body.category .cat_cont > .col-sm-12 {
    width: 100%;
    padding: 0;
}

/* Sort section - hide it */
.catSortBlock {
    display: none;
}

.sortBlockHeading p {
    color: var(--hiraya-dark);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.filter_dw_cont button {
    background: white;
    border: 1px solid rgba(78, 94, 58, 0.2);
    border-radius: 8px;
    color: var(--hiraya-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.filter_dw_cont button:hover {
    border-color: var(--hiraya-olive);
    background: rgba(255, 255, 255, 1);
}

.filter_dw_cont .dropdown-menu {
    border: 1px solid rgba(78, 94, 58, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.filter_dw_cont .dropdown-menu li a {
    color: var(--hiraya-dark);
    font-family: var(--font-body);
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.filter_dw_cont .dropdown-menu li a:hover {
    background-color: rgba(78, 94, 58, 0.1);
    color: var(--hiraya-olive);
}

/* Individual room cards */
.room_cont {
    background: white;
    border: none;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: visible;
    position: relative;
    z-index: 1;
}

/* When a room has an open dropdown, elevate its z-index */
.room_cont:has(.dropdown.open) {
    z-index: 10000;
}

.room_cont .row {
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
}

.room_cont > .row > div {
    padding: 0;
    overflow: visible;
}

/* Room image container */
.room_cont .col-sm-4 {
    padding: 0 !important;
    width: 280px;
    flex: 0 0 280px;
}

.room_cont .col-sm-4 a {
    display: block;
    height: 100%;
}

.room-type-image {
    border-radius: 12px 0 0 12px;
    width: 100%;
    height: 100%;
    min-height: 180px;
    max-height: 180px;
    object-fit: cover;
    display: block;
}

/* Room info container */
.room_cont .col-sm-8 {
    flex: 1;
    overflow: visible;
}

.room_info_cont {
    padding: 20px 25px !important;
    overflow: visible;
}

/* Room title */
.rm_heading {
    color: var(--hiraya-dark);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.3;
    margin-top: 0;
}

/* Availability warning */
.rm_left {
    color: #d9534f;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: right;
    margin-top: 0;
}

/* Room description */
.rm_desc {
    color: #777;
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.rm_desc a {
    color: var(--hiraya-olive);
    text-decoration: none;
    font-weight: 500;
}

.rm_desc a:hover {
    text-decoration: underline;
}

.rm_desc a.view_more {
    display: none;
}

/* Amenities/Features section */
.room_features_cont {
    margin-top: 12px;
    overflow: visible;
}

.rm_amenities_cont {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.rm_amenities_cont .rm_amen {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.rm_amenities_cont .rm_amen:hover {
    opacity: 1;
}

/* Price section */
.rm_price_cont {
    text-align: right;
    margin-bottom: 0;
}

.rm_price_val {
    color: var(--hiraya-dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-right: 5px;
}

.room_type_old_price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.rm_price_txt {
    color: #999;
    font-family: var(--font-body);
    font-size: 0.8rem;
}

/* Max guests info */
.capa_txt {
    color: #666;
    font-family: var(--font-body);
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.capa_txt span {
    display: block;
}

.capa_txt span:first-child {
    font-weight: 500;
    color: var(--hiraya-dark);
    font-size: 0.85rem;
}

.capa_data {
    color: #888;
    font-size: 0.75rem;
}

/* Booking fields and button section */
.room_type_list_actions {
    margin-top: 18px;
    padding-top: 0;
    border-top: none;
    overflow: visible;
}

.booking_room_fields {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    overflow: visible;
}

.booking_room_fields > div {
    flex: 1;
}

.booking_room_fields label {
    color: var(--hiraya-dark);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

/* Occupancy selector styling */
.booking_guest_occupancy_conatiner {
    flex: 1;
    position: relative;
    z-index: 100;
}

.booking_guest_occupancy_conatiner .dropdown {
    position: relative;
    overflow: visible !important;
}

.booking_guest_occupancy_conatiner .dropdown.open {
    overflow: visible !important;
    z-index: 10000;
    position: relative;
}

/* Force dropdown wrapper to behave */
.room_cont .booking_guest_occupancy_conatiner .booking_occupancy_wrapper,
.booking_guest_occupancy_conatiner .booking_occupancy_wrapper,
.booking_guest_occupancy_conatiner .dropdown-menu.booking_occupancy_wrapper {
    position: absolute !important;
    z-index: 99999 !important;
    min-width: 320px !important;
    max-height: 500px !important;
    display: none !important;
    left: 0 !important;
    top: 100% !important;
    margin-top: 2px !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: none !important;
    overflow-y: auto !important;
    overflow-x: visible !important;
}

/* When dropdown is open */
.room_cont .booking_guest_occupancy_conatiner .dropdown.open .booking_occupancy_wrapper,
.booking_guest_occupancy_conatiner .dropdown.open .booking_occupancy_wrapper,
.booking_guest_occupancy_conatiner .dropdown.open .dropdown-menu.booking_occupancy_wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 500px !important;
    overflow-y: auto !important;
    overflow-x: visible !important;
}

/* Ensure the inner content can expand */
.booking_guest_occupancy_conatiner .booking_occupancy_wrapper .booking_occupancy_inner {
    overflow: visible !important;
}

.occupancy_select_box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--hiraya-dark);
    cursor: pointer;
}

.occupancy_select_box:hover {
    border-color: #00a0dc;
}

/* Book Now button */
.ajax_add_to_cart_button {
    background: #00a0dc;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 9px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.ajax_add_to_cart_button:hover {
    background: #0088bb;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 160, 220, 0.3);
    text-decoration: none;
}

.ajax_add_to_cart_button span {
    color: white;
}

/* No rooms available alert */
.noRoomsAvailAlert {
    background: rgba(217, 83, 79, 0.1);
    border: 1px solid #d9534f;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.noRoomsAvailAlert span {
    color: #d9534f;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 991px) {
    .cat_cont {
        padding: 30px 20px;
    }

    .room_cont .col-sm-4 {
        max-width: 240px;
    }

    .room-type-image {
        min-height: 200px;
        max-height: 200px;
    }

    .rm_heading {
        font-size: 1.2rem;
    }

    .rm_price_val {
        font-size: 1.3rem;
    }

    .room_info_cont {
        padding: 18px 20px !important;
    }
}

@media (max-width: 767px) {
    body.category #left_column {
        margin-bottom: 20px;
    }

    body.category #center_column {
        padding: 0 15px;
    }

    .cat_cont {
        padding: 30px 15px;
    }

    .room_cont {
        margin-bottom: 20px;
    }

    .room_cont .col-sm-4,
    .room_cont .col-sm-8 {
        width: 100%;
    }

    .room_cont .col-sm-4 {
        max-width: 100%;
    }

    .room-type-image {
        min-height: 200px;
        max-height: 200px;
    }

    .room_info_cont {
        padding: 20px !important;
    }

    .rm_heading {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .rm_price_cont {
        text-align: left;
        margin-bottom: 15px;
    }

    .rm_price_val {
        font-size: 1.5rem;
    }

    .booking_room_fields {
        flex-direction: column;
        gap: 10px;
    }

    .capa_txt {
        margin-bottom: 15px;
    }

    .room_type_list_actions .col-md-6,
    .room_type_list_actions .col-lg-4,
    .room_type_list_actions .col-lg-8 {
        width: 100%;
    }
}


/* ================================
   PRODUCT/ROOM DETAIL PAGE
   ================================ */

/* Hide breadcrumbs on product page */
body.product .breadcrumb {
    display: none;
}

/* Main product wrapper */
.product_wrapper {
    background: var(--hiraya-cream);
    padding: 60px 0;
}

/* Add breathing room to main container */
body.product .container {
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
}

body.product .primary_block {
    padding: 0;
    max-width: 100%;
}

body.product .primary_block .row {
    margin-left: 0;
    margin-right: 0;
}

/* Room name and hotel header */
.room_hotel_name_block {
    background: white;
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.hotel_name_block h1 {
    color: var(--hiraya-dark);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}

.hotel_name {
    display: block;
}

#hotel_rating {
    display: inline-block;
    margin-left: 10px;
    color: #f8b500;
}

#hotel_rating i {
    font-size: 1rem;
}

/* Image container */
.room_type_img_containter.card {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
}

#image-block-cont {
    padding: 0;
}

#image-block {
    background: white;
    padding: 30px;
}

#image-block img,
#bigpic {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

/* Thumbnail list */
#thumbs_list_frame {
    background: white;
    padding: 20px 30px 30px;
}

#thumbs_list {
    border: none;
}

#thumbs_list li {
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#thumbs_list li:hover,
#thumbs_list li.selected {
    border-color: var(--hiraya-olive);
}

#thumbs_list img {
    border-radius: 4px;
}

/* Product tabs */
.product_info_block {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
}

/* Service products section */
#service_products_cont {
    margin-left: 50px;
    margin-right: 0;
    margin-bottom: 30px;
}

#service_products_cont .card {
    margin-left: 0;
    margin-right: 0;
}

#productTabContent {
    padding: 30px;
}

.product_info_block .nav-tabs {
    border-bottom: 1px solid rgba(78, 94, 58, 0.15);
    background: rgba(240, 234, 224, 0.3);
    padding: 0 30px;
    margin-left: 50px;
}

.product_info_block .nav-tabs > li > a {
    color: #666;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 15px 20px;
    margin: 0;
    border-radius: 0;
}

.product_info_block .nav-tabs > li.active > a,
.product_info_block .nav-tabs > li > a:hover {
    color: var(--hiraya-olive);
    background: transparent;
    border-bottom-color: var(--hiraya-olive);
}

/* Room info content */
.room_info_heading {
    color: var(--hiraya-dark);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 25px;
}

.room_info_heading:first-child {
    margin-top: 0;
}

.room_info_content {
    color: #666;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features list */
.room_amenities_list,
.hotel_features_list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.room_amenities_list li,
.hotel_features_list li {
    color: #666;
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room_amenities_list li img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

/* Left column - Images and info */
.pb-left-column {
    padding-right: 15px;
    padding-left: 15px;
}

.pb-left-column .card,
.pb-left-column .room_type_img_containter,
.pb-left-column .product_info_block {
    margin-left: 50px;
    margin-right: 10px;
}

/* Right column - Booking form */
.pb-right-column {
    padding-left: 15px;
    padding-right: 15px;
}

.pb-right-column .card,
.pb-right-column .booking_room_block {
    margin-left: 10px;
    margin-right: 20px;
}

.booking_room_block.card {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: sticky;
    top: 20px;
}

/* Hotel location in booking form */
.hotel_location_heading {
    color: var(--hiraya-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.hotel_location_name,
.hotel_location_address {
    color: #666;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Booking form fields */
.booking_room_block label {
    color: var(--hiraya-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.booking_room_block input[type="text"],
.booking_room_block select {
    background: rgba(240, 234, 224, 0.5);
    border: 1px solid rgba(78, 94, 58, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--hiraya-dark);
    width: 100%;
    transition: all 0.3s ease;
}

.booking_room_block input[type="text"]:focus,
.booking_room_block select:focus {
    border-color: var(--hiraya-olive);
    background: white;
    outline: none;
}

/* Price display in booking form */
.room_price_block {
    background: rgba(240, 234, 224, 0.5);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.room_price_heading {
    color: #666;
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.room_price_value {
    color: var(--hiraya-dark);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
}

.total_price_block {
    border-top: 1px solid rgba(78, 94, 58, 0.15);
    padding-top: 15px;
    margin-top: 15px;
}

.total_price_label {
    color: var(--hiraya-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
}

.total_price_value {
    color: var(--hiraya-dark);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
}

/* Book Now button on product page */
.booking_room_block .btn-book-now,
.booking_room_block #room_type_booking_form button[type="submit"] {
    background: var(--hiraya-olive);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.booking_room_block .btn-book-now:hover,
.booking_room_block #room_type_booking_form button[type="submit"]:hover {
    background: var(--hiraya-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 94, 58, 0.3);
}

/* Room demands/facilities */
.room_demands_container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(78, 94, 58, 0.15);
}

.room_demand_heading {
    color: var(--hiraya-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    body.product .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .pb-left-column {
        padding-right: 15px;
    }

    .pb-right-column {
        padding-left: 15px;
        margin-top: 30px;
    }

    .booking_room_block.card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 767px) {
    body.product .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    body.product .primary_block {
        padding: 0;
    }

    .pb-left-column,
    .pb-right-column {
        padding-left: 0;
        padding-right: 0;
    }

    .product_wrapper {
        padding: 30px 0;
    }

    .room_hotel_name_block {
        padding: 20px;
    }

    .hotel_name_block h1 {
        font-size: 1.5rem;
    }

    #image-block,
    #thumbs_list_frame {
        padding: 20px;
    }

    #productTabContent {
        padding: 20px;
    }

    .booking_room_block.card {
        padding: 20px;
    }

    .room_price_value,
    .total_price_value {
        font-size: 1.6rem;
    }
}


/* ================================
   FIX ROW MARGINS FOR SPECIFIC PAGES
   ================================ */

body.order-confirmation .row,
body.module-bankwire-payment .row,
body.order-detail .row,
body.history .row,
body.my-account .row {
    margin-left: 30px;
    margin-right: 30px;
}

/* For nested rows, keep original behavior */
body.order-confirmation .row .row,
body.module-bankwire-payment .row .row,
body.order-detail .row .row,
body.history .row .row,
body.my-account .row .row {
    margin-left: -15px;
    margin-right: -15px;
}
