.shyam-footer {
	--shyam-footer-accent: #49b97c;
	--shyam-footer-accent-2: #f39a16;
	--shyam-footer-text: #f3f2e9;
	--shyam-footer-muted: #c4c9c3;
	--shyam-footer-line: rgba(98, 151, 121, 0.28);
	position: relative;
	isolation: isolate;
	width: 100%;
	padding: 72px 30px 28px;
	background: #081d1e;
	color: var(--shyam-footer-text);
	overflow: hidden;
}

.shyam-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background: rgba(1, 16, 17, 0.18);
}

.shyam-footer *,
.shyam-footer *::before,
.shyam-footer *::after {
	box-sizing: border-box;
}

.shyam-footer a {
	text-decoration: none;
}

.shyam-footer svg {
	fill: currentColor;
}

.shyam-footer__container {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 28px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.shyam-footer__top-line {
	position: absolute;
	top: 27px;
	left: 0;
	right: 0;
	height: 2px;
	background: #d88119;
	opacity: .95;
}

.shyam-footer__top-ornament {
	position: absolute;
	top: 10px;
	left: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 42px;
	height: 34px;
	transform: translateX(-50%);
	background: #081d1e;
	font-size: 20px;
}

.shyam-footer__top-ornament::before,
.shyam-footer__top-ornament::after {
	content: "";
	position: absolute;
	bottom: 1px;
	width: 18px;
	height: 10px;
	border-bottom: 1px solid currentColor;
}

.shyam-footer__top-ornament::before {
	right: 50%;
	border-radius: 0 0 100% 0;
}

.shyam-footer__top-ornament::after {
	left: 50%;
	border-radius: 0 0 0 100%;
}

.shyam-footer__corner {
	position: absolute;
	z-index: 1;
	width: 150px;
	height: 150px;
	pointer-events: none;
	opacity: .95;
	transition: opacity .2s ease;
}

.shyam-footer--no-corners .shyam-footer__corner {
	display: none;
}

.shyam-footer__corner span {
	position: absolute;
	display: block;
	width: 72px;
	height: 30px;
	background: currentColor;
	border-radius: 100% 0 100% 0;
	transform: rotate(-36deg);
	filter: drop-shadow(0 0 1px rgba(255,255,255,.02));
}

.shyam-footer__corner span:nth-child(1) { left: 0; top: 22px; }
.shyam-footer__corner span:nth-child(2) { left: 34px; top: 64px; transform: rotate(-6deg) scale(.82); }
.shyam-footer__corner span:nth-child(3) { left: 3px; top: 103px; transform: rotate(28deg) scale(.66); }
.shyam-footer__corner--tl { top: 0; left: 0; }
.shyam-footer__corner--tr { top: 0; right: 0; transform: scaleX(-1); }
.shyam-footer__corner--bl { bottom: 0; left: 0; transform: scaleY(-1); }
.shyam-footer__corner--br { right: 0; bottom: 0; transform: scale(-1); }

.shyam-footer__top-grid {
	display: grid;
	grid-template-columns: minmax(250px, 1.42fr) repeat(3, minmax(150px, .92fr)) minmax(250px, 1.36fr);
	gap: 32px;
	align-items: start;
}

.shyam-footer__brand,
.shyam-footer__column {
	min-width: 0;
}

.shyam-footer__column {
	position: relative;
	padding-left: 32px;
}

.shyam-footer__column::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	background: var(--shyam-footer-line);
}

.shyam-footer__logo {
	margin-bottom: 14px;
}

.shyam-footer__logo-link {
	display: inline-flex;
	max-width: 100%;
}

.shyam-footer__logo img {
	display: block;
	width: 265px;
	max-width: 100%;
	height: auto;
}

.shyam-footer__description {
	max-width: 270px;
	margin: 0 0 18px;
	color: var(--shyam-footer-text);
	font-size: 17px;
	line-height: 1.38;
}

.shyam-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 17px;
}

.shyam-footer__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--shyam-footer-accent);
	border-radius: 50%;
	color: var(--shyam-footer-text);
	transition: transform .22s ease, color .22s ease, background-color .22s ease, border-color .22s ease;
}

.shyam-footer__social i { font-size: 19px; }
.shyam-footer__social svg { width: 19px; height: 19px; }
.shyam-footer__social:hover { transform: translateY(-3px); }

