.yacht-reservation-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Yacht Information Section */
.yacht-info-section {
	margin-bottom: 30px;
	padding: 30px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.yacht-info-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
	margin-bottom: 20px;
}

.yacht-info-text {
	flex: 1;
}

.yacht-info-header h1 {
	margin: 0 0 10px 0;
	font-size: 28px;
	color: #1a1a1a;
}

.yacht-info-header h1 a {
	color: #1a1a1a;
	text-decoration: none;
}

.yacht-info-header h1 a:hover {
	color: #0073aa;
}

.yacht-info-header .period {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 16px;
	color: #666;
}

.period-icon {
	font-size: 18px;
}

.yacht-gallery-preview {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.yacht-gallery-preview .gallery-image {
	width: 90px;
	height: 90px;
	overflow: hidden;
	border-radius: 6px;
}

.yacht-gallery-preview .gallery-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.yacht-specs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.yacht-spec-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px;
	background: #f9f9f9;
	border-radius: 6px;
}

.spec-icon {
	font-size: 20px;
}

.spec-label {
	font-size: 13px;
	color: #666;
	font-weight: 500;
}

.spec-value {
	font-size: 15px;
	color: #1a1a1a;
	font-weight: 600;
}

/* Reservation Info Grid */
.reservation-info-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
	margin-bottom: 30px;
}

.info-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
}

/* Price and Payment Combined Card */
.price-and-payment-card {
	display: flex;
	flex-direction: column;
}

.price-and-payment-card .card-section {
	display: flex;
	flex-direction: column;
}

.price-and-payment-card .card-section:not(:last-child) {
	border-bottom: 1px solid #e0e0e0;
}

.info-card .card-header {
	padding: 20px;
	background: #f9f9f9;
	border-bottom: 1px solid #e0e0e0;
}

.info-card .card-header h3 {
	margin: 0;
	font-size: 18px;
	color: #1a1a1a;
	font-weight: 600;
}

.info-card .card-body {
	padding: 20px;
}

/* Final Price Card */
.final-price-card .total-price-display {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 10px;
}

.final-price-card .price-amount {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
}

.final-price-card .price-currency {
	font-size: 20px;
	font-weight: 600;
	color: #666;
}

.final-price-card .price-note {
	font-size: 13px;
	color: #666;
}

/* Payment Schedule Card */
.payment-schedule-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.payment-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: #f9f9f9;
	border-radius: 6px;
}

.payment-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: #1a1a1a;
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 600;
	flex-shrink: 0;
}

.payment-details {
	flex: 1;
}

.payment-date {
	display: block;
	font-size: 13px;
	color: #666;
	margin-bottom: 4px;
}

.payment-amount {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
}

/* Excluded Taxes Card */
.taxes-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tax-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px;
	background: #f9f9f9;
	border-radius: 6px;
}

.tax-item.deposit-item {
	background: #fff5e6;
	border: 1px solid #ffe4b3;
}

.tax-icon {
	font-size: 20px;
	flex-shrink: 0;
}

.tax-details {
	flex: 1;
}

.tax-name {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 4px;
}

.tax-note {
	font-size: 12px;
	color: #666;
}

.tax-price {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	flex-shrink: 0;
}

.tax-price .price-na {
	font-size: 13px;
	color: #999;
	font-weight: 400;
}

.no-taxes {
	text-align: center;
	padding: 20px;
	color: #666;
}

.no-taxes p {
	margin: 0;
}

/* Success and Error Messages */
.reservation-success {
	padding: 40px;
	background: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 8px;
	text-align: center;
}

.reservation-success h2 {
	margin: 0 0 20px 0;
	color: #155724;
}

.reservation-success p {
	margin: 10px 0;
	color: #155724;
}

.btn-back-home {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 30px;
	background: #155724;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: background 0.3s;
}

.btn-back-home:hover {
	background: #0f4219;
}

.reservation-error {
	padding: 20px;
	margin-bottom: 20px;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 6px;
	color: #721c24;
}

