/**
 * Tribe Botanicals - Age verification gate (Jack-style)
 */

/* ---- Age gate ---- */
.tribe-age-card h2 {
	margin: 0 0 6px;
	font-size: 26px;
	line-height: 1.2;
	color: #23432B;
	font-weight: 700;
}
.tribe-age-card h2 span {
	display: block;
	margin-top: 4px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #C49A6C;
}
.tribe-age-card p {
	margin: 14px 0 24px;
	font-size: 16px;
	line-height: 1.6;
	color: #5b665e;
}
.tribe-age-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.tribe-age-btn {
	border: none;
	cursor: pointer;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .5px;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.tribe-age-btn:hover {
	transform: translateY(-2px);
}
.tribe-age-yes {
	background: #23432B;
	color: #fff;
}
.tribe-age-yes:hover {
	background: #17342C;
	box-shadow: 0 10px 22px rgba(35, 67, 43, 0.3);
}
.tribe-age-no {
	background: #F8F6F2;
	color: #46515b;
	border: 1px solid rgba(35, 67, 43, 0.12);
}
.tribe-age-no:hover {
	background: #f0ede6;
}
.tribe-age-terms {
	margin: 18px 0 0;
	font-size: 12px;
	line-height: 1.55;
	color: #8a938c;
}

@media (max-width: 480px) {
	.tribe-age-card h2 {
		font-size: 22px;
	}
}