.shyam-footer__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	max-width: 100%;
	padding: 15px 24px;
	border: 1px solid rgba(255,255,255,.7);
	border-radius: 12px;
	background: linear-gradient(135deg, #68c98b, #36a864);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 9px 16px rgba(0,0,0,.24);
	transition: transform .22s ease, filter .22s ease;
}

.shyam-footer__whatsapp:hover {
	color: #fff;
	transform: translateY(-2px);
	filter: brightness(1.05);
}

.shyam-footer__whatsapp i { font-size: 27px; }
.shyam-footer__whatsapp svg { width: 27px; height: 27px; }

.shyam-footer__brand-payments {
	margin-top: 18px;
	max-width: 100%;
}

.shyam-footer__brand-payments-title {
	margin-bottom: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.shyam-footer__brand-payment-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 7px;
	width: 100%;
	max-width: 100%;
}

.shyam-footer__brand-payment {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 42px;
	padding: 5px 6px;
	border: 1px solid rgba(223, 214, 196, .9);
	border-radius: 7px;
	background: #f5f0e5;
	color: #182929;
	line-height: 1;
	overflow: hidden;
	transition: transform .2s ease, filter .2s ease;
}

a.shyam-footer__brand-payment:hover,
a.shyam-footer__brand-payment:focus-visible {
	color: #182929;
	transform: translateY(-2px);
	filter: brightness(1.03);
}

.shyam-footer__brand-payment img {
	display: block;
	width: auto;
	height: auto;
	max-width: 58px;
	max-height: 27px;
	object-fit: contain;
}

.shyam-footer__brand-payment-label {
	display: block;
	max-width: 100%;
	color: #182929;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	overflow-wrap: anywhere;
}

.shyam-footer__heading {
	position: relative;
	margin: 0 0 28px;
	padding: 0 0 13px;
	color: var(--shyam-footer-accent);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.shyam-footer__heading::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 26px;
	height: 2px;
	border-radius: 5px;
	background: var(--shyam-footer-accent-2);
}

.shyam-footer__links {
	display: flex;
	flex-direction: column;
	gap: 21px;
}

.shyam-footer__link {
	display: flex;
	align-items: center;
	gap: 17px;
	min-width: 0;
	color: var(--shyam-footer-text);
	font-size: 16px;
	line-height: 1.3;
	transition: color .2s ease, transform .2s ease;
}

.shyam-footer__link:hover {
	color: var(--shyam-footer-accent);
	transform: translateX(3px);
}

.shyam-footer__link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 26px;
	color: var(--shyam-footer-accent-2);
	transition: color .2s ease;
}

.shyam-footer__link-icon i { font-size: 22px; }
.shyam-footer__link-icon svg { width: 22px; height: 22px; }

.shyam-footer__contact-list {
	display: flex;
	flex-direction: column;
}

.shyam-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px dashed rgba(92, 136, 106, .38);
}

.shyam-footer__contact-item:first-child { padding-top: 0; }
.shyam-footer__contact-item:last-child { border-bottom: 0; padding-bottom: 0; }

.shyam-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border: 1px solid var(--shyam-footer-accent);
	border-radius: 50%;
	color: var(--shyam-footer-text);
}

.shyam-footer__contact-icon i { font-size: 18px; }
.shyam-footer__contact-icon svg { width: 18px; height: 18px; }
.shyam-footer__contact-copy { min-width: 0; padding-top: 1px; }

.shyam-footer__contact-label {
	margin-bottom: 2px;
	color: var(--shyam-footer-accent);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.shyam-footer__contact-value {
	display: block;
	color: var(--shyam-footer-text);
	font-size: 15px;
	line-height: 1.42;
	word-break: break-word;
}

a.shyam-footer__contact-value:hover { color: var(--shyam-footer-accent); }

.shyam-footer__newsletter {
	display: grid;
	grid-template-columns: minmax(260px, .95fr) minmax(330px, 1.3fr) auto;
	gap: 25px;
	align-items: center;
	padding: 20px 28px;
	border: 1px solid rgba(212, 136, 24, .55);
	border-radius: 20px;
	background: rgba(14, 36, 36, .92);
}

.shyam-footer__newsletter-intro {
	display: flex;
	align-items: center;
	gap: 17px;
	min-width: 0;
}

.shyam-footer__newsletter-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #f4eddb;
	color: #102526;
}

