/**
 * Booking Form Styles
 */

/* Product Gallery in Form */
.atacama-product-gallery-section {
	margin-bottom: 30px;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 12px;
	box-sizing: border-box;
	max-width: 100% !important;
	width: 100% !important;
	overflow: hidden;
}

.atacama-main-image {
	position: relative;
	width: 100% !important;
	max-width: 100% !important;
	height: 400px !important;
	max-height: 400px !important;
	background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}

.atacama-main-image img {
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
	max-height: 100% !important;
	object-fit: cover !important;
	display: block;
	border: none;
	margin: 0;
	padding: 0;
}

.atacama-gallery-thumbnails {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 10px;
	scrollbar-width: thin;
}

.atacama-gallery-thumbnails::-webkit-scrollbar {
	height: 6px;
}

.atacama-gallery-thumbnails::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.atacama-gallery-thumbnails::-webkit-scrollbar-thumb {
	background: #667eea;
	border-radius: 3px;
}

.atacama-gallery-thumb {
	flex: 0 0 100px;
	aspect-ratio: 1;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: all 0.3s ease;
	opacity: 0.7;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	position: relative;
}

.atacama-gallery-thumb:hover {
	opacity: 1;
	transform: scale(1.05);
	border-color: #667eea;
}

.atacama-gallery-thumb.active {
	border-color: #667eea;
	opacity: 1;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
	transform: scale(1.05);
}

.atacama-gallery-thumb.active::after {
	content: '';
	position: absolute;
	top: 5px;
	right: 5px;
	width: 20px;
	height: 20px;
	background: #667eea;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

/* Rooms Configuration Section */
.atacama-rooms-configuration-section {
	margin-bottom: 30px;
	padding: 25px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.atacama-rooms-section-title {
	font-size: 22px;
	font-weight: 600;
	color: #2c3e50;
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.atacama-rooms-section-title .atacama-icon {
	font-size: 24px;
}

.atacama-rooms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.atacama-room-card {
	padding: 0;
	background: #f8f9fa;
	border-radius: 12px;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.atacama-room-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.atacama-room-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #e0e0e0;
}

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

.atacama-room-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 15px;
	padding: 20px 20px 15px;
	padding-bottom: 15px;
	border-bottom: 2px solid #dee2e6;
}

.atacama-room-name {
	font-size: 18px;
	font-weight: 600;
	color: #2c3e50;
	margin: 0;
	flex: 1;
}

.atacama-room-type-badge {
	padding: 4px 12px;
	background: #667eea;
	color: #fff;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.atacama-room-beds {
	margin-bottom: 15px;
}

.atacama-room-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #495057;
	margin-bottom: 8px;
}

.atacama-beds-list {
	font-size: 15px;
	color: #6c757d;
	line-height: 1.6;
}

.atacama-room-features {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
	padding: 0 20px 20px;
	padding-top: 15px;
	border-top: 1px solid #e9ecef;
}

.atacama-room-feature {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: #fff;
	border-radius: 20px;
	font-size: 13px;
	color: #495057;
	border: 1px solid #dee2e6;
}

.atacama-feature-icon {
	font-size: 16px;
}

.atacama-feature-text {
	font-weight: 500;
}

/* Responsive adjustments for rooms grid */
@media (max-width: 768px) {
	.atacama-rooms-grid {
		grid-template-columns: 1fr;
	}
}

/* Product Description */
.atacama-product-description-section {
	padding: 30px 35px;
	background: #ffffff;
	border-bottom: 1px solid #e0e0e0;
}

.atacama-product-description-section h3 {
	margin: 0 0 15px 0;
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
	display: flex;
	align-items: center;
	gap: 8px;
}

.atacama-product-description-section h3::before {
	content: '';
	width: 4px;
	height: 22px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 2px;
}

.atacama-product-description-content {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
}

/* Rooms Configuration Section */
.atacama-rooms-config-section {
	padding: 30px 35px;
	background: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 30px;
}

.atacama-rooms-config-section h3 {
	margin: 0 0 20px 0;
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
	display: flex;
	align-items: center;
	gap: 8px;
}

.atacama-rooms-config-section h3::before {
	content: '';
	width: 4px;
	height: 22px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 2px;
}

.atacama-rooms-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.atacama-room-item {
	background: #f8f9fa;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
	transition: all 0.3s ease;
}

.atacama-room-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: #667eea;
}

