:root {
	--afp-bg: #ffffff;
	--afp-surface: #f6f8fb;
	--afp-border: #e6ebf2;
	--afp-text: #0f1d2e;
	--afp-muted: #5b6b80;
	--afp-primary: #0f6fff;
	--afp-primary-dark: #084ec0;
	--afp-accent: #ff7a45;
	--afp-radius: 14px;
	--afp-shadow: 0 8px 28px rgba(15, 29, 46, 0.06);
	--afp-shadow-hover: 0 14px 36px rgba(15, 29, 46, 0.10);
}

.afp-product-info,
.afp-book-inquiry,
.afp-archive-header {
	background: var(--afp-bg);
	border: 1px solid var(--afp-border);
	border-radius: var(--afp-radius);
	box-shadow: var(--afp-shadow);
	color: var(--afp-text);
	margin: 22px 0;
	padding: 22px;
}

/* Key stats strip — between title and price */
.afp-key-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 8px 0 16px;
	padding: 0;
}

.afp-key-stats__item {
	align-items: center;
	background: var(--afp-surface);
	border-radius: 999px;
	color: var(--afp-text);
	display: inline-flex;
	font-size: 13px;
	gap: 8px;
	padding: 6px 14px;
}

.afp-key-stats__icon {
	color: var(--afp-primary);
	display: inline-flex;
}

.afp-key-stats__meta {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.1;
}

.afp-key-stats__label {
	color: var(--afp-muted);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.afp-key-stats__value {
	font-weight: 600;
}

/* Detailed info grid */
.afp-product-info__title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px;
}

