/*
 * AnnGhar UI — Buttons
 * ------------------------------------------------------------------
 * One .ag-btn base + variant/size modifiers, used identically on the
 * My Account dashboard and the public landing page.
 */

.ag-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14.5px;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
	line-height: 1.2;
}

.ag-btn:hover {
	transform: translateY(-1px);
}

.ag-btn:focus-visible {
	outline: 2px solid var(--ag-primary-dark);
	outline-offset: 2px;
}

/* --primary: light button on a dark hero background */
.ag-btn--primary {
	background: var(--ag-white);
	color: var(--ag-primary-dark);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

.ag-btn--primary:hover {
	background: var(--ag-cream);
}

/* --solid: brand-green filled button, for use on light backgrounds */
.ag-btn--solid {
	background: var(--ag-primary);
	color: var(--ag-white);
	box-shadow: 0 6px 16px rgba(47, 107, 63, .3);
}

.ag-btn--solid:hover {
	background: var(--ag-primary-dark);
	color: var(--ag-white);
}

/* --outline: translucent outline button, for use on a dark hero */
.ag-btn--outline {
	background: rgba(255, 255, 255, .08);
	color: var(--ag-white);
	border-color: rgba(255, 255, 255, .5);
}

.ag-btn--outline:hover {
	background: rgba(255, 255, 255, .18);
}

/* --ghost: minor actions on a light background */
.ag-btn--ghost {
	background: none;
	color: var(--ag-primary-dark);
	border-color: var(--ag-border);
}

.ag-btn--ghost:hover {
	background: var(--ag-cream);
}

/* --danger: destructive/cancel actions */
.ag-btn--danger {
	background: none;
	color: var(--ag-danger);
	border-color: var(--ag-border);
}

.ag-btn--danger:hover {
	background: var(--ag-danger-bg);
}

.ag-btn--sm {
	padding: 8px 16px;
	font-size: 13px;
}

.ag-btn--block {
	width: 100%;
}