.atacama-room-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e0e0e0;
}

.atacama-room-header h4 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.atacama-room-type-badge {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.atacama-room-beds {
	margin-bottom: 15px;
}

.atacama-room-beds strong {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-size: 14px;
}

.atacama-room-beds ul {
	margin: 0;
	padding-left: 20px;
	list-style: none;
}

.atacama-room-beds ul li {
	padding: 4px 0;
	color: #555;
	font-size: 14px;
	position: relative;
}

.atacama-room-beds ul li::before {
	content: '🛏️';
	margin-right: 8px;
}

.atacama-room-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e0e0e0;
}

.atacama-amenity-item {
	background: white;
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 13px;
	color: #555;
	border: 1px solid #e0e0e0;
	font-weight: 500;
}

/* Toggle Buttons Section - Container for both buttons and contents */
.atacama-toggle-buttons-section {
	padding: 30px 35px;
	background: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 30px;
}

/* Toggle Buttons Row - Both buttons in same line */
.atacama-toggle-buttons-row {
	display: flex;
	gap: 15px;
	align-items: stretch;
	margin-bottom: 0;
}

/* Configure Reservation Section */
.atacama-configure-reservation-section {
	padding: 30px 35px;
	background: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 30px;
}

.atacama-reservation-form-content {
	margin-top: 20px;
	padding-top: 25px;
	border-top: 2px solid #e0e0e0;
}

/* Amenities Content */
.atacama-amenities-content {
	margin-top: 20px;
	padding-top: 25px;
	border-top: 2px solid #e0e0e0;
}

/* Amenities Section (kept for backward compatibility) */
.atacama-amenities-section {
	padding: 30px 35px;
	background: #ffffff;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 30px;
}

.atacama-amenities-section h3 {
	margin: 0 0 20px 0;
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
	display: flex;
	align-items: center;
	gap: 8px;
}

.atacama-amenities-section h3::before {
	content: '';
	width: 4px;
	height: 22px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 2px;
}

/* Glassmorphism Button Styles - All Toggle Buttons */
.atacama-view-reservation-btn,
.atacama-view-amenities-btn,
.atacama-view-rooms-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 16px;
	transition: all 0.3s ease;
	cursor: pointer;
	flex: 1;
	min-width: 0;
	
	/* Glassmorphism Effect */
	background: rgba(102, 126, 234, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #667eea;
	box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1);
}

