/* consumer.css */

@font-face {
	font-family: "Satoshi";
	src: url(../../fonts/satoshi/Satoshi-Bold.woff2) format("woff2");
	font-weight: 700;
	font-display: swap;
}

/* ***** Global ***** */
:root {
	/* Primary company colour – deep blue */
	--lqd-color-primary: #1312AE; 

	/* Neutral body text remains unchanged */
	--lqd-body-text-color: #7E8693; 

	/* Title text remains a dark complementary tone */
	--lqd-color-title: #2D3C58; 

	/* Badge now uses the primary deep blue */
	--lqd-badge-color: #1312AE; 

	--lqd-color-purple-100: rgba(19, 18, 174, 0.13); 
	--lqd-color-purple-500: #3A4DBE; 
	--lqd-color-green-500: #FAD642; 
	--lqd-color-green-100: rgba(250, 214, 66, 0.32); 
	--lqd-color-green-700: #D8B02E; 
	--lqd-color-green-900: #B7941D; 
	--lqd-color-blue-100: #D6DBFF; 
	--lqd-color-blue-500: #1312AE; 
	--lqd-color-blue-700: #0E0C8B; 
	--lqd-color-blue-900: #0A0A60; 
	--lqd-color-blue-950: #080740; 
	--lqd-color-gray-100: rgba(162, 178, 201, 0.15);
	--lqd-color-gray-200: #E8ECEE;
	--lqd-color-gray-400: #9ca3af;
	--lqd-color-gray-500: #6b7280;
	--lqd-color-slate-500: #64748b;
	--lqd-color-slate-700: #334155;
	--lqd-color-red-900: #671E3F;
	--lqd-color-gradient-start: #1312AE; 
	--lqd-color-gradient-stop:  #FAD642; 

	--lqd-body-font-family: 'Be Vietnam Pro', sans-serif;
	--lqd-body-font-size: 15px;
	--lqd-body-font-weight: 400;
	--lqd-body-line-height: 1.4em;

	--lqd-heading-color: var(--lqd-color-title);
	--lqd-heading-font-family: "Satoshi", Sans-serif;
	/* ... other LQD heading variables ... */

    /* ADDING GENERIC LIGHT MODE VARIABLES (like in plan.css for consistency) */
    --color-white: #ffffff;
    --color-background: #f8f9fa;        /* Default light background */
    --color-background-alt: #f0f0f0;
    --color-card: #ffffff;              /* Default light card background */
    --color-border: #eaeaea;
    --color-border-light: #eee;
    
    --color-text-primary: #333333;      /* Default light primary text */
    --color-text-secondary: #666666;
    --color-text-tertiary: #999999;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);

	/* Badge now uses the primary deep blue */
	--lqd-badge-color: #1312AE; 

	/* 
	   Replacing purples with blue shades:
	   --lqd-color-purple-100: Light tint of primary blue (using alpha for subtlety)
	*/
	--lqd-color-purple-100: rgba(19, 18, 174, 0.13); 

	/* 
	   --lqd-color-purple-500: A medium blue shade that complements the primary
	   (Note: The name remains for consistency even though the hue is now blue)
	*/
	--lqd-color-purple-500: #3A4DBE; 

	/* 
	   Replacing greens with yellow tones:
	   --lqd-color-green-500: Set to the company secondary yellow 
	*/
	--lqd-color-green-500: #FAD642; 

	/* 
	   --lqd-color-green-100: A light tint of secondary yellow using transparency 
	*/
	--lqd-color-green-100: rgba(250, 214, 66, 0.32); 

	/* 
	   --lqd-color-green-700: A darker yellow variant for deeper accents
	*/
	--lqd-color-green-700: #D8B02E; 

	/* 
	   --lqd-color-green-900: The darkest yellow tone for strong emphasis
	*/
	--lqd-color-green-900: #B7941D; 

	/* 
	   Blue shades updated to align with the primary blue:
	   --lqd-color-blue-100: A very light blue tint
	*/
	--lqd-color-blue-100: #D6DBFF; 

	/* 
	   --lqd-color-blue-500: Uses the company primary blue
	*/
	--lqd-color-blue-500: #1312AE; 

	/* 
	   --lqd-color-blue-700: A darker blue for additional depth
	*/
	--lqd-color-blue-700: #0E0C8B; 

	/* 
	   --lqd-color-blue-900: An even darker blue for high-contrast elements
	*/
	--lqd-color-blue-900: #0A0A60; 

	/* 
	   --lqd-color-blue-950: The darkest blue tone available in this palette
	*/
	--lqd-color-blue-950: #080740; 

	/* Neutral grey and slate colours remain unchanged */
	--lqd-color-gray-100: rgba(162, 178, 201, 0.15);
	--lqd-color-gray-200: #E8ECEE;
	--lqd-color-gray-400: #9ca3af;
	--lqd-color-gray-500: #6b7280;
	--lqd-color-slate-500: #64748b;
	--lqd-color-slate-700: #334155;

	/* Error/warning red remains unchanged */
	--lqd-color-red-900: #671E3F;

	/* 
	   Gradient now transitions from the company primary blue to the secondary yellow
	*/
	--lqd-color-gradient-start: #1312AE; /* Company Primary Blue */
	--lqd-color-gradient-stop:  #FAD642; /* Company Secondary Yellow */

	--lqd-body-font-family: 'Be Vietnam Pro', sans-serif;
	--lqd-body-font-size: 15px;
	--lqd-body-font-weight: 400;
	--lqd-body-line-height: 1.4em;

	--lqd-heading-color: var(--lqd-color-title);
	--lqd-heading-font-family: "Satoshi", Sans-serif;
	--lqd-heading-font-weight: 600;
	--lqd-heading-line-height: 1.1em;
	--lqd-h1-font-size: 52px;
	--lqd-h1-letter-spacing: -2.5px;
	--lqd-h2-font-size: 41px;
	--lqd-h2-line-height: 1.3em;
	--lqd-h2-letter-spacing: -1.3px;
	--lqd-h3-font-size: 32px;
	--lqd-h4-font-size: 25px;
	--lqd-h5-font-size: 21px;
	--lqd-h6-font-size: 18px;

	--lqd-cc-bc: var(--lqd-color-primary);
	--lqd-cc-bg: var(--lqd-color-primary);
	--lqd-cc-size-outer: 35px;
	--lqd-cc-size-inner: 7px;
	--lqd-cc-bw: 1px;
	--lqd-cc-br: calc(var(--lqd-cc-size-outer) / 2);
	--lqd-cc-active-bc: var(--lqd-color-primary);
	--lqd-cc-active-bg: var(--lqd-color-primary);
	--lqd-cc-active-bw: 1px;
	--lqd-cc-active-circle-color: #fff;
	--lqd-cc-active-circle-txt: #000;
	--lqd-cc-active-arrow-color: #fff;
}

