/**
 * WP Hotel Booking - Frontend Styles
 *
 * @package WPHotelBooking
 */

/* ============================================
   Variables
   ============================================ */
:root {
	--glhb-primary-color: #7c3aed;
	--glhb-primary-hover: #6d28d9;
	--glhb-secondary-color: #1f2937;
	--glhb-success-color: #10b981;
	--glhb-error-color: #ef4444;
	--glhb-warning-color: #f59e0b;
	--glhb-border-color: #e5e7eb;
	--glhb-text-color: #1f2937;
	--glhb-text-light: #6b7280;
	--glhb-bg-light: #f9fafb;
	--glhb-border-radius: 8px;
	--glhb-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ============================================
   Base Styles
   ============================================ */
.glhb-btn {
	display: inline-block;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: var(--glhb-border-radius);
	cursor: pointer;
	transition: all 0.2s ease;
}

.glhb-btn-primary {
	background-color: var(--glhb-primary-color);
	color: #fff;
}

.glhb-btn-primary:hover {
	background-color: var(--glhb-primary-hover);
	color: #fff;
}

.glhb-btn-primary:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

.glhb-btn-secondary {
	background-color: #f1f1f1;
	color: var(--glhb-secondary-color);
	border: 1px solid var(--glhb-border-color);
}

.glhb-btn-secondary:hover {
	background-color: #e1e1e1;
}

/* ============================================
   Search Form
   ============================================ */
.glhb-search-form {
	background: #fff;
	padding: 20px;
	border-radius: var(--glhb-border-radius);
	box-shadow: var(--glhb-box-shadow);
	margin-bottom: 30px;
}

.glhb-search-horizontal .glhb-search-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: flex-end;
}

.glhb-search-vertical .glhb-search-fields {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.glhb-search-form .glhb-field {
	flex: 1;
	min-width: 150px;
}

.glhb-search-form .glhb-field label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 13px;
	color: var(--glhb-text-color);
}

.glhb-search-form .glhb-field input,
.glhb-search-form .glhb-field select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--glhb-border-color);
	border-radius: var(--glhb-border-radius);
	font-size: 14px;
}

.glhb-search-form .glhb-field input:focus,
.glhb-search-form .glhb-field select:focus {
	border-color: var(--glhb-primary-color);
	outline: none;
}

.glhb-search-form .glhb-field-submit {
	flex: 0 0 auto;
}

/* ============================================
   Room Grid
   ============================================ */
.glhb-room-grid {
	display: grid;
	gap: 30px;
}

.glhb-columns-2 { grid-template-columns: repeat(2, 1fr); }
.glhb-columns-3 { grid-template-columns: repeat(3, 1fr); }
.glhb-columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
	.glhb-columns-3,
	.glhb-columns-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
	.glhb-room-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Room Card
   ============================================ */
.glhb-room-card {
	background: #fff;
	border-radius: var(--glhb-border-radius);
	box-shadow: var(--glhb-box-shadow);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glhb-room-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.glhb-room-image {
	position: relative;
	padding-top: 66.67%;
	overflow: hidden;
}

.glhb-room-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.glhb-room-image .glhb-no-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--glhb-bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.glhb-room-image .glhb-no-image .dashicons {
	font-size: 48px;
	color: #ccc;
}

.glhb-room-type-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--glhb-primary-color);
	color: #fff;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 600;
	border-radius: var(--glhb-border-radius);
}

.glhb-room-content {
	padding: 20px;
}

.glhb-room-title {
	margin: 0 0 10px;
	font-size: 18px;
}

.glhb-room-title a {
	color: var(--glhb-text-color);
	text-decoration: none;
}

.glhb-room-title a:hover {
	color: var(--glhb-primary-color);
}

.glhb-room-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 15px;
	font-size: 13px;
	color: var(--glhb-text-light);
}

.glhb-room-meta .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	margin-right: 5px;
	vertical-align: middle;
}

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

.glhb-amenity {
	background: var(--glhb-bg-light);
	padding: 4px 10px;
	font-size: 12px;
	border-radius: 20px;
	color: var(--glhb-text-light);
}

.glhb-more-amenities {
	background: var(--glhb-primary-color);
	color: #fff;
}

.glhb-room-excerpt {
	margin-bottom: 15px;
	font-size: 14px;
	color: var(--glhb-text-light);
	line-height: 1.5;
}

.glhb-room-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	border-top: 1px solid var(--glhb-border-color);
}

.glhb-room-price .glhb-price {
	font-size: 20px;
	font-weight: 700;
	color: var(--glhb-primary-color);
}

.glhb-room-price .glhb-per-night {
	font-size: 13px;
	color: var(--glhb-text-light);
}

