/* Nefesat Kitaplar — yatay ortalı kart listesi */

.nefesat-books {
	--nefesat-books-accent: #96ae6e;
	--nefesat-books-gap: clamp(16px, 2.5vw, 28px);
	--nefesat-books-cols: 5;
	padding: 48px 20px;
}

.nefesat-books__section-title {
	font-size: clamp(22px, 2.5vw, 32px) !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	text-align: center;
	margin: 0 0 36px !important;
	color: #1a1a2e;
}

.nefesat-books__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: var(--nefesat-books-gap);
	max-width: 1200px;
	margin: 0 auto;
}

.nefesat-books__card {
	flex: 0 1 calc((100% - (var(--nefesat-books-gap) * (var(--nefesat-books-cols) - 1))) / var(--nefesat-books-cols));
	max-width: calc((100% - (var(--nefesat-books-gap) * (var(--nefesat-books-cols) - 1))) / var(--nefesat-books-cols));
	min-width: 140px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.nefesat-books__cover-wrap {
	display: block;
	width: 100%;
	margin-bottom: 14px;
	text-decoration: none;
}

.nefesat-books__cover {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
	background: #eee;
	transition: transform .25s ease, box-shadow .25s ease;
}

.nefesat-books__cover-wrap:hover .nefesat-books__cover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
}

.nefesat-books .nefesat-books__title,
.nefesat-books h3.nefesat-books__title {
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	margin: 0 0 8px !important;
	color: #1a1a2e !important;
}

.nefesat-books__title a {
	color: inherit;
	text-decoration: none;
}

.nefesat-books__title a:hover {
	color: var(--nefesat-books-accent);
}

.nefesat-books__price {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	min-height: 1.4em;
}

.nefesat-books__price del {
	opacity: .55;
	font-weight: 400;
	margin-right: 6px;
}

.nefesat-books__action {
	width: 100%;
	margin-top: auto;
}

.nefesat-books__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	line-height: 1.3;
	transition: opacity .2s, background .2s;
}

.nefesat-books__btn--buy {
	background: var(--nefesat-books-accent);
	color: #fff;
}

.nefesat-books__btn--buy:hover {
	opacity: .92;
	color: #fff;
}

.nefesat-books__btn--owned {
	background: #f0f4eb;
	color: var(--nefesat-books-accent);
	border: 1.5px solid var(--nefesat-books-accent);
}

.nefesat-books__btn--owned:hover {
	background: #e8efe0;
	color: var(--nefesat-books-accent);
}

.nefesat-books__footer {
	text-align: center;
	margin-top: 32px;
}

.nefesat-books__shop-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: #1a1a2e;
	border: 1.5px solid #d0d0d0;
	background: #fff;
	transition: background .2s, border-color .2s;
}

.nefesat-books__shop-link:hover {
	background: #f5f5f5;
	border-color: #aaa;
	color: #1a1a2e;
}

@media (max-width: 767px) {
	.nefesat-books {
		--nefesat-books-cols: 2;
		padding: 32px 16px;
	}

	.nefesat-books__card {
		min-width: 120px;
	}
}