.border-lightgray {
	border-color: rgb(112 112 112 / 13%);
}

.lqd-highlight-classic .lqd-highlight .lqd-highlight-inner {
	height: 0.4em;
}

.font-heading {
	font-family: var(--lqd-heading-font-family);
}

@media screen and (min-width: 1200px) {
	.lqd-sticky-footer-shadow-2 #lqd-site-content {
		box-shadow: 0 10px 25px -10px rgba(0, 0, 0, .1);
	}
}

@media (max-width: 1199px) {
	#lqd-contents-wrap>section {
		padding-right: 20px;
		padding-left: 20px;
	}
}

/* ***** Button ***** */
.module-btn-sm {
	--btn-pt: 10px;
	--btn-pe: 25px;
	--btn-pb: 10px;
	--btn-ps: 25px;
}

.module-btn-xs {
	--btn-pt: 0.6em;
	--btn-pe: 1em;
	--btn-pb: 0.6em;
	--btn-ps: 1em;
}

/* ***** Main Header ***** */
.main-header .main-nav {
    --lqd-menu-items-top-padding: 20px;    /* Increase from 15px */
    --lqd-menu-items-right-padding: 25px;  /* Increase from 22px */
    --lqd-menu-items-bottom-padding: 20px; /* Increase from 5px */
    --lqd-menu-items-left-padding: 25px;   /* Increase from 22px */
}

.ld-sd-inner .main-nav {
	--lqd-menu-items-top-padding: 20px;
	--lqd-menu-items-right-padding: 0;
	--lqd-menu-items-bottom-padding: 20px;
	--lqd-menu-items-left-padding: 0;
}

.main-header .btn-underlined:before {
	background: rgba(255, 255, 255, 0.6);
}

.main-header .lqd-stickybar-right {
	padding: 0;
}

.main-header .lqd-stickybar-right .btn {
	--icon-font-size: 1em;
}

