.tbc-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem; /* space between icon and text */
	padding: 0.6em 1.2em;
	border-radius: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}

.tbc-btn-icon {
	display: inline-flex;
	align-items: center;
}

/* Variants */
.tbc-btn--primary {
	background: #E62656;
	color: #fff;
}

.tbc-btn--primary:hover {
	background: #C91F4B;
}

.tbc-btn--secondary {
	background: #e5e7eb;
	color: #111827;
}

.tbc-btn--danger {
	background: #dc2626;
	color: #fff;
}

/* Sizes */
.tbc-btn--sm { font-size: 0.85rem; }
.tbc-btn--md { font-size: 1rem; }
.tbc-btn--lg { font-size: 1.15rem; }