.shyam-footer__newsletter-icon i { font-size: 28px; }
.shyam-footer__newsletter-icon svg { width: 28px; height: 28px; }

.shyam-footer__newsletter-title {
	margin-bottom: 5px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.shyam-footer__newsletter-copy {
	color: var(--shyam-footer-muted);
	font-size: 14px;
	line-height: 1.45;
}

.shyam-footer__newsletter-form,
.shyam-footer__shortcode {
	min-width: 0;
}

.shyam-footer__form-shell {
	display: flex;
	align-items: stretch;
	min-width: 0;
	padding: 0;
	border: 1px solid rgba(214, 138, 25, .42);
	border-radius: 12px;
	background: rgba(5, 25, 26, .75);
	overflow: hidden;
}

.shyam-footer__email {
	min-width: 0;
	width: 100%;
	height: 50px;
	padding: 0 18px;
	border: 0 !important;
	border-radius: 0 !important;
	outline: 0;
	background: transparent !important;
	color: #fff;
	font: inherit;
	box-shadow: none !important;
}

.shyam-footer__email:focus {
	outline: 0;
	box-shadow: inset 0 0 0 1px var(--shyam-footer-accent) !important;
}

.shyam-footer__email::placeholder {
	color: #a9b1ad;
	opacity: 1;
}

.shyam-footer__subscribe {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex: 0 0 auto;
	min-height: 50px;
	padding: 0 22px;
	border: 0;
	border-radius: 11px;
	background: linear-gradient(135deg, #5bc181, #2fa262);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	transition: filter .2s ease, transform .2s ease;
}

.shyam-footer__subscribe:hover {
	filter: brightness(1.06);
	transform: translateX(-1px);
}

.shyam-footer__subscribe i { font-size: 16px; }
.shyam-footer__subscribe svg { width: 16px; height: 16px; }

.shyam-footer__payments {
	position: relative;
	min-width: 0;
	padding-left: 25px;
}

.shyam-footer__payments::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	background: var(--shyam-footer-line);
}

.shyam-footer__payments-title {
	margin-bottom: 8px;
	color: #fff;
	font-size: 14px;
	line-height: 1.2;
}

.shyam-footer__payment-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.shyam-footer__payment {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 70px;
	height: 42px;
	padding: 6px 12px;
	border-radius: 7px;
	background: #f5f0e5;
	color: #182929;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 4px 8px rgba(0,0,0,.15);
	overflow: hidden;
}

.shyam-footer__payment img {
	display: block;
	max-width: 75px;
	max-height: 28px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.shyam-footer__policies {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 28px;
	row-gap: 14px;
	padding-top: 2px;
}

.shyam-footer__policy-item {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.shyam-footer__policy-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -14px;
	width: 1px;
	height: 20px;
	transform: translateY(-50%);
	background: #a87022;
}

.shyam-footer__policy {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: #dfdfd6;
	font-size: 15px;
	line-height: 1.35;
	transition: color .2s ease;
}

.shyam-footer__policy:hover { color: var(--shyam-footer-accent); }
.shyam-footer__policy-icon { display: inline-flex; color: var(--shyam-footer-accent-2); }
.shyam-footer__policy-icon i { font-size: 21px; }
.shyam-footer__policy-icon svg { width: 21px; height: 21px; }

.shyam-footer__bottom-ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-top: -3px;
}

.shyam-footer__bottom-ornament > span:first-child,
.shyam-footer__bottom-ornament > span:last-child {
	width: 135px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--shyam-footer-line));
}

.shyam-footer__bottom-ornament > span:last-child {
	background: linear-gradient(90deg, var(--shyam-footer-line), transparent);
}

.shyam-footer__ornament {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--shyam-footer-accent-2);
}

.shyam-footer__bottom-ornament .shyam-footer__ornament i { font-size: 16px; }
.shyam-footer__bottom-ornament .shyam-footer__ornament svg { width: 16px; height: 16px; }

.shyam-footer__copyright {
	position: relative;
	text-align: center;
	color: #aeb7b1;
	font-size: 15px;
	line-height: 1.4;
}

.shyam-footer__copyright::before,
.shyam-footer__copyright::after {
	content: "";
	position: absolute;
	top: 50%;
	width: min(28%, 390px);
	height: 1px;
	background: var(--shyam-footer-line);
}