.main-header .lqd-stickybar-right .btn:hover {
	transform: rotate(90deg);
}

.main-header .lqd-stickybar-left .btn {
	box-shadow: 0 0 0 11px rgba(128, 179, 65, 0.27);
	--icon-font-size: 25px;
}

.main-header .lqd-stickybar-left .btn:hover {
	box-shadow: 0px 0px 0px 5px #82B541;
}

.main-header .ld-module-sd>.ld-module-dropdown {
	width: 65vw;
}

.main-header .ld-sd-wrap {
	padding: unset;
}

.main-header .ld-module-dropdown .spacer {
	--spacer-size: 250px;
}

.main-header .ld-module-dropdown .module-primary-nav {
	--lqd-menu-items-top-padding: 20px;
	--lqd-menu-items-right-padding: 0;
	--lqd-menu-items-bottom-padding: 20px;
	--lqd-menu-items-left-padding: 0;
}

.main-header .ld-module-dropdown .main-nav>li>a>.link-icon {
	font-size: 0.7em;
}

.main-header .ld-module-dropdown .main-nav>li>a>.link-badge {
	font-size: 0.375em;
}

.is-stuck .module-stuck {
	background-color: #ffffff;
	border: none;
}

/* ***** Banner ***** */
.banner .btn-solid {
	box-shadow: 0px 12px 33px 0px rgba(52, 99, 188, 0.17);
	--icon-font-size: 0.7em;
}

.banner .btn-solid:hover {
	color: #FFFFFF;
	background-color: var(--lqd-color-primary);
}

.banner .module-shape-1 {
	left: 52%;
}

.banner .module-shape-2 {
	right: -10%;
}

.banner .module-shape-3 {
	left: 6%;
}

.banner .module-shape-4 {
	right: -14%;
}

.banner .module-img {
	margin: 0 -16% -36% -17%;
}

@media (max-width: 1199px) {
	.banner .module-gradient {
		font-size: 66px;
	}

	.banner .module-btn {
		margin-bottom: 20px;
	}

	.banner .module-img {
		margin: 0 -16% 0 -13%;
	}

	.banner .module-shape-2 {
		bottom: -17%;
	}

	.banner .module-shape-4 {
		top: -4%;
	}

	.banner .module-shape-2 {
		right: 12%;
	}

	.banner .module-shape-4 {
		right: -7%;
	}
}

@media (max-width: 767px) {
	.banner .module-shape-4 {
		top: -12%;
	}

	.banner .module-shape-3 {
		left: 1%;
	}

	.banner .module-shape-4 {
		right: 0;
	}
}

/* ***** Clients ***** */
.clients {
	background-position: 50% 85%;
}

.clients .lqd-shape svg {
	height: 160px;
	transform: translateX(-50%) rotateY(180deg);
}

@media (max-width: 1199px) {
	#lqd-contents-wrap .clients {
		padding-top: 170px;
		padding-bottom: 170px;
		padding-right: 0;
		padding-left: 0;
	}

	.clients .lqd-shape svg {
		height: 110px;
	}
}

@media (max-width: 767px) {
	#lqd-contents-wrap .clients {
		padding-top: 110px;
		padding-bottom: 110px;
	}

	.clients .lqd-shape svg {
		height: 90px;
	}

	.clients .module-img {
		margin-bottom: 20px;
	}
}

/* ***** Navigation Sections ***** */
.navigation-sections .reset-ul>li.is-active>a {
	color: #000000;
}

@media (max-width: 767px) {
	.navigation-sections .reset-ul>li>a {
		font-size: 10px;
	}
}

/* ***** Icon box ***** */
.icon-box .lqd-iconbox-scale:hover {
	transform: scale(1.1);
}

.icon-box .iconbox-side .iconbox-icon-wrap {
	margin-inline-end: 40px;
}

.icon-box .iconbox-side .iconbox-icon-container {
	box-shadow: 0 20px 55px 0 rgba(185, 208, 250, 0.29);
}

.icon-box .iconbox-side .iconbox-icon-container svg {
	width: 50px;
	height: 1em;
}

.icon-box .lqd-iconbox-scale:hover .iconbox-heading-arrow-onhover h3 svg {
	opacity: 1;
	transform: translateX(.5em);
}

@media(max-width: 1199px) {
	.icon-box {
		padding-top: 50px;
	}
}

@media(max-width: 991px) {
	.icon-box .lqd-iconbox-scale {
		width: 47%;
	}
}