.atacama-view-reservation-btn:hover,
.atacama-view-amenities-btn:hover,
.atacama-view-rooms-btn:hover {
	transform: translateY(-2px);
	background: rgba(102, 126, 234, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
	color: #5568d3;
}

.atacama-view-reservation-btn.active,
.atacama-view-amenities-btn.active,
.atacama-view-rooms-btn.active {
	background: rgba(102, 126, 234, 0.35);
	border-color: rgba(255, 255, 255, 0.6);
	color: #495057;
	box-shadow: 0 8px 32px rgba(102, 126, 234, 0.25);
}

/* Toggle Icon Styles */
.atacama-view-reservation-btn .atacama-toggle-icon,
.atacama-view-amenities-btn .atacama-toggle-icon,
.atacama-view-rooms-btn .atacama-toggle-icon {
	margin-left: auto;
	font-size: 12px;
	transition: transform 0.3s ease;
}

.atacama-view-reservation-btn.active .atacama-toggle-icon,
.atacama-view-amenities-btn.active .atacama-toggle-icon,
.atacama-view-rooms-btn.active .atacama-toggle-icon {
	transform: rotate(180deg);
}

/* Amenities Count */
.atacama-view-amenities-btn .atacama-amenities-count {
	font-size: 13px;
	opacity: 0.8;
	font-weight: 500;
}

.atacama-view-rooms-btn.active .atacama-toggle-icon {
	transform: rotate(180deg);
}

/* Amenities Content (Collapsible) */
.atacama-amenities-content {
	margin-top: 20px;
	padding-top: 25px;
	border-top: 2px solid #e0e0e0;
}

.atacama-amenities-title {
	margin: 0 0 20px 0;
	font-size: 20px;
	font-weight: 700;
	color: #2c3e50;
	display: flex;
	align-items: center;
	gap: 8px;
}

.atacama-amenities-title::before {
	content: '';
	width: 4px;
	height: 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 2px;
}

.atacama-amenities-display {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.atacama-amenity-badge {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 10px 16px;
	border-radius: 25px;
	font-size: 14px;
	color: #495057;
	border: 1px solid #dee2e6;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.atacama-amenity-badge:hover {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-color: #667eea;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Animations */
@keyframes slideDown {
	from {
		opacity: 0;
		max-height: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		max-height: 2000px;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.atacama-amenities-section {
		padding: 25px 20px;
	}
	
	.atacama-view-amenities-btn {
		width: 100%;
		justify-content: space-between;
		padding: 12px 20px;
		font-size: 14px;
	}
	
	.atacama-amenities-content {
		margin-top: 15px;
		padding-top: 20px;
	}
	
	.atacama-amenities-title {
		font-size: 18px;
		margin-bottom: 15px;
	}
	
	.atacama-amenities-section h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}
	
	.atacama-amenities-display {
		gap: 10px;
	}
	
	.atacama-amenity-badge {
		font-size: 13px;
		padding: 8px 14px;
	}
}

.atacama-product-description-content p {
	margin: 0 0 15px 0;
}

.atacama-product-description-content p:last-child {
	margin-bottom: 0;
}

.atacama-product-description-content ul,
.atacama-product-description-content ol {
	margin: 15px 0;
	padding-left: 25px;
}

.atacama-product-description-content li {
	margin-bottom: 8px;
}

.atacama-product-description-content strong {
	font-weight: 700;
	color: #2c3e50;
}

.atacama-product-description-content a {
	color: #667eea;
	text-decoration: none;
	transition: color 0.3s ease;
}

.atacama-product-description-content a:hover {
	color: #5568d3;
	text-decoration: underline;
}

.atacama-booking-form-wrap {
	max-width: 650px;
	width: 100%;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 20px;
	padding: 0;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	border: 1px solid #e8e8e8;
	box-sizing: border-box;
}

.atacama-booking-form-wrap * {
	box-sizing: border-box;
}

.atacama-booking-form-wrap .atacama-product-gallery-section {
	max-width: 100% !important;
	width: 100% !important;
	overflow: hidden !important;
}

.atacama-booking-form-wrap .atacama-main-image {
	width: 100% !important;
	max-width: 100% !important;
	height: 400px !important;
	max-height: 400px !important;
	overflow: hidden !important;
}

.atacama-booking-form-wrap .atacama-main-image img {
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
	max-height: 100% !important;
	object-fit: cover !important;
}

.atacama-booking-form-wrap .atacama-dates-row {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 18px !important;
	width: 100% !important;
}

.atacama-booking-form-header {
	margin: 0;
	padding: 30px 35px 25px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-bottom: none;
}

.atacama-booking-form-header h2 {
	margin: 0 0 8px 0;
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
}

.atacama-product-price {
	margin: 0;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 500;
	opacity: 0.95;
}

.atacama-product-details {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.atacama-checkin-checkout-times {
	display: flex;
	gap: 25px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.atacama-time-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.95);
}

.atacama-time-icon {
	font-size: 18px;
	opacity: 0.9;
}

.atacama-time-label {
	font-weight: 600;
	opacity: 0.9;
}

.atacama-time-value {
	font-weight: 700;
	font-size: 16px;
	background: rgba(255, 255, 255, 0.2);
	padding: 4px 12px;
	border-radius: 6px;
	backdrop-filter: blur(10px);
}

.atacama-capacity-info {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	align-items: center;
}

.atacama-capacity-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.atacama-capacity-icon {
	font-size: 14px;
	opacity: 0.85;
}

.atacama-capacity-text {
	font-weight: 500;
	opacity: 0.95;
}

.atacama-booking-form {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 35px;
	background: #ffffff;
}

.atacama-form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #f0f0f0;
}

.atacama-form-group:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.atacama-form-group label {
	font-weight: 600;
	font-size: 15px;
	color: #2c3e50;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.atacama-form-group label::before {
	content: '';
	width: 4px;
	height: 16px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 2px;
}

.atacama-dates-row {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 18px;
	margin-top: 8px;
	width: 100%;
	box-sizing: border-box;
}

.atacama-guests-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 8px;
}

.atacama-guests-row.no-children {
	grid-template-columns: 1fr;
}

.atacama-contact-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 18px;
	margin-top: 8px;
}

