/**
 * ATL Foodie Fan Club — frontend styles.
 * Brand: #CC0000 red, #111111 black, #FFFFFF white only.
 */

:root {
	--atlfc-red: #CC0000;
	--atlfc-black: #111111;
	--atlfc-white: #FFFFFF;
}

.atlfc-wrap {
	font-family: Arial, Helvetica, sans-serif;
	color: var(--atlfc-black);
	line-height: 1.5;
}

.atlfc-card {
	background: var(--atlfc-white);
	border: 3px solid var(--atlfc-red);
	padding: 32px 24px;
	max-width: 640px;
	margin: 0 auto;
}

.atlfc-card--dashboard,
.atlfc-card--thankyou {
	background: var(--atlfc-black);
	border-color: var(--atlfc-red);
	color: var(--atlfc-white);
}

.atlfc-card--closed {
	text-align: center;
}

.atlfc-brand,
.atlfc-footer-brand {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--atlfc-red);
	margin: 0 0 12px;
}

.atlfc-card--dashboard .atlfc-brand,
.atlfc-card--thankyou .atlfc-brand {
	color: var(--atlfc-red);
}

.atlfc-footer-brand {
	margin-top: 24px;
	color: var(--atlfc-white);
}

.atlfc-heading {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: clamp(28px, 5vw, 40px);
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 16px;
	line-height: 1.15;
	color: var(--atlfc-black);
}

.atlfc-card--dashboard .atlfc-heading,
.atlfc-card--thankyou .atlfc-heading {
	color: var(--atlfc-white);
}

.atlfc-subheading,
.atlfc-greeting,
.atlfc-text {
	font-size: 18px;
	margin: 0 0 16px;
}

.atlfc-card--dashboard .atlfc-greeting,
.atlfc-card--dashboard .atlfc-text,
.atlfc-card--thankyou .atlfc-text {
	color: var(--atlfc-white);
}

.atlfc-urgency {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 16px;
	font-weight: 900;
	color: var(--atlfc-red);
	text-transform: uppercase;
	margin: 0 0 20px;
}

.atlfc-urgency--below {
	margin-top: 16px;
	margin-bottom: 0;
	text-align: center;
}

.atlfc-urgency--popup {
	text-align: center;
}

/* Form */
.atlfc-form__row {
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
}

.atlfc-form__row--half {
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
	.atlfc-form__row--half {
		grid-template-columns: 1fr;
	}
}

.atlfc-form__field {
	margin-bottom: 16px;
}

.atlfc-form__field label {
	display: block;
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 16px;
	font-weight: 900;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.atlfc-optional {
	font-family: Arial, sans-serif;
	font-weight: 400;
	text-transform: none;
	font-size: 14px;
}

.atlfc-form__field input {
	width: 100%;
	padding: 14px 16px;
	font-size: 18px;
	line-height: 1.4;
	border: 2px solid var(--atlfc-black);
	background: var(--atlfc-white);
	color: var(--atlfc-black);
	box-sizing: border-box;
	min-height: 48px;
}

.atlfc-form__field select {
	width: 100%;
	padding: 0 40px 0 16px;
	font-size: 18px;
	line-height: 1.5;
	border: 2px solid var(--atlfc-black);
	background-color: var(--atlfc-white);
	color: var(--atlfc-black);
	box-sizing: border-box;
	height: 52px;
	min-height: 52px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111111' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
}

.atlfc-form__field input:focus,
.atlfc-form__field select:focus {
	outline: 2px solid var(--atlfc-red);
	outline-offset: 2px;
}

.atlfc-form__checkbox {
	margin-bottom: 16px;
}

.atlfc-form__checkbox label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 16px;
	line-height: 1.4;
	cursor: pointer;
}

.atlfc-form__checkbox input {
	margin-top: 4px;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	accent-color: var(--atlfc-red);
}

.atlfc-form__checkbox a {
	color: var(--atlfc-red);
	font-weight: 700;
}

.atlfc-form__message a {
	color: var(--atlfc-red);
	font-weight: 700;
}

.atlfc-login-note {
	font-size: 16px;
	margin: 0 0 20px;
	text-align: center;
}

.atlfc-login-note a {
	color: var(--atlfc-red);
	font-weight: 700;
}

.atlfc-link-btn {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	font-size: 16px;
	font-weight: 700;
	color: var(--atlfc-red);
	cursor: pointer;
	text-decoration: underline;
	min-height: 44px;
}

.atlfc-link-btn:hover,
.atlfc-link-btn:focus {
	opacity: 0.85;
}

