/**
 * Parlak Epoksi - Ürünler sayfası
 */

.pe-urunler-page {
	background: #0a1118;
}

.pe-urunler-intro {
	padding: 72px 0 48px;
}

.pe-urunler-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 40px;
	align-items: start;
}

.pe-urunler-intro__copy h2 {
	margin: 0 0 16px;
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 700;
	line-height: 1.25;
	color: #ffffff;
}

.pe-urunler-intro__copy p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.68);
}

.pe-urunler-highlights {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pe-urunler-highlight {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	background: #121a24;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
}

.pe-urunler-highlight__icon {
	display: inline-flex;
	flex-shrink: 0;
	color: #ff6600;
}

.pe-urunler-highlight__icon svg {
	width: 28px;
	height: 28px;
	stroke: #ff6600;
}

.pe-urunler-highlight strong {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
}

.pe-urunler-highlight span {
	display: block;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.58);
}

.pe-urunler-products {
	padding: 24px 0 72px;
	background: #0d141f;
}

.pe-urunler-products__title {
	margin: 0 0 32px;
	font-size: clamp(24px, 2.6vw, 30px);
	font-weight: 700;
	color: #ffffff;
}

.pe-urunler-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.pe-urunler-product {
	display: flex;
	flex-direction: column;
	background: #121a24;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pe-urunler-product:hover {
	border-color: rgba(255, 102, 0, 0.35);
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.pe-urunler-product__img {
	height: 260px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #1a2330;
}

.pe-urunler-product__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 20px 24px;
}

.pe-urunler-product h3 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	color: #ffffff;
}

.pe-urunler-product__desc {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}

.pe-urunler-product__detail {
	margin: 0 0 18px;
	flex: 1;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.52);
}

.pe-urunler-product__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
	font-size: 13px;
	font-weight: 700;
	color: #ff6600;
	text-decoration: none;
	transition: opacity 0.25s ease;
}

.pe-urunler-product__cta:hover {
	opacity: 0.85;
}

.pe-urunler-product__cta .pe-icon svg {
	width: 16px;
	height: 16px;
	fill: #ff6600;
}

@media (max-width: 1100px) {
	.pe-urunler-intro__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.pe-urunler-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.pe-urunler-intro,
	.pe-urunler-products {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.pe-urunler-products__grid {
		grid-template-columns: 1fr;
	}

	.pe-urunler-product__img {
		height: 220px;
	}
}