@media(max-width: 767px) {
	.icon-box .lqd-iconbox-scale {
		margin-bottom: 35px;
		width: 100%;
	}
}

/* ***** Tab Items ***** */
.tab-items {
	background-size: 70% auto;
}

.tab-items .lqd-tabs {
	--tab-nav-width: 32%;
}

.tab-items .lqd-tabs-nav {
	--icon-size: 0.9em;
}

.tab-items .lqd-tabs-nav li a.active {
	background-color: #FFFFFF;
	box-shadow: 0 15px 45px rgba(0, 0, 0, .075);
}

.tab-items .lqd-tabs-nav li a.active .lqd-tabs-nav-icon-icon {
	background-color: #65BD91;
	color: #fff;
}

.tab-items .module-shape {
	left: 2%;
}

@media(max-width: 1199px) {
	.tab-items .module-shape {
		top: 355px;
	}

	.tab-items .module-shape {
		left: 0;
	}

	.tab-items .module-tab-inner {
		margin: -12% -10% -20% 0;
	}
}

@media(max-width: 991px) {
	.tab-items .module-tab-inner {
		/* margin: -12% -16% -10% -18%; */
		margin: 0;
	}
}

/* ***** Text Box ***** */
.text-box .lqd-iconbox-scale:hover {
	transform: scale(1.1);
}

.text-box .lqd-iconbox-scale:hover .iconbox-icon-container {
	color: #FFFFFF;
	background-color: #FAD642;
}

.text-box .btn {
	margin: 0;
}

.text-box .module-shape {
	right: -17%;
}

@media (max-width: 767px) {
	.text-box .module-shape {
		right: -32%;
	}
}

/* ***** Slide Carousel ***** */
.slide-carousel .lqd-shape-top svg {
	height: 165px;
	transform: translateX(-50%) rotateY(180deg);
}

.slide-carousel .module-shape {
	left: 26%;
}

.slide-carousel .module-img {
	right: -2%;
}

.slide-carousel .module-shadow {
	min-height: 245px;
}

.slide-carousel .carousel-item-content {
	font-size: 7vw;
}

.slide-carousel .carousel-item-content>* {
	white-space: nowrap;
}