.atlfc-card--login .atlfc-footer-brand {
	color: var(--atlfc-black);
	text-align: center;
}

.atlfc-form--lost {
	margin-top: 8px;
}

.atlfc-form__message {
	padding: 12px 16px;
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 700;
	border: 2px solid var(--atlfc-red);
}

.atlfc-form__message--error {
	background: var(--atlfc-white);
	color: var(--atlfc-red);
}

.atlfc-form__message--success {
	background: var(--atlfc-black);
	color: var(--atlfc-white);
	border-color: var(--atlfc-black);
}

/* Buttons — scoped so theme/Elementor global link styles do not override */
.atlfc-wrap button.atlfc-btn,
.atlfc-wrap a.atlfc-btn,
.atlfc-pricing button.atlfc-btn,
.atlfc-pricing a.atlfc-btn {
	display: block;
	width: 100%;
	padding: 18px 24px;
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	border: none;
	cursor: pointer;
	min-height: 56px;
	box-sizing: border-box;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
}

.atlfc-wrap button.atlfc-btn:disabled,
.atlfc-wrap a.atlfc-btn.atlfc-btn--disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.atlfc-wrap .atlfc-btn--founding,
.atlfc-pricing .atlfc-btn--founding {
	background-color: var(--atlfc-red) !important;
	color: var(--atlfc-white) !important;
	border: 2px solid var(--atlfc-red) !important;
}

.atlfc-wrap .atlfc-btn--founding:hover,
.atlfc-wrap .atlfc-btn--founding:focus,
.atlfc-pricing .atlfc-btn--founding:hover,
.atlfc-pricing .atlfc-btn--founding:focus {
	background-color: #a30000 !important;
	color: var(--atlfc-white) !important;
	border-color: #a30000 !important;
	opacity: 1;
}

.atlfc-wrap .atlfc-btn--vip,
.atlfc-pricing .atlfc-btn--vip {
	background-color: var(--atlfc-white) !important;
	color: var(--atlfc-black) !important;
	border: 2px solid var(--atlfc-black) !important;
}

.atlfc-wrap .atlfc-btn--vip:hover,
.atlfc-wrap .atlfc-btn--vip:focus,
.atlfc-pricing .atlfc-btn--vip:hover,
.atlfc-pricing .atlfc-btn--vip:focus {
	background-color: var(--atlfc-black) !important;
	color: var(--atlfc-white) !important;
	border-color: var(--atlfc-black) !important;
	opacity: 1;
}

.atlfc-wrap .atlfc-btn--on-dark,
.atlfc-pricing .atlfc-btn--on-dark {
	background-color: var(--atlfc-red) !important;
	color: var(--atlfc-white) !important;
	border: 2px solid var(--atlfc-red) !important;
}

.atlfc-wrap .atlfc-btn--on-dark:hover,
.atlfc-wrap .atlfc-btn--on-dark:focus,
.atlfc-pricing .atlfc-btn--on-dark:hover,
.atlfc-pricing .atlfc-btn--on-dark:focus {
	background-color: #a30000 !important;
	color: var(--atlfc-white) !important;
	border-color: #a30000 !important;
	opacity: 1;
}

.atlfc-wrap .atlfc-btn--disabled,
.atlfc-pricing .atlfc-btn--disabled {
	background-color: var(--atlfc-black) !important;
	color: var(--atlfc-white) !important;
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
}

/* Pricing cards */
.atlfc-pricing {
	max-width: 1100px;
	margin: 0 auto;
	padding: 8px 0 24px;
}

.atlfc-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}

.atlfc-pricing[data-count="1"] .atlfc-pricing__grid {
	grid-template-columns: minmax(0, 360px);
	justify-content: center;
}

.atlfc-pricing[data-count="2"] .atlfc-pricing__grid {
	grid-template-columns: repeat(2, minmax(0, 360px));
	justify-content: center;
}

.atlfc-pricing[data-count="4"] .atlfc-pricing__grid {
	grid-template-columns: repeat(2, 1fr);
}

.atlfc-pricing-card {
	display: flex;
	flex-direction: column;
	border: 3px solid var(--atlfc-red);
	padding: 28px 22px 24px;
	position: relative;
	background: var(--atlfc-white);
	color: var(--atlfc-black);
}

.atlfc-pricing-card--paid {
	background: var(--atlfc-black);
	color: var(--atlfc-white);
}

.atlfc-pricing-card--featured {
	transform: translateY(-6px);
	box-shadow: 0 12px 0 var(--atlfc-red);
}

