/* AryaRama footer (4 columns) */
.aryarama-footer {
	background: var(--aryarama-footer-bg, #eaf4ff);
	color: var(--aryarama-footer-text, #0f172a);
	padding: 60px 0 36px;
}

.aryarama-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.aryarama-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.aryarama-footer__brand {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 14px;
	align-items: center;
	margin-bottom: 18px;
}

.aryarama-footer__logo {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.6);
	padding: 8px;
	box-sizing: border-box;
}

.aryarama-footer__brand-title {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.35;
	color: var(--aryarama-footer-accent, #03427e);
}

.aryarama-footer__title {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--aryarama-footer-text, #0f172a);
	position: relative;
	padding-bottom: 10px;
}

.aryarama-footer__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 56px;
	height: 2px;
	background: var(--aryarama-footer-accent, #03427e);
	opacity: 0.85;
}

.aryarama-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.aryarama-footer__contact-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: rgba(15, 23, 42, 0.68);
	margin-bottom: 2px;
}

.aryarama-footer__contact-value,
.aryarama-footer__contact-link {
	font-size: 14px;
	font-weight: 600;
	color: var(--aryarama-footer-text, #0f172a);
	text-decoration: none;
}

.aryarama-footer__contact-link:hover {
	color: var(--aryarama-footer-accent, #03427e);
	text-decoration: underline;
}

.aryarama-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.aryarama-footer-social__link {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(3, 66, 126, 0.14);
	color: var(--aryarama-footer-accent, #03427e);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.aryarama-footer-social__link svg {
	width: 18px;
	height: 18px;
	display: block;
}

.aryarama-footer-social__link:hover {
	transform: translateY(-1px);
	border-color: rgba(3, 66, 126, 0.28);
	background: #ffffff;
	box-shadow: 0 10px 22px rgba(3, 66, 126, 0.10);
}

.aryarama-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.aryarama-footer__menu a {
	color: var(--aryarama-footer-text, #0f172a);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.aryarama-footer__menu a:hover {
	color: var(--aryarama-footer-accent, #03427e);
	text-decoration: underline;
}

.aryarama-footer-products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.aryarama-footer-products__link {
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 12px;
	align-items: center;
	text-decoration: none;
	color: inherit;
	padding: 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(3, 66, 126, 0.10);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.aryarama-footer-products__link:hover {
	transform: translateY(-1px);
	border-color: rgba(3, 66, 126, 0.22);
	box-shadow: 0 10px 22px rgba(3, 66, 126, 0.10);
}

.aryarama-footer-products__thumb {
	width: 68px;
	height: 68px;
	border-radius: 14px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.aryarama-footer-products__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.aryarama-footer-products__name {
	display: block;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	color: rgba(15, 23, 42, 0.92);
}

.aryarama-footer__empty {
	margin: 0;
	font-size: 13px;
	color: rgba(15, 23, 42, 0.65);
}

.aryarama-footer__copyright {
	margin: 18px 0 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: rgba(15, 23, 42, 0.62);
}

/* Hide GeneratePress default footer line */
.site-info {
	display: none !important;
}

@media (max-width: 1024px) {
	.aryarama-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}
}

@media (max-width: 640px) {
	.aryarama-footer {
		padding: 44px 0 28px;
	}

	.aryarama-footer__inner {
		padding: 0 16px;
	}

	.aryarama-footer__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.aryarama-footer__brand {
		grid-template-columns: 56px 1fr;
	}

	.aryarama-footer__logo {
		width: 56px;
		height: 56px;
	}

	.aryarama-footer-social__link {
		width: 36px;
		height: 36px;
	}
}