/* ============================================
   Booking Form
   ============================================ */
.glhb-booking-form-wrapper {
	max-width: 600px;
	margin: 0 auto;
}

.glhb-booking-form {
	background: #fff;
	padding: 30px;
	border-radius: var(--glhb-border-radius);
	box-shadow: var(--glhb-box-shadow);
}

.glhb-room-summary {
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--glhb-border-color);
}

.glhb-room-summary h3 {
	margin: 0 0 10px;
}

.glhb-room-summary .glhb-room-price .price {
	font-size: 24px;
	font-weight: 700;
	color: var(--glhb-primary-color);
}

.glhb-form-section {
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--glhb-border-color);
}

.glhb-form-section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.glhb-form-section h4 {
	margin: 0 0 15px;
	font-size: 16px;
	font-weight: 600;
}

.glhb-form-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.glhb-form-field {
	flex: 1;
}

.glhb-form-field.glhb-full-width {
	flex: 0 0 100%;
}

.glhb-form-field label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 13px;
}

.glhb-form-field label .required {
	color: var(--glhb-error-color);
}

.glhb-form-field input,
.glhb-form-field select,
.glhb-form-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--glhb-border-color);
	border-radius: var(--glhb-border-radius);
	font-size: 14px;
}

.glhb-form-field input:focus,
.glhb-form-field select:focus,
.glhb-form-field textarea:focus {
	border-color: var(--glhb-primary-color);
	outline: none;
}

.glhb-min-stay-notice {
	margin: 10px 0 0;
	font-size: 13px;
	color: var(--glhb-text-light);
}

.glhb-availability-notice {
	margin: 10px 0 0;
	padding: 8px 12px;
	font-size: 13px;
	border-radius: var(--glhb-border-radius, 8px);
	font-weight: 500;
}
.glhb-availability-notice.glhb-notice-ok {
	background: rgba(16, 185, 129, 0.1);
	color: var(--glhb-success-color, #10b981);
}
.glhb-availability-notice.glhb-notice-low {
	background: rgba(245, 158, 11, 0.1);
	color: var(--glhb-warning-color, #f59e0b);
}

/* Price Summary */
.glhb-price-summary {
	background: var(--glhb-bg-light);
	padding: 20px !important;
	border-radius: var(--glhb-border-radius);
	margin: 0 -10px;
}

#glhb-price-breakdown table {
	width: 100%;
	border-collapse: collapse;
}

#glhb-price-breakdown td {
	padding: 8px 0;
}

#glhb-price-breakdown tr:last-child td {
	padding-top: 12px;
	border-top: 1px solid var(--glhb-border-color);
	font-weight: 600;
}

/* Payment Methods */
.glhb-payment-methods {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.glhb-payment-method {
	padding: 15px;
	border: 1px solid var(--glhb-border-color);
	border-radius: var(--glhb-border-radius);
	cursor: pointer;
	transition: border-color 0.2s;
}

.glhb-payment-method:hover {
	border-color: var(--glhb-primary-color);
}

.glhb-payment-method label {
	display: block;
	cursor: pointer;
}

.glhb-payment-method input[type="radio"] {
	margin-right: 10px;
	width: auto;
}

.glhb-payment-title {
	font-weight: 600;
}

.glhb-payment-desc {
	display: block;
	margin-top: 5px;
	margin-left: 25px;
	font-size: 13px;
	color: var(--glhb-text-light);
}

/* Terms */
.glhb-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.glhb-checkbox-label input[type="checkbox"] {
	width: auto;
	margin-top: 3px;
}

/* Submit */
.glhb-submit-section {
	text-align: center;
}

.glhb-btn-book {
	width: 100%;
	padding: 15px;
	font-size: 16px;
}

#glhb-booking-messages {
	margin-bottom: 15px;
}

.glhb-message {
	padding: 12px 15px;
	border-radius: var(--glhb-border-radius);
	margin-bottom: 10px;
}

.glhb-message-error {
	background: #fef0f0;
	color: var(--glhb-error-color);
	border: 1px solid var(--glhb-error-color);
}

.glhb-message-success {
	background: #f0fef0;
	color: var(--glhb-success-color);
	border: 1px solid var(--glhb-success-color);
}

/* ============================================
   My Bookings
   ============================================ */
.glhb-my-bookings {
	max-width: 900px;
	margin: 0 auto;
}

.glhb-bookings-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--glhb-border-radius);
	box-shadow: var(--glhb-box-shadow);
	overflow: hidden;
}

.glhb-bookings-table th,
.glhb-bookings-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid var(--glhb-border-color);
}

