/* Temple Setu Books — Frontend Styles */

.tsb-book-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
	margin: 24px 0;
}

.tsb-book-card {
	border: 1px solid #e8dfd0;
	border-radius: 10px;
	overflow: hidden;
	background: #fffaf3;
	box-shadow: 0 1px 4px rgba(120, 72, 0, 0.06);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tsb-book-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(120, 72, 0, 0.12);
}

.tsb-book-cover {
	position: relative;
	background: #f3e8d5;
	text-align: center;
}

.tsb-book-cover img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
}

.tsb-cover-placeholder {
	height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b5895a;
	font-size: 48px;
}

.tsb-cover-placeholder-large {
	height: 360px;
	font-size: 72px;
}

.tsb-free-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #b5451b;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 4px 10px;
	border-radius: 999px;
}

.tsb-book-body {
	padding: 16px;
}

.tsb-book-title {
	margin: 0 0 6px;
	font-size: 18px;
	color: #4a2c12;
}

.tsb-book-desc {
	font-size: 14px;
	color: #6b5a45;
	margin-bottom: 10px;
}

.tsb-book-sponsor {
	font-size: 13px;
	color: #8a6a3d;
	margin-bottom: 12px;
}

.tsb-request-btn,
.tsb-submit-btn {
	display: inline-block;
	background: #b5451b;
	color: #fff !important;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	font-size: 14px;
}

.tsb-request-btn:hover,
.tsb-submit-btn:hover {
	background: #93380f;
	color: #fff;
}

.tsb-single-book-header {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin: 24px 0;
}

.tsb-single-cover {
	flex: 0 0 280px;
}

.tsb-single-cover img {
	width: 100%;
	border-radius: 8px;
}

.tsb-single-info {
	flex: 1 1 320px;
}

.tsb-single-title {
	margin: 0 0 4px;
	color: #4a2c12;
}

.tsb-single-subtitle {
	color: #8a6a3d;
	font-weight: 400;
	margin-top: 0;
}

.tsb-single-meta {
	list-style: none;
	padding: 0;
	margin: 16px 0;
}

.tsb-single-meta li {
	margin-bottom: 6px;
	font-size: 14px;
}

.tsb-free-label {
	color: #b5451b;
	font-weight: 700;
}

.tsb-sponsor-box {
	background: #fdf3e3;
	border-left: 4px solid #b5451b;
	padding: 14px 18px;
	margin: 16px 0;
	border-radius: 6px;
}

.tsb-sponsor-heading {
	margin: 0 0 4px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #8a6a3d;
}

.tsb-sponsor-name {
	margin: 0 0 6px;
	font-size: 16px;
}

.tsb-sponsor-message {
	margin: 0;
	font-style: italic;
	color: #5a4630;
}

.tsb-single-description {
	margin: 24px 0;
	line-height: 1.7;
}

.tsb-request-form-wrap {
	max-width: 640px;
	margin: 32px 0;
	padding: 24px;
	background: #fffaf3;
	border: 1px solid #e8dfd0;
	border-radius: 10px;
}

.tsb-form-row {
	margin-bottom: 14px;
	display: flex;
	flex-direction: column;
}

.tsb-form-row label {
	font-size: 13px;
	font-weight: 600;
	color: #4a2c12;
	margin-bottom: 4px;
}

.tsb-form-row input[type="text"],
.tsb-form-row input[type="email"],
.tsb-form-row input[type="tel"] {
	padding: 9px 12px;
	border: 1px solid #d8c9ac;
	border-radius: 6px;
	font-size: 14px;
}

.tsb-form-row-half,
.tsb-form-row-third {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}

@media ( min-width: 560px ) {
	.tsb-form-row-half {
		width: 48%;
		margin-right: 2%;
	}
	.tsb-form-row-third {
		width: 31%;
		margin-right: 2%;
	}
}

.tsb-form-checkbox label {
	flex-direction: row;
	align-items: flex-start;
	font-weight: 400;
	font-size: 14px;
}

.tsb-form-checkbox input[type="checkbox"] {
	margin-right: 8px;
	margin-top: 3px;
}

.tsb-success-page {
	max-width: 640px;
	margin: 32px auto;
	text-align: center;
}

.tsb-success-page h2 {
	color: #b5451b;
}

.tsb-no-books,
.tsb-unavailable {
	color: #8a6a3d;
	font-style: italic;
}
