/* ============================================================
   Teknoblog Affiliate — Front-end Stilleri
   Tasarım referansı: teknoblog.com yazı içi ürün kutusu
   Marka: #F04A0A (turuncu), #0A64F0 (mavi)
   ============================================================ */

/* ─── Ortak kart yapısı ───────────────────────────────────── */
.tkaf-product-box,
.tkaf-comparison-table {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 1px 6px rgba(0,0,0,.08);
	overflow: hidden;
	margin: 24px 0;
	font-family: inherit;
	color: inherit;
}

/* ─── Ürün Kutusu ─────────────────────────────────────────── */
.tkaf-product-box {
	position: relative;
	max-width: 560px;
	width: 100%;
	box-sizing: border-box;
}

/* Etiket (ör. "En İyi Fiyat") */
.tkaf-box__label {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #F04A0A;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 4px 10px;
	border-radius: 6px;
	z-index: 1;
}

/* Görsel alanı — siteyle aynı: beyaz, geniş padding */
.tkaf-box__img {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 24px 24px;
	min-height: 200px;
	background: #fff;
}
.tkaf-box__img img {
	max-height: 200px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

/* Metin ve aksiyon alanı */
.tkaf-box__body {
	padding: 4px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tkaf-box__name {
	font-size: 18px;
	font-weight: 700;
	color: #111;
	margin: 0 0 4px;
	line-height: 1.3;
}

.tkaf-box__merchant {
	font-size: 12px;
	color: #999;
	margin: 0;
}

.tkaf-box__desc {
	font-size: 13px;
	color: #555;
	margin: 4px 0 0;
	line-height: 1.55;
}

.tkaf-box__footer {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tkaf-box__price-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.tkaf-box__price {
	font-size: 22px;
	font-weight: 700;
	color: #111;
	line-height: 1;
}

/* ─── Badge ───────────────────────────────────────────────── */
.tkaf-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 9px;
	border-radius: 20px;
}
.tkaf-badge--stock {
	background: #e8f5e9;
	color: #2e7d32;
}
.tkaf-badge--out {
	background: #fce8e6;
	color: #c5221f;
}

/* ─── Buton — siteyle birebir: tam genişlik, turuncu, sepet ikonu ── */
.tkaf-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: #F04A0A;
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	font-style: italic;
	padding: 14px 20px;
	border-radius: 10px;
	text-decoration: none !important;
	transition: background .15s, opacity .15s;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
}
.tkaf-btn::before {
	content: "🛒";
	font-style: normal;
	font-size: 16px;
}
.tkaf-btn:hover {
	background: #d43d06;
	color: #fff !important;
	opacity: .92;
}

/* Karşılaştırma tablosunda mağaza butonu: mavi */
.tkaf-btn--store {
	background: #0A64F0;
	font-style: normal;
	font-size: 13px;
	padding: 11px 16px;
}
.tkaf-btn--store:hover {
	background: #0854c9;
}
.tkaf-btn--store::before { content: ""; }

/* ─── Karşılaştırma Tablosu ───────────────────────────────── */
.tkaf-ct__title {
	font-size: 16px;
	font-weight: 700;
	padding: 16px 20px;
	margin: 0;
	background: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	color: #111;
}

.tkaf-ct__grid {
	display: grid;
}
.tkaf-ct__grid--1 { grid-template-columns: 1fr; }
.tkaf-ct__grid--2 { grid-template-columns: repeat(2, 1fr); }
.tkaf-ct__grid--3 { grid-template-columns: repeat(3, 1fr); }
.tkaf-ct__grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 600px) {
	.tkaf-ct__grid--3,
	.tkaf-ct__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
	.tkaf-ct__grid--2,
	.tkaf-ct__grid--3,
	.tkaf-ct__grid--4 { grid-template-columns: 1fr; }
}

.tkaf-ct__col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px 14px;
	border-right: 1px solid #ebebeb;
	text-align: center;
}
.tkaf-ct__col:last-child { border-right: none; }

.tkaf-ct__img {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 8px 0;
}
.tkaf-ct__img img {
	max-height: 90px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.tkaf-ct__name {
	font-size: 13px;
	font-weight: 700;
	color: #111;
	line-height: 1.35;
}

.tkaf-ct__merchant {
	font-size: 11px;
	color: #aaa;
}

.tkaf-ct__desc {
	font-size: 12px;
	color: #666;
	line-height: 1.4;
}

.tkaf-ct__price {
	font-size: 17px;
	font-weight: 700;
	color: #111;
	margin-top: auto;
	padding-top: 8px;
}

/* ─── Tam genişlik modu ───────────────────────────────────── */
.tkaf-full-width {
	max-width: 100% !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

/* ─── Hata/boş durum ─────────────────────────────────────── */
.tkaf-notice {
	color: #aaa;
	font-size: 13px;
	font-style: italic;
	padding: 12px 16px;
	margin: 0;
}