@media (max-width: 1199px) {
	.slide-carousel {
		padding-top: 180px;
		padding-bottom: 170px;
	}

	.slide-carousel .lqd-shape-top svg {
		height: 120px;
	}

	.slide-carousel .module-column {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.slide-carousel .lqd-shape svg {
		height: 100px;
	}

	.slide-carousel .module-img {
		top: -59px;
	}

	.slide-carousel .carousel-item-content {
		font-size: 10vw;
	}
}

/* ***** Video Box ***** */
.video-box .module-shape {
	left: 12%;
}

.video-box .module-video {
	min-height: 145px;
}

.video-box .module-video .btn {
	--icon-font-size: 20px;
}

.video-box .module-video .btn-icon:before {
	border-color: #FFFFFF;
}

.video-box .lqd-extra-cursor {
	--extra-cc-w: 80px;
	--extra-cc-h: 80px;
	background-color: rgba(0, 0, 0, 0.25);
}

@media (max-width: 1199px) {
	.video-box {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.video-box .module-img {
		margin-bottom: 30px;
	}

	.video-box .module-shape {
		left: 19%;
	}
}

@media (max-width: 767px) {
	.video-box {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.video-box .module-video {
		width: 100%;
		min-height: 170px;
		margin-bottom: 20px;
	}
}

/* ***** Pricing ***** */
.pricing .lqd-tabs-nav {
	--icon-size: 1em;
}

.pricing .lqd-tabs-nav li:first-child a {
	border-radius: 50em 0 0 50em;
}

.pricing .lqd-tabs-nav li:last-child a {
	border-radius: 0 50em 50em 0;
}

.pricing .lqd-tabs .lqd-tabs-nav li a.active {
	background-color: #FFFFFF;
	color: #002A40;
	border-color: #FFFFFF;
}

.pricing .module-shape {
	--float-animate-to: 16%;
	--float-animation-ease: ease;
}

.pricing .icon-list-item {
	--e-icon-list-icon-size: 15px;
	--e-icon-list-icon-align: center;
	--e-icon-list-icon-margin: 0 calc(var(--e-icon-list-icon-size, 1em) * 0.125);
}

.pricing .btn-underlined.text-green-900:before {
	background: var(--lqd-color-green-900);
}

.pricing .btn-underlined.text-blue-500:before {
	background: var(--lqd-color-blue-500);
}

.pricing .btn-underlined.text-red-900:before {
	background: var(--lqd-color-red-900);
}

.pricing .module-shape {
	right: -100px;
}

.pricing .module-shape-off {
	right: -30px;
}

@media (max-width: 1199px) {
	.pricing {
		padding-top: 90px;
	}

	.pricing .lqd-tabs {
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	.pricing .module-flex {
		padding-top: 10px;
	}
}

@media screen and (max-width: 575px) {
	.pricing .lqd-tabs-nav li {
		margin-bottom: 3px;
	}

	.pricing .lqd-tabs-nav li:first-child a,
	.pricing .lqd-tabs-nav li:last-child a {
		border-radius: 50em;
	}
}

/* ***** Need Help ***** */
.need-help .btn-icon-circle .btn-icon:before {
	border-color: #0000003B;
}

@media (max-width: 1199px) {
	.need-help .module-gap {
		gap: 20px;
	}
}

/* ***** Has Accoirdion ***** */
@media (max-width: 1199px) {
	.has-accordion {
		padding: 0;
	}
}

@media (max-width: 767px) {
	.has-accordion {
		padding-top: 40px;
		padding-bottom: 50px;
	}
}

/* ***** Community ***** */
.community .lqd-shape[data-negative=false].lqd-shape-bottom,
.community .lqd-shape[data-negative=true].lqd-shape-top {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.community .lqd-shape svg {
	transform: translateX(-50%) rotateY(180deg);
}

.community .lqd-shape-bottom svg {
	height: 165px;
}

.community .module-shape {
	top: -160px;
}

.community .module-img img {
	filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.community .lqd-carousel-slides {
	justify-content: center;
	align-items: center;
}

.community .carousel-dots {
	top: 0;
	right: auto;
	bottom: 0;
	left: auto;
}

.community .lqd-carousel-slides-numbers,
.community .lqd-carousel-slides-current {
	color: #FFFFFF;
}

.community .module-shape {
	left: 1px;
}

.community .module-paralax {
	right: 1%;
}

.community .carousel-dots-mobile .flickity-page-dots .dot {
	background-color: rgba(255, 255, 255, 0.14);
}

.community .carousel-dots-mobile .flickity-page-dots .dot.is-selected {
	background-color: #FFFFFF;
}

@media (max-width: 1199px) {
	.community {
		padding-top: 150px;
		padding-bottom: 120px;
	}

	.community .carousel-dots {
		bottom: -25px;
		top: auto;
	}

	.community .carousel-dots-mobile.carousel-dots-mobile-outside .flickity-page-dots {
		margin-top: -10px;
	}
}

@media (max-width: 767px) {
	.community {
		padding-top: 140px;
	}

	.community .lqd-shape-top svg {
		height: 80px;
	}

	.community .lqd-shape-bottom svg {
		height: 100px;
	}
}

/* ***** Careers ***** */
#lqd-contents-wrap .careers {
	padding-right: 0;
	padding-left: 0;
}

.careers .module-shape-1 {
	top: -126px;
}

.careers .module-shape-2 {
	top: -263px;
}

.careers .module-ipad {
	margin: 0 0 -12% 5%;
}

.careers .module-phone-inner {
	margin: 0 0 -21% 0;
}

.careers .module-shape-1 {
	left: -91px;
}

.careers .module-shape-2 {
	right: -41px;
}

.careers .module-shape-3 {
	left: -241px;
}

.careers .module-shape-4 {
	right: -232.6px;
}

@media (max-width: 1199px) {
	.careers .module-phone {
		width: 380px;
		bottom: -3.4%;
	}

	.careers .module-phone {
		left: -2.8%;
	}
}

@media (max-width: 767px) {
	#lqd-contents-wrap .careers {
		padding-top: 60px;
		padding-bottom: 40px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.careers .ld-fancy-heading h2 {
		font-size: 70px;
	}

	.careers .module-phone {
		width: 50%;
		bottom: -3.4%;
	}
}

/* ***** Footer ***** */
.main-footer {
    background-color: var(--color-background-alt); /* A slightly different background for the footer */
    color: var(--color-text-secondary);
    padding-top: 45px; /* Keep existing padding from class */
    padding-bottom: 90px; /* Keep existing padding from class */
    border-top: 1px solid var(--color-border); /* Add a separator line */
}

/* Ensure text and links within the footer are styled correctly for dark mode */
html[data-theme="dark"] .main-footer {
    /* --color-background-alt and --color-text-secondary will already be their dark versions */
    /* --color-border will also be its dark version */
}

html[data-theme="dark"] .main-footer .ld-fancy-heading p,
html[data-theme="dark"] .main-footer .lqd-fancy-menu ul li a,
html[data-theme="dark"] .main-footer .icon-list-text {
    color: var(--color-text-secondary); /* Light gray text on dark background */
}

html[data-theme="dark"] .main-footer .lqd-fancy-menu ul li a:hover {
    color: var(--color-text-primary); /* Brighter on hover */
}

/* Adjust SVG icon fills in footer if they are hardcoded or not inheriting properly */
html[data-theme="dark"] .main-footer .icon-list-icon svg {
    fill: var(--color-text-tertiary); /* Example: Adjust as needed */
}


/* Sticky Footer Layout (Theme might handle this, but good to ensure)
   The #wrap div is likely the flex container for the sticky footer.
*/
#wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure #wrap takes at least full viewport height */
}

#lqd-site-content { /* This is your <main class="content"> */
    flex-grow: 1; /* Allows main content to take up available space, pushing footer down */
}

/* Dark Mode Variables */
/* Default (Light Mode) is already defined in :root at the top */

/* Dark Mode Overrides (using attribute selector) */
html[data-theme="dark"] {
	--color-background: #121212;
	--color-background-alt: #242424;
	--color-card: #1e1e1e;
	--color-border: #333333;
	--color-border-light: #2a2a2a;
  
	--color-text-primary: #e0e0e0;
	--color-text-secondary: #b0b0b0;
	--color-text-tertiary: #808080;
  
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
	--shadow-md: 0 5px 15px rgba(0,0,0,0.3);
	--shadow-lg: 0 10px 30px rgba(0,0,0,0.45);
  }
  
  /* Specific element overrides for dark mode (if needed) */
  html[data-theme="dark"] .dss-search-tab::after {
	background-color: rgba(255, 255, 255, 0.1);
  }
  
  html[data-theme="dark"] .planner-chat-message:not(.user) .planner-chat-bubble::before {
	border-right-color: var(--color-card);
  }
  
  html[data-theme="dark"] select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b0b0b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  }
  
  /* Font Awesome Duo Tone Icon Colors */
	.fa-duotone, 
	.fa-sharp-duotone {
	--fa-primary-color: #1312AE;   /* Your primary color */
	--fa-secondary-color: #FAD642; /* Your secondary color */
	}


/* ADD BODY STYLES (or apply to #wrap if that's your main container) */
body {
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-family: var(--lqd-body-font-family);
    font-size: var(--lqd-body-font-size);
    line-height: var(--lqd-body-line-height);
    margin: 0; /* Ensure no default margins interfere */
}

#wrap {
    /* If #wrap is meant to be the main colored container instead of body */
    /* background-color: var(--color-background); */
    /* color: var(--color-text-primary); */
}

.border-lightgray {
	border-color: var(--color-border, rgb(112 112 112 / 13%)); /* Use variable */
}

.lqd-highlight-classic .lqd-highlight .lqd-highlight-inner {
	height: 0.4em;
}

.font-heading {
	font-family: var(--lqd-heading-font-family);
}

@media screen and (min-width: 1200px) {
	.lqd-sticky-footer-shadow-2 #lqd-site-content {
		box-shadow: var(--shadow-md, 0 10px 25px -10px rgba(0, 0, 0, .1)); /* Use variable */
	}
}