.afp-product-info__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.afp-info-card {
	align-items: flex-start;
	background: var(--afp-surface);
	border-radius: 12px;
	display: flex;
	gap: 12px;
	padding: 14px 16px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.afp-info-card:hover {
	box-shadow: var(--afp-shadow-hover);
	transform: translateY(-1px);
}

.afp-info-card__icon {
	background: rgba(15, 111, 255, 0.10);
	border-radius: 10px;
	color: var(--afp-primary);
	display: inline-flex;
	flex: 0 0 auto;
	height: 36px;
	justify-content: center;
	align-items: center;
	width: 36px;
}

.afp-info-card__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.afp-info-card__label {
	color: var(--afp-muted);
	font-size: 12px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.afp-info-card__value {
	color: var(--afp-text);
	font-size: 15px;
	font-weight: 600;
}

/* Loop card */
.afp-loop-info {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 6px 0 0;
	padding: 0;
}

.afp-loop-info__chip {
	align-items: center;
	background: var(--afp-surface);
	border-radius: 999px;
	color: var(--afp-text);
	display: inline-flex;
	font-size: 12px;
	gap: 6px;
	padding: 4px 10px;
}

.afp-loop-info__chip svg {
	color: var(--afp-primary);
	height: 14px;
	width: 14px;
}

.afp-loop-badge {
	background: var(--afp-primary);
	border-radius: 999px;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
	padding: 4px 10px;
	text-transform: uppercase;
}

.afp-loop-badge--rent_car { background: #0f6fff; }
.afp-loop-badge--transfer { background: #14b8a6; }
.afp-loop-badge--real_estate { background: #f97316; }
.afp-loop-badge--boat_tour { background: #0ea5e9; }
.afp-loop-badge--activity { background: #8b5cf6; }
.afp-loop-badge--yacht_rental { background: #0a2f5f; }

/* Book / Inquiry panel */
.afp-book-inquiry {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.afp-book-inquiry__price {
	color: var(--afp-text);
	font-size: 28px;
	font-weight: 700;
}

.afp-book-inquiry__price del {
	color: var(--afp-muted);
	font-size: 18px;
	font-weight: 400;
	margin-right: 8px;
}

.afp-book-inquiry__price ins {
	background: none;
	color: var(--afp-accent);
	text-decoration: none;
}

.afp-book-inquiry__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.afp-book-inquiry__note {
	color: var(--afp-muted);
	font-size: 13px;
	margin: 0;
}

.afp-book-form {
	margin: 0;
}

.afp-btn {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	font-weight: 600;
	gap: 8px;
	justify-content: center;
	line-height: 1;
	padding: 14px 22px;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

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

.afp-btn--primary:hover,
.afp-btn--primary:focus {
	background: var(--afp-primary-dark);
	color: #fff;
	transform: translateY(-1px);
}

.afp-btn--ghost {
	background: var(--afp-bg);
	border-color: var(--afp-border);
	color: var(--afp-text);
}

.afp-btn--ghost:hover,
.afp-btn--ghost:focus {
	border-color: var(--afp-primary);
	color: var(--afp-primary);
}

/* Archive header */
.afp-archive-header {
	background: linear-gradient(135deg, rgba(15, 111, 255, 0.08), rgba(20, 184, 166, 0.05));
	border: 1px solid var(--afp-border);
	margin-bottom: 24px;
}

.afp-archive-header__eyebrow {
	color: var(--afp-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.afp-archive-header__title {
	font-size: 32px;
	margin: 6px 0 8px;
}

.afp-archive-header__intro {
	color: var(--afp-muted);
	font-size: 15px;
	max-width: 720px;
}

/* ── Araç Özellikleri — 2-column icon grid ────────────────────────────── */


.afp-car-features {
	display: grid;
	gap: 8px 12px;
	grid-template-columns: repeat(var(--afp-attr-cols, 2), minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.afp-car-features__item {
	align-items: center;
	background: #f7f9fc;
	border: 1px solid #eaeff5;
	border-radius: 10px;
	color: #2b3a4a;
	display: flex;
	font-size: 13px;
	font-weight: 500;
	gap: 9px;
	line-height: 1.3;
	min-width: 0;
	padding: 8px 10px;
}

.afp-car-features__icon {
	align-items: center;
	background: #e8f0fe;
	border-radius: 7px;
	color: #1a5fb4;
	display: flex;
	flex-shrink: 0;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.afp-car-features__icon svg,
.afp-car-features__icon i {
	display: block;
	font-size: 15px;
	height: 16px;
	line-height: 1;
	width: 16px;
}

.afp-car-features__text {
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.afp-car-features__text--clamp {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}

@media (max-width: 480px) {
	.afp-car-features {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 768px) {
	.afp-product-info__grid {
		grid-template-columns: 1fr;
	}

	.afp-archive-header__title {
		font-size: 24px;
	}

	.afp-book-inquiry__price {
		font-size: 22px;
	}
}

/* ── Style-2: horizontal list layout ─────────────────────────────────────── */

.afp-product-info--style-2 {
	padding: 20px 24px;
}

.afp-info-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.afp-info-list__row {
	align-items: center;
	border-bottom: 1px solid var(--afp-border);
	display: flex;
	gap: 14px;
	padding: 12px 4px;
	transition: background 0.15s ease;
}

.afp-info-list__row:last-child {
	border-bottom: none;
}

.afp-info-list__row:hover {
	background: var(--afp-surface);
	border-radius: 8px;
	padding-left: 10px;
	padding-right: 10px;
}

.afp-info-list__icon {
	background: rgba(15, 111, 255, 0.10);
	border-radius: 8px;
	color: var(--afp-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 36px;
	height: 36px;
	width: 36px;
}

.afp-info-list__label {
	color: var(--afp-muted);
	flex: 0 0 160px;
	font-size: 13px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.afp-info-list__value {
	color: var(--afp-text);
	flex: 1;
	font-size: 15px;
	font-weight: 600;
}

@media (max-width: 560px) {
	.afp-info-list__row {
		flex-wrap: wrap;
		gap: 6px;
	}

	.afp-info-list__label {
		flex: 0 0 auto;
		font-size: 11px;
	}

	.afp-info-list__value {
		flex: 1 1 100%;
		font-size: 14px;
		padding-left: 50px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   AFP Rezervasyon Formu Widget
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Form kapsayıcı ──────────────────────────────────────────────────────── */
.afp-booking-form {
	box-sizing: border-box;
}

/* ── Fiyat bandı (booking form) — alanların altında, butonun üstünde ────── */
.afp-booking-form__price {
	display: flex;
	align-items: baseline;
	gap: 2px;
	margin-top: 18px;
	margin-bottom: 14px;
	font-size: 17px;
	font-weight: 700;
	color: #0a7a8b;
	line-height: 1.3;
}

.afp-booking-form__price-label,
.afp-booking-form__price-sep {
	color: #0a7a8b;
	font-weight: 700;
}

.afp-booking-form__price .woocommerce-Price-amount,
.afp-booking-form__price .amount {
	color: #0a7a8b;
	font-size: inherit;
	font-weight: 700;
}

.afp-booking-form__price del .woocommerce-Price-amount {
	color: #a0aec0;
	font-size: 13px;
	font-weight: 400;
	text-decoration: line-through;
}

/* ── AFP Fiyat widget (standalone) ──────────────────────────────────────── */
.afp-price-widget .thim-ekit-single-tour__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0;
}

.afp-price-widget .price .woocommerce-Price-amount,
.afp-price-widget .price .amount {
	font-size: 22px;
	font-weight: 700;
	color: var(--phys-body_color_primary, #0a7a8b);
}

.afp-price-widget .price del .woocommerce-Price-amount {
	font-size: 14px;
	font-weight: 400;
	color: #a0aec0;
}

/* ── Saat seçimi (booking form) ──────────────────────────────────────────── */
.afp-booking-form__time-slots {
	margin: 6px 0 18px;
	padding: 14px 16px;
	border: 1px dashed rgba(15, 111, 255, 0.35);
	border-radius: 12px;
	background: rgba(15, 111, 255, 0.04);
}
.afp-booking-form__time-slots-title {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 4px;
	color: var(--afp-primary, #0f6fff);
}
.afp-booking-form__time-slots-help {
	font-size: 12px;
	color: #6b7280;
	margin: 0 0 10px;
}
.afp-booking-form__time-slots-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.afp-booking-form__time-slot {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	padding: 8px 14px;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	background: #fff;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all .15s ease;
	user-select: none;
}
.afp-booking-form__time-slot input[type=radio] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.afp-booking-form__time-slot:hover {
	border-color: var(--afp-primary, #0f6fff);
	color: var(--afp-primary, #0f6fff);
}
.afp-booking-form__time-slot:has(input[type=radio]:checked) {
	background: var(--afp-primary, #0f6fff);
	border-color: var(--afp-primary, #0f6fff);
	color: #fff;
}

/* ── Çocuk yaş grupları (booking form) ───────────────────────────────────── */
/* `<details>` ile collapsible. Default kapalı; başlığa tıklayınca açılır. */
.afp-booking-form__children {
	margin: 6px 0 18px;
	border: 1px dashed rgba(15, 111, 255, 0.35);
	border-radius: 12px;
	background: rgba(15, 111, 255, 0.04);
	overflow: hidden;
}
.afp-booking-form__children[open] {
	background: rgba(15, 111, 255, 0.06);
}
.afp-booking-form__children-summary {
	list-style: none;
	cursor: pointer;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	user-select: none;
	font-weight: 600;
	color: var(--afp-primary, #0f6fff);
	font-size: 14px;
	letter-spacing: 0.02em;
}
.afp-booking-form__children-summary::-webkit-details-marker { display: none; }
.afp-booking-form__children-summary::marker { content: ""; }
.afp-booking-form__children-summary:hover {
	background: rgba(15, 111, 255, 0.08);
}
.afp-booking-form__children-title::before {
	content: "+";
	display: inline-block;
	width: 18px;
	height: 18px;
	line-height: 16px;
	text-align: center;
	margin-right: 8px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-weight: 700;
	font-size: 13px;
	vertical-align: -3px;
}
.afp-booking-form__children[open] .afp-booking-form__children-title::before {
	content: "\2212"; /* minus sign */
}
.afp-booking-form__children-toggle {
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	margin-right: 4px;
}
.afp-booking-form__children[open] .afp-booking-form__children-toggle {
	transform: rotate(-135deg);
}
.afp-booking-form__children-body {
	padding: 4px 14px 14px;
	border-top: 1px dashed rgba(15, 111, 255, 0.2);
}
.afp-booking-form__children-help {
	font-size: 12px;
	color: #6b7280;
	margin: 8px 0 12px;
}
.afp-booking-form__children-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
}
.afp-booking-form__field--child {
	min-width: 0;
}
.afp-booking-form__price-hint {
	color: #16a34a;
	font-weight: 500;
	font-size: 11px;
	margin-left: 4px;
}

/* ── Alan ızgarası ───────────────────────────────────────────────────────── */
.afp-booking-form__fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-bottom: 18px;
}

.afp-booking-form--cols-2 .afp-booking-form__fields {
	grid-template-columns: 1fr 1fr;
}

.afp-booking-form__field--full {
	grid-column: 1 / -1;
}

/* ── Alan sarıcı ─────────────────────────────────────────────────────────── */
.afp-booking-form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* ── Etiketler ───────────────────────────────────────────────────────────── */
.afp-booking-form__label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #5a6a7e;
	line-height: 1;
}

/* "inside" modunda label ekran okuyucuya gizlenir */
.afp-booking-form--labels-inside .afp-booking-form__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ── Input / textarea ────────────────────────────────────────────────────── */
.afp-booking-form__input {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	min-height: 50px;
	background-color: #ffffff;
	border: 1.5px solid #e2e8f2;
	border-radius: 10px;
	color: #1a202c;
	font-size: 14px;
	line-height: 1.5;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	appearance: none;
	-webkit-appearance: none;
}

.afp-booking-form__input::placeholder {
	color: #a0aec0;
	opacity: 1;
}

.afp-booking-form__input::-ms-input-placeholder {
	color: #a0aec0;
}

.afp-booking-form__input:hover {
	border-color: #c5d0e0;
}

.afp-booking-form__input:focus {
	outline: none;
	border-color: #0a7a8b;
	box-shadow: 0 0 0 3px rgba(10, 122, 139, 0.12);
}

.afp-booking-form__textarea {
	resize: vertical;
	min-height: 110px;
	padding-top: 13px;
}

/* ── Submit ──────────────────────────────────────────────────────────────── */
.afp-booking-form__submit {
	margin-top: 6px;
}

/* ── Buton ───────────────────────────────────────────────────────────────── */
.afp-booking-form__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 15px 28px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.2;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	transition: filter 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
}

.afp-booking-form__btn--primary {
	background-color: #0a7a8b;
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(10, 122, 139, 0.35);
}

.afp-booking-form__btn--primary:hover,
.afp-booking-form__btn--primary:focus {
	filter: brightness(1.1);
	box-shadow: 0 6px 20px rgba(10, 122, 139, 0.45);
	color: #ffffff;
	text-decoration: none;
}

.afp-booking-form__btn--primary:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(10, 122, 139, 0.3);
}

/* ── Alt not ─────────────────────────────────────────────────────────────── */
.afp-booking-form__note {
	margin-top: 14px;
	font-size: 12px;
	color: #8a97a8;
	text-align: center;
}

/* ── Editör placeholder ──────────────────────────────────────────────────── */
.afp-booking-form .afp-widget-placeholder {
	padding: 20px;
	background: #e8f5f7;
	border: 1.5px dashed #0a7a8b;
	border-radius: 10px;
	color: #0a7a8b;
	font-size: 13px;
	text-align: center;
}

/* ── Kişi Sayısı Stepper ─────────────────────────────────────────────────── */
.afp-stepper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	width: 100%;
	min-height: 50px;
	box-sizing: border-box;
	background: #f0f8f9;
	border: 1.5px solid #e2e8f2;
	border-radius: 50px;
	padding: 5px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.afp-stepper:focus-within {
	border-color: #0a7a8b;
	box-shadow: 0 0 0 3px rgba(10, 122, 139, 0.12);
}

.afp-stepper__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #ffffff;
	color: #0a7a8b;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 1px 5px rgba(10, 122, 139, 0.18);
	transition: background 0.15s ease, color 0.15s ease,
	            box-shadow 0.15s ease, transform 0.1s ease;
	-webkit-user-select: none;
	user-select: none;
}

.afp-stepper__btn:hover {
	background: #0a7a8b;
	color: #ffffff;
	box-shadow: 0 3px 10px rgba(10, 122, 139, 0.3);
}

.afp-stepper__btn:active {
	transform: scale(0.9);
	box-shadow: 0 1px 4px rgba(10, 122, 139, 0.2);
}

.afp-stepper__btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

.afp-stepper__value {
	flex: 1;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #1a202c;
	letter-spacing: 0.03em;
	-webkit-user-select: none;
	user-select: none;
	line-height: 1;
}

/* Kişi başı not (2+ kişide görünür) */
.afp-price-per-person {
	display: inline-block;
	margin-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: #8a97a8;
	vertical-align: middle;
}

/* Fiyat display geçiş animasyonu */
.afp-booking-form__price-display {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	transition: opacity 0.15s ease;
}

.afp-booking-form__price-display.afp-price-updating {
	opacity: 0.4;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
	.afp-booking-form--cols-2 .afp-booking-form__fields {
		grid-template-columns: 1fr;
	}
}