.atlfc-pricing-card--closed {
	opacity: 0.72;
}

.atlfc-pricing-card__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	padding: 8px 14px;
	background: var(--atlfc-red);
	color: var(--atlfc-white);
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	max-width: calc(100% - 24px);
	overflow: hidden;
	text-overflow: ellipsis;
}

.atlfc-pricing-card__brand {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--atlfc-red);
	margin: 8px 0 10px;
}

.atlfc-pricing-card__title {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.15;
	margin: 0 0 16px;
}

.atlfc-pricing-card__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 6px;
	margin-bottom: 12px;
}

.atlfc-pricing-card__currency {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 22px;
	font-weight: 900;
	color: var(--atlfc-red);
}

.atlfc-pricing-card__amount {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: clamp(40px, 6vw, 52px);
	font-weight: 900;
	line-height: 1;
	color: inherit;
}

.atlfc-pricing-card__amount--text {
	font-size: clamp(28px, 5vw, 40px);
	color: var(--atlfc-red);
}

.atlfc-pricing-card--paid .atlfc-pricing-card__amount--text {
	color: var(--atlfc-white);
}

.atlfc-pricing-card__period {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.9;
}

.atlfc-pricing-card__urgency {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--atlfc-red);
	margin: 0 0 16px;
	line-height: 1.35;
}

.atlfc-pricing-card__benefits {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	flex: 1;
}

.atlfc-pricing-card__benefits li {
	position: relative;
	padding: 10px 0 10px 28px;
	border-bottom: 1px solid var(--atlfc-red);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.atlfc-pricing-card__benefits li:last-child {
	border-bottom: none;
}

.atlfc-pricing-card__benefits li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--atlfc-red);
	font-weight: 900;
}

.atlfc-pricing-card .atlfc-btn {
	margin-top: auto;
}

@media (max-width: 900px) {
	.atlfc-pricing__grid,
	.atlfc-pricing[data-count="2"] .atlfc-pricing__grid,
	.atlfc-pricing[data-count="4"] .atlfc-pricing__grid {
		grid-template-columns: 1fr;
		justify-content: stretch;
	}

	.atlfc-pricing-card--featured {
		transform: none;
		box-shadow: none;
		order: -1;
	}
}

/* Dashboard benefits (legacy thank-you / closed cards may still use) */
.atlfc-benefits {
	margin: 24px 0;
}

.atlfc-benefits__title,
.atlfc-benefits__subtitle {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 22px;
	text-transform: uppercase;
	color: var(--atlfc-red);
	margin: 0 0 16px;
}

.atlfc-benefits__subtitle {
	margin-top: 24px;
}

.atlfc-benefits__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.atlfc-benefits__item {
	font-size: 18px;
	padding: 10px 0 10px 32px;
	position: relative;
	color: var(--atlfc-white);
	border-bottom: 1px solid var(--atlfc-red);
}

.atlfc-benefits__item::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--atlfc-red);
	font-weight: 900;
	font-size: 20px;
}

.atlfc-dashboard__meta {
	margin-top: 24px;
	font-size: 16px;
	color: var(--atlfc-white);
}

.atlfc-dashboard__meta p {
	margin: 0 0 8px;
}

/* —— Member Dashboard —— */
.atlfc-dashboard {
	max-width: 920px;
	margin: 0 auto;
	padding: 8px 0 32px;
}

.atlfc-dash {
	background: var(--atlfc-black);
	border: 3px solid var(--atlfc-red);
	color: var(--atlfc-white);
	overflow: hidden;
}

.atlfc-dash--free {
	background: var(--atlfc-white);
	color: var(--atlfc-black);
}

.atlfc-dash__header {
	padding: 28px 28px 24px;
	border-bottom: 3px solid var(--atlfc-red);
	position: relative;
}

.atlfc-dash--vip .atlfc-dash__header {
	background:
		linear-gradient(135deg, var(--atlfc-black) 0%, var(--atlfc-black) 60%, #1a0000 100%);
}

.atlfc-dash--free .atlfc-dash__header {
	background: var(--atlfc-white);
}

.atlfc-dash__header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.atlfc-dash__brand {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--atlfc-red);
	margin: 0;
}

.atlfc-dash__logout {
	font-size: 14px;
	font-weight: 700;
	color: var(--atlfc-red);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 8px 4px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.atlfc-dash__logout:hover,
.atlfc-dash__logout:focus {
	text-decoration: underline;
}

.atlfc-dash__title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	margin-bottom: 12px;
}

.atlfc-dash__title {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: clamp(26px, 5vw, 38px);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.1;
	margin: 0;
	color: inherit;
}