/* ... other existing styles ... */

/* MODIFICATION: Update hardcoded colors to use variables */
.is-stuck .module-stuck {
	background-color: var(--color-card); /* WAS: #ffffff */
	border: none;
    box-shadow: var(--shadow-sm); /* Add shadow if appropriate */
}

.clients .lqd-shape svg path.lqd-shape-fill { /* Target path elements for SVG fill */
	fill: var(--color-card); /* WAS: #fff; ensure this path is the one for the background */
}

.tab-items .lqd-tabs-nav li a.active {
	background-color: var(--color-card); /* WAS: #FFFFFF */
	box-shadow: var(--shadow-sm, 0 15px 45px rgba(0, 0, 0, .075)); /* Use variable */
    color: var(--lqd-color-primary); /* Ensure text color is appropriate */
}

/* ... continue auditing and replacing hardcoded colors with variables throughout consumer.css ... */
/* For example, if a section has `background-color: #fff`, change it to `background-color: var(--color-card)` or `var(--color-background)`. */
/* If text is `#000` or `#333`, change to `var(--color-text-primary)`. */


/* Dark Mode Overrides (using attribute selector) - THIS BLOCK ALREADY EXISTS IN YOUR main.css */
html[data-theme="dark"] {
	/* Generic variables - these are already correctly defined from your provided CSS */
    --color-background: #121212;
	--color-background-alt: #242424;
	--color-card: #1e1e1e;
	--color-border: #333333;
	--color-border-light: #2a2a2a;
  
	--color-text-primary: #e0e0e0;
	--color-text-secondary: #b0b0b0;
	--color-text-tertiary: #808080;
  
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.25); /* Darker shadows */
	--shadow-md: 0 5px 15px rgba(0,0,0,0.3);
	--shadow-lg: 0 10px 30px rgba(0,0,0,0.45);

    /* ADD/UPDATE LQD-SPECIFIC VARIABLE OVERRIDES FOR DARK MODE */
    --lqd-body-text-color: var(--color-text-secondary, #b0b0b0); /* Was #7E8693 */
    --lqd-color-title: var(--color-text-primary, #e0e0e0);       /* Was #2D3C58 */
    --lqd-heading-color: var(--lqd-color-title);                 /* Ensure heading color also updates */

    /* Primary/accent colors usually remain, but their tints might need adjustment if used on dark backgrounds */
    /* Example: --lqd-color-purple-100: rgba(80, 78, 220, 0.25); /* Slightly more opaque or different tint for dark */
    /* --lqd-color-green-100: rgba(250, 214, 66, 0.4); */

    /* Adjust LQD grays for dark mode */
    --lqd-color-gray-100: rgba(200, 200, 200, 0.08); /* Lighter, more subtle on dark */
    --lqd-color-gray-200: var(--color-background-alt, #242424); /* Was #E8ECEE - use a dark bg/border color */
    --lqd-color-gray-400: var(--color-text-tertiary, #808080); /* Was #9ca3af */
    --lqd-color-gray-500: var(--color-text-secondary, #b0b0b0); /* Was #6b7280 - map to a visible gray */
    --lqd-color-slate-500: #94a3b8; /* Was #64748b - make it lighter */
    --lqd-color-slate-700: #cbd5e1; /* Was #334155 - make it lighter */

    /* Specific element overrides from your existing dark mode block */
    /* These might be specific to plan.css components; keep if consumer.css uses them */
    /* 
    .dss-search-tab::after {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .planner-chat-message:not(.user) .planner-chat-bubble::before {
        border-right-color: var(--color-card);
    }
    */
    
    select { /* This is a general select styling for dark mode, good to keep */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b0b0b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-color: var(--color-background-alt);
        color: var(--color-text-primary);
        border-color: var(--color-border);
    }

    /* Dark mode for specific components that were hardcoded */
    .tab-items .lqd-tabs-nav li a.active {
        box-shadow: var(--shadow-md); /* Example of updating shadow for dark mode */
        /* Text color might need to be var(--color-text-primary) if --lqd-color-primary is too dark on --color-card (dark) */
    }
    /* Ensure navigation link colors are legible */
    .main-header .main-nav > li > a {
        color: var(--color-text-secondary); /* Example, adjust as needed */
    }
    html[data-theme="dark"] .main-header .main-nav > li > a:hover,
    html[data-theme="dark"] .main-header .main-nav > li.is-active > a {
        color: var(--color-text-primary);
    }
     /* Footer text color */
    .main-footer, .main-footer .ld-fh-element, .main-footer a {
        color: var(--color-text-secondary);
    }
    html[data-theme="dark"] .main-footer a:hover {
        color: var(--color-text-primary);
    }
}

/* Font Awesome Duo Tone Icon Colors */
	.fa-duotone, 
	.fa-sharp-duotone {
	--fa-primary-color: #1312AE;   /* Your primary color */
	--fa-secondary-color: #FAD642; /* Your secondary color */
	}
/* different duotone shades in dark mode 
html[data-theme="dark"] .fa-duotone, 
html[data-theme="dark"] .fa-sharp-duotone {
	--fa-primary-color: #some-brighter-blue-for-dark;
	--fa-secondary-color: #some-brighter-yellow-for-dark;
}
*/