/* --- Yeni Modern Ürün Detay Tasarımı (H2 Sağda + Tabs Altta) --- */
.urun-detay-modern {
	padding: 60px 0 100px 0;
	background: #ffffff;
	color: #333;
}

/* Görsel Alanı */
.main-frame-new {
	width: 100%;
	aspect-ratio: 10 / 8;
	border: 1px solid #eee;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.main-frame-new img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Küçük görsel şeridi: PHP döngüsü için esnek yapı */
.thumb-strip-new {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	/* Görseller arası sabit boşluk */
	margin-top: 15px;
}

.thumb-strip-new img {
	/* 4 Sütunlu yapı: (100% - (Sütun Sayısı - 1) * Gap) / Sütun Sayısı */
	width: calc(25% - 7.5px);
	aspect-ratio: 10 / 8;
	height: auto;
	border: 1px solid #eee;
	cursor: pointer;
	background: #fff;
	padding: 5px;
	border-radius: 4px;
	transition: all 0.3s ease;
	object-fit: contain;
	margin-bottom: 5px;
}

/* Hover ve Etkileşimler */
.thumb-strip-new img:hover {
	border-color: #0e82b0;
	box-shadow: 0 4px 12px rgba(14, 130, 176, 0.15);
	transform: translateY(-3px);
}

.thumb-strip-new img:active {
	transform: scale(0.95);
}

/* Sağ İçerik Alanı */
.urun-content-new {
	padding-left: 15px;
}

.urun-header-right {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f5f5f5;
}

.urun-header-right h2 {
	font-size: 32px;
	font-weight: 800;
	color: #111;
	margin-bottom: 10px;
	line-height: 1.2;
}

.urun-code-badge {
	display: inline-block;
	background: #f0f4f7;
	color: #5d6d7e;
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
	text-transform: none;
}

/* Eğer içerikte tablo varsa kutu tasarımını uygula */
.urun-description-main:has(table) {
	background: #fcfdfe;
	padding: 0;
	border-radius: 12px;
	border: none;
}

.urun-description-main {
	margin-bottom: 50px;
	position: relative;
}

.urun-description-main p {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin: 0;
}

/* Ultra Kompakt Kurumsal Tablo Tasarımı (Turn 8 Version - Reverted & Compact) */
.urun-description-main table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px 0;
	font-size: 13px;
	border: none;
	background: #fff;
}

.urun-description-main table tr:nth-child(odd) {
	background-color: #f9fbfc;
}

.urun-description-main table tr:nth-child(even) {
	background-color: #ffffff;
}

.urun-description-main table tr {
	transition: all 0.2s ease;
}

.urun-description-main table tr:hover {
	background-color: #e1eff7 !important;
	cursor: pointer;
}

.urun-description-main table td {
	padding: 4px 15px;
	border: none;
	color: #444;
	vertical-align: middle;
}

.urun-description-main table td:first-child {
	width: 260px;
	color: #0e82b0;
	font-weight: 700;
	white-space: nowrap;
}

.urun-description-main table td strong {
	font-weight: 700;
	color: inherit;
}

.btn-teklif-modern {
	background: #0e82b0;
	color: #fff !important;
	padding: 18px 45px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: 5px;
	text-decoration: none;
	box-shadow: 0 10px 25px rgba(14, 130, 176, 0.2);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-teklif-modern:hover {
	background: #0a5d7e;
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 20px 40px rgba(14, 130, 176, 0.35);
	color: #fff !important;
}

.urun-cta-box {
	margin-bottom: 40px;
}

/* Teknik Detaylar Tablosu - Gri Tonlu Tasarım */
#tech table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14px;
	background: #fff;
	border: none;
}

#tech table tr:first-child {
	background: linear-gradient(90deg, #0e82b0 0%, #085d7e 100%);
	color: #ffffff;
}

#tech table tr:first-child:hover {
	background: linear-gradient(90deg, #0e82b0 0%, #085d7e 100%) !important;
	cursor: default;
}

#tech table tr:first-child td {
	color: #ffffff !important;
	font-weight: 700;
}

#tech table tr:nth-child(even) {
	background-color: #f8f9fa;
}

#tech table tr:hover {
	background-color: #f1f3f5;
}

