/* Grid Layout */
.amelia-grid-918dc3b0 {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}

/* Card */
.amelia-card-918dc3b0 {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.amelia-card-918dc3b0:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Image */
.amelia-img-918dc3b0 {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
}
.amelia-img-placeholder-918dc3b0 {
	background-color: #f5f5f5;
}

/* Content */
.amelia-content-918dc3b0 {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

/* Typography */
.amelia-cat-918dc3b0 {
	font-size: 12px;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 5px;
	display: block;
}

.amelia-title-918dc3b0 {
	margin: 0 0 10px 0;
	font-size: 18px;
	color: #333;
}

.amelia-desc-918dc3b0 {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
	flex-grow: 1;
}

/* Meta */
.amelia-meta-wrap-918dc3b0 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.amelia-meta-918dc3b0 {
	font-size: 14px;
	color: #444;
	display: flex;
	align-items: center;
	gap: 5px;
}

.amelia-price-918dc3b0 {
	font-weight: bold;
	color: #111;
}

/* Button */
.amelia-btn-wrap-918dc3b0 {
	margin-top: auto;
}

.amelia-btn-918dc3b0 {
	display: inline-block;
	width: 100%;
	padding: 10px 20px;
	background: #0073aa;
	color: #fff;
	text-align: center;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
}

.amelia-btn-918dc3b0:hover {
	background: #005177;
}

/* Search */
.amelia-search-wrap-918dc3b0 {
	margin-bottom: 20px;
}
.amelia-search-input-918dc3b0 {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}

/* Pagination */
.amelia-pagination-918dc3b0 {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}
.amelia-page-btn-918dc3b0 {
	padding: 5px 12px;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
	border-radius: 4px;
}
.amelia-page-btn-918dc3b0.active {
	background: #0073aa;
	color: #fff;
	border-color: #0073aa;
}

/* Modal for Booking */
.amelia-booking-modal-918dc3b0 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.amelia-modal-inner-918dc3b0 {
	background: #fff;
	width: 90%;
	max-width: 800px;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 8px;
	position: relative;
	padding: 40px 20px 20px;
}
.amelia-modal-close-918dc3b0 {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}