.atacama-guests-rooms-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 18px;
	margin-top: 8px;
}

/* When children are not allowed, show only 2 columns */
.atacama-guests-rooms-row.no-children {
	grid-template-columns: 1fr 1fr;
}

.atacama-date-input,
.atacama-contact-input,
.atacama-guest-input {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
}

.atacama-date-input label,
.atacama-guest-input label {
	font-size: 13px;
	color: #555;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}

.atacama-time-info {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #667eea;
	font-weight: 600;
	padding: 6px 10px;
	background: #f0f4ff;
	border-radius: 6px;
	border-left: 3px solid #667eea;
}

.atacama-selected-date {
	padding: 12px 15px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	min-height: 20px;
	transition: all 0.3s ease;
}

.atacama-selected-date span {
	display: block;
	margin-bottom: 6px;
	color: #667eea;
	font-size: 16px;
}

.atacama-date-input label::before,
.atacama-guest-input label::before {
	display: none;
}

.atacama-input {
	padding: 14px 18px;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	font-size: 15px;
	font-family: inherit;
	transition: all 0.3s ease;
	background: #ffffff;
	color: #2c3e50;
	font-weight: 500;
	width: 100%;
	box-sizing: border-box;
}

.atacama-input:hover {
	border-color: #c0c0c0;
	background: #fafafa;
}

.atacama-input:focus {
	outline: none;
	border-color: #667eea;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
	transform: translateY(-1px);
}

.atacama-input[type="date"] {
	position: relative;
	cursor: pointer;
}

.atacama-input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	right: 12px;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.3s;
}

.atacama-input[type="date"]::-webkit-calendar-picker-indicator:hover {
	opacity: 1;
}

.atacama-input[type="number"] {
	-moz-appearance: textfield;
}

.atacama-input[type="number"]::-webkit-outer-spin-button,
.atacama-input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Number input with spinner buttons */
.atacama-number-input-wrapper {
	display: flex;
	align-items: center;
	gap: 0;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	background: #ffffff;
	overflow: hidden;
	transition: all 0.3s ease;
}

.atacama-number-input-wrapper:hover {
	border-color: #c0c0c0;
}

.atacama-number-input-wrapper:focus-within {
	border-color: #667eea;
	box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.atacama-number-btn {
	background: #f8f9fa;
	border: none;
	padding: 14px 18px;
	font-size: 20px;
	font-weight: 600;
	color: #667eea;
	cursor: pointer;
	transition: all 0.2s ease;
	user-select: none;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
}

.atacama-number-btn:hover {
	background: #e9ecef;
	color: #5568d3;
}

.atacama-number-btn:active {
	background: #dee2e6;
	transform: scale(0.95);
}

.atacama-number-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.atacama-number-input-wrapper .atacama-number-input {
	border: none;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
	border-radius: 0;
	text-align: center;
	flex: 1;
	padding: 14px 10px;
	margin: 0;
}

.atacama-number-input-wrapper .atacama-number-input:focus {
	border-left-color: #667eea;
	border-right-color: #667eea;
	box-shadow: none;
	transform: none;
}

.atacama-children-age-input {
	margin-bottom: 10px;
}

.atacama-price-summary {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 16px;
	padding: 25px;
	margin: 25px 0;
	border: 2px solid #e8e8e8;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.atacama-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	font-size: 15px;
	color: #555;
	padding: 8px 0;
}

.atacama-summary-row:last-of-type {
	margin-bottom: 0;
}

.atacama-summary-row span:first-child {
	font-weight: 500;
	color: #666;
}

.atacama-summary-row span:last-child {
	font-weight: 600;
	color: #2c3e50;
}

.atacama-summary-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 3px solid #667eea;
	font-size: 24px;
	font-weight: 700;
	color: #2c3e50;
}

