/* Lovara - footer trust block + navy palette.
   Replaces the two footer purples: body #23045B and copyright bar #AC94FB. */

:root {
	--lv-navy: #0E0066;
	--lv-navy-deep: #0A004D;
}

/* --- palette: purple -> brand navy ------------------------------------ */
.goal-footer .elementor-element-d810032 {
	background-color: var(--lv-navy) !important;
}

.goal-footer .elementor-element-7f6e6d4 {
	background-color: var(--lv-navy-deep) !important;
}

.goal-footer .elementor-element-7f6e6d4,
.goal-footer .elementor-element-7f6e6d4 p {
	color: rgba(255, 255, 255, .72) !important;
}

/* --- trust block ------------------------------------------------------- */
/* Footer QUICK LINKS shares the mobile hamburger menu (menu 74). Hide My
   Account's sub-items (Track Order, Login & Register) in the footer only.
   The mobile hamburger lives under #goal-mobile-menu, so it is unaffected. */
#goal-footer .menu-mobile-menu-container .sub-menu {
	display: none !important;
}

/* "View all products" link reads as a CTA, not another product. */
.goal-footer .lovara-footer-viewall > a {
	font-weight: 600 !important;
	opacity: .92;
}

/* Trim the oversized Elementor footer columns block (60px top+bottom pad). */
.goal-footer .elementor-element-d810032 > .e-con-inner {
	padding-top: 34px !important;
	padding-bottom: 34px !important;
}

.lovara-footer-trust {
	background: var(--lv-navy);
	border-top: 1px solid rgba(255, 255, 255, .12);
	color: #fff;
}

.lovara-ft-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 22px 20px 20px;
}

.lovara-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	list-style: none;
	margin: 0 0 18px;
	padding: 0 0 18px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.lovara-trust-strip li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0;
	list-style: none;
}

.lovara-ft-icon svg {
	width: 24px;
	height: 24px;
	color: #fff;
	opacity: .9;
	flex: 0 0 auto;
}

.lovara-ft-text strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	line-height: 1.35;
}

.lovara-ft-text em {
	display: block;
	font-size: 12px;
	font-style: normal;
	color: rgba(255, 255, 255, .62);
	line-height: 1.5;
	margin-top: 2px;
}

/* --- payments + address ------------------------------------------------ */
/* Two left-aligned columns. space-between previously flung the address to
   the far right edge of the viewport on wide screens. */
.lovara-ft-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 28px 64px;
	justify-content: flex-start;
	align-items: flex-start;
}

.lovara-ft-pay {
	flex: 1 1 340px;
	min-width: 0;
}

.lovara-ft-address {
	flex: 0 1 320px;
	text-align: left;
}

.lovara-ft-label {
	display: block;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .55);
	margin-bottom: 10px;
}

.lovara-ft-payimg {
	display: block;
	width: 100%;
	max-width: 400px;
	height: auto;
	margin: 0 0 10px;
}

.lovara-ft-pay ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
}

.lovara-ft-pay li {
	list-style: none;
	margin: 0;
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 5px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .01em;
	color: rgba(255, 255, 255, .92);
	background: rgba(255, 255, 255, .06);
	white-space: nowrap;
}

.lovara-ft-secure {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, .55);
}

.lovara-ft-address {
	font-style: normal;
	font-size: 13px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .72);
}

.lovara-ft-gstin {
	display: inline-block;
	margin-top: 6px;
	font-size: 12px;
	letter-spacing: .02em;
	color: rgba(255, 255, 255, .58);
}

/* --- responsive -------------------------------------------------------- */
@media (max-width: 900px) {
	.lovara-trust-strip {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
}

@media (max-width: 700px) {
	.lovara-ft-inner {
		padding: 26px 18px 22px;
	}
	/* Payments and address are too cramped side by side on a phone. */
	.lovara-ft-meta {
		flex-direction: column;
		gap: 18px;
	}
	/* CRITICAL: reset the desktop flex-basis. In column mode those 340/320px
	   bases become HEIGHTS, inflating each block ~600px of empty space. */
	.lovara-ft-pay,
	.lovara-ft-address {
		flex: 0 0 auto;
	}
	.lovara-ft-address {
		max-width: 100%;
	}
	.lovara-ft-pay ul {
		gap: 6px;
	}
	.lovara-ft-pay li {
		padding: 5px 10px;
		font-size: 11px;
	}
}

@media (max-width: 420px) {
	.lovara-trust-strip {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}
