/* HMS Booking Plugin Styles */

.hms-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Montserrat, sans-serif;
}

/* Loading States */
.hms-loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.hms-loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: hms-spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes hms-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error States */
.hms-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    border: 1px solid #f5c6cb;
}

/* Hotels Grid */
.hms-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.hms-hotel-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hms-hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hms-hotel-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    height: 200px;
}

.hms-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hms-hotel-image::before {
    content: '🏨';
    font-size: 48px;
    position: absolute;
    opacity: 0.3;
}

.hms-hotel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.hms-hotel-card:hover .hms-hotel-overlay {
    opacity: 1;
}

.hms-hotel-card:hover .hms-hotel-image img {
    transform: scale(1.1);
}

/* Ensure overlay works with no-image placeholder */
.hms-hotel-card:hover .hms-no-image {
    transform: scale(1.05);
}

.hms-hotel-content {
    padding: 20px;
}

.hms-hotel-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.hms-hotel-location {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hms-hotel-location::before {
    content: '📍';
    font-size: 16px;
}

.hms-hotel-description {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hms-hotel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.hms-hotel-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f39c12;
    font-weight: 600;
}

.hms-hotel-rating::before {
    content: '⭐';
    font-size: 16px;
}

.hms-hotel-price {
    background: #27ae60;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.hms-view-rooms {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

.hms-view-rooms:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Rooms Grid */
.hms-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.hms-room-card {
    background: transparent;
/*     border-radius: 12px; */
/*     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
/*     border: 1px solid #e1e5e9; */
}

.hms-room-card:hover {
    transform: translateY(-3px);
/*     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
}

.hms-room-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.hms-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hms-room-image::before {
    content: '🛏️';
    font-size: 48px;
    position: absolute;
    opacity: 0.3;
}

.hms-room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.hms-room-card:hover .hms-room-overlay {
    opacity: 1;
}

.hms-view-details {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hms-view-details:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.hms-room-content {
    padding: 20px 0;
}

.hms-booking-room-details .hms-room-content{
	display: flex;
	gap: 24px;
}
.hms-room-card .hms-room-name  {
    font-size: 1.3rem;
    font-weight: 300;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.5;
	text-transform: uppercase;
}
.hms-room-card .hms-room-name a {
	color: #000 !important;
}
.hms-room-sub-name {
	display:inline-block;
	margin-bottom:1rem;
}
.hms-room-card .hms-room-description,  .hms-room-card .hms-room-name  a{
	color: #1C4227;
}

/* Room Description */
.hms-room-description h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.hms-room-description p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.hms-room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.hms-room-feature {
    background: #f8f9fa;
    color: #495057;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.hms-room-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.hms-room-capacity {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.hms-room-capacity::before {
    content: '👥';
    font-size: 16px;
}

.hms-room-price {
    background: #27ae60;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.hms-book-room-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

.hms-book-room-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.hms-back-to-hotels {
    margin-bottom: 20px;
}

.hms-back-btn {
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hms-back-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.hms-back-btn::before {
    content: '←';
    font-size: 18px;
    font-weight: bold;
}

/* Pagination */
.hms-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.hms-pagination button {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.hms-pagination button:hover:not(:disabled) {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
}

.hms-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hms-pagination .current-page {
    background: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: 600;
}

/* Filters */
.hms-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.hms-filters h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.hms-filter-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.hms-filter-item {
    display: flex;
    flex-direction: column;
}

.hms-filter-item label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    font-size: 14px;
}

.hms-filter-item select,
.hms-filter-item input {
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.hms-filter-item select:focus,
.hms-filter-item input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Animation */
.hms-hotel-card,
.hms-room-card {
    animation: hms-fade-in 0.6s ease-out;
}

@keyframes hms-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skeleton Loading */
.hms-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: hms-skeleton-loading 1.5s infinite;
}

@keyframes hms-skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hms-skeleton-image {
    height: 200px;
    border-radius: 8px;
}

.hms-skeleton-title {
    height: 24px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.hms-skeleton-text {
    height: 16px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.hms-skeleton-text:last-child {
    width: 60%;
}

/* Load More Button */
.hms-pagination {
    margin: 30px 0;
}

.hms-load-more {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    min-width: 150px;
}

.hms-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.hms-load-more:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.hms-load-more:disabled:hover {
    transform: none;
    box-shadow: none;
}

.hms-load-more.hidden,
.hms-load-complete {
    display: none;
}

.hms-load-complete {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* No Image Placeholder */
.hms-no-image {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
    position: relative;
}

.hms-no-image::before {
    content: '🏨';
    font-size: 48px;
    opacity: 0.8;
}

/* Room Details Layout */

.hms-room-container {
    overflow: hidden;
}

/* Room Header */
.hms-room-header {
    padding: 30px;
}

.hms-room-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

/* Room Images */
.hms-room-images {
    padding: 30px 0;
}

.hms-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hms-image-gallery > .col-span-3 {
    grid-column: span 3;
}
.hms-image-gallery > .col-span-2 {
    grid-column: span 2;
}
.hms-image-gallery > .row-start-1 {
    grid-row: 1;
}
.hms-image-gallery > .row-start-2 {
    grid-row: 2;
}

.hms-image-item {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hms-image-item:hover {
    transform: scale(1.02);
}

.hms-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.hms-room-left-column {
    display: flex;
    flex-direction: column;
	flex:1;
    gap: 24px;
}

.hms-room-right-column {
    flex: 0 0 40%;
	max-width: 40%;
    height: fit-content;
}

/* Room Specifications */
.hms-room-specs {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
}

.specs-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f3d2b;
    border-bottom: 1px solid #444;
    padding-bottom: 8px;
    margin-bottom: 16px;
    display: inline-block;
}

.hms-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    font-size: 15px;
    color: #1f3d2b;
}

.hms-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hms-spec-value {
    color: #1f3d2b;
}

/* Room Amenities */
.hms-room-amenities {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
}

.hms-room-amenities h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.hms-amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.hms-amenity-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.hms-amenity-icon {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

.hms-amenity-name {
    color: #2c3e50;
    font-weight: 500;
}

/* Room Extends */
.hms-room-extends {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
}

.hms-room-extends h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.hms-extend-group {
    margin-bottom: 25px;
}

.hms-extend-group:last-child {
    margin-bottom: 0;
}

.hms-extend-group h4 {
    margin-bottom: 15px;
    color: #495057;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid #141414;
    padding-bottom: 8px;
    display: inline-block;
}

.hms-extends-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hms-extend-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #141414;
    transition: all 0.3s ease;
}

.hms-extend-item:hover {
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.hms-extend-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.hms-extend-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hms-extend-name {
    font-weight: 500;
    color: #2c3e50;
    margin-right: 8px;
    flex: 1;
}

/* Room Availability */
.hms-room-availability {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
    position: sticky;
    top: 20px;
}

.hms-room-availability h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.hms-date-selection {
    margin-bottom: 20px;
}

.hms-availability-form {
    gap: 15px;
}

.hms-form-group {
    display: flex;
    flex-direction: column;
}

.hms-form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.hms-form-group input[type="date"],
.hms-form-group select,
select[name=rooms]{
    appearance: none; /* Reset appearance for iOS and modern browsers */
    -webkit-appearance: none; /* Reset appearance for Safari */
    -moz-appearance: none; /* Reset appearance for Firefox */
    background-color: white; /* Ensure consistent background */
    border: 1px solid #757575; /* Border style */
    border-radius: 8px; /* Rounded corners */
    padding: 12px 15px; /* Padding inside the element */
    font-size: 14px; /* Font size */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    transition: all 0.3s ease; /* Smooth transitions */
    min-height: 45px; /* Ensure consistent height */
    margin-bottom: 0; /* Remove margin */
}

.hms-form-group input[type="date"]:focus,
.hms-form-group select:focus {
    border-color: #007bff; /* Highlight border on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1); /* Add focus shadow */
}

.hms-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
	margin:0;
}

button.hms-btn-primary {
    background: #BAAB8F !important;
    color: #F3ECDC;
}

.hms-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

#hms-availability-calendar {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #e9ecef;
    min-height: 100px;
}



/* Booking Page Styles */
.hms-booking-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hms-back-to-room {
    margin-bottom: 30px;
}

.hms-back-btn {
    display: inline-flex;
    align-items: center;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hms-back-btn:hover {
    color: #005a87;
    text-decoration: underline;
}

.hms-booking-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hms-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.hms-booking-customer-info {
    padding: 40px;
    background: #fff;
    border-right: 1px solid #e9ecef;
}

.hms-booking-room-info {
    padding: 40px;
    background: #fff;
}

.hms-booking-customer-info h2,
.hms-booking-room-info h2 {
    margin: 0 0 30px 0;
    color: #0000;
    font-size: 24px;
    font-weight: 600;
}

.hms-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hms-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hms-form-group label {
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.hms-form-group input,
.hms-form-group textarea {
    padding: 12px 16px;
    border: 1px solid #757575;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hms-form-group input:focus,
.hms-form-group textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.hms-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.hms-btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.hms-room-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.hms-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hms-room-details h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.hms-hotel-name {
    color: #666;
    font-size: 16px;
    margin: 0 0 20px 0;
}

.hms-booking-dates {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.hms-booking-dates p {
    margin: 8px 0;
    color: #555;
    font-size: 14px;
}

.hms-booking-dates strong {
    color: #333;
}

.hms-pricing-summary {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 20px;
}

.hms-price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hms-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hms-price-item:last-child {
    border-bottom: none;
}

.hms-total-price {
    border-top: 2px solid #0073aa;
    padding-top: 16px;
    margin-top: 8px;
    font-size: 18px;
}

.hms-booking-action {
    margin-top: 20px;
    text-align: center;
}

.hms-book-now-btn {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hms-book-now-btn:hover {
    background: #218838;
    border-color: #1e7e34;
}


/* Booking Success Page */
.hms-booking-success {
    text-align: center;
    padding: 40px;
}

.hms-booking-success h3 {
    color: #28a745;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hms-booking-success p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hms-booking-success strong {
    color: #333;
    font-weight: 600;
}

.hms-booking-actions {
    margin-top: 30px;
}

.hms-booking-actions .hms-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Search Form Styles */

.hms-booking-rooms .hms-search-form-container{
	background-color:#fff;
	margin-bottom:48px
}
.hms-booking-rooms .hms-hotel-description {
	font-size:1rem;
	color:#000;
	width:50%;
	margin:0 auto;
	text-align:justify
}
.hms-booking-rooms .hms-btn {
	width:100%;
}
.hms-search-form-container {
    padding: 24px 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.hms-room-search-form {
    width: 100%;
	margin-bottom:0;
}

.hms-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.75fr 0.75fr 0.75fr;
    gap: 20px;
    align-items: end;
	justify-content:center;
}

.hms-search-grid .hms-form-group {
    margin: 0;
}

.hms-search-submit {
    display: flex;
    align-items: flex-end;
}

.hms-search-submit .hms-btn {
	width:100%;
}

/* Search Results Styles */

.hms-search-results-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hms-search-results-header h2 {
    color: #333;
    font-size: 32px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.hms-hotel-name {
	font-family: palatino-linotype, sans-serif;
    color: #000;
    font-size: 2em;
    margin: 0 0 20px 0;
	text-transform:uppercase;
}

.hms-search-criteria {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.hms-search-criteria p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.hms-search-criteria strong {
    color: #333;
}

.hms-results-count {
    color: #28a745;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.hms-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hms-no-results p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Available Room Cards */

.hms-available-room-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.hms-available-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.hms-available-room-card .hms-room-image {
    position: relative;
    width: calc(100% * 525 / 1600);
    height: 350px;
    overflow: hidden;
}

.hms-available-room-card .hms-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hms-available-room-card:hover .hms-room-image img {
    transform: scale(1.05);
}

.hms-available-room-card .hms-room-content {
    padding: 25px;
    flex-grow: 1;
}

.hms-available-room-card .hms-room-name {
    color: #333;
    font-size: 22px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.hms-available-room-card .hms-room-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hms-available-room-card .hms-room-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hms-available-room-card .hms-occupancy,
.hms-available-room-card .hms-size {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
}

.hms-available-room-card .hms-icon-user,
.hms-available-room-card .hms-icon-size {
    width: 16px;
    height: 16px;
    background: #0073aa;
    border-radius: 50%;
    display: inline-block;
}

.hms-available-room-card .hms-room-pricing {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.hms-available-room-card .hms-price-per-night,
.hms-available-room-card .hms-total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.hms-available-room-card .hms-price-per-night:last-child,
.hms-available-room-card .hms-total-price:last-child {
    margin-bottom: 0;
}

.hms-available-room-card .hms-price-label {
    color: #555;
    font-size: 14px;
}

.hms-available-room-card .hms-price-amount {
    color: #28a745;
    font-weight: 600;
    font-size: 16px;
}

.hms-available-room-card .hms-total-price .hms-price-amount {
    font-size: 18px;
    color: #333;
}

.hms-available-room-card .hms-room-actions {
    display: flex;
    gap: 15px;
}

.hms-available-room-card .hms-room-actions .hms-btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
}

.hms-available-room-card .hms-book-btn {
	background: rgba(28, 66, 39, 0.68) !important;
	color:#F3ECDC;
	border-radius: 5px;
	width: 100%;
}

/* Booking Room Page */
.hms-booking-rooms{
	padding: 0 16px;
}

.hms-booking-rooms .hms-rooms-grid {
	grid-template-columns: repeat(2, 1fr);
}
.hms-availability-summary h4 {
	 font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.hms-availability-form-check {
	padding: 20px;
    background: #fff;
}
.hms-availability-content{
	font-size:14px;
}
.hms-booking-action > .hms-btn {
	width:100%
	padding: 6px 12px;
}
/* Responsive adjustments */
@media (max-width: 1024px) {
    .hms-room-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hms-room-right-column {
        position: static;
    }
    
    .hms-room-availability {
        position: static;
    }
}

@media (max-width: 768px) {
    .hms-room-details {
        padding: 10px;
    }
    
    .hms-room-header {
        padding: 20px 20px 15px;
    }
    
    .hms-room-title {
        font-size: 24px;
    }
    
    .hms-room-images {
        padding: 20px;
    }
    
    .hms-room-content {
        padding: 20px;
    }
    
    .hms-extends-list {
        grid-template-columns: 1fr;
    }
    
    .hms-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .hms-amenities-list {
        grid-template-columns: 1fr;
    }
	.hms-image-gallery {
    grid-template-columns: 1fr !important;
    }

  .hms-image-gallery > .col-span-3,
  .hms-image-gallery > .col-span-2 {
    grid-column: span 1 !important;
   }

  .hms-image-gallery > .row-start-1,
  .hms-image-gallery > .row-start-2 {
    grid-row: auto !important;
   }
}

/* Responsive Design for Search */
@media (max-width: 768px) {
    .hms-search-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hms-search-criteria {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hms-available-room-card .hms-room-actions {
        flex-direction: column;
    }
    
    .hms-available-room-card .hms-room-specs {
        flex-direction: column;
        gap: 10px;
    }
	.hms-hotel-name {
		font-size:1.2em;
	}
	 .hms-booking-grid {
        grid-template-columns: 1fr;
    }
    
    .hms-booking-customer-info,
    .hms-booking-room-info {
        padding: 20px;
    }
    
    .hms-booking-customer-info {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
	    .hms-booking-container {
        padding: 15px;
    }
    
    .hms-hotels-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .hms-booking-rooms .hms-rooms-grid, .hms-rooms-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .hms-filter-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hms-filter-item {
        margin-bottom: 10px;
    }
    
    .hms-hotel-meta,
    .hms-room-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
	.hms-available-room-card  .hms-room-image{
		width: 100%;
	}
} 

@media (max-width: 480px) {
    .hms-hotel-content,
    .hms-room-content {
        padding: 16px 0;
    }
    
    .hms-hotel-name,
    .hms-room-name {
        font-size: 1.5rem;
    }
    
    .hms-view-rooms-btn,
    .hms-book-room-btn {
        width: 100%;
        text-align: center;
    }
}

 