/* TempleSetu Annadanam — Front-end Styles */

/* ── Wrapper ─────────────────────────────────────────────── */
.tsa-form-wrapper {
	max-width: 560px;
	margin: 32px auto;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px 32px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
	color: #1f2937;
	box-sizing: border-box;
}

/* ── Section ─────────────────────────────────────────────── */
.tsa-section {
	margin-bottom: 24px;
}

.tsa-section-title {
	font-size: 13px;
	font-weight: 600;
	color: #d97706;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #fcd34d;
}

/* ── Fields ──────────────────────────────────────────────── */
.tsa-field {
	margin-bottom: 16px;
}

.tsa-field label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	margin-bottom: 6px;
}

.tsa-required {
	color: #dc2626;
	margin-left: 2px;
}

.tsa-field input[type="text"],
.tsa-field input[type="email"],
.tsa-field input[type="date"],
.tsa-field select {
	display: block;
	width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #fff;
	color: #111827;
	box-sizing: border-box;
	transition: border-color 0.15s, box-shadow 0.15s;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.tsa-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

.tsa-field input:focus,
.tsa-field select:focus {
	border-color: #d97706;
	box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

/* ── Meal Info Card ──────────────────────────────────────── */
.tsa-meal-card {
	background: #fef3c7;
	border: 1px solid #fcd34d;
	border-radius: 12px;
	padding: 14px 18px;
}

.tsa-meal-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 6px;
}

.tsa-meal-title strong {
	font-size: 15px;
	color: #92400e;
}

.tsa-meal-price {
	font-size: 15px;
	font-weight: 700;
	color: #d97706;
}

.tsa-meal-desc {
	font-size: 13px;
	color: #78350f;
	margin: 0;
}

/* ── Submit Button ───────────────────────────────────────── */
.tsa-submit-btn {
	display: block;
	width: 100%;
	padding: 13px 24px;
	background: #d97706;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s;
	text-align: center;
}

.tsa-submit-btn:hover {
	background: #b45309;
}

.tsa-submit-btn:disabled {
	background: #f59e0b;
	cursor: not-allowed;
	opacity: 0.7;
}

/* ── Error Messages ──────────────────────────────────────── */
.tsa-error {
	display: block;
	font-size: 12px;
	color: #dc2626;
	margin-top: 4px;
	min-height: 18px;
}

.tsa-submit-error {
	text-align: center;
	margin-top: 8px;
	font-size: 13px;
}

/* ── Thank-you Message ───────────────────────────────────── */
.tsa-thankyou {
	background: #ecfdf5;
	border: 1px solid #6ee7b7;
	border-radius: 12px;
	padding: 20px 24px;
	text-align: center;
	color: #065f46;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
}

.tsa-check {
	display: block;
	font-size: 32px;
	color: #059669;
	margin-bottom: 10px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media ( max-width: 480px ) {
	.tsa-form-wrapper {
		padding: 20px 16px;
		border-radius: 12px;
	}

	.tsa-meal-title {
		flex-direction: column;
		align-items: flex-start;
	}
}