.atacama-summary-total span:first-child {
	font-size: 18px;
	font-weight: 600;
	color: #555;
}

.atacama-summary-total span:last-child {
	font-size: 28px;
	font-weight: 700;
	color: #667eea;
}

.atacama-btn {
	border: none;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
}

.atacama-btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.atacama-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
	color: #ffffff;
}

.atacama-btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.atacama-btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.atacama-btn-large {
	width: 100%;
	padding: 18px 30px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 14px;
	margin-top: 10px;
}

.atacama-booking-message {
	margin-top: 15px;
	padding: 15px 20px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.6;
	display: block;
}

.atacama-booking-message.info {
	background: #e3f2fd;
	border-left: 4px solid #2196f3;
	color: #1976d2;
}

.atacama-booking-message.error,
.atacama-booking-message .error {
	color: #dc3545;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	border-left: 4px solid #dc3545;
}

.atacama-booking-message.success,
.atacama-booking-message .success {
	color: #155724;
	background: #d4edda;
	border: 1px solid #c3e6cb;
	border-left: 4px solid #28a745;
}

.atacama-booking-message p {
	margin: 0;
	padding: 0;
}

/* Checkbox Styles */
.atacama-form-group label input[type="checkbox"] {
	width: 22px;
	height: 22px;
	margin-right: 12px;
	cursor: pointer;
	accent-color: #667eea;
	border-radius: 6px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.atacama-form-group label:hover input[type="checkbox"] {
	transform: scale(1.1);
}

.atacama-form-group label input[type="checkbox"] + span {
	font-weight: 500;
	color: #555;
	cursor: pointer;
	user-select: none;
	font-size: 15px;
	transition: color 0.3s ease;
}

.atacama-form-group label input[type="checkbox"]:checked + span {
	color: #667eea;
	font-weight: 600;
}

.atacama-form-group label:hover {
	background: #f0f0f0 !important;
}

/* Special styling for checkbox label */
.atacama-form-group label[style*="flex-direction: row"] {
	border: 2px solid transparent;
}

.atacama-form-group label[style*="flex-direction: row"]:hover {
	background: #f0f0f0 !important;
	border-color: #667eea !important;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.atacama-form-group label[style*="flex-direction: row"] input[type="checkbox"]:checked ~ span,
.atacama-form-group label[style*="flex-direction: row"]:has(input[type="checkbox"]:checked) {
	background: #e8f0fe !important;
	border-color: #667eea !important;
}

.atacama-form-group label[style*="flex-direction: row"]:has(input[type="checkbox"]:checked) span {
	color: #667eea;
	font-weight: 600;
}

/* Children Ages Input */
.atacama-children-ages-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin-top: 10px;
}

.atacama-children-age-input {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.atacama-children-age-input label {
	font-size: 13px;
	font-weight: 500;
	color: #666;
	margin-bottom: 0;
}

.atacama-children-age-input label::before {
	display: none;
}

.atacama-children-age-input .atacama-input {
	margin: 0;
}

/* Guest Limit Warning */
.atacama-guest-limit-warning {
	margin-top: 10px;
	padding: 12px 15px;
	background: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 8px;
	color: #856404;
	font-size: 13px;
	line-height: 1.5;
	display: none;
}

.atacama-guest-limit-warning::before {
	content: "⚠️ ";
	margin-right: 5px;
}

/* Notice Styles */
.atacama-notice {
	padding: 20px 25px;
	border-radius: 12px;
	margin-bottom: 20px;
}

.atacama-notice.error {
	background: #fff5f5;
	border-left: 4px solid #e53e3e;
	color: #c53030;
}

.atacama-notice.error h3 {
	margin-top: 0;
	color: #c53030;
	font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
	.atacama-booking-form-wrap {
		border-radius: 16px;
		margin: 0 10px;
	}
	
	.atacama-booking-form-header {
		padding: 25px 20px 20px;
	}
	
	.atacama-booking-form-header h2 {
		font-size: 26px;
	}
	
	.atacama-product-price {
		font-size: 18px;
	}
	
	.atacama-product-details {
		margin-top: 12px;
		padding-top: 12px;
	}
	
	.atacama-checkin-checkout-times {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 12px;
	}
	
	.atacama-time-item {
		font-size: 14px;
	}
	
	.atacama-time-value {
		font-size: 15px;
		padding: 3px 10px;
	}
	
	.atacama-capacity-info {
		gap: 15px;
		padding-top: 12px;
	}
	
	.atacama-capacity-item {
		font-size: 12px;
	}
	
	.atacama-capacity-icon {
		font-size: 13px;
	}
	
	.atacama-booking-form {
		padding: 25px 20px;
		box-sizing: border-box;
	}
	
	.atacama-product-gallery-section {
		padding: 15px;
		margin-bottom: 20px;
		max-width: 100%;
		box-sizing: border-box;
	}
	
	.atacama-product-description-section {
		padding: 25px 20px;
	}
	
	.atacama-product-description-section h3 {
		font-size: 20px;
		margin-bottom: 12px;
	}
	
	.atacama-product-description-content {
		font-size: 14px;
		line-height: 1.7;
	}
	
	.atacama-main-image {
		margin-bottom: 12px;
		border-radius: 10px;
		height: 250px;
		}
	
	.atacama-main-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.atacama-gallery-thumb {
		flex: 0 0 80px;
	}
	
	.atacama-dates-row,
	.atacama-contact-row,
	.atacama-guests-row,
	.atacama-guests-rooms-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.atacama-children-ages-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.atacama-form-group {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	
	.atacama-summary-total {
		font-size: 22px;
	}
	
	.atacama-summary-total span:last-child {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.atacama-booking-form-wrap {
		margin: 0 5px;
		border-radius: 12px;
		max-width: calc(100% - 10px);
	}
	
	.atacama-booking-form-header {
		padding: 20px 15px 15px;
	}
	
	.atacama-booking-form-header h2 {
		font-size: 22px;
	}
	
	.atacama-product-details {
		margin-top: 10px;
		padding-top: 10px;
	}
	
	.atacama-checkin-checkout-times {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 10px;
	}
	
	.atacama-time-item {
		font-size: 13px;
	}
	
	.atacama-time-value {
		font-size: 14px;
		padding: 2px 8px;
	}
	
	.atacama-capacity-info {
		gap: 12px;
		padding-top: 10px;
		flex-wrap: wrap;
	}
	
	.atacama-capacity-item {
		font-size: 11px;
	}
	
	.atacama-capacity-icon {
		font-size: 12px;
	}
	
	.atacama-time-info {
		font-size: 11px;
		padding: 4px 8px;
	}
	
	.atacama-booking-form {
		padding: 20px 15px;
	}
	
	.atacama-product-gallery-section {
		padding: 12px;
		margin-bottom: 15px;
	}
	
	.atacama-product-description-section {
		padding: 20px 15px;
	}
	
	.atacama-product-description-section h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}
	
	.atacama-product-description-content {
		font-size: 13px;
		line-height: 1.6;
	}
	
	.atacama-main-image {
		border-radius: 8px;
		margin-bottom: 10px;
		height: 200px;
	}
	
	.atacama-main-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.atacama-gallery-thumb {
		flex: 0 0 70px;
	}
}