.atlfc-dash__badge {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 10px 14px;
	line-height: 1.2;
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
}

.atlfc-dash__badge--free {
	background: var(--atlfc-white);
	color: var(--atlfc-red);
	border: 2px solid var(--atlfc-red);
}

.atlfc-dash--free .atlfc-dash__badge--free {
	background: var(--atlfc-red);
	color: var(--atlfc-white);
	border-color: var(--atlfc-red);
}

.atlfc-dash__badge--paid {
	background: var(--atlfc-red);
	color: var(--atlfc-white);
	border: 2px solid var(--atlfc-red);
}

.atlfc-dash__badge--pending {
	background: transparent;
	color: var(--atlfc-white);
	border: 2px solid var(--atlfc-red);
}

.atlfc-dash__status.is-pending {
	color: var(--atlfc-red);
}

.atlfc-dash__pending-banner {
	margin: 20px 0 0;
	padding: 18px 16px;
	border: 2px dashed var(--atlfc-red);
	text-align: left;
}

.atlfc-dash__pending-title {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--atlfc-red);
	margin: 0 0 8px;
}

.atlfc-dash__pending-text {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.45;
	color: var(--atlfc-white);
}

.atlfc-dash__badge-sub {
	font-size: 11px;
	letter-spacing: 0.06em;
	opacity: 0.95;
	font-weight: 900;
}

.atlfc-dash__plan-type {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 0.06em;
	color: var(--atlfc-red);
}

.atlfc-dash__welcome {
	font-size: 20px;
	margin: 0 0 10px;
	font-weight: 700;
}

.atlfc-dash__status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0;
	color: var(--atlfc-red);
}

.atlfc-dash__status-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--atlfc-red);
	flex-shrink: 0;
	box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.25);
	animation: atlfc-pulse 2s ease-in-out infinite;
}

@keyframes atlfc-pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.25); }
	50% { box-shadow: 0 0 0 6px rgba(204, 0, 0, 0.1); }
}

.atlfc-dash__bday {
	margin-top: 18px;
	padding: 14px 16px;
	border: 2px solid var(--atlfc-red);
	background: rgba(204, 0, 0, 0.12);
}

.atlfc-dash__bday.is-today {
	background: var(--atlfc-red);
}

.atlfc-dash__bday-label {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 6px;
	color: var(--atlfc-red);
}

.atlfc-dash__bday.is-today .atlfc-dash__bday-label,
.atlfc-dash__bday.is-today .atlfc-dash__bday-msg {
	color: var(--atlfc-white);
}

.atlfc-dash__bday-msg {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.atlfc-dash__body {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 0;
}

@media (max-width: 720px) {
	.atlfc-dash__body {
		grid-template-columns: 1fr;
	}
}

.atlfc-dash__panel {
	padding: 28px;
}

.atlfc-dash__panel--profile {
	border-right: 2px solid var(--atlfc-red);
}

@media (max-width: 720px) {
	.atlfc-dash__panel--profile {
		border-right: none;
		border-bottom: 2px solid var(--atlfc-red);
	}
}

.atlfc-dash__panel-title {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--atlfc-red);
	margin: 0 0 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--atlfc-red);
}

.atlfc-dash__facts {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.atlfc-dash__fact {
	display: grid;
	gap: 4px;
}

.atlfc-dash__fact dt {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--atlfc-red);
	margin: 0;
}

.atlfc-dash__fact dd {
	font-size: 17px;
	font-weight: 700;
	margin: 0;
	word-break: break-word;
}

.atlfc-dash--vip .atlfc-dash__fact dd {
	color: var(--atlfc-white);
}

.atlfc-dash--free .atlfc-dash__fact dd {
	color: var(--atlfc-black);
}

.atlfc-dash__benefits {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}

.atlfc-dash__benefit {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 17px;
	font-weight: 600;
	padding: 14px 0;
	border-bottom: 1px solid var(--atlfc-red);
	line-height: 1.35;
}

.atlfc-dash__benefit:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.atlfc-dash__benefit:first-child {
	padding-top: 0;
}

.atlfc-dash__check {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--atlfc-red);
	color: var(--atlfc-white);
	font-weight: 900;
	font-size: 16px;
	line-height: 1;
}

.atlfc-dash__empty {
	font-size: 16px;
	margin: 0;
}

.atlfc-dash__footer {
	padding: 20px 28px;
	border-top: 3px solid var(--atlfc-red);
	text-align: center;
}

