.aura-accommodations-section {
    padding: 40px 15px;
    background-color: #fff;
    font-family: 'Cinzel', 'Georgia', serif;
}

.aura-section-subtitle {
    color: #e09f3e;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.aura-section-title {
    color: #1a2b49;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Card Container */
.aura-room-card-wrapper {
    padding: 10px;
}

.aura-room-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.aura-room-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.aura-room-thumb-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.aura-room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges */
.aura-badge.booked {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e63946;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: sans-serif;
}

/* Card Content Body */
.aura-room-content {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.aura-room-title {
    font-size: 1.25rem;
    color: #1a2b49;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.aura-room-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: sans-serif;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Rounded Outline Button */
.aura-reserve-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border: 1px solid #1a2b49;
    border-radius: 25px;
    color: #1a2b49;
    background: transparent;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.aura-reserve-btn:hover {
    background: #1a2b49;
    color: #fff;
}

.aura-reserve-btn.disabled {
    border-color: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
}

/* Slick Arrows Styling */
.aura-rooms-carousel .slick-prev, 
.aura-rooms-carousel .slick-next {
    z-index: 5;
    width: 40px;
    height: 40px;
}
.aura-rooms-carousel .slick-prev:before, 
.aura-rooms-carousel .slick-next:before {
    color: #1a2b49;
    font-size: 30px;
}

/* ==========================================================================
   Luxury Dark & Gold Theme for Room Detail Page
   ========================================================================== */

.aura-single-room-page {
   
    color: #e2e8f0;
    font-family: sans-serif;
    min-height: 100vh;
}

/* Typography & Titles */
.aura-back-link {
    color: #e09f3e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.aura-back-link:hover {
    color: #ffffff;
}

.aura-section-subtitle {
    color: #e09f3e;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
}

.aura-room-page-title {
    color: #ffffff;
   
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 5px;
}

.aura-room-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* Main Image & Gallery */
.aura-main-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    
}

.aura-main-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.aura-gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #1e293b;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.aura-gallery-item img:hover {
    transform: scale(1.03);
    border-color: #e09f3e;
}

/* Detail Sections */
.aura-detail-section {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 30px;
}

.aura-detail-heading {
    
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
	font-weight:700
}

.aura-entry-content {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Amenities Card */
.aura-amenity-card {
    background-color: #16202e;
    border: 1px solid #1e293b;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.aura-check-icon {
    color: #e09f3e;
    font-weight: bold;
}

/* Sidebar & Cards */
.aura-sticky-sidebar {
    position: sticky;
    top: 100px;
}

.aura-booking-card {
    background-color: #16202e;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.aura-booking-success {
    border-color: #e09f3e;
}

.aura-price-tag {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e09f3e;
}

.aura-price-tag small {
    font-size: 0.9rem;
    color: #94a3b8;
    font-family: sans-serif;
    font-weight: normal;
}

.aura-card-title {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Custom Dark Inputs */
.aura-form-label {
    display: block;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.aura-form-control {
    width: 100%;
    background-color: #0d131d;
    border: 1px solid #334155;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.aura-form-control:focus {
    border-color: #e09f3e;
}

/* Buttons */
.aura-gold-btn {
    display: block;
    background: transparent;
    border: 1px solid #e09f3e;
    color: #e09f3e;
    padding: 12px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.aura-gold-btn:hover {
    background-color: #e09f3e;
    color: #0d131d;
}

.aura-gold-btn-filled {
    display: block;
    background-color: #e09f3e;
    border: 1px solid #e09f3e;
    color: #0d131d;
    padding: 12px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.aura-gold-btn-filled:hover {
    background-color: #d28c29;
    border-color: #d28c29;
}

/* Alert Boxes */
.aura-status-box {
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.aura-status-box.info {
    background-color: #1e293b;
    color: #38bdf8;
    border: 1px solid #0284c7;
}

.aura-status-box.success {
    background-color: #064e3b;
    color: #6ee7b7;
    border: 1px solid #059669;
}

.aura-status-box.error {
    background-color: #450a0a;
    color: #fca5a5;
    border: 1px solid #dc2626;
}