.reservation-error p {
	margin: 0;
}

/* Reservation Form Section */
.reservation-form-section {
	padding: 30px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.reservation-form-section h3 {
	margin: 0 0 20px 0;
	font-size: 20px;
	color: #1a1a1a;
}

.reservation-form .form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.reservation-form .form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}

.reservation-form label {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
}

.reservation-form input[type="text"],
.reservation-form input[type="email"],
.reservation-form input[type="tel"],
.reservation-form select,
.reservation-form textarea {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	transition: border-color 0.3s;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
	outline: none;
	border-color: #0073aa;
}

/* Checkbox styling for terms acceptance */
.reservation-form .form-checkbox {
	margin-bottom: 30px;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 6px;
}

.reservation-form .checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-weight: normal;
}

.reservation-form .checkbox-label input[type="checkbox"] {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	cursor: pointer;
	flex-shrink: 0;
}

.reservation-form .checkbox-label span {
	flex: 1;
	font-size: 14px;
	color: #333;
	line-height: 1.5;
}

.reservation-form .checkbox-label a {
	color: #0073aa;
	text-decoration: underline;
	font-weight: 600;
}

.reservation-form .checkbox-label a:hover {
	color: #005177;
}

.form-actions {
	margin-top: 30px;
	text-align: right;
}

.btn-submit {
	padding: 14px 40px;
	background: #1a1a1a;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-submit:hover {
	background: #333;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Selected Extras Section */
.selected-extras-section {
	margin-bottom: 30px;
}

.selected-extras-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
}

.selected-extras-card .card-header {
	padding: 20px;
	background: #f0f9ff;
	border-bottom: 1px solid #bae6fd;
}

.selected-extras-card .card-header h3 {
	margin: 0;
	font-size: 18px;
	color: #0c4a6e;
	font-weight: 600;
}

.selected-extras-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.selected-extra-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: 15px;
	background: #f8fafc;
	border-radius: 6px;
	border-left: 3px solid #0ea5e9;
}

.selected-extra-item .extra-details {
	flex: 1;
}

.selected-extra-item .extra-name {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 4px;
}

.selected-extra-item .extra-unit {
	font-size: 12px;
	color: #666;
}

.selected-extra-item .extra-price {
	font-size: 16px;
	font-weight: 700;
	color: #0ea5e9;
	flex-shrink: 0;
}

.selected-extra-item .extra-price .price-na {
	font-size: 13px;
	color: #10b981;
	font-weight: 600;
}

@media (max-width: 768px) {
	.yacht-reservation-container {
		padding: 15px;
	}

	.yacht-info-section,
	.info-card,
	.reservation-form-section {
		padding: 20px;
	}

	.yacht-info-header {
		flex-direction: column;
		gap: 20px;
	}

	.yacht-info-header h1 {
		font-size: 22px;
	}

	.yacht-gallery-preview {
		justify-content: flex-start;
	}

	.yacht-gallery-preview .gallery-image {
		width: 80px;
		height: 80px;
	}

	.yacht-specs {
		grid-template-columns: 1fr;
	}

	.reservation-info-grid {
		grid-template-columns: 1fr;
	}

	.final-price-card .price-amount {
		font-size: 28px;
	}

	.reservation-form .form-row {
		grid-template-columns: 1fr;
	}

	.selected-extra-item {
		flex-direction: column;
		gap: 10px;
	}

	.selected-extra-item .extra-price {
		align-self: flex-start;
	}
}

/* Reservation Submit Loading Overlay */
.reservation-loading-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.92);
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

.reservation-loading-content {
	text-align: center;
	padding: 30px;
}

.reservation-loading-content .loading-spinner {
	width: 50px;
	height: 50px;
	margin: 0 auto 20px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #1a1a1a;
	border-radius: 50%;
	animation: reservation-spin 1s linear infinite;
}

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

.reservation-loading-content p {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
}

.btn-submit:disabled,
.btn-submit.is-submitting {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}