.shyam-footer__copyright::before { left: 0; }
.shyam-footer__copyright::after { right: 0; }

@media (max-width: 1280px) {
	.shyam-footer__top-grid {
		grid-template-columns: minmax(230px, 1.25fr) repeat(3, minmax(140px, .86fr)) minmax(235px, 1.2fr);
		gap: 24px;
	}
	.shyam-footer__column { padding-left: 22px; }
	.shyam-footer__newsletter { grid-template-columns: minmax(250px, .9fr) minmax(300px, 1.2fr); }
	.shyam-footer__payments { grid-column: 1 / -1; padding: 16px 0 0; border-top: 1px solid var(--shyam-footer-line); }
	.shyam-footer__payments::before { display: none; }
}

@media (max-width: 1024px) {
	.shyam-footer { padding-left: 24px; padding-right: 24px; }
	.shyam-footer__top-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px; }
	.shyam-footer__brand { grid-column: 1 / -1; }
	.shyam-footer__brand::after {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		margin-top: 28px;
		background: var(--shyam-footer-line);
	}
	.shyam-footer__column { padding-left: 0; }
	.shyam-footer__column::before { display: none; }
	.shyam-footer__newsletter { grid-template-columns: 1fr; }
	.shyam-footer__payments { grid-column: auto; }
	.shyam-footer__payment-list { justify-content: flex-start; }
	.shyam-footer__copyright::before,
	.shyam-footer__copyright::after { width: 18%; }
}

@media (max-width: 767px) {
	.shyam-footer { padding: 62px 18px 24px; }
	.shyam-footer__top-line { top: 22px; }
	.shyam-footer__top-ornament { top: 6px; }
	.shyam-footer__corner { width: 95px; height: 95px; opacity: .55; }
	.shyam-footer__corner span { width: 50px; height: 20px; }
	.shyam-footer__corner span:nth-child(1) { top: 15px; }
	.shyam-footer__corner span:nth-child(2) { left: 22px; top: 43px; }
	.shyam-footer__corner span:nth-child(3) { top: 68px; }
	.shyam-footer__top-grid { grid-template-columns: 1fr; gap: 34px; }
	.shyam-footer__brand { grid-column: auto; }
	.shyam-footer-mobile-brand-center-yes .shyam-footer__brand { text-align: center; }
	.shyam-footer-mobile-brand-center-yes .shyam-footer__logo-link { justify-content: center; }
	.shyam-footer-mobile-brand-center-yes .shyam-footer__description { margin-left: auto; margin-right: auto; }
	.shyam-footer-mobile-brand-center-yes .shyam-footer__socials { justify-content: center; }
	.shyam-footer-mobile-brand-center-yes .shyam-footer__whatsapp { width: 100%; }
	.shyam-footer-mobile-nav-center-yes .shyam-footer__column { text-align: center; }
	.shyam-footer-mobile-nav-center-yes .shyam-footer__heading::after { left: 50%; transform: translateX(-50%); }
	.shyam-footer-mobile-nav-center-yes .shyam-footer__link { justify-content: center; }
	.shyam-footer__newsletter { padding: 20px; }
	.shyam-footer__newsletter-intro { align-items: flex-start; }
	.shyam-footer__form-shell { flex-direction: column; background: transparent; border: 0; overflow: visible; gap: 10px; }
	.shyam-footer__email { height: 50px; border: 1px solid rgba(214, 138, 25, .42) !important; border-radius: 10px !important; background: rgba(5, 25, 26, .75) !important; }
	.shyam-footer__subscribe { width: 100%; }
	.shyam-footer__payments { padding-top: 18px; }
	.shyam-footer__payment-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.shyam-footer__payment { min-width: 0; width: 100%; }
	.shyam-footer__policies { flex-direction: column; align-items: flex-start; padding: 0 5px; }
	.shyam-footer__policy-item:not(:last-child)::after { display: none; }
	.shyam-footer__bottom-ornament > span:first-child,
	.shyam-footer__bottom-ornament > span:last-child { width: 80px; }
	.shyam-footer__copyright { padding: 0 12px; }
	.shyam-footer__copyright::before,
	.shyam-footer__copyright::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.shyam-footer *,
	.shyam-footer *::before,
	.shyam-footer *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
