 :root {
            --primaryColor: #ad8b3a;
            --secondaryColor: #2c3e50;
            --lightColor: #f8f5f0;
            --darkColor: #222;
            --fontHeading: 'Cormorant Garamond', serif;
            --fontBody: 'Montserrat', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--fontBody);
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: var(--fontHeading);
            font-weight: 700;
            color: var(--secondaryColor);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        .rooms-header {
            height: 40vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&h=900&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: #fff;
            padding-top: 100px;
        }
        
        .header-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .rooms-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
            color: var(--lightColor);
        }
        
        .rooms-header p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background-color: var(--lightColor);
            padding: 15px 0;
        }
        
        .breadcrumb-content {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb-content li {
            margin: 0 10px;
            font-size: 0.9rem;
        }
        
        .breadcrumb-content a {
            color: var(--primaryColor);
            text-decoration: none;
        }
        
        .breadcrumb-content span {
            color: var(--secondaryColor);
        }
        
        /* Search Form */
        .search-section {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }
        
        .search-form {
            width: 80%;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            gap: 15px;
            align-items: flex-end;
            flex-wrap: wrap;
        }
        
        .form-group {
            flex: 1;
            min-width: 150px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--secondaryColor);
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: var(--fontBody);
            transition: all 0.3s;
        }
        
        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: var(--primaryColor);
            box-shadow: 0 0 0 2px rgba(173, 139, 58, 0.2);
        }
        
        .search-btn {
            background: var(--primaryColor);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 12px 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            font-family: var(--fontBody);
        }
        
        .search-btn:hover {
            background: #9a7835;
            transform: translateY(-2px);
        }
        
        /* Main Content Layout */
        .main-content {
            display: flex;
            gap: 30px;
            margin: 40px 0;
        }
        
        .rooms-container {
            flex: 4;
        }
        
        .cart-container {
            flex: 2;
        }
        
        /* Rooms Grid */
        .rooms-grid {
            display: none;
    flex-direction: column;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .room-card {
            margin-top: 8px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            height: 180px; /* 3:1 ratio (approx) */
        }
        
        .room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .room-image {
            flex: 1;
            overflow: hidden;
            position: relative;
        }
        
        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .room-card:hover .room-image img {
            transform: scale(1.05);
        }
        
        .room-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primaryColor);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .room-details {
            flex: 2;
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .room-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }
        
        .room-title h3 {
            margin-bottom: 5px;
            font-size: 1.3rem;
        }
        
        .room-number {
            color: var(--primaryColor);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .room-price {
            text-align: right;
        }
        
        .price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primaryColor);
        }
        
        .per-night {
            font-size: 0.8rem;
            color: #777;
        }
        
        .room-features {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
        }
        
        .feature i {
            color: var(--primaryColor);
        }
        
        .room-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .room-meta {
            font-size: 0.9rem;
            color: #777;
        }
        
        .btn {
            display: inline-block;
            background: var(--primaryColor);
            color: #fff;
            padding: 8px 15px;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .btn:hover {
            background: #9a7835;
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid var(--primaryColor);
            color: var(--primaryColor);
        }
        
        .btn-outline:hover {
            background: var(--primaryColor);
            color: white;
        }
        
        /* Cart Styles */
        .cart-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 20px;
            position: sticky;
            top: 100px;
            display: none;
        }
        
        .cart-title {
            text-align: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .cart-items {
            scrollbar-width: none !important;
            max-height: 400px;
            overflow-y: auto;
            margin-bottom: 20px;
        }
        
        .cart-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }
        
        .cart-item-image {
            width: 80px;
            height: 60px;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-name {
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .cart-item-meta {
            font-size: 0.8rem;
            color: #777;
            margin-bottom: 5px;
        }
        
        .cart-item-price {
            font-weight: 700;
            color: var(--primaryColor);
        }
        
        .cart-item-remove {
            color: #ff3b30;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }
        
        .cart-summary {
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .summary-total {
            font-weight: 700;
            font-size: 1.2rem;
            border-top: 1px solid #eee;
            padding-top: 10px;
            margin-top: 10px;
        }
        
        .checkout-btn {
            display: block;
            width: 100%;
            padding: 15px;
            text-align: center;
            background: var(--primaryColor);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 20px;
        }
        
        .checkout-btn:hover {
            background: #9a7835;
        }
        
        .empty-cart {
            text-align: center;
            padding: 30px 0;
            color: #777;
        }
        
        .empty-cart i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #ddd;
        }
        
        /* Search Prompt Message */
        .search-prompt {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 30px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .search-prompt-icon {
            font-size: 4rem;
            color: var(--primaryColor);
            margin-bottom: 20px;
        }
        
        .search-prompt h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--secondaryColor);
        }
        
        .search-prompt p {
            font-size: 1.1rem;
            max-width: 600px;
            margin-bottom: 25px;
            color: #666;
        }
        
        .search-prompt .btn {
            padding: 12px 25px;
            font-size: 1rem;
        }
        
        /* Room Details Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .room-modal {
            background: white;
            border-radius: 10px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(-50px);
            transition: transform 0.5s ease;
        }
        
        .modal-overlay.active .room-modal {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primaryColor);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
        }
        
        .modal-header {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .modal-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .modal-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primaryColor);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .modal-content {
            padding: 30px;
        }
        
        .modal-title {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .modal-room-name h2 {
            font-size: 2rem;
            margin-bottom: 5px;
        }
        
        .modal-room-number {
            color: var(--primaryColor);
            font-size: 1rem;
            font-weight: 500;
        }
        
        .modal-price {
            text-align: right;
        }
        
        .modal-price .price {
            font-size: 2rem;
            color: var(--primaryColor);
        }
        
        .modal-price .per-night {
            font-size: 1rem;
            color: #777;
        }
        
        .modal-description {
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .modal-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .modal-feature {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .modal-feature i {
            color: var(--primaryColor);
            font-size: 1.2rem;
        }
        
        .modal-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .modal-meta {
            font-size: 0.9rem;
            color: #777;
        }
        
        /* Loading Animation */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
        }
        
        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--primaryColor);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .cart-container {
                order: -1;
                margin-bottom: 30px;
            }
            
            .cart-card {
                position: relative;
                top: 0;
            }
        }
        
        @media (max-width: 768px) {
            .rooms-header h1 {
                font-size: 2.5rem;
            }
            
            .rooms-header p {
                font-size: 1rem;
            }
            
            .room-card {
                flex-direction: column;
                height: auto;
            }
            
            .room-image {
                height: 200px;
            }
            
            .rooms-grid {
                grid-template-columns: 1fr;
            }
            
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            
            .form-group {
                width: 100%;
            }
            
            .search-btn {
                width: 100%;
            }
            
            .search-prompt {
                padding: 40px 15px;
            }
            
            .search-prompt-icon {
                font-size: 3rem;
            }
            
            .search-prompt h2 {
                font-size: 1.5rem;
            }
            
            .search-prompt p {
                font-size: 1rem;
            }
        }