#tech table td {
	padding: 12px 20px;
	border: 1px solid #ffffff;
	color: #333;
	line-height: 1.6;
}

#tech table td:first-child {
	width: 280px;
	font-weight: 700;
	color: #555;
}

#tech table tr:first-child td:first-child {
	color: #ffffff !important;
}

/* Tab Menü Alanı & Akıcı Geçişler */
.tab-row-modern {
	margin-top: 80px;
}

.tabs-box {
	background: #fff;
}

.custom-tab-content>.tab-pane {
	display: none;
}

.custom-tab-content>.active {
	display: block;
	animation: tabFadeIn 0.4s ease-out forwards;
}

@keyframes tabFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.custom-tabs {
	border-bottom: 2px solid #f0f0f0 !important;
	margin-bottom: 40px;
}

.custom-tabs .nav-item .nav-link {
	border: none !important;
	font-size: 18px;
	font-weight: 800;
	color: #bbb;
	padding: 15px 30px;
	position: relative;
	background: transparent !important;
	transition: all 0.3s ease;
}

.custom-tabs .nav-item .nav-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 3px;
	background: #0e82b0;
	transition: width 0.3s ease;
}

.custom-tabs .nav-item .nav-link:hover::after,
.custom-tabs .nav-item.active .nav-link::after,
.custom-tabs .nav-item .nav-link.active::after {
	width: 100%;
}

.custom-tabs .nav-item .nav-link:hover,
.custom-tabs .nav-item.active .nav-link,
.custom-tabs .nav-item .nav-link.active {
	color: #111 !important;
}

.custom-tabs .nav-item .nav-link:hover i,
.custom-tabs .nav-item.active .nav-link i,
.custom-tabs .nav-item .nav-link.active i {
	color: #111 !important;
}

/* Doküman Listesi */
.clean-docs-list {
	list-style: none;
	padding: 0;
}

.clean-docs-list li {
	margin-bottom: 15px;
}

.clean-docs-list li a {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #fff;
	border: 1px solid #f0f0f0;
	padding: 22px 25px;
	border-radius: 10px;
	color: #2c3e50;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}


.clean-docs-list li a:hover {
	border-color: #0e82b0;
	box-shadow: 0 12px 30px rgba(14, 130, 176, 0.12);
	color: #0e82b0;
	background: #fcfdfe;
}


.clean-docs-list li a i {
	font-size: 24px;
	color: #0e82b0;
	transition: transform 0.3s ease;
}

.clean-docs-list li a:hover i {
	transform: scale(1.1);
}

.download-icon {
	margin-left: 0;
	font-size: 16px !important;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.clean-docs-list li a:hover .download-icon {
	opacity: 1;
	transform: translateY(2px);
}

@media (max-width: 768px) {
	.urun-content-new {
		padding-left: 0;
		margin-top: 30px;
	}

	.custom-tabs .nav-item .nav-link {
		font-size: 15px;
		padding: 10px 15px;
	}

	.table-clean tr td:first-child {
		width: 45%;
	}
}

/* Benzer Ürünler Alanı */
.related-products-new {
	margin-top: 80px;
	margin-bottom: 60px;
	border-top: 1px solid #eee;
	padding-top: 60px;
}

.related-title {
	font-size: 32px;
	font-weight: 900;
	color: #222;
	margin-bottom: 40px;
	text-align: center;
	position: relative;
}

.related-title:after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: #0e82b0;
	border-radius: 2px;
}


.related-subtitle {
	text-align: center;
	font-size: 17px;
	color: #666;
	margin-top: 30px;
	margin-bottom: 50px;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* SEO İçerik Alanı */
.product-seo-content {
	margin-top: 60px;
	margin-bottom: 80px;
	padding: 60px 0;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px dashed #ddd;
}

.seo-header {
	font-size: 26px;
	font-weight: 800;
	color: #111;
	margin-bottom: 25px;
	line-height: 1.4;
}

.seo-text p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 20px;
	font-weight: 400;
}

.seo-text strong {
	color: #0e82b0;
	font-weight: 700;
}

@media (max-width: 991px) {
	.product-seo-content {
		padding: 40px 15px;
	}
}

