/**
 * ACCESFY Premium Footer
 */
.accesfy-hb-footer {
	background: var(--ahb-footer-bg, #000);
	color: var(--ahb-footer-text, #fff);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: auto;
}

.accesfy-hb-footer__gold {
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--ahb-gold, #c9a962), transparent);
}

.accesfy-hb-footer__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 48px 24px 28px;
}

.accesfy-hb-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 36px;
}

.accesfy-hb-footer__logo {
	margin-bottom: 4px;
}

.accesfy-hb-footer__brand .accesfy-hb__logo-brand--footer {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.12);
}

.accesfy-hb-footer__brand .accesfy-hb__logo-img,
.accesfy-hb-footer__brand .custom-logo {
	max-height: 76px;
	border-radius: 12px;
}

.accesfy-hb-footer__tagline {
	color: var(--ahb-footer-muted, #a1a1aa);
	font-size: 14px;
	line-height: 1.6;
	margin: 14px 0;
	max-width: 320px;
}

.accesfy-hb-footer__address {
	font-size: 13px;
	color: var(--ahb-footer-muted, #a1a1aa);
	margin: 0 0 10px;
}

.accesfy-hb-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.accesfy-hb-footer__contact a {
	color: #d4d4d8;
	text-decoration: none;
	font-size: 13px;
	transition: color 0.2s;
}

.accesfy-hb-footer__contact a:hover {
	color: var(--ahb-gold, #c9a962);
}

.accesfy-hb-footer__col h4 {
	margin: 0 0 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ahb-gold, #c9a962);
}

.accesfy-hb-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.accesfy-hb-footer__col a {
	color: #a1a1aa;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s, padding-left 0.2s;
	display: inline-block;
}

.accesfy-hb-footer__col a:hover {
	color: var(--ahb-footer-hover, #ff4da6);
	padding-left: 4px;
}

.accesfy-hb-footer__cta {
	display: inline-flex;
	margin-top: 14px;
	padding: 10px 18px;
	background: linear-gradient(135deg, var(--ahb-gold, #c9a962), #dbc07a);
	color: #000 !important;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 10px;
	text-decoration: none;
	padding-left: 18px !important;
}

.accesfy-hb-footer__cta:hover {
	opacity: 0.92;
	color: #000 !important;
}

.accesfy-hb-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.accesfy-hb-footer__copy {
	margin: 0;
	font-size: 12px;
	color: #71717a;
}

.accesfy-hb-footer__brand .accesfy-hb-footer__social {
	margin-top: 16px;
}

.accesfy-hb-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.accesfy-hb-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.2s;
}

.accesfy-hb-footer__social-link:hover {
	transform: translateY(-2px);
}

.accesfy-hb-footer__social-link--ig:hover {
	border-color: #f4a7b9;
	color: #f4a7b9;
	background: rgba(244, 167, 185, 0.08);
}

.accesfy-hb-footer__social-link--wa:hover {
	border-color: #25d366;
	color: #25d366;
	background: rgba(37, 211, 102, 0.08);
}

.accesfy-hb-footer__social-link--fb:hover {
	border-color: #4c8bf5;
	color: #4c8bf5;
	background: rgba(76, 139, 245, 0.08);
}

.accesfy-hb-footer__payments {
	display: flex;
	gap: 8px;
}

.accesfy-hb-footer__payments span {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #52525b;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
}

body.accesfy-hb-site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body.accesfy-hb-site #page,
body.accesfy-hb-site .site {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 100vh;
}

body.accesfy-sc-mobile-nav-active .accesfy-hb-footer {
	padding-bottom: calc(58px + env(safe-area-inset-bottom));
}

@media (max-width: 1024px) {
	.accesfy-hb-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}

	.accesfy-hb-footer__brand {
		grid-column: 1 / -1;
		text-align: center;
	}

	.accesfy-hb-footer__tagline,
	.accesfy-hb-footer__contact {
		align-items: center;
	}
}

@media (max-width: 600px) {
	.accesfy-hb-footer__inner {
		padding: 36px 16px 24px;
	}

	.accesfy-hb-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.accesfy-hb-footer__col--shop {
		grid-column: 1 / -1;
	}

	.accesfy-hb-footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}
