/* ==========================================================================
   PT POS — Ürün sayfası "Ödeme Seçenekleri" sekmesi
   ==========================================================================
   Bu stiller eskiden checkout.css içindeydi ama o dosya YALNIZ is_checkout()
   koşuluyla yükleniyordu; ürün sayfasında sekme tamamen stilsiz kalıyordu.
   Kendi dosyasına alındı ve sekmenin göründüğü yerde yükleniyor.
   ========================================================================== */

.pt-pos-taksit {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
	gap: 16px;
	margin: 0;
}

.pt-pos-taksit-kart {
	display: flex;
	flex-direction: column;
	border: 1px solid #e6e6ea;
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
}

/* Logo bandı — bankayı bir bakışta tanıtan kısım. Logo yoksa banka adı
   metin olarak kalır (bkz. PT_POS_Product_Tab::bank_logo_url). */
.pt-pos-taksit-bant {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 12px 14px;
	background: #f7f8fa;
	border-bottom: 1px solid #e6e6ea;
}

.pt-pos-taksit-bant img {
	max-width: 128px;
	max-height: 26px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.pt-pos-taksit-bant span {
	font-size: 14px;
	font-weight: 700;
	color: #1d1d1f;
	text-align: center;
}

.pt-pos-taksit-kart table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	table-layout: fixed;
}

.pt-pos-taksit-kart th,
.pt-pos-taksit-kart td {
	border: 0;
	border-bottom: 1px solid #f0f0f3;
	padding: 9px 12px;
	font-size: 13px;
	line-height: 1.35;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.pt-pos-taksit-kart th:first-child,
.pt-pos-taksit-kart td:first-child {
	text-align: left;
	width: 34%;
}

.pt-pos-taksit-kart thead th {
	background: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #86868b;
}

.pt-pos-taksit-kart tbody tr:last-child th,
.pt-pos-taksit-kart tbody tr:last-child td {
	border-bottom: 0;
}

.pt-pos-taksit-kart td:last-child { color: #86868b; }

/* Komisyonsuz satırlar öne çıkar: müşteri için tek gerçek fark bu. */
.pt-pos-taksit-kart tr.is-bedelsiz td {
	background: #f2f9f4;
	color: #15803d;
	font-weight: 600;
}
.pt-pos-taksit-kart tr.is-bedelsiz td:last-child { color: #15803d; }

.pt-pos-taksit-not {
	margin: 16px 0 0;
	font-size: 12.5px;
	line-height: 1.5;
	color: #86868b;
}

@media (max-width: 549px) {
	.pt-pos-taksit {
		grid-template-columns: 1fr;
	}
}