.glhb-bookings-table th {
	background: var(--glhb-bg-light);
	font-weight: 600;
}

.glhb-bookings-table tr:last-child td {
	border-bottom: none;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 575px) {
	.glhb-search-horizontal .glhb-search-fields {
		flex-direction: column;
	}

	.glhb-search-form .glhb-field {
		width: 100%;
	}

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

	.glhb-room-footer {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
}

/* ============================================
   Single Room Page
   ============================================ */
.glhb-single-room {
	padding: 40px 0;
}

.glhb-single-room-container {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Room Content (Left Column) */
.glhb-room-content {
	min-width: 0;
}

.glhb-room-header {
	margin-bottom: 30px;
}

.glhb-room-header .glhb-room-title {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #1f2937;
}

.glhb-room-header .glhb-room-type {
	font-size: 14px;
	color: #7c3aed;
	font-weight: 500;
}

/* Room Gallery */
.glhb-room-gallery {
	margin-bottom: 40px;
}

.glhb-gallery-main {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #f3f4f6;
	margin-bottom: 12px;
}

.glhb-gallery-main-image {
	width: 100%;
	height: 450px;
	object-fit: cover;
	display: block;
}

.glhb-gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: all 0.2s ease;
	color: #1f2937;
}

.glhb-gallery-nav:hover {
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.glhb-gallery-prev {
	left: 16px;
}

.glhb-gallery-next {
	right: 16px;
}

.glhb-gallery-thumbnails {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 4px;
}

.glhb-gallery-thumb {
	flex: 0 0 80px;
	width: 80px;
	height: 60px;
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	padding: 0;
	background: none;
	transition: all 0.2s ease;
}

.glhb-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.glhb-gallery-thumb:hover,
.glhb-gallery-thumb.active {
	border-color: #7c3aed;
}

/* Room Description */
.glhb-room-description {
	margin-bottom: 40px;
}

.glhb-room-description h2,
.glhb-room-amenities h2,
.glhb-room-details h2,
.glhb-room-policies h2 {
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 20px;
}

.glhb-room-description-content {
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
}

/* Room Amenities */
.glhb-room-amenities {
	margin-bottom: 40px;
}

.glhb-amenities-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.glhb-amenity-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: #f9fafb;
	border-radius: 8px;
}

.glhb-amenity-icon {
	color: #7c3aed;
	flex-shrink: 0;
}

.glhb-amenity-name {
	font-size: 14px;
	color: #374151;
}

/* Room Details */
.glhb-room-details {
	margin-bottom: 40px;
}

.glhb-details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}

.glhb-detail-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
	background: #f9fafb;
	border-radius: 12px;
}

.glhb-detail-icon {
	color: #7c3aed;
}

.glhb-detail-label {
	font-size: 12px;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.glhb-detail-value {
	font-size: 15px;
	font-weight: 600;
	color: #1f2937;
}

/* Room Policies */
.glhb-room-policies {
	margin-bottom: 40px;
}

.glhb-policies-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 16px;
}

.glhb-policy-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
	background: #fef3c7;
	border-radius: 12px;
	border: 1px solid #fcd34d;
}

.glhb-policy-icon {
	color: #d97706;
}

.glhb-policy-label {
	font-size: 12px;
	color: #92400e;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.glhb-policy-value {
	font-size: 15px;
	font-weight: 600;
	color: #78350f;
}

/* ============================================
   Room Map
   ============================================ */
.glhb-room-map {
	margin-top: 32px;
	margin-bottom: 32px;
}

.glhb-room-map h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--glhb-text-color);
	margin-bottom: 16px;
}

.glhb-room-map-container {
	border-radius: var(--glhb-border-radius);
	overflow: hidden;
	border: 1px solid var(--glhb-border-color);
}

.glhb-room-map-container iframe {
	width: 100%;
	height: 400px;
	display: block;
	border: 0;
}

/* ============================================
   Booking Widget
   ============================================ */
.glhb-room-sidebar {
	position: relative;
}

.glhb-booking-widget {
	position: sticky;
	top: 100px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.glhb-widget-price {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e7eb;
}

.glhb-price-amount {
	font-size: 28px;
	font-weight: 700;
	color: #1f2937;
}

.glhb-price-period {
	font-size: 14px;
	color: #6b7280;
}

/* Step Indicators */
.glhb-widget-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
}