.atlfc-dash__panel--billing,
.atlfc-dash__panel--next {
	border-top: 2px solid var(--atlfc-red);
}

.atlfc-dash__facts--inline {
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px 24px;
	margin-bottom: 16px;
}

.atlfc-dash__note {
	font-size: 14px;
	font-weight: 600;
	opacity: 0.9;
	margin: 0 0 16px;
	line-height: 1.45;
}

.atlfc-dash__message {
	margin: 0 0 16px;
	padding: 12px 14px;
	font-size: 14px;
	font-weight: 700;
	border: 2px solid var(--atlfc-red);
}

.atlfc-dash__message.is-ok {
	background: rgba(204, 0, 0, 0.15);
	color: var(--atlfc-white);
}

.atlfc-dash__message.is-error {
	background: var(--atlfc-red);
	color: var(--atlfc-white);
}

.atlfc-dash__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.atlfc-btn--outline {
	background: transparent !important;
	color: var(--atlfc-white) !important;
	border: 2px solid var(--atlfc-red) !important;
}

.atlfc-btn--outline:hover,
.atlfc-btn--outline:focus {
	background: var(--atlfc-red) !important;
	color: var(--atlfc-white) !important;
	border-color: var(--atlfc-red) !important;
	opacity: 1;
}

.atlfc-dash__pill {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 2px solid var(--atlfc-red);
	color: var(--atlfc-red);
}

.atlfc-dash__next-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.atlfc-dash__next-list li {
	font-size: 16px;
	font-weight: 600;
	padding-left: 20px;
	position: relative;
	line-height: 1.4;
}

.atlfc-dash__next-list li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--atlfc-red);
	font-weight: 900;
}

.atlfc-dash__tagline {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0;
	color: inherit;
}

.atlfc-dash--vip .atlfc-dash__tagline {
	color: var(--atlfc-white);
}

.atlfc-dash--free .atlfc-dash__tagline {
	color: var(--atlfc-black);
}

@media (max-width: 600px) {
	.atlfc-dash__header,
	.atlfc-dash__panel,
	.atlfc-dash__footer {
		padding-left: 20px;
		padding-right: 20px;
	}

	.atlfc-dash__welcome {
		font-size: 18px;
	}

	.atlfc-dash__fact dd,
	.atlfc-dash__benefit {
		font-size: 16px;
	}
}

/* Popup */
.atlfc-popup[hidden] {
	display: none !important;
}

.atlfc-popup {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.atlfc-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.92);
}

.atlfc-popup__dialog {
	position: relative;
	background: var(--atlfc-white);
	border: 4px solid var(--atlfc-red);
	padding: 32px 24px;
	max-width: 480px;
	width: 100%;
	text-align: center;
	z-index: 1;
}

.atlfc-popup__close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	color: var(--atlfc-black);
	padding: 4px 8px;
	min-width: 44px;
	min-height: 44px;
}

.atlfc-popup__title {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 24px;
	text-transform: uppercase;
	color: var(--atlfc-black);
	margin: 0 0 12px;
}

.atlfc-popup__body {
	font-size: 18px;
	color: var(--atlfc-black);
	margin: 0 0 12px;
}

.atlfc-popup .atlfc-btn {
	margin-top: 16px;
}

/* Birthdays of the Month shortcode */
.atlfc-botm {
	max-width: 560px;
	margin: 0 auto;
	padding: 24px 0;
}

.atlfc-botm__eyebrow {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--atlfc-red);
	margin: 0 0 8px;
}

.atlfc-botm__title {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: clamp(22px, 4vw, 32px);
	text-transform: uppercase;
	margin: 0 0 20px;
	color: var(--atlfc-black);
	line-height: 1.15;
}

.atlfc-botm__list {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 3px solid var(--atlfc-red);
}

.atlfc-botm__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-bottom: 2px solid var(--atlfc-red);
	background: var(--atlfc-white);
}

.atlfc-botm__item:last-child {
	border-bottom: none;
}

.atlfc-botm__item.is-today {
	background: var(--atlfc-black);
	color: var(--atlfc-white);
}

.atlfc-botm__day {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 20px;
	font-weight: 900;
	color: var(--atlfc-red);
	min-width: 36px;
}

.atlfc-botm__item.is-today .atlfc-botm__day {
	color: var(--atlfc-red);
}

.atlfc-botm__name {
	font-size: 18px;
	font-weight: 700;
	flex: 1;
}

.atlfc-botm__badge {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 11px;
	letter-spacing: 0.08em;
	background: var(--atlfc-red);
	color: var(--atlfc-white);
	padding: 6px 10px;
}