.glhb-step-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.glhb-step-number {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e5e7eb;
	color: #6b7280;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.glhb-step-indicator.active .glhb-step-number,
.glhb-step-indicator.completed .glhb-step-number {
	background: #7c3aed;
	color: #fff;
}

.glhb-step-label {
	font-size: 11px;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.glhb-step-indicator.active .glhb-step-label {
	color: #7c3aed;
}

.glhb-step-divider {
	width: 24px;
	height: 2px;
	background: #e5e7eb;
	margin-bottom: 18px;
}

/* Widget Steps Content */
.glhb-widget-step {
	display: none;
}

.glhb-widget-step.active {
	display: block;
}

.glhb-widget-field {
	margin-bottom: 16px;
}

.glhb-widget-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
}

.glhb-widget-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.2s ease;
}

.glhb-widget-input:focus {
	border-color: #7c3aed;
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
	outline: none;
}

.glhb-widget-note {
	font-size: 12px;
	color: #6b7280;
	margin: 8px 0 16px;
}

.glhb-widget-message {
	padding: 12px;
	border-radius: 8px;
	font-size: 13px;
	margin-bottom: 16px;
}

.glhb-message-error {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
}

.glhb-message-success {
	background: #f0fdf4;
	color: #16a34a;
	border: 1px solid #bbf7d0;
}

.glhb-widget-btn {
	width: 100%;
	padding: 14px 20px;
	background: #7c3aed;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.glhb-widget-btn:hover {
	background: #6d28d9;
}

.glhb-widget-btn:disabled {
	background: #d1d5db;
	cursor: not-allowed;
}

.glhb-widget-back {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	color: #6b7280;
	font-size: 13px;
	cursor: pointer;
	margin-bottom: 20px;
	padding: 0;
}

.glhb-widget-back:hover {
	color: #7c3aed;
}

/* Counter Field */
.glhb-counter-field {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid #f3f4f6;
}

.glhb-counter-field:last-of-type {
	border-bottom: none;
}

.glhb-counter {
	display: flex;
	align-items: center;
	gap: 12px;
}

.glhb-counter-btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d1d5db;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	font-size: 18px;
	color: #374151;
	transition: all 0.2s ease;
}

.glhb-counter-btn:hover {
	border-color: #7c3aed;
	color: #7c3aed;
}

.glhb-counter-value {
	width: 40px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	border: none;
	background: none;
	color: #1f2937;
}

/* Widget Summary */
.glhb-widget-summary {
	background: #f9fafb;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 16px;
}

.glhb-summary-dates {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 8px;
}

.glhb-summary-arrow {
	color: #9ca3af;
}

.glhb-summary-guests {
	text-align: center;
	font-size: 13px;
	color: #6b7280;
}

/* Widget Pricing */
.glhb-widget-pricing {
	margin-bottom: 20px;
}

.glhb-pricing-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	font-size: 14px;
}

.glhb-pricing-label {
	color: #6b7280;
}

.glhb-pricing-value {
	color: #1f2937;
	font-weight: 500;
}

.glhb-pricing-total {
	border-top: 1px solid #e5e7eb;
	padding-top: 12px;
	margin-top: 4px;
}

.glhb-pricing-total .glhb-pricing-label,
.glhb-pricing-total .glhb-pricing-value {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
}

.glhb-btn-price {
	font-weight: 400;
}

/* ============================================
   Booking Modal
   ============================================ */
.glhb-booking-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.glhb-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.glhb-modal-container {
	position: relative;
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	margin: 20px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.glhb-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 24px;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
}

.glhb-modal-title h2 {
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 4px;
}

.glhb-modal-room-name {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.glhb-modal-close {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	color: #6b7280;
	transition: all 0.2s ease;
}

.glhb-modal-close:hover {
	background: #e5e7eb;
	color: #1f2937;
}

.glhb-modal-body {
	padding: 24px;
	overflow-y: auto;
	flex: 1;
}

/* Modal Step Indicators */
.glhb-modal-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	gap: 0;
	border-bottom: 1px solid var(--glhb-border-color, #e5e7eb);
	flex-shrink: 0;
}
.glhb-modal-step-dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	background: var(--glhb-bg-light, #f3f4f6);
	color: var(--glhb-text-light, #6b7280);
	transition: all 0.2s ease;
}
.glhb-modal-step-dot.active {
	background: var(--glhb-primary-color, #7c3aed);
	color: #fff;
}
.glhb-modal-step-dot.completed {
	background: var(--glhb-success-color, #10b981);
	color: #fff;
}
.glhb-modal-step-line {
	width: 32px;
	height: 2px;
	background: var(--glhb-border-color, #e5e7eb);
	margin: 0 4px;
}

/* Modal Step Content */
.glhb-modal-step { display: none; }
.glhb-modal-step.active { display: block; }

/* Modal Step Footer */
.glhb-modal-step-footer {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}
.glhb-modal-step-footer .glhb-modal-btn {
	flex: 1;
}
.glhb-modal-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border: none;
	border-radius: var(--glhb-border-radius, 8px);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}
.glhb-modal-btn-next,
.glhb-modal-submit {
	background: var(--glhb-primary-color, #7c3aed);
	color: #fff;
}
.glhb-modal-btn-next:hover,
.glhb-modal-submit:hover {
	background: var(--glhb-primary-hover, #6d28d9);
}
.glhb-modal-btn-next:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.glhb-modal-btn-back {
	background: var(--glhb-bg-light, #f3f4f6);
	color: var(--glhb-text-color, #1f2937);
}
.glhb-modal-btn-back:hover {
	background: var(--glhb-border-color, #e5e7eb);
}

/* Modal Calendar */
.glhb-modal-cal-legend {
	display: flex;
	gap: 14px;
	margin-bottom: 12px;
	font-size: 12px;
}
.glhb-modal-calendar {
	border: 1px solid var(--glhb-border-color, #e5e7eb);
	border-radius: var(--glhb-border-radius, 8px);
	overflow: hidden;
}
.glhb-mcal-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	background: var(--glhb-bg-light, #f9fafb);
	border-bottom: 1px solid var(--glhb-border-color, #e5e7eb);
}
.glhb-mcal-month-label {
	font-weight: 600;
	font-size: 15px;
}
.glhb-mcal-prev,
.glhb-mcal-next {
	background: none;
	border: 1px solid var(--glhb-border-color, #e5e7eb);
	border-radius: 4px;
	width: 30px;
	height: 30px;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	color: var(--glhb-text-color, #1f2937);
	display: flex;
	align-items: center;
	justify-content: center;
}
.glhb-mcal-prev:hover,
.glhb-mcal-next:hover { background: var(--glhb-border-color, #e5e7eb); }
.glhb-mcal-prev:disabled,
.glhb-mcal-next:disabled { opacity: 0.3; cursor: not-allowed; }

.glhb-mcal-weekdays,
.glhb-mcal-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	text-align: center;
	padding: 0 8px;
}
.glhb-mcal-weekdays {
	padding-top: 10px;
	padding-bottom: 4px;
	font-size: 11px;
	color: var(--glhb-text-light, #6b7280);
	font-weight: 600;
}
.glhb-mcal-days { padding-bottom: 8px; }

.glhb-mcal-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4px 2px;
	min-height: 40px;
	border-radius: 4px;
	font-size: 13px;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.15s ease;
	user-select: none;
}
.glhb-mcal-empty { background: transparent; cursor: default; }
.glhb-mcal-available { background: rgba(16, 185, 129, 0.08); }
.glhb-mcal-available:hover { background: rgba(16, 185, 129, 0.2); }
.glhb-mcal-low { background: rgba(245, 158, 11, 0.12); }
.glhb-mcal-low:hover { background: rgba(245, 158, 11, 0.25); }
.glhb-mcal-booked {
	background: rgba(239, 68, 68, 0.08);
	color: var(--glhb-error-color, #ef4444);
	cursor: not-allowed;
	opacity: 0.6;
}
.glhb-mcal-blocked,
.glhb-mcal-maintenance {
	background: var(--glhb-bg-light, #f9fafb);
	color: var(--glhb-text-light, #6b7280);
	text-decoration: line-through;
	cursor: not-allowed;
	opacity: 0.5;
}
.glhb-mcal-past {
	color: var(--glhb-text-light, #6b7280);
	opacity: 0.4;
	cursor: not-allowed;
}
.glhb-mcal-disabled { cursor: not-allowed; }

/* Calendar selection */
.glhb-mcal-selected-start,
.glhb-mcal-selected-end {
	background: var(--glhb-primary-color, #7c3aed) !important;
	color: #fff !important;
	opacity: 1 !important;
}
.glhb-mcal-in-range {
	background: rgba(124, 58, 237, 0.12) !important;
	opacity: 1 !important;
}
.glhb-mcal-day-num { font-weight: 500; }
.glhb-mcal-day-left { font-size: 9px; color: var(--glhb-text-light, #6b7280); }
.glhb-mcal-low .glhb-mcal-day-left { color: var(--glhb-warning-color, #f59e0b); font-weight: 600; }
.glhb-mcal-selected-start .glhb-mcal-day-left,
.glhb-mcal-selected-end .glhb-mcal-day-left { color: rgba(255,255,255,0.7); }

/* Date selection chips */
.glhb-modal-date-selection {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 16px;
	padding: 12px;
	background: var(--glhb-bg-light, #f9fafb);
	border-radius: var(--glhb-border-radius, 8px);
}
.glhb-date-chip {
	text-align: center;
}
.glhb-date-chip-label {
	display: block;
	font-size: 11px;
	color: var(--glhb-text-light, #6b7280);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}
.glhb-date-chip-value {
	font-size: 15px;
	font-weight: 600;
	color: var(--glhb-text-color, #1f2937);
}
.glhb-date-arrow {
	color: var(--glhb-text-light, #6b7280);
	font-size: 18px;
}

/* Modal notes */
.glhb-modal-note {
	margin: 10px 0 0;
	font-size: 13px;
	color: var(--glhb-text-light, #6b7280);
}

/* Modal counter fields */
.glhb-modal-counter-field {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px solid var(--glhb-border-color, #e5e7eb);
}
.glhb-modal-counter-field label {
	font-size: 15px;
	font-weight: 500;
}

/* Modal pricing */
.glhb-modal-pricing {
	margin-top: 16px;
}
.glhb-modal-pricing .glhb-pricing-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid var(--glhb-border-color, #e5e7eb);
	font-size: 14px;
}
.glhb-modal-pricing .glhb-pricing-total {
	font-weight: 600;
	font-size: 16px;
	border-bottom: none;
}

/* Modal Summary */
.glhb-modal-summary {
	background: #f9fafb;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 24px;
}

.glhb-modal-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
}

.glhb-modal-summary-label {
	color: #6b7280;
	font-size: 14px;
}

.glhb-modal-summary-value {
	color: #1f2937;
	font-weight: 500;
	font-size: 14px;
}

.glhb-modal-summary-total {
	border-top: 1px solid #e5e7eb;
	margin-top: 8px;
	padding-top: 12px;
}

.glhb-modal-summary-total .glhb-modal-summary-label,
.glhb-modal-summary-total .glhb-modal-summary-value {
	font-weight: 600;
	color: #1f2937;
}

/* Modal Form */
.glhb-modal-section {
	margin-bottom: 24px;
}

.glhb-modal-section h3 {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 16px;
}

.glhb-modal-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.glhb-modal-field {
	margin-bottom: 16px;
}

.glhb-modal-field label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: #374151;
	margin-bottom: 6px;
}

.glhb-modal-field label .required {
	color: #dc2626;
}

.glhb-modal-field input,
.glhb-modal-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.2s ease;
}

.glhb-modal-field input:focus,
.glhb-modal-field textarea:focus {
	border-color: #7c3aed;
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
	outline: none;
}

/* Payment Methods in Modal */
.glhb-payment-methods {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.glhb-payment-method {
	display: block;
	cursor: pointer;
}

.glhb-payment-method input {
	display: none;
}

.glhb-payment-method-content {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	transition: all 0.2s ease;
}

.glhb-payment-method input:checked + .glhb-payment-method-content {
	border-color: #7c3aed;
	background: rgba(124, 58, 237, 0.04);
}

.glhb-payment-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	border-radius: 10px;
	color: #6b7280;
}

.glhb-payment-method input:checked + .glhb-payment-method-content .glhb-payment-icon {
	background: #7c3aed;
	color: #fff;
}

.glhb-payment-details {
	flex: 1;
}

.glhb-payment-name {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 2px;
}

.glhb-payment-desc {
	display: block;
	font-size: 13px;
	color: #6b7280;
}

/* Terms Checkbox */
.glhb-modal-terms {
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
}

.glhb-terms-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
	color: #4b5563;
}

.glhb-terms-checkbox input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: #7c3aed;
}

.glhb-terms-checkbox a {
	color: #7c3aed;
	text-decoration: none;
}

.glhb-terms-checkbox a:hover {
	text-decoration: underline;
}

/* Modal Message */
.glhb-modal-message {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 16px;
}

/* Modal Footer */
.glhb-modal-footer {
	padding-top: 16px;
}

.glhb-modal-submit {
	width: 100%;
	padding: 16px 24px;
	background: #7c3aed;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.glhb-modal-submit:hover {
	background: #6d28d9;
}

.glhb-modal-submit:disabled {
	background: #d1d5db;
	cursor: not-allowed;
}

.glhb-submit-loading {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* Spinner */
.glhb-spinner {
	animation: glhb-spin 1s linear infinite;
}

.glhb-spinner-circle {
	stroke-dasharray: 50;
	stroke-dashoffset: 20;
}

@keyframes glhb-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Success State */
.glhb-modal-success {
	text-align: center;
	padding: 40px 20px;
}

.glhb-success-icon {
	color: #16a34a;
	margin-bottom: 20px;
}

.glhb-modal-success h3 {
	font-size: 24px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 12px;
}

.glhb-success-message {
	color: #6b7280;
	margin: 0 0 20px;
	line-height: 1.6;
}

.glhb-booking-number-display {
	background: #f9fafb;
	padding: 16px;
	border-radius: 8px;
	margin-bottom: 24px;
	color: #6b7280;
}

.glhb-booking-number-display strong {
	display: block;
	font-size: 18px;
	color: #1f2937;
	margin-top: 4px;
}

.glhb-modal-close-btn {
	padding: 12px 32px;
	background: #f3f4f6;
	color: #374151;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.glhb-modal-close-btn:hover {
	background: #e5e7eb;
}

/* ============================================
   Single Room Responsive
   ============================================ */
@media (max-width: 991px) {
	.glhb-single-room-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.glhb-room-sidebar {
		order: -1;
	}

	.glhb-booking-widget {
		position: static;
	}

	.glhb-gallery-main-image {
		height: 350px;
	}
}

@media (max-width: 575px) {
	.glhb-single-room-container {
		padding: 0 15px;
	}

	.glhb-room-header .glhb-room-title {
		font-size: 24px;
	}

	.glhb-gallery-main-image {
		height: 250px;
	}

	.glhb-amenities-list,
	.glhb-details-grid,
	.glhb-policies-grid,
	.glhb-extra-info-grid {
		grid-template-columns: 1fr;
	}

	.glhb-modal-field-row {
		grid-template-columns: 1fr;
	}

	.glhb-modal-container {
		margin: 10px;
		max-height: 95vh;
	}
}

/* ============================================
   Extra Information Section
   ============================================ */
.glhb-room-extra-info {
	margin-bottom: 40px;
}

.glhb-room-extra-info h2 {
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 20px;
}

.glhb-extra-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 20px 32px;
}

.glhb-extra-info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.glhb-extra-info-icon {
	flex-shrink: 0;
	font-size: 22px;
	color: #6b7280;
	width: 28px;
	text-align: center;
	line-height: 1;
	margin-top: 2px;
}

.glhb-extra-info-icon img {
	width: 24px;
	height: 24px;
	opacity: 0.7;
}

.glhb-extra-info-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.glhb-extra-info-label {
	font-size: 13px;
	color: #6b7280;
	font-weight: 400;
}

.glhb-extra-info-value {
	font-size: 15px;
	font-weight: 600;
	color: #1f2937;
}

/* ============================================
   Guest Reviews Section
   ============================================ */
.glhb-reviews-section {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #e5e7eb;
}

.glhb-reviews-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 16px;
}

.glhb-reviews-title {
	font-size: 24px;
	font-weight: 600;
	color: #1f2937;
	margin: 0;
}

.glhb-reviews-summary {
	display: flex;
	align-items: center;
	gap: 12px;
}

.glhb-average-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.glhb-rating-number {
	font-size: 32px;
	font-weight: 700;
	color: #1f2937;
}

.glhb-review-count {
	font-size: 14px;
	color: #6b7280;
}

/* Star Rating Component */
.glhb-star-rating {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.glhb-star-rating.size-small svg {
	width: 14px;
	height: 14px;
}

.glhb-star-rating.size-medium svg {
	width: 20px;
	height: 20px;
}

.glhb-star-rating.size-large svg {
	width: 24px;
	height: 24px;
}

.glhb-star-rating .glhb-star {
	color: #d1d5db;
}

.glhb-star-rating .glhb-star.filled {
	color: #fbbf24;
}

/* Reviews List */
.glhb-reviews-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Single Review Item */
.glhb-review-item {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	transition: box-shadow 0.2s ease;
}

.glhb-review-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.glhb-review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
	flex-wrap: wrap;
	gap: 12px;
}

.glhb-review-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.glhb-review-avatar {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

.glhb-review-author-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.glhb-review-author-name {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	display: flex;
	align-items: center;
	gap: 8px;
}

.glhb-verified-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #dcfce7;
	color: #16a34a;
	font-size: 11px;
	font-weight: 500;
	padding: 3px 8px;
	border-radius: 20px;
}

.glhb-verified-badge svg {
	width: 12px;
	height: 12px;
}

.glhb-review-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #6b7280;
}

.glhb-review-meta-separator {
	width: 4px;
	height: 4px;
	background: #d1d5db;
	border-radius: 50%;
}

.glhb-review-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.glhb-review-rating-number {
	font-size: 14px;
	font-weight: 600;
	color: #1f2937;
}

/* Review Title */
.glhb-review-title {
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 12px;
}

/* Review Content */
.glhb-review-content {
	font-size: 15px;
	line-height: 1.7;
	color: #4b5563;
	margin-bottom: 16px;
}

/* Review Photos */
.glhb-review-photos {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.glhb-review-photo {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.glhb-review-photo:hover {
	transform: scale(1.05);
}

.glhb-review-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Review Footer */
.glhb-review-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-top: 16px;
	border-top: 1px solid #f3f4f6;
}

.glhb-helpful-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 13px;
	color: #6b7280;
	cursor: pointer;
	transition: all 0.2s ease;
}

.glhb-helpful-btn:hover {
	border-color: #7c3aed;
	color: #7c3aed;
}

.glhb-helpful-btn.voted {
	background: #f3e8ff;
	border-color: #7c3aed;
	color: #7c3aed;
}

.glhb-helpful-btn svg {
	width: 16px;
	height: 16px;
}

.glhb-helpful-count {
	font-weight: 600;
}

/* No Reviews */
.glhb-no-reviews {
	text-align: center;
	padding: 40px 20px;
	background: #f9fafb;
	border-radius: 12px;
}

.glhb-no-reviews p {
	margin: 0;
	color: #6b7280;
	font-size: 15px;
}

/* Load More Reviews */
.glhb-reviews-load-more {
	text-align: center;
	margin-top: 24px;
}

.glhb-load-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f3f4f6;
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	cursor: pointer;
	transition: all 0.2s ease;
}

.glhb-load-more-btn:hover {
	background: #e5e7eb;
}

.glhb-load-more-btn:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

/* ============================================
   Review Form Section
   ============================================ */
.glhb-review-form-section {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #e5e7eb;
}

.glhb-review-form-title {
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 24px;
}

/* Verification Step */
.glhb-verify-step {
	background: #f9fafb;
	border-radius: 12px;
	padding: 24px;
}

.glhb-verify-description {
	font-size: 14px;
	color: #6b7280;
	margin: 0 0 20px;
	line-height: 1.6;
}

.glhb-verify-error {
	margin-top: 16px;
	padding: 12px 16px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 8px;
	color: #dc2626;
	font-size: 14px;
}

/* Review Form */
.glhb-review-form .glhb-form-row {
	margin-bottom: 20px;
}

.glhb-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	margin-bottom: 8px;
}

.glhb-label .required {
	color: #dc2626;
}

.glhb-label .glhb-optional {
	font-weight: 400;
	color: #9ca3af;
	font-size: 13px;
}

.glhb-input,
.glhb-textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.2s ease;
}

.glhb-input:focus,
.glhb-textarea:focus {
	border-color: #7c3aed;
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
	outline: none;
}

.glhb-textarea {
	min-height: 120px;
	resize: vertical;
}

/* Verified Guest Info */
.glhb-verified-info {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 16px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	margin-bottom: 20px;
}

.glhb-verified-info .glhb-verified-badge {
	background: #16a34a;
	color: #fff;
	padding: 6px 12px;
	font-size: 13px;
}

.glhb-stay-info {
	font-size: 14px;
	color: #166534;
}

/* Rating Input */
.glhb-rating-input {
	display: inline-flex;
	gap: 4px;
}

.glhb-rating-input .glhb-star {
	cursor: pointer;
	color: #d1d5db;
	transition: all 0.15s ease;
}

.glhb-rating-input .glhb-star:hover,
.glhb-rating-input .glhb-star.hover {
	color: #fde047;
	transform: scale(1.1);
}

.glhb-rating-input .glhb-star.active {
	color: #fbbf24;
}

/* Photo Upload */
.glhb-photo-upload {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.glhb-upload-photos-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	font-size: 14px;
}

.glhb-photo-previews {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.glhb-photo-preview {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 8px;
	overflow: hidden;
}

.glhb-photo-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.glhb-photo-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 24px;
	height: 24px;
	background: rgba(0, 0, 0, 0.7);
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.glhb-photo-remove:hover {
	background: #dc2626;
}

/* Submit Button */
.glhb-submit-review-btn {
	min-width: 150px;
}

/* Form Messages */
.glhb-form-messages {
	margin-top: 16px;
}

.glhb-form-error,
.glhb-form-success {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
}

.glhb-form-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #dc2626;
}

.glhb-form-success {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #16a34a;
}

/* ============================================
   Reviews Responsive
   ============================================ */
@media (max-width: 575px) {
	.glhb-reviews-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.glhb-review-header {
		flex-direction: column;
	}

	.glhb-review-item {
		padding: 16px;
	}

	.glhb-review-photos {
		gap: 6px;
	}

	.glhb-review-photo {
		width: 60px;
		height: 60px;
	}

	.glhb-photo-preview {
		width: 80px;
		height: 80px;
	}
}
