/**
 * Lexx Theme Custom Styles
 * Custom stylesheet for Lexx theme customizations
 */

/* ============================================
   GOOGLE FONTS - POPPINS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/* ============================================
   CSS ROOT VARIABLES - COLOR PALETTE
   ============================================ */

:root {
	/* Accents & Hyperlinks */
	--lexx-color-accent-blue: #00acef;
	
	/* Text Color */
	--lexx-color-text: #494949;
	
	/* Accents & Icons */
	--lexx-color-accent-orange: #e25027;
	
	/* Buttons Gradient */
	--lexx-color-button-gradient-start: #e25027;
	--lexx-color-button-gradient-end: #f7931e;
	
	/* Bottom Bar */
	--lexx-color-bottom-bar: #f5f5f5;
	
	/* Typography */
	--lexx-font-poppins: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	
	/* Assets Path */
	--lexx-assets-path: url('../assets/lexx/images/');
}

/* ============================================
   WOOCOMMERCE LOST PASSWORD / RESET PASSWORD
   ============================================ */

/* Page content padding for lost password page */
main#content .page-content .woocommerce {
	padding: 60px 40px 80px !important;
	min-height: calc(100vh - 300px);
	box-sizing: border-box;
}

@media (max-width: 768px) {
	main#content .page-content .woocommerce {
		padding: 40px 20px 60px !important;
	}
}

@media (max-width: 640px) {
	main#content .page-content .woocommerce {
		padding: 32px 16px 48px !important;
		min-height: auto;
	}
}

/* Title styling */
main#content .woocommerce .lexx-lost-password-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 2rem !important;
	color: #494949 !important;
	margin: 0 0 30px 0 !important;
	text-align: center;
}

/* Container styling - matching login page */
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password {
	max-width: 560px;
	margin: 0 auto 80px;
	padding: 40px 35px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Helper/info text */
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password > p {
	color: #666666 !important;
	font-family: var(--lexx-font-poppins) !important;
	font-size: 0.95rem !important;
	line-height: 1.6 !important;
	margin: 0 0 30px 0 !important;
}

/* Form row spacing */
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password .woocommerce-form-row {
	margin-bottom: 20px !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

/* Labels */
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password label {
	display: block;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 500 !important;
	font-size: 0.95rem !important;
	color: #494949 !important;
	margin-bottom: 8px !important;
}

main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password label .required {
	color: var(--lexx-color-accent-orange) !important;
}

/* Input fields */
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Input,
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password input[type="text"],
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password input[type="email"],
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password input#user_login {
	width: 100% !important;
	max-width: 100% !important;
	padding: 14px 18px !important;
	border: 2px solid #e0e0e0 !important;
	border-radius: 12px !important;
	font-family: var(--lexx-font-poppins) !important;
	font-size: 1rem !important;
	color: #494949 !important;
	background: #ffffff !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
	box-shadow: none !important;
	-webkit-text-fill-color: #494949 !important;
	box-sizing: border-box !important;
	display: block !important;
}

main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Input:focus,
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password input[type="text"]:focus,
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password input[type="email"]:focus {
	border-color: var(--lexx-color-accent-blue) !important;
	box-shadow: 0 0 0 3px rgba(0, 162, 227, 0.1) !important;
	outline: none !important;
	color: #494949 !important;
	-webkit-text-fill-color: #494949 !important;
}

main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Input::placeholder,
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password input[type="text"]::placeholder,
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password input[type="email"]::placeholder {
	color: #999999 !important;
	opacity: 1 !important;
}

/* Autofill styling */
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Input:-webkit-autofill,
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password input[type="text"]:-webkit-autofill,
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password input[type="email"]:-webkit-autofill {
	-webkit-text-fill-color: #494949 !important;
	-webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
	box-shadow: 0 0 0 1000px #ffffff inset !important;
}

/* Buttons */
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button,
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password button[type="submit"] {
	width: 100% !important;
	padding: 16px 32px !important;
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	color: #ffffff !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	text-decoration: none !important;
	border-radius: 14px !important;
	border: none !important;
	cursor: pointer !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 10px !important;
}

main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button:hover,
main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password button[type="submit"]:hover {
	transform: translateY(-2px) scale(1.01) !important;
	box-shadow: 0 8px 25px rgba(226, 80, 39, 0.4) !important;
	text-decoration: none !important;
	color: #ffffff !important;
}

/* Responsive */
@media (max-width: 640px) {
	main#content .woocommerce .lexx-lost-password-title {
		font-size: 1.75rem !important;
		margin-bottom: 24px !important;
	}
	
	main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password {
		margin: 0 20px 60px;
		padding: 32px 24px;
	}
	
	main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button,
	main#content .woocommerce form.woocommerce-ResetPassword.lost_reset_password button[type="submit"] {
		padding: 14px 24px !important;
	}
}

/* Footer logo fix for WooCommerce account pages (including lost password) */
body.woocommerce-account .lexx-logo-image {
	max-width: 150px !important;
	height: auto !important;
	width: auto !important;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

/* Sticky footer - footer sempre na parte inferior */
html {
	height: 100%;
}

body {
	background-color: #ffffff !important;
	font-family: var(--lexx-font-poppins) !important;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

main#content {
	flex: 1 0 auto;
}

/* Global H1 Styles for Page Titles */
h1 {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 3rem !important;
	line-height: 1.2 !important;
	color: #494949 !important;
	margin: 0 0 15px 0 !important;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem !important;
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: 2rem !important;
	}
}

/* ============================================
   BASE BUTTON STYLES
   ============================================ */

.lexx-button {
	display: inline-block !important;
	padding: 16px 32px !important;
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	color: #ffffff !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 500 !important;
	font-size: 18px !important;
	text-decoration: none !important;
	border-radius: 14px !important;
	border: none !important;
	cursor: pointer !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	text-align: center !important;
	line-height: 1.5 !important;
}

.lexx-button:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(226, 80, 39, 0.3) !important;
}

/* ============================================
   LEXX HEADER
   ============================================ */

.lexx-header {
	background-color: #ffffff;
	width: 100%;
	position: relative;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
	z-index: 99;
}

.lexx-header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.lexx-header-logo {
	flex-shrink: 0;
}

.lexx-logo-link {
	position: relative;
	display: block;
	padding-bottom: 22px;
	padding-top: 10px;
}

.lexx-logo-link::after {
	content: "ONLINE";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 5px;
	padding-left: 5px;
	color: #cf9f00;
	text-transform: uppercase;
	white-space: nowrap;
}

.lexx-header-logo img {
	height: 40px;
	width: auto;
	display: block;
}

.lexx-header-nav {
	flex: 1;
	display: flex !important;
	justify-content: center;
}

.lexx-header-menu {
	display: flex !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	gap: 32px;
	align-items: center;
}

.lexx-header-menu-item {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.lexx-header-menu-link {
	color: #494949 !important;
	text-decoration: none !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 1.5 !important;
	transition: color 0.2s ease;
}

.lexx-header-menu-link:hover,
.lexx-header-menu-link.active {
	color: var(--lexx-color-accent-blue) !important;
}

/* Submenu Styles (for Channels dropdown) */
.lexx-has-submenu {
	position: relative;
	padding-bottom: 15px !important;
	margin-bottom: -15px !important;
}

.lexx-submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	transform: translateY(-10px);
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	background: transparent;
	min-width: 240px;
	z-index: 100;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

.lexx-has-submenu:hover .lexx-submenu,
.lexx-has-submenu.lexx-submenu-open .lexx-submenu {
	display: block;
	opacity: 1;
	pointer-events: auto;
	transform: none !important;
}

.lexx-has-submenu:hover .lexx-submenu {
	display: block;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.lexx-submenu-inner {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.lexx-submenu-item {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	border-bottom: 1px solid #f0f0f0;
}

.lexx-submenu-item:last-child {
	border-bottom: none;
}

.lexx-submenu-link {
	display: block !important;
	padding: 14px 20px !important;
	color: #494949 !important;
	text-decoration: none !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 15px !important;
	line-height: 1.5 !important;
	transition: background-color 0.2s ease, color 0.2s ease !important;
	white-space: nowrap;
}

.lexx-submenu-item:first-child .lexx-submenu-link {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.lexx-submenu-item:last-child .lexx-submenu-link {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.lexx-submenu-link:hover {
	background-color: #f8f8f8 !important;
	color: var(--lexx-color-accent-blue) !important;
}

/* Non-link menu items (Hubs trigger, LEXX Live) */
.lexx-no-link {
	cursor: default !important;
}

.lexx-submenu-link.lexx-no-link:hover {
	background-color: transparent !important;
	color: #494949 !important;
}

/* Current hub indicator (header dropdown) */
.lexx-current-hub {
	opacity: 0.5;
}

/* "COMING SOON" badge */
.lexx-hub-coming-soon {
	display: inline-block;
	margin-left: 10px;
	padding: 2px 8px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--lexx-color-accent-orange, #e25027);
	vertical-align: middle;
}

/* Submenu arrow */
.lexx-submenu-arrow {
	display: inline-block;
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.lexx-submenu-open .lexx-submenu-arrow {
	transform: rotate(180deg);
}

/* Hide submenu arrow on desktop for Channels */
@media (min-width: 969px) {
	.lexx-submenu-arrow {
		display: none;
	}
}

/* Submenu Styles (for My Account dropdown) */
.lexx-header-menu-item-has-children {
	position: relative;
}

.lexx-header-menu-item-has-children .lexx-header-menu-link {
	display: flex;
	align-items: center;
	gap: 6px;
}

.lexx-header-menu-item-has-children .lexx-header-menu-link i {
	font-size: 14px;
}

.lexx-header-submenu {
	position: absolute;
	top: calc(100% - 5px);
	right: 0;
	background-color: #ffffff;
	border-radius: 6px;
	padding: 10px 0;
	margin-top: 0;
	min-width: 400px;
	display: flex;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-5px);
	transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
	z-index: 100;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border: 1px solid #e0e0e0;
	pointer-events: none;
}

.lexx-header-menu-item-has-children:hover .lexx-header-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.lexx-header-submenu:hover {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
	pointer-events: auto !important;
}

.lexx-header-submenu-column {
	flex: 1;
	min-width: 0;
}

/* Single column submenu */
.lexx-header-submenu-single-column {
	min-width: 220px !important;
	max-width: 220px !important;
	left: 50% !important;
	transform: translateX(-50%) translateY(10px) !important;
}

.lexx-header-menu-item-has-children:hover .lexx-header-submenu-single-column {
	transform: translateX(-50%) translateY(0) !important;
}

.lexx-header-submenu-single-column .lexx-header-submenu-column {
	flex: none;
	width: 100%;
}

.lexx-header-submenu-single-column .lexx-header-submenu-divider {
	width: 100% !important;
	height: 1px !important;
	background-color: #e0e0e0;
	margin: 10px 0 !important;
	flex-shrink: 0;
}

.lexx-header-submenu-divider {
	width: 1px;
	background-color: #e0e0e0;
	margin: 10px 0;
	flex-shrink: 0;
}

.lexx-header-submenu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lexx-header-submenu-title {
	padding: 8px 16px 6px 16px;
	color: #494949 !important;
	font-family: var(--lexx-font-poppins) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: none;
	margin-bottom: 2px;
	margin-top: 8px;
}

.lexx-header-submenu-single-column .lexx-header-submenu-title:first-child {
	margin-top: 0;
	padding-top: 10px;
}

.lexx-header-submenu-item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lexx-header-submenu-link {
	display: block;
	padding: 8px 16px;
	color: #494949 !important;
	text-decoration: none !important;
	font-family: var(--lexx-font-poppins) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.lexx-header-submenu-link:hover {
	background-color: #f0f0f0;
	color: var(--lexx-color-accent-blue) !important;
}

.lexx-header-submenu-single-column .lexx-header-submenu-link {
	padding: 7px 16px;
}

.lexx-header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.lexx-header-search {
	display: flex !important;
	align-items: center !important;
	border: 1px solid #e0e0e0 !important;
	border-radius: 4px !important;
	overflow: hidden;
	background-color: #ffffff !important;
}

.lexx-header-search-input {
	border: none !important;
	outline: none !important;
	padding: 8px 12px !important;
	font-family: var(--lexx-font-poppins) !important;
	font-size: 14px !important;
	color: var(--lexx-color-text) !important;
	background: transparent !important;
	width: 200px !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
}

.lexx-header-search-input::placeholder {
	color: #999999 !important;
	opacity: 1 !important;
}

.lexx-header-search-button {
	border: none !important;
	background-color: #494949 !important;
	background-image: none !important;
	color: #ffffff !important;
	padding: 8px 12px !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background-color 0.2s ease !important;
	min-width: 40px;
	height: 100%;
}

.lexx-header-search-button:hover {
	background-color: #333333 !important;
}

.lexx-header-search-button svg {
	width: 16px;
	height: 16px;
}

.lexx-header-cart {
	color: var(--lexx-color-accent-blue);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease;
	position: relative;
}

.lexx-header-cart:hover {
	opacity: 0.7;
}

.lexx-header-cart svg {
	width: 24px;
	height: 24px;
	stroke-width: 2;
}

.lexx-cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: var(--lexx-color-accent-orange);
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	font-family: var(--lexx-font-poppins);
	padding: 2px 6px;
	border-radius: 10px;
	min-width: 18px;
	text-align: center;
	line-height: 1.2;
}

.lexx-header-gradient-line {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #e0e0e0 0%, #ffffff 100%);
	margin-top: 0;
}

/* Mobile Menu Toggle Button */
.lexx-mobile-menu-toggle {
	display: none;
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
	position: relative;
	flex-shrink: 0;
	box-shadow: none !important;
	outline: none;
}

.lexx-hamburger-icon {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 24px;
	height: 18px;
	justify-content: space-between;
}

.lexx-hamburger-icon span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #494949;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.lexx-mobile-menu-toggle[aria-expanded="true"] .lexx-hamburger-icon span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.lexx-mobile-menu-toggle[aria-expanded="true"] .lexx-hamburger-icon span:nth-child(2) {
	opacity: 0;
}

.lexx-mobile-menu-toggle[aria-expanded="true"] .lexx-hamburger-icon span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Prevent body scroll when menu is open */
body.lexx-menu-open {
	overflow: hidden;
}

/* ============================================
   RESPONSIVE HEADER STYLES
   ============================================ */

@media (max-width: 968px) {
	.lexx-header-container {
		padding: 16px 20px;
		gap: 20px;
		flex-wrap: wrap;
	}

	.lexx-header-logo {
		flex-shrink: 0;
	}

	.lexx-header-logo img {
		height: 32px;
	}

	.lexx-logo-link {
		padding-bottom: 18px;
	}

	.lexx-logo-link::after {
		font-size: 11px;
		letter-spacing: 4px;
		padding-left: 4px;
	}

	.lexx-mobile-menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: auto;
	}

	.lexx-header-nav {
		display: none !important;
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		background-color: #ffffff;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
		z-index: 100;
		flex: 1 1 100%;
		order: 3;
		max-height: calc(100vh - 72px);
		overflow-y: auto;
	}

	.lexx-header-nav.lexx-nav-open {
		display: flex !important;
	}

	.lexx-header-menu {
		flex-direction: column;
		width: 100%;
		gap: 0;
		padding: 20px 0;
		align-items: stretch;
	}

	.lexx-header-menu-item {
		width: 100%;
		border-bottom: 1px solid #f0f0f0;
	}

	.lexx-header-menu-item:last-child {
		border-bottom: none;
	}

	.lexx-header-menu-link {
		display: block;
		padding: 16px 20px !important;
		width: 100%;
		font-size: 16px !important;
	}

	/* Submenu mobile styles */
	.lexx-header-menu-item-has-children {
		position: static;
	}

	.lexx-header-submenu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background-color: #ffffff;
		border-radius: 0;
		margin-top: 0;
		padding: 0;
		box-shadow: none;
		border-top: 1px solid #e0e0e0;
		display: none;
		flex-direction: column;
		min-width: auto;
	}

	.lexx-header-menu-item-has-children.lexx-submenu-open .lexx-header-submenu {
		display: flex;
	}

	.lexx-header-submenu-divider {
		width: 100%;
		height: 1px;
		background-color: #e0e0e0;
		margin: 10px 0;
	}

	.lexx-header-submenu-title {
		padding: 12px 20px 12px 40px;
		color: #494949 !important;
		font-size: 15px !important;
		font-weight: 600 !important;
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 0;
	}

	.lexx-header-submenu-link {
		padding: 12px 20px 12px 40px;
		color: #494949 !important;
		font-size: 15px !important;
	}

	.lexx-header-submenu-link:hover {
		background-color: #f0f0f0;
		color: var(--lexx-color-accent-blue) !important;
	}

	.lexx-header-actions {
		display: none !important;
		flex: 1 1 100%;
		order: 4;
		flex-direction: column;
		gap: 16px;
		padding: 20px;
		background-color: #f9f9f9;
		border-top: 1px solid #e0e0e0;
	}

	.lexx-header-actions.lexx-actions-open {
		display: flex !important;
	}

	.lexx-header-search {
		width: 100%;
	}

	.lexx-header-search-input {
		width: 100% !important;
		flex: 1;
	}

	.lexx-header-cart {
		justify-content: flex-start;
		width: 100%;
		padding: 8px 0;
	}
}

@media (max-width: 640px) {
	.lexx-header-container {
		padding: 12px 16px;
	}

	.lexx-header-logo img {
		height: 28px;
	}

	.lexx-logo-link {
		padding-bottom: 16px;
	}

	.lexx-logo-link::after {
		font-size: 9px;
		letter-spacing: 3.5px;
		padding-left: 3.5px;
	}

	.lexx-header-nav {
		top: 64px;
		max-height: calc(100vh - 64px);
	}

	.lexx-header-menu-link {
		padding: 14px 16px !important;
		font-size: 15px !important;
	}

	.lexx-header-actions {
		padding: 16px;
	}
}

/* ============================================
   HOMEPAGE HERO SECTION
   ============================================ */

/* Reset any conflicting styles from Elementor or other plugins */
.lexx-homepage * {
	box-sizing: border-box;
}

.lexx-homepage {
	width: 100%;
}

/* Override any global headline styles */
.lexx-homepage .lexx-hero-headline {
	font-family: var(--lexx-font-poppins) !important;
}

/* Override any global link/button styles */
.lexx-homepage a.lexx-hero-button,
body .lexx-homepage a.lexx-hero-button {
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	color: #ffffff !important;
}

.lexx-hero {
	background-color: #ffffff;
	padding: 5rem 0;
	position: relative;
}

/* Override any Elementor or WordPress global styles */
.lexx-hero .lexx-hero-headline,
body .lexx-hero .lexx-hero-headline {
	font-family: var(--lexx-font-poppins) !important;
}

.lexx-hero a.lexx-hero-button,
body .lexx-hero a.lexx-hero-button,
body a.lexx-hero-button {
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	color: #ffffff !important;
	border: none !important;
}

.lexx-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.lexx-hero-content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	z-index: 2;
}

.lexx-hero-headline {
	font-family: var(--lexx-font-poppins) !important;
	margin: 0 !important;
}

.lexx-hero-headline p {
	margin: 0 !important;
	line-height: 1.1;
}

.lexx-hero-tagline {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 28px !important;
	font-weight: 900 !important;
	color: var(--lexx-color-text, #494949) !important;
	text-transform: uppercase;
	-webkit-text-stroke: 0.4px currentColor;
}

.lexx-text-accent {
	color: var(--lexx-color-accent-orange, #e25027) !important;
	font-weight: 900 !important;
	letter-spacing: -0.08em;
	-webkit-text-stroke: 0.5px currentColor;
}

.lexx-hero-inline-logo {
	height: 20.7px;
	width: auto;
	display: inline-block;
	vertical-align: baseline;
	position: relative;
	top: 0.6px;
	margin-right: 0.02em;
}

.lexx-hero-exx {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 56px !important;
	font-weight: 900 !important;
	color: var(--lexx-color-accent-orange, #e25027) !important;
	letter-spacing: -0.08em;
	text-transform: uppercase;
	-webkit-text-stroke: 0.5px currentColor;
	line-height: 1 !important;
	margin-top: -4px !important;
}

.lexx-hero-exx--indent {
	padding-left: 24px;
	line-height: 0.9 !important;
}

.lexx-xx {
	letter-spacing: -6px !important;
}

.lexx-hero-divider {
	border: none;
	border-top: 3px solid var(--lexx-color-text, #494949);
	width: 260px;
	margin: 2px 0;
}

.lexx-hero-sub {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 22px !important;
	font-weight: 900 !important;
	line-height: 1.35 !important;
	color: var(--lexx-color-text, #494949) !important;
	text-transform: uppercase;
	-webkit-text-stroke: 0.3px currentColor;
}

.lexx-hero-sub p {
	margin: 0 !important;
}

.lexx-hero-sub strong {
	font-weight: 900;
}

.lexx-hero-price {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	color: var(--lexx-color-text, #494949) !important;
	margin: 0 !important;
}

.lexx-hero-link {
	color: var(--lexx-color-accent-blue);
	text-decoration: none;
	font-weight: 500;
}

.lexx-hero-button {
	align-self: flex-start !important;
	margin-top: 8px !important;
}

.lexx-hero-button:hover {
	text-decoration: none !important;
}

.lexx-homepage .lexx-hero .lexx-hero-button {
	/* Inherits from .lexx-button */
}

.lexx-hero-visual {
	position: relative;
	width: 100%;
	height: 500px;
}

.lexx-hero-image-placeholder {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.lexx-hero-image-placeholder .diamond-orange {
	position: absolute;
	/* Specific styles will be added as needed */
}

.lexx-hero-image-placeholder > img[alt="Elemento de destaque do herói"] {
	position: absolute;
	/* Specific styles will be added as needed */
}

.lexx-hero-image-placeholder .hero-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.lexx-hero-image-placeholder .hero-container img[alt="Estudante"] {
	position: absolute;
	/* Specific styles will be added as needed */
}

.lexx-hero-image-placeholder .geometric-shapes {
	position: absolute;
}

.lexx-hero-image-placeholder .diamond-yellow {
	position: absolute;
	/* Specific styles will be added as needed */
}

.lexx-hero-image-placeholder .hero-highlight {
	position: absolute;
	/* Specific styles will be added as needed */
}

.lexx-hero-image-placeholder .texture-background {
	position: absolute;
	width: 100%;
	height: 100%;
	/* Specific styles will be added as needed */
}

/* ============================================
   FEATURES SECTION
   ============================================ */

/* ===== LEXX Hubs Section ===== */
.lexx-hubs {
	background-color: #f9fafb;
	padding: 5rem 0;
}

.lexx-hubs-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.lexx-hub-card {
	position: relative;
	background: #ffffff;
	padding: 40px 32px 32px;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	gap: 16px;
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lexx-hub-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.lexx-hub-card-accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.lexx-hub-card--online .lexx-hub-card-accent {
	background: linear-gradient(90deg, #e25027, #f7931e);
}

.lexx-hub-card--live .lexx-hub-card-accent {
	background: linear-gradient(90deg, #00acef, #0284c7);
}

.lexx-hub-card--bookstore .lexx-hub-card-accent {
	background: linear-gradient(90deg, #c9952c, #f7931e);
}

.lexx-hub-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	font-family: var(--lexx-font-poppins, sans-serif);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #e25027;
	background: rgba(226, 80, 39, 0.08);
	padding: 4px 10px;
	border-radius: 999px;
}

.lexx-hub-card-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 4px;
}

.lexx-hub-card-icon svg {
	width: 64px;
	height: 64px;
}

.lexx-hub-card-logo {
	position: relative;
	display: block;
	padding-bottom: 22px;
	text-align: center;
}

.lexx-hub-card-logo img {
	height: 48px;
	width: auto;
	display: inline-block;
}

.lexx-hub-card-logo::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 5px;
	padding-left: 5px;
	text-transform: uppercase;
	white-space: nowrap;
}

.lexx-hub-logo--online::after {
	content: "ONLINE";
	color: #cf9f00;
}

.lexx-hub-logo--live::after {
	content: "LIVE";
	color: #cf9f00;
}

.lexx-hub-logo--bookstore::after {
	content: "BOOKSTORE";
	color: #cf9f00;
}

.lexx-hub-card-desc {
	font-family: var(--lexx-font-poppins, sans-serif) !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.65 !important;
	color: #6b7280 !important;
	margin: 0 !important;
	flex: 1;
}

.lexx-hub-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--lexx-font-poppins, sans-serif) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	margin-top: 8px;
	transition: gap 0.2s ease;
}

.lexx-hub-card-link {
	color: #e25027 !important;
}

.lexx-hub-card-link:hover {
	gap: 10px;
	text-decoration: none !important;
}

.lexx-hub-card-link--disabled {
	color: #9ca3af !important;
	cursor: default;
}

.lexx-hub-card-link span {
	transition: transform 0.2s ease;
}

.lexx-hub-card-link:hover span {
	transform: translateX(3px);
}

/* ============================================
   CTA SECTION
   ============================================ */

.lexx-cta {
	background-color: #ffffff;
	padding: 60px 0;
}

.lexx-cta-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.lexx-cta-content {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	flex: 1;
	max-width: 785px;
}

.lexx-cta-accent {
	width: 4px;
	height: 100%;
	min-height: 60px;
	background-color: var(--lexx-color-accent-blue);
	flex-shrink: 0;
	border-radius: 2px;
}

.lexx-cta-text {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 20px !important;
	line-height: 1.6 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
	flex: 1;
}

.lexx-cta-button {
	flex-shrink: 0;
}

.lexx-cta-button:hover {
	text-decoration: none !important;
}

/* ============================================
   DIVERSIFY SKILLS SECTION
   ============================================ */

.lexx-diversify {
	background-color: #ffffff;
	padding: 80px 0;
}

.lexx-diversify-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 4px 1fr;
	gap: 60px;
	align-items: start;
}

.lexx-diversify-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.lexx-diversify-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 36px !important;
	line-height: 1.2 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

.lexx-diversify-subheadings {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.lexx-diversify-subheadings p {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 22px !important;
	line-height: 1.5 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

.lexx-diversify-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lexx-diversify-text p {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 1.6 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

.lexx-diversify-button {
	align-self: flex-start;
	margin-top: 8px;
}

.lexx-diversify-button:hover {
	text-decoration: none !important;
}

.lexx-diversify-divider {
	width: 4px;
	height: 100%;
	background-color: var(--lexx-color-accent-blue);
	min-height: 400px;
}

.lexx-diversify-courses {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: flex-start;
	text-align: left;
	max-width: 500px;
	margin: 0 auto;
}

.lexx-courses-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 36px !important;
	line-height: 1.2 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

.lexx-courses-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	align-items: center;
}

.lexx-course-item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid #e0e0e0;
	width: 100%;
}

.lexx-course-item:last-child {
	border-bottom: none;
}

.lexx-course-check {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	object-fit: contain;
}

/* Links in the course list (Our Top Courses) */
.lexx-course-item .lexx-course-link {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	color: #000000 !important;
	text-decoration: none !important;
	transition: color 0.3s ease;
}

.lexx-course-item .lexx-course-link:hover {
	color: var(--lexx-color-accent-blue) !important;
	text-decoration: none !important;
}

/* ============================================
   UPDATES SECTION
   ============================================ */

.lexx-updates {
	background-color: #ffffff;
	padding: 120px 0 0 0;
	margin-top: -70px;
	position: relative;
	overflow: hidden;
}

.lexx-updates::before {
	content: '';
	position: absolute;
	top: 0;
	left: -300px;
	width: 600px;
	height: 600px;
	background-image: var(--lexx-texture-url);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
	opacity: 0.2;
	filter: brightness(0);
	pointer-events: none;
	z-index: 0;
}

.lexx-updates::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: -300px;
	width: 600px;
	height: 600px;
	background-image: var(--lexx-texture-url);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
	opacity: 0.2;
	filter: brightness(0);
	pointer-events: none;
	z-index: 0;
}

.lexx-updates-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.lexx-updates-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 36px !important;
	line-height: 1.2 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 0 48px 0 !important;
	text-align: center;
}

.lexx-updates-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.lexx-update-card {
	background-color: #ffffff00;
	padding: 32px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lexx-update-card-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 24px !important;
	line-height: 1.3 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

.lexx-updates .lexx-update-card .lexx-update-card-title,
.lexx-homepage .lexx-updates .lexx-update-card-title,
body .lexx-update-card-title {
	font-weight: 700 !important;
	font-family: var(--lexx-font-poppins) !important;
}

.lexx-update-date {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	color: var(--lexx-color-accent-orange) !important;
	margin: 0 !important;
}

.lexx-update-description {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 1.6 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

.lexx-update-link {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	color: var(--lexx-color-accent-blue) !important;
	text-decoration: none !important;
	transition: opacity 0.3s ease;
	align-self: flex-start;
}

.lexx-update-link:hover {
	opacity: 0.8;
	text-decoration: underline !important;
	color: var(--lexx-color-accent-blue) !important;
}

/* ============================================
   FULFILL PLANS SECTION
   ============================================ */

.lexx-fulfill {
	background-color: #ffffff;
	padding: 80px 0;
}

.lexx-fulfill-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-right: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.lexx-fulfill-visual {
	position: relative;
	width: 100%;
}

.lexx-fulfill-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	object-fit: cover;
}

.lexx-fulfill-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.lexx-fulfill-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 36px !important;
	line-height: 1.2 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

.lexx-fulfill-subtitle {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 20px !important;
	line-height: 1.5 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

.lexx-fulfill-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lexx-fulfill-text p {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 1.6 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

.lexx-fulfill-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.lexx-fulfill-button {
	/* Inherits from .lexx-button */
}

.lexx-fulfill-button:hover {
	text-decoration: none !important;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.lexx-footer {
	width: 100%;
	margin-top: auto;
}

.lexx-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Footer Top Section - White with soft gray outer glow */
.lexx-footer-top {
	background-color: #ffffff;
	padding: 40px 0;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
	position: relative;
}

.lexx-footer-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	box-shadow: 0 0 20px rgba(128, 128, 128, 0.15);
	pointer-events: none;
}

/* Logo Section */
.lexx-footer-logo {
	flex-shrink: 0;
}

.lexx-logo-image {
	max-width: 150px;
	height: auto;
	display: block;
}

/* Navigation Links */
.lexx-footer-nav {
	display: flex;
	gap: 32px;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 auto;
}

.lexx-footer-nav .lexx-footer-link {
	color: var(--lexx-color-text) !important;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	transition: color 0.3s ease;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.lexx-footer-nav .lexx-footer-link:hover {
	color: var(--lexx-color-accent-blue) !important;
	text-decoration: none;
}

/* Social Icons */
.lexx-footer-social {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-shrink: 0;
}

.lexx-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	text-decoration: none;
}

.lexx-social-icon:hover {
	transform: scale(1.1);
	opacity: 0.8;
	text-decoration: none;
}

.lexx-social-icon svg {
	width: 100%;
	height: 100%;
}

/* Footer Bottom Section - Light Gray */
.lexx-footer-bottom {
	background-color: var(--lexx-color-bottom-bar);
	padding: 20px 0;
}

.lexx-footer-bottom .lexx-footer-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

.lexx-footer-copyright {
	margin: 0;
	color: var(--lexx-color-text);
	font-size: 14px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.lexx-footer-legal {
	display: flex;
	gap: 20px;
	align-items: center;
}

.lexx-footer-legal-link {
	color: var(--lexx-color-text);
	font-size: 13px;
	text-decoration: none;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.lexx-footer-legal-link:hover {
	opacity: 1;
	text-decoration: underline;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 968px) {
	.lexx-hero-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.lexx-hero-visual {
		height: 400px;
		order: -1;
		overflow: hidden;
	}

	.lexx-hero-content {
		padding: 0 10px;
	}
	
	.lexx-hero-tagline {
		font-size: 22px !important;
	}

	.lexx-hero-inline-logo {
		height: 16.3px;
	}

	.lexx-hero-exx {
		font-size: 42px !important;
	}

	.lexx-xx {
		letter-spacing: -4px !important;
	}

	.lexx-hero-sub {
		font-size: 18px !important;
	}

	.lexx-hero-divider {
		width: 200px;
	}
}

@media (max-width: 968px) {
	.lexx-hubs-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.lexx-cta-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	
	.lexx-cta-button {
		width: 100%;
		text-align: center;
	}
	
	.lexx-diversify-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.lexx-diversify-divider {
		width: 100%;
		height: 4px;
		min-height: 4px;
	}
	
	.lexx-diversify-button {
		width: 100%;
		text-align: center;
		align-self: stretch;
	}
	
	.lexx-fulfill-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.lexx-fulfill-visual {
		order: -1;
	}
	
	.lexx-fulfill-title {
		font-size: 28px !important;
	}
	
	.lexx-fulfill-subtitle {
		font-size: 18px !important;
	}
	
	.lexx-fulfill-buttons {
		flex-direction: column;
	}
	
	.lexx-fulfill-button {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.lexx-hero {
		padding: 40px 0;
	}
	
	.lexx-hero-container {
		padding: 0 16px;
		gap: 16px;
	}
	
	.lexx-hero-tagline {
		font-size: 18px !important;
	}

	.lexx-hero-inline-logo {
		height: 13.3px;
	}

	.lexx-hero-exx {
		font-size: 34px !important;
	}

	.lexx-hero-exx--indent {
		padding-left: 16px;
	}

	.lexx-xx {
		letter-spacing: -3px !important;
	}

	.lexx-hero-sub {
		font-size: 16px !important;
	}

	.lexx-hero-divider {
		width: 180px;
	}

	.lexx-hero-price {
		font-size: 14px !important;
	}
	
	.lexx-hero-button {
		padding: 14px 28px;
		font-size: 16px;
		width: 100%;
		text-align: center;
	}
	
	.lexx-hero-visual {
		height: 300px;
	}
	
	.lexx-hubs {
		padding: 48px 0;
	}

	.lexx-hub-card {
		padding: 32px 24px 24px;
	}

	.lexx-hub-card-logo img {
		height: 40px;
	}

	.lexx-hub-card-logo::after {
		font-size: 10px;
		letter-spacing: 3.5px;
		padding-left: 3.5px;
	}

	.lexx-hub-card-desc {
		font-size: 14px !important;
	}
	
	.lexx-cta {
		padding: 40px 0;
	}
	
	.lexx-cta-container {
		padding: 0 16px;
	}
	
	.lexx-cta-text {
		font-size: 16px !important;
	}
	
	.lexx-cta-button {
		padding: 14px 28px !important;
		font-size: 16px !important;
	}
	
	.lexx-diversify {
		padding: 60px 0;
	}
	
	.lexx-diversify-title {
		font-size: 28px !important;
	}
	
	.lexx-diversify-subheadings p {
		font-size: 16px !important;
	}
	
	.lexx-diversify-text p {
		font-size: 14px !important;
	}
	
	.lexx-courses-title {
		font-size: 28px !important;
	}
	
	.lexx-course-item .lexx-course-link {
		font-size: 14px !important;
	}
	
	.lexx-diversify-button {
		padding: 14px 28px !important;
		font-size: 16px !important;
	}
	
	.lexx-final-cta {
		padding: 60px 0;
	}
	
	.lexx-final-cta-title {
		font-size: 28px !important;
	}
	
	.lexx-final-cta-subtitle {
		font-size: 16px !important;
	}
	
	.lexx-final-cta-button {
		padding: 14px 28px !important;
		font-size: 16px !important;
		width: 100%;
	}
	
	.lexx-updates {
		padding: 60px 0;
	}
	
	.lexx-updates::before,
	.lexx-updates::after {
		width: 400px;
		height: 400px;
	}
	
	.lexx-updates-title {
		font-size: 28px !important;
		margin-bottom: 32px !important;
	}
	
	.lexx-updates-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.lexx-update-card {
		padding: 24px;
	}
	
	.lexx-update-card-title {
		font-size: 18px !important;
	}
	
	.lexx-update-description {
		font-size: 14px !important;
	}
	
	.lexx-fulfill {
		padding: 60px 0;
	}
	
	.lexx-fulfill-container {
		padding: 0 16px;
	}
	
	.lexx-fulfill-title {
		font-size: 24px !important;
	}
	
	.lexx-fulfill-subtitle {
		font-size: 16px !important;
	}
	
	.lexx-fulfill-text p {
		font-size: 14px !important;
	}
	
	.lexx-fulfill-button {
		padding: 14px 28px !important;
		font-size: 16px !important;
	}
	
	.lexx-footer-container {
		flex-direction: column;
		gap: 24px;
		padding: 0 16px;
	}
	
	.lexx-footer-top {
		padding: 32px 0;
	}
	
	.lexx-footer-nav {
		flex-direction: column;
		gap: 16px;
		width: 100%;
		text-align: center;
	}
	
	.lexx-footer-social {
		justify-content: center;
	}
	
	.lexx-footer-logo {
		text-align: center;
	}
}

@media (max-width: 480px) {
	.lexx-footer-top {
		padding: 24px 0;
	}
	
	.lexx-footer-nav {
		gap: 12px;
	}
	
	.lexx-footer-link {
		font-size: 14px;
	}
	
	.lexx-footer-copyright {
		font-size: 12px;
	}

	.lexx-footer-bottom .lexx-footer-container {
		flex-direction: column;
		text-align: center;
		gap: 6px;
	}

	.lexx-footer-legal-link {
		font-size: 12px;
	}
}

/* ============================================
   FAQ SECTION
   ============================================ */

.lexx-faq {
	background-color: #ffffff;
	padding: 120px 0;
	position: relative;
}

.lexx-faq-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 40px;
}

.lexx-faq-title {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 2.75rem !important;
	font-weight: 700 !important;
	color: #494949 !important;
	text-align: center;
	margin: 0 auto 70px auto;
	letter-spacing: -0.5px;
	line-height: 1.3;
	width: 100%;
	max-width: 640px;
}

.lexx-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-left: 0;
	list-style: none;
}

.lexx-faq-item {
	border-bottom: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	width: 100%;
}

.lexx-faq-item:last-child {
	border-bottom: none;
}

.lexx-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	min-height: 70px;
	cursor: pointer;
	user-select: none;
	transition: color 0.2s ease;
	width: 100%;
}

.lexx-faq-question:hover {
	color: #555555;
}

.lexx-question-text {
	font-family: var(--lexx-font-poppins);
	font-size: 1.3rem;
	font-weight: 400;
	color: #2c2c2c;
	flex: 1;
	line-height: 1.4;
}

.lexx-expand-icon {
	font-size: 2rem;
	font-weight: 300;
	color: #e67e22;
	line-height: 1;
	transition: transform 0.3s ease;
	margin-left: 24px;
	flex-shrink: 0;
	width: 28px;
	text-align: center;
}

.lexx-faq-item.active .lexx-expand-icon {
	transform: rotate(45deg);
}

.lexx-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 0;
}

.lexx-faq-item.active .lexx-faq-answer {
	max-height: 600px;
	padding: 0 0 28px 0;
}

.lexx-faq-answer p {
	font-size: 1.15rem;
	color: #666666;
	line-height: 1.7;
	margin: 0;
}

.lexx-faq-answer a {
	color: #00acef !important;
	text-decoration: none !important;
	transition: opacity 0.2s ease;
}

.lexx-faq-answer a:hover {
	opacity: 0.8;
}

/* FAQ Responsiveness */
@media (max-width: 768px) {
	.lexx-faq {
		padding: 80px 0;
	}
	
	.lexx-faq-container {
		padding: 0 24px;
	}
	
	.lexx-faq-title {
		font-size: 2.25rem;
		width: 100%;
		max-width: 520px;
		margin-bottom: 50px;
	}
	
	.lexx-faq-question {
		min-height: 60px;
	}
	
	.lexx-question-text {
		font-size: 1.15rem;
	}
	
	.lexx-expand-icon {
		font-size: 1.8rem;
		width: 24px;
	}
	
	.lexx-faq-answer p {
		font-size: 1.05rem;
	}
}

@media (max-width: 600px) {
	.lexx-faq-title {
		font-size: 2rem;
		line-height: 1.3;
		height: auto;
		width: 100%;
	}
	
	.lexx-question-text {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.lexx-faq {
		padding: 60px 0;
	}
	
	.lexx-faq-container {
		padding: 0 20px;
	}
	
	.lexx-faq-title {
		font-size: 1.75rem;
		margin-bottom: 40px;
	}
	
	.lexx-faq-question {
		min-height: 56px;
	}
	
	.lexx-question-text {
		font-size: 1rem;
	}
	
	.lexx-expand-icon {
		font-size: 1.6rem;
		margin-left: 18px;
	}
	
	.lexx-faq-answer p {
		font-size: 1rem;
	}
}

/* ============================================
   POPULAR COURSES SECTION
   ============================================ */

.lexx-popular-courses {
	background-color: #ffffff !important;
	padding: 80px 0 !important;
	position: relative !important;
	overflow: hidden !important;
}

/* Background texture on the left side */
.lexx-popular-courses::before {
	content: '' !important;
	position: absolute !important;
	top: 70% !important;
	left: -300px !important;
	transform: translateY(-50%) scaleX(-1) !important;
	width: 650px !important;
	height: 650px !important;
	background-image: var(--lexx-texture-url) !important;
	background-repeat: no-repeat !important;
	background-position: top left !important;
	background-size: contain !important;
	opacity: 0.2 !important;
	filter: brightness(0) !important;
	pointer-events: none !important;
	z-index: 0 !important;
}

.lexx-popular-courses-container {
	max-width: 1400px !important;
	margin: 0 auto !important;
	padding: 0 40px !important;
	position: relative !important;
	z-index: 1 !important;
}

.lexx-popular-courses-title {
	text-align: center !important;
	font-size: 48px !important;
	font-weight: 700 !important;
	color: #494949 !important;
	margin-bottom: 60px !important;
	line-height: 1.2 !important;
	font-family: var(--lexx-font-poppins) !important;
}

.lexx-carousel-wrapper {
	position: relative !important;
	width: 100% !important;
	padding: 0 10px !important;
	overflow: hidden !important;
}

.lexx-carousel-container {
	display: flex !important;
	transition: transform 0.5s ease-in-out !important;
	gap: 30px !important;
	padding: 2rem !important;
}

.lexx-course-card {
	flex: 0 0 calc(20% - 19.2px) !important;
	background-color: #ffffff !important;
	border-radius: 12px !important;
	box-shadow: 0 13px 20px rgba(0, 0, 0, 0.18) !important;
	padding: 30px;
	display: flex !important;
	flex-direction: column !important;
	min-height: 280px !important;
	position: relative !important;
}

.lexx-course-card::before {
	content: '' !important;
	position: absolute !important;
	top: 32px !important;
	left: 24px !important;
	width: 60px !important;
	height: 4px !important;
	background-color: #00acef !important;
	border-radius: 2px !important;
}

.lexx-course-title {
	color: #494949 !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
	margin-top: 48px !important;
	margin-bottom: auto !important;
	flex-grow: 1 !important;
	font-family: var(--lexx-font-poppins) !important;
}

/* Links in course cards (Popular Courses) */
.lexx-course-card .lexx-course-link {
	color: #00acef !important;
	text-decoration: none !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	margin-top: 24px !important;
	display: inline-block !important;
	transition: opacity 0.3s ease !important;
	font-family: var(--lexx-font-poppins) !important;
}

.lexx-course-card .lexx-course-link:hover {
	opacity: 0.8 !important;
	text-decoration: underline !important;
}

/* Special "All Courses" card */
.lexx-course-card-all {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
	border: 2px solid #0ea5e9 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.lexx-course-card-all::before {
	display: none !important;
}

.lexx-all-courses-link {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 16px !important;
	text-decoration: none !important;
	width: 100% !important;
	height: 100% !important;
}

.lexx-all-courses-text {
	font-size: 24px !important;
	font-weight: 700 !important;
	color: #0ea5e9 !important;
	letter-spacing: 1px !important;
}

.lexx-arrow-icon {
	width: 48px !important;
	height: 48px !important;
	color: #0ea5e9 !important;
	transition: transform 0.3s ease !important;
}

.lexx-course-card-all:hover .lexx-arrow-icon {
	transform: translateX(8px) !important;
}

.lexx-course-card-all:hover {
	border-color: #0284c7 !important;
	background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%) !important;
}

.lexx-course-card-all:hover .lexx-all-courses-text {
	color: #0284c7 !important;
}

.lexx-course-card-all:hover .lexx-arrow-icon {
	color: #0284c7 !important;
}

.lexx-carousel-nav,
.lexx-popular-courses button.lexx-carousel-nav,
.lexx-homepage button.lexx-carousel-nav,
body button.lexx-carousel-nav {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 48px !important;
	height: 48px !important;
	border-radius: 0 !important;
	background-color: transparent !important;
	background: none !important;
	border: none !important;
	border: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	z-index: 10 !important;
	transition: opacity 0.3s ease !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	outline: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
}

.lexx-carousel-nav:hover,
.lexx-popular-courses button.lexx-carousel-nav:hover,
.lexx-homepage button.lexx-carousel-nav:hover,
body button.lexx-carousel-nav:hover {
	background-color: transparent !important;
	background: none !important;
	border: none !important;
	border: 0 !important;
	opacity: 0.7 !important;
}

.lexx-carousel-nav:active,
.lexx-popular-courses button.lexx-carousel-nav:active,
.lexx-homepage button.lexx-carousel-nav:active,
body button.lexx-carousel-nav:active {
	transform: translateY(-50%) !important;
	opacity: 0.5 !important;
	background-color: transparent !important;
	background: none !important;
	border: none !important;
}

.lexx-carousel-prev {
	left: 0 !important;
}

.lexx-carousel-next {
	right: 0 !important;
}

.lexx-carousel-nav svg {
	width: 32px !important;
	height: 32px !important;
	stroke: rgb(170, 170, 170) !important;
	fill: none !important;
	stroke-width: 2.5 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	display: block !important;
	pointer-events: none !important;
}

.lexx-carousel-nav svg path {
	stroke: rgb(170, 170, 170) !important;
	fill: none !important;
	stroke-width: 2.5 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}

.lexx-carousel-nav:hover svg {
	stroke: rgb(100, 100, 100) !important;
}

.lexx-carousel-nav:hover svg path {
	stroke: rgb(100, 100, 100) !important;
}

/* Popular Courses Responsiveness */
@media (max-width: 1400px) {
	.lexx-course-card {
		flex: 0 0 calc(25% - 18px) !important;
	}
}

@media (max-width: 1200px) {
	.lexx-popular-courses-container {
		padding: 0 30px !important;
	}

	.lexx-popular-courses-title {
		font-size: 40px !important;
		margin-bottom: 50px !important;
	}

	.lexx-course-card {
		flex: 0 0 calc(33.333% - 16px) !important;
	}

	.lexx-carousel-wrapper {
		padding: 0 50px !important;
	}
}

@media (max-width: 900px) {
	.lexx-popular-courses-container {
		padding: 0 20px !important;
	}

	.lexx-popular-courses-title {
		font-size: 36px !important;
		margin-bottom: 40px !important;
	}

	.lexx-course-card {
		flex: 0 0 calc(50% - 12px) !important;
	}

	.lexx-carousel-wrapper {
		padding: 0 40px !important;
	}

	.lexx-carousel-nav {
		width: 40px !important;
		height: 40px !important;
	}
	
	.lexx-popular-courses::before {
		left: -200px !important;
		width: 400px !important;
		height: 400px !important;
	}
}

@media (max-width: 600px) {
	.lexx-popular-courses-container {
		padding: 0 15px !important;
	}

	.lexx-popular-courses-title {
		font-size: 28px !important;
		margin-bottom: 30px !important;
	}

	.lexx-course-card {
		flex: 0 0 calc(100% - 0px) !important;
		padding: 24px 20px !important;
		min-height: 240px !important;
	}

	.lexx-course-title {
		font-size: 16px !important;
		margin-top: 40px !important;
	}

	.lexx-carousel-wrapper {
		padding: 0 30px !important;
	}

	.lexx-carousel-nav {
		width: 36px !important;
		height: 36px !important;
	}
	
	.lexx-popular-courses::before {
		left: -150px !important;
		width: 300px !important;
		height: 300px !important;
	}
}

@media (max-width: 480px) {
	.lexx-popular-courses {
		padding: 60px 0 !important;
	}
}

/* ============================================
   CHANNELS / LEARNING PORTALS PAGE
   ============================================ */

.lexx-channels-page {
	width: 100% !important;
	background-color: #ffffff !important;
	margin: 0 !important;
	padding: 0 !important;
}

.lexx-channels-hero {
	background-color: #ffffff !important;
	padding: 100px 0 80px !important;
	text-align: center !important;
	margin: 0 !important;
}

.lexx-channels-hero {
	position: relative !important;
}

.lexx-channels-hero-container {
	max-width: 800px !important;
	margin: 0 auto !important;
	padding: 0 20px !important;
	position: relative !important;
	z-index: 1 !important;
}

.lexx-channels-hero-title {
	/* Inherits global h1 styles */
	line-height: 1.2 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 0 20px 0 !important;
	padding: 0 !important;
}

.lexx-channels-hero-subtitle {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 24px !important;
	line-height: 1.5 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 0 16px 0 !important;
	padding: 0 !important;
}

.lexx-channels-hero-description {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 18px !important;
	line-height: 1.6 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 0 40px 0 !important;
	padding: 0 !important;
}

.lexx-channels-hero-button {
	padding: 16px 40px !important;
}

.lexx-channels-hero-button:hover {
	text-decoration: none !important;
}

.lexx-channels-portals {
	background-color: #ffffff !important;
	padding: 60px 0 100px !important;
	margin: 0 !important;
}

.lexx-channels-portals-container {
	max-width: 1200px !important;
	margin: 0 auto !important;
	padding: 0 20px !important;
}

.lexx-channels-portals-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 40px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.lexx-portal-card {
	background-color: #ffffff !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	display: flex !important;
	flex-direction: column !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
}

.lexx-portal-card:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.lexx-portal-card-image {
	width: 100% !important;
	height: 300px !important;
	overflow: hidden !important;
	background-color: #f5f5f5 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.lexx-portal-card-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
}

.lexx-portal-card-content {
	padding: 32px !important;
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
	margin: 0 !important;
}

.lexx-portal-card-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 28px !important;
	line-height: 1.3 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 0 16px 0 !important;
	padding: 0 !important;
}

.lexx-portal-card-description {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 1.6 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 0 24px 0 !important;
	padding: 0 !important;
	flex: 1 !important;
}

.lexx-portal-card-button {
	padding: 14px 32px !important;
	font-size: 16px !important;
	align-self: flex-start !important;
}

.lexx-portal-card-button:hover {
	text-decoration: none !important;
}

/* Responsive */
@media (max-width: 900px) {
	.lexx-channels-portals-grid {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}
	
	.lexx-channels-hero-subtitle {
		font-size: 20px !important;
	}
	
	.lexx-channels-hero-description {
		font-size: 16px !important;
	}
}

@media (max-width: 600px) {
	.lexx-channels-hero {
		padding: 60px 0 50px !important;
	}
	
	.lexx-channels-hero-subtitle {
		font-size: 18px !important;
	}
	
	.lexx-channels-hero-description {
		font-size: 15px !important;
	}
	
	.lexx-channels-portals {
		padding: 40px 0 60px !important;
	}
	
	.lexx-portal-card-content {
		padding: 24px !important;
	}
	
	.lexx-portal-card-title {
		font-size: 24px !important;
	}
	
	.lexx-portal-card-description {
		font-size: 15px !important;
	}
	
	.lexx-portal-card-image {
		height: 250px !important;
	}
}

/* ============================================
   NEWS PAGE HERO SECTION
   ============================================ */

/* Ensure that the news page hero title uses the palette color */
.lexx-news-hero-title,
body .lexx-news-hero-title,
.lexx-news-page .lexx-news-hero-title,
.lexx-news-hero .lexx-news-hero-title,
.lexx-news-hero-container .lexx-news-hero-title,
.lexx-news-hero-container h1.lexx-news-hero-title {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 700 !important;
}

/* Ensure that the Read More button has white text */
.lexx-post-read-more,
body .lexx-post-read-more,
.lexx-news-page .lexx-post-read-more,
.lexx-post-card .lexx-post-read-more,
.lexx-post-meta .lexx-post-read-more,
a.lexx-post-read-more {
	color: #ffffff !important;
}

.lexx-post-read-more:hover,
body .lexx-post-read-more:hover,
.lexx-news-page .lexx-post-read-more:hover,
.lexx-post-card .lexx-post-read-more:hover,
.lexx-post-meta .lexx-post-read-more:hover,
a.lexx-post-read-more:hover {
	color: #ffffff !important;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.lexx-contact-page {
	width: 100%;
	background-color: #ffffff;
	min-height: 100vh;
}

.lexx-contact-hero {
	background-color: #ffffff;
	padding: 80px 0 60px;
}

.lexx-contact-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.lexx-contact-info {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
	text-align: center;
}

.lexx-contact-icon {
	width: 400px;
	height: auto;
	margin: 0 auto 32px auto;
	display: block;
	border-radius: 5px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lexx-contact-icon:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.lexx-contact-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 48px !important;
	line-height: 1.2 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 0 24px 0 !important;
}

.lexx-contact-intro {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 20px !important;
	line-height: 1.6 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 0 32px 0 !important;
	text-align: center !important;
}

.lexx-contact-address {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 1.8 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
	text-align: center !important;
}

.lexx-contact-form-wrapper {
	background-color: #ffffff;
	padding: 0;
}

/* Gravity Forms Styles - LEXX Theme */
.lexx-contact-form-wrapper .gform_wrapper {
	margin: 0 !important;
	padding: 0 !important;
}

/* Override global input styles for contact form */
.lexx-contact-page body input[type="text"],
.lexx-contact-page body input[type="email"],
.lexx-contact-page body form textarea,
.lexx-contact-form-wrapper body input[type="text"],
.lexx-contact-form-wrapper body input[type="email"],
.lexx-contact-form-wrapper body form textarea {
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
	border: 1px solid #e0e0e0 !important;
	box-shadow: none !important;
	color: var(--lexx-color-text) !important;
}

.lexx-contact-form-wrapper .gform_heading {
	margin-bottom: 24px !important;
}

.lexx-contact-form-wrapper .gform_required_legend {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 14px !important;
	color: var(--lexx-color-text) !important;
	margin: 0 0 24px 0 !important;
}

.lexx-contact-form-wrapper .gform_fields {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.lexx-contact-form-wrapper .gfield {
	margin: 0 !important;
	padding: 0 !important;
}

.lexx-contact-form-wrapper .gfield_label {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 500 !important;
	font-size: 16px !important;
	color: var(--lexx-color-text) !important;
	margin-bottom: 8px !important;
}

.lexx-contact-form-wrapper .gfield_required {
	color: var(--lexx-color-accent-orange) !important;
}

.lexx-contact-form-wrapper input[type="text"],
.lexx-contact-form-wrapper input[type="email"],
.lexx-contact-form-wrapper textarea,
.lexx-contact-form-wrapper .ginput_container input[type="text"],
.lexx-contact-form-wrapper .ginput_container input[type="email"],
.lexx-contact-form-wrapper .ginput_container textarea {
	width: 100% !important;
	padding: 16px 20px !important;
	border: 1px solid #e0e0e0 !important;
	border-radius: 8px !important;
	font-family: var(--lexx-font-poppins) !important;
	font-size: 16px !important;
	color: var(--lexx-color-text) !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
	transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
}

.lexx-contact-form-wrapper input[type="text"]:focus,
.lexx-contact-form-wrapper input[type="email"]:focus,
.lexx-contact-form-wrapper textarea:focus,
.lexx-contact-form-wrapper .ginput_container input[type="text"]:focus,
.lexx-contact-form-wrapper .ginput_container input[type="email"]:focus,
.lexx-contact-form-wrapper .ginput_container textarea:focus {
	outline: none !important;
	border-color: var(--lexx-color-accent-blue) !important;
	box-shadow: 0 0 0 3px rgba(0, 172, 239, 0.1) !important;
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
}

.lexx-contact-form-wrapper textarea {
	min-height: 150px !important;
	resize: vertical !important;
}

.lexx-contact-form-wrapper input::placeholder,
.lexx-contact-form-wrapper textarea::placeholder,
.lexx-contact-form-wrapper .ginput_container input::placeholder,
.lexx-contact-form-wrapper .ginput_container textarea::placeholder {
	color: #999999 !important;
	opacity: 1 !important;
}

.lexx-contact-form-wrapper .ginput_container_consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.lexx-contact-form-wrapper .ginput_container_consent input[type="checkbox"] {
	margin: 4px 0 0 0 !important;
	width: 20px !important;
	height: 20px !important;
	flex-shrink: 0;
	cursor: pointer;
}

.lexx-contact-form-wrapper .gfield_consent_label {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 14px !important;
	color: var(--lexx-color-text) !important;
	line-height: 1.6 !important;
}

.lexx-contact-form-wrapper .gform_footer {
	margin: 32px 0 0 0 !important;
	padding: 0 !important;
}

.lexx-contact-form-wrapper .gform_button {
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	color: #ffffff !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 500 !important;
	font-size: 18px !important;
	padding: 16px 32px !important;
	border: none !important;
	border-radius: 8px !important;
	cursor: pointer !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	width: 100% !important;
}

.lexx-contact-form-wrapper .gform_button:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(226, 80, 39, 0.3) !important;
}

.lexx-contact-form-wrapper .gform_button:active {
	transform: translateY(0) !important;
}

/* CAPTCHA Styles */
.lexx-contact-form-wrapper .ginput_recaptcha {
	margin: 0 !important;
}

/* Error Messages */
.lexx-contact-form-wrapper .gfield_error input,
.lexx-contact-form-wrapper .gfield_error textarea {
	border-color: var(--lexx-color-accent-orange) !important;
}

.lexx-contact-form-wrapper .gfield_error .gfield_label {
	color: var(--lexx-color-accent-orange) !important;
}

.lexx-contact-form-wrapper .validation_message {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 14px !important;
	color: var(--lexx-color-accent-orange) !important;
	margin-top: 4px !important;
}

/* Success/Confirmation Message */
.lexx-contact-form-wrapper .gform_confirmation_message {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 16px !important;
	color: #01654f !important;
	background-color: #f0f9f7 !important;
	padding: 16px 20px !important;
	border-radius: 8px !important;
	border: 1px solid #01654f !important;
	margin: 24px 0 !important;
}

/* Help & Support Section */
.lexx-contact-support {
	background: linear-gradient(135deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%);
	padding: 80px 0;
	margin: 80px 0 0 0;
}

.lexx-contact-support-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.lexx-support-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 600px;
	margin: 0 auto;
}

.lexx-support-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 36px !important;
	line-height: 1.2 !important;
	color: #ffffff !important;
	margin: 0 !important;
}

.lexx-support-subtitle {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 500 !important;
	font-size: 20px !important;
	line-height: 1.5 !important;
	color: #ffffff !important;
	margin: 0 !important;
}

.lexx-support-text {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 18px !important;
	line-height: 1.6 !important;
	color: #ffffff !important;
	margin: 0 0 24px 0 !important;
}

.lexx-support-button {
	display: inline-block !important;
	padding: 16px 40px !important;
	background-color: #ffffff !important;
	color: var(--lexx-color-button-gradient-start) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	font-size: 18px !important;
	text-decoration: none !important;
	border-radius: 8px !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.lexx-support-button:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
	text-decoration: none !important;
	color: var(--lexx-color-button-gradient-start) !important;
}

/* Account Section */
.lexx-contact-account {
	background-color: #ffffff;
	padding: 80px 0;
}

.lexx-contact-account-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.lexx-account-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.lexx-account-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 400px;
}

.lexx-account-links {
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.lexx-account-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 36px !important;
	line-height: 1.2 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 0 16px 0 !important;
}

.lexx-account-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lexx-account-item {
	margin: 0;
	padding: 0;
}

.lexx-account-link {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 18px !important;
	color: var(--lexx-color-text) !important;
	text-decoration: none !important;
	padding: 12px 0 !important;
	display: block !important;
	border-bottom: 1px solid #e0e0e0 !important;
	transition: color 0.3s ease, padding-left 0.3s ease !important;
}

.lexx-account-link:hover {
	color: var(--lexx-color-accent-blue) !important;
	padding-left: 8px !important;
	text-decoration: none !important;
}

/* Contact Page Responsive */
@media (max-width: 968px) {
	.lexx-contact-hero-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.lexx-contact-title {
		font-size: 36px !important;
	}
	
	.lexx-contact-intro {
		font-size: 18px !important;
	}
	
	.lexx-contact-account-container {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.lexx-account-image {
		order: -1;
	}
	
	.lexx-account-img {
		min-height: 300px;
	}
}

@media (max-width: 768px) {
	.lexx-contact-hero {
		padding: 60px 0 40px;
	}
	
	.lexx-contact-hero-container {
		padding: 0 16px;
	}
	
	.lexx-contact-title {
		font-size: 32px !important;
	}
	
	.lexx-contact-icon {
		width: 300px;
		height: auto;
		margin: 0 auto 24px auto;
	}
	
	.lexx-contact-support {
		padding: 60px 0;
		margin: 60px 0 0 0;
	}
	
	.lexx-support-title {
		font-size: 28px !important;
	}
	
	.lexx-support-subtitle {
		font-size: 18px !important;
	}
	
	.lexx-support-text {
		font-size: 16px !important;
	}
	
	.lexx-contact-account {
		padding: 60px 0;
	}
	
	.lexx-account-links {
		padding: 32px 20px;
	}
	
	.lexx-account-title {
		font-size: 28px !important;
	}
	
	.lexx-account-link {
		font-size: 16px !important;
	}
}

/* ========================================
   PACKAGES PAGE STYLES (LEXX)
   ======================================== */

.lexx-packages-page {
	background-color: var(--lexx-color-bg-light);
	min-height: 100vh;
}

/* Hero Section */
.lexx-packages-hero {
	background: #ffffff;
	padding: 10px 0;
	position: relative;
	overflow: hidden;
}

.lexx-packages-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 35% 1fr;
	gap: 60px;
	align-items: center;
}

.lexx-packages-hero-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.lexx-hero-img {
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 12px;
	transform: scaleX(-1); /* Inverte horizontalmente */
	margin-top: -100px;
}

.lexx-packages-hero-content {
	color: var(--lexx-color-text);
}

.lexx-packages-title {
	/* Inherits global h1 styles */
	line-height: 1.2 !important;
	color: var(--lexx-color-primary) !important;
	margin: 0 0 24px 0 !important;
}

.lexx-packages-description {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 400 !important;
	font-size: 18px !important;
	line-height: 1.6 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

/* Pricing Section */
.lexx-packages-pricing {
	padding: 40px 0 80px 0;
	background-color: #ffffff;
}

.lexx-packages-pricing-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Toggle Switch */
.lexx-pricing-toggle-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-bottom: 48px;
}

.lexx-toggle-label {
	font-family: var(--lexx-font-poppins);
	font-size: 18px;
	font-weight: 500;
	color: #999999 !important;
	transition: all 0.3s ease;
}

.lexx-toggle-label-active {
	color: var(--lexx-color-accent-orange) !important;
	font-weight: 600;
}

.lexx-toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
	cursor: pointer;
}

.lexx-toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.lexx-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #d1d5db;
	transition: 0.4s;
	border-radius: 34px;
}

.lexx-toggle-slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

.lexx-toggle-switch input:checked + .lexx-toggle-slider {
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%);
}

.lexx-toggle-switch input:checked + .lexx-toggle-slider:before {
	transform: translateX(26px);
}

/* Pricing Cards */
.lexx-pricing-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.lexx-pricing-card {
	background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%) !important;
	border-radius: 24px;
	padding: 48px 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	overflow: hidden;
	border: 2px solid #f0f0f0;
}

.lexx-pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.lexx-pricing-card:hover::before {
	opacity: 1;
}

.lexx-pricing-card * {
	color: inherit;
}

.lexx-pricing-card h3,
.lexx-pricing-card p,
.lexx-pricing-card span {
	color: #494949 !important;
}

.lexx-pricing-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 20px 60px rgba(226, 80, 39, 0.15);
	border-color: var(--lexx-color-accent-orange);
}

.lexx-pricing-card-featured {
	background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%) !important;
	border: 3px solid var(--lexx-color-accent-orange);
	position: relative;
	transform: scale(1.05);
}

.lexx-pricing-card-featured::after {
	content: '⭐ MOST POPULAR';
	position: absolute;
	top: 40px;
	right: -40px;
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%);
	color: #ffffff;
	padding: 10px 50px;
	font-family: var(--lexx-font-poppins);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	transform: rotate(45deg);
	box-shadow: 0 4px 12px rgba(226, 80, 39, 0.4);
	text-align: center;
	line-height: 1;
}

.lexx-card-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 32px !important;
	color: #2d2d2d !important;
	margin: 0 !important;
	text-align: center;
	letter-spacing: -0.5px;
	text-transform: uppercase;
	background: linear-gradient(135deg, #2d2d2d 0%, #494949 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.lexx-card-price {
	text-align: center;
	margin: 8px 0 16px 0;
	padding: 24px 0;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(226, 80, 39, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
}

.lexx-price-amount {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 800 !important;
	font-size: 72px !important;
	background: linear-gradient(135deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1 !important;
	letter-spacing: -2px;
}

.lexx-price-period {
	font-family: var(--lexx-font-poppins);
	font-size: 20px;
	color: #6b7280 !important;
	font-weight: 500;
}

.lexx-card-billing {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 15px !important;
	text-align: center;
	color: #6b7280 !important;
	margin: 0 0 20px 0 !important;
	line-height: 1.8 !important;
	font-weight: 500;
}

.lexx-savings {
	font-size: 14px;
	color: var(--lexx-color-accent-orange) !important;
	font-weight: 600;
	display: inline-block;
	padding: 4px 12px;
	background: rgba(226, 80, 39, 0.1);
	border-radius: 20px;
	margin-top: 4px;
}

.lexx-card-description {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 15px !important;
	line-height: 1.8 !important;
	color: #4b5563 !important;
	text-align: center;
	margin: 0 !important;
	flex-grow: 1;
	padding: 20px 0;
	border-top: 2px solid #f0f0f0;
	border-bottom: 2px solid #f0f0f0;
}

.lexx-card-button {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	padding: 16px 36px !important;
	border-radius: 12px !important;
	text-decoration: none !important;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	display: block;
	cursor: pointer;
	border: 2px solid transparent;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 14px !important;
}

.lexx-card-button-primary {
	background: linear-gradient(135deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(226, 80, 39, 0.3);
	border: none !important;
}

.lexx-card-button-primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(226, 80, 39, 0.4);
}

.lexx-card-button-outline {
	background-color: transparent !important;
	color: var(--lexx-color-accent-orange) !important;
	border: 2px solid var(--lexx-color-accent-orange) !important;
	font-weight: 600 !important;
	display: none !important;
}

.lexx-card-button-outline:hover {
	background: linear-gradient(135deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	color: #ffffff !important;
	border-color: transparent !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(226, 80, 39, 0.3);
}

/* Edit Subscription Section */
.lexx-packages-subscription {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 80px 0;
}

.lexx-packages-subscription-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.lexx-subscription-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.lexx-subscription-title {
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 40px !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
	line-height: 1.2 !important;
}

.lexx-subscription-text {
	font-family: var(--lexx-font-poppins) !important;
	font-size: 18px !important;
	line-height: 1.6 !important;
	color: var(--lexx-color-text) !important;
	margin: 0 !important;
}

.lexx-subscription-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.lexx-subscription-img {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
	.lexx-packages-hero-container {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.lexx-packages-description {
		font-size: 16px !important;
	}

	.lexx-pricing-cards {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.lexx-pricing-card-featured {
		transform: scale(1) !important;
		margin-top: 20px;
	}
	
	.lexx-pricing-card-featured::after {
		top: 20px;
		right: -30px;
		padding: 8px 40px;
		font-size: 10px;
	}

	.lexx-packages-subscription-container {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.lexx-subscription-title {
		font-size: 32px !important;
	}
	
	.lexx-price-amount {
		font-size: 64px !important;
	}
}

@media (max-width: 640px) {
	.lexx-packages-hero {
		padding: 28px 0 36px;
		background: linear-gradient(180deg, #ffffff 0%, #fff7f0 100%);
	}

	.lexx-packages-hero-container {
		padding: 0 20px;
		gap: 20px;
	}

	/* Melhor hierarquia visual no mobile: texto primeiro, imagem depois */
	.lexx-packages-hero-content {
		order: 1;
		max-width: 38ch;
		margin: 0 auto;
	}

	.lexx-packages-hero-image {
		order: 2;
	}

	.lexx-hero-img {
		max-width: 240px;
		margin-top: 0;
		border-radius: 18px;
		/* Remove “fundo branco” da imagem fazendo o branco virar o background */
		mix-blend-mode: multiply;
		background: transparent;
		filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.12)) contrast(1.04) saturate(1.03);
	}

	.lexx-packages-title {
		font-size: 34px !important;
		margin-bottom: 12px !important;
	}

	.lexx-packages-description {
		font-size: 15px !important;
		line-height: 1.65 !important;
	}

	.lexx-packages-pricing {
		padding: 48px 0;
	}

	.lexx-packages-subscription {
		padding: 48px 0;
	}

	.lexx-pricing-toggle-wrapper {
		flex-direction: column;
		gap: 12px;
	}

	.lexx-toggle-label {
		font-size: 16px;
	}

	.lexx-pricing-card {
		padding: 32px 24px;
	}
	
	.lexx-card-title {
		font-size: 28px !important;
	}

	.lexx-price-amount {
		font-size: 56px !important;
	}
	
	.lexx-price-period {
		font-size: 18px;
	}
	
	.lexx-card-description {
		font-size: 14px !important;
		padding: 16px 0;
	}
	
	.lexx-pricing-card-featured::after {
		top: 15px;
		right: -35px;
		padding: 6px 35px;
		font-size: 9px;
		letter-spacing: 1px;
	}
}

/* ============================================
   ALL COURSES PAGE - LEXX THEME STYLING
   ============================================ */

/* Global fixes for all-courses page */
body.elementor-page-22278, body.lexx-live-learning-portal main#content {
	background: #ffffff;
	min-height: 100vh;
	font-family: var(--lexx-font-poppins), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.elementor-page-22278, body.lexx-live-learning-portal .page-content {
	padding: 0;
	max-width: 100%;
	overflow-x: hidden;
}

/* Elementor sections - LEXX theme */
body.elementor-page-22278, body.lexx-live-learning-portal .elementor-section,
body.lexx-live-learning-portal .lexx-llp-courses-band {
	font-family: var(--lexx-font-poppins), sans-serif;
}

/* Header section styling */
body.elementor-page-22278, body.lexx-live-learning-portal .elementor-element-000468e {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
	padding: 60px 20px !important;
	position: relative;
	overflow: hidden;
}

body.elementor-page-22278, body.lexx-live-learning-portal .elementor-element-000468e .elementor-heading-title {
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 700 !important;
	font-size: 2.5rem !important;
	color: #494949 !important;
	text-align: center !important;
	position: relative;
	z-index: 1;
	margin: 0 !important;
}

/* Main content section */
body.elementor-page-22278, body.lexx-live-learning-portal .elementor-element-0b60577 {
	background: #ffffff !important;
	padding: 40px 20px 80px !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .elementor-element-0b60577 .elementor-container {
	max-width: 1600px;
	margin: 0 auto;
}

/* LEXX Live Learning Portal — native template (no Elementor wrapper classes) */
body.lexx-live-learning-portal .lexx-llp-courses-band {
	padding: 40px 20px 80px !important;
	font-family: var(--lexx-font-poppins), sans-serif;
}
body.lexx-live-learning-portal .lexx-llp-courses-inner {
	max-width: 1600px;
	margin: 0 auto;
}
body.lexx-live-learning-portal .lexx-llp-courses-shortcode {
	font-family: var(--lexx-font-poppins), sans-serif;
}

/* Tabs styling - LEXX theme */
body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tabs {
	font-family: var(--lexx-font-poppins), sans-serif;
}

body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tabs-heading {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	border-bottom: 2px solid #e0e0e0;
	padding-bottom: 0;
}

body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tab-title {
	background: transparent !important;
	border: none !important;
	border-bottom: 3px solid transparent !important;
	padding: 15px 30px !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 600 !important;
	font-size: 1.1rem !important;
	color: #666666 !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	position: relative;
	bottom: -2px;
}

body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tab-title:hover {
	color: #494949 !important;
	border-bottom-color: #00acef !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tab-title[aria-selected="true"] {
	color: #494949 !important;
	border-bottom-color: #00acef !important;
	font-weight: 700 !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tab-title-text {
	font-family: var(--lexx-font-poppins), sans-serif !important;
}

/* Tabs content */
body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tabs-content {
	padding: 30px 0;
}

/* Labs grid styling */
body.elementor-page-22278, body.lexx-live-learning-portal .labs-grid {
	font-family: var(--lexx-font-poppins), sans-serif;
}

body.elementor-page-22278, body.lexx-live-learning-portal .labs-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 25px;
	max-width: 1600px;
	margin: 0 auto;
}

body.elementor-page-22278, body.lexx-live-learning-portal .lab-item {
	background: #ffffff;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	font-family: var(--lexx-font-poppins), sans-serif;
}

body.elementor-page-22278, body.lexx-live-learning-portal .lab-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	border-color: #00acef;
}

body.elementor-page-22278, body.lexx-live-learning-portal .lab-header h3 {
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 700 !important;
	font-size: 1.3rem !important;
	color: #494949 !important;
	margin: 0 0 20px 0 !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .lab-access-btn {
	width: 100%;
	padding: 12px 24px;
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 8px !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .lab-access-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(226, 80, 39, 0.3);
}

/* Override Elementor default styles */
body.elementor-page-22278, body.lexx-live-learning-portal .elementor-widget-heading .elementor-heading-title {
	font-family: var(--lexx-font-poppins), sans-serif !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .elementor-widget-shortcode {
	font-family: var(--lexx-font-poppins), sans-serif;
}

body.elementor-page-22278, body.lexx-live-learning-portal .elementor-section-boxed > .elementor-container {
	max-width: 1600px;
}

/* Remove Elementor default gradients that don't match theme */
body.elementor-page-22278, body.lexx-live-learning-portal .elementor-element-000468e[data-settings*="gradient"] {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
}

/* Responsive design */
@media (max-width: 1024px) {
	body.elementor-page-22278, body.lexx-live-learning-portal .labs-container {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 20px;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tabs-heading {
		flex-wrap: wrap;
		gap: 10px;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tab-title {
		padding: 12px 20px !important;
		font-size: 1rem !important;
	}
}

@media (max-width: 768px) {
	body.elementor-page-22278, body.lexx-live-learning-portal .elementor-element-000468e {
		padding: 40px 20px !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .elementor-element-000468e .elementor-heading-title {
		font-size: 2rem !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .elementor-element-0b60577 {
		padding: 30px 15px 60px !important;
	}

	body.lexx-live-learning-portal .lexx-llp-courses-band {
		padding: 30px 15px 60px !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .labs-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tabs-heading {
		flex-direction: column;
		gap: 0;
		border-bottom: none;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tab-title {
		width: 100% !important;
		text-align: left !important;
		border-bottom: 1px solid #e0e0e0 !important;
		border-radius: 0 !important;
		padding: 15px 20px !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .e-n-tab-title[aria-selected="true"] {
		border-bottom-color: #00acef !important;
		background: #f5f5f5 !important;
	}
}

@media (max-width: 480px) {
	body.elementor-page-22278, body.lexx-live-learning-portal .elementor-element-000468e .elementor-heading-title {
		font-size: 1.75rem !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .lab-item {
		padding: 20px;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .lab-header h3 {
		font-size: 1.1rem !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .lab-access-btn {
		padding: 10px 20px;
		font-size: 0.9rem !important;
	}
}

/* ===== LEARNDASH COURSE CARDS - LEXX THEME STYLING ===== */
/* Override default LearnDash styles with LEXX theme styling */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items.row,
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items {
	font-family: var(--lexx-font-poppins), sans-serif !important;
	margin: 0 -15px !important;
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: stretch !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid,
body.elementor-page-22278, body.lexx-live-learning-portal .ld_course_grid.col-sm-8.col-md-4 {
	padding: 0 15px !important;
	margin-bottom: 30px !important;
	width: 100% !important;
	flex: 0 0 100% !important;
	max-width: 100% !important;
	display: flex !important;
	flex-direction: column !important;
	align-self: stretch !important;
}

@media (min-width: 600px) {
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid,
	body.elementor-page-22278, body.lexx-live-learning-portal .ld_course_grid.col-sm-8.col-md-4 {
		flex: 0 0 50% !important;
		max-width: 50% !important;
		width: 50% !important;
	}
}

@media (min-width: 1200px) {
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid,
	body.elementor-page-22278, body.lexx-live-learning-portal .ld_course_grid.col-sm-8.col-md-4 {
		flex: 0 0 33.333% !important;
		max-width: 33.333% !important;
		width: 33.333% !important;
	}
}

/* Course Card Container — fill row height (match siblings in same flex line) */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course {
	background: #ffffff !important;
	border: 1px solid #e0e0e0 !important;
	border-radius: 12px !important;
	padding: 0 !important;
	margin: 0 !important;
	flex: 1 1 auto !important;
	min-height: 0 !important;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
	transition: all 0.3s ease !important;
	display: flex !important;
	flex-direction: column !important;
	overflow: hidden !important;
	position: relative !important;
}

/* LearnDash legacy grid: title + excerpt + CTA live inside .caption */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course .caption {
	flex: 1 1 auto !important;
	display: flex !important;
	flex-direction: column !important;
	min-height: 0 !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course > a,
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course > .ld_course_grid_video_embed {
	flex-shrink: 0 !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
	border-color: #00acef !important;
}

/* Course Image */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course img {
	border-radius: 12px 12px 0 0 !important;
	display: block !important;
	box-shadow: none !important;
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  height: 170px !important;
  object-fit: contain !important;
  margin-top: 20px !important;
}

/* Course Content Wrapper */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course .entry-content {
	padding: 20px !important;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Course Title */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .entry-title {
	color: #494949 !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 700 !important;
	font-size: 1.3rem !important;
	margin: 0 0 15px 0 !important;
	line-height: 1.3 !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .entry-title a {
	color: #494949 !important;
	text-decoration: none !important;
	transition: color 0.2s ease !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .entry-title a:hover {
	color: #00acef !important;
}

/* Course Description/Excerpt */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .entry-content p,
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .entry-content .course-excerpt {
	color: #666666 !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-size: 0.95rem !important;
	line-height: 1.5 !important;
	margin: 0 0 15px 0 !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
}

/* Course Progress/Ribbon */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course .ribbon {
	background: #00acef !important;
	color: #ffffff !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 600 !important;
	font-size: 0.75rem !important;	
	padding: 4px 12px !important;
	border-radius: 12px !important;
	position: absolute !important;
	top: 15px !important;
	right: 200 !important;
	z-index: 2 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course .ribbon.enrolled {
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course .ribbon:before {
	display: none !important;
}

/* Course Button */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld_course_grid_button {
	position: static !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 20px 20px 20px !important;
	margin-top: auto !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld_course_grid_button a,
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .btn,
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .btn-primary {
	width: 100% !important;
	padding: 12px 24px !important;
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 8px !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	text-decoration: none !important;
	text-align: center !important;
	display: block !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	box-shadow: none !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld_course_grid_button a:hover,
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .btn:hover,
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .btn-primary:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(226, 80, 39, 0.3) !important;
	color: #ffffff !important;
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld_course_grid_button a:focus,
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .btn:focus,
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .btn-primary:focus {
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(0, 162, 227, 0.1) !important;
}

/* Course Video Embed */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld_course_grid_video_embed {
	background: transparent !important;
	padding: 0 !important;
	width: 100% !important;
	border-radius: 12px 12px 0 0 !important;
	overflow: hidden !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld_course_grid_video_embed > * {
	width: 100% !important;
	height: 180px !important;
	object-fit: cover !important;
}

/* Course Progress Bar */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .course_progress,
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid dd.course_progress {
	margin: 15px 0 0 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld-progress-bar {
	background: #f5f5f5 !important;
	border-radius: 10px !important;
	height: 8px !important;
	overflow: hidden !important;
}

body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld-progress-bar-percentage {
	background: #00acef !important;
	height: 100% !important;
	border-radius: 10px !important;
	transition: width 0.3s ease !important;
}

/* Hide default progress steps */
body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld-progress-steps {
	display: none !important;
}

/* Responsive adjustments for course cards */
@media (max-width: 768px) {
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid {
		width: 100% !important;
		margin-bottom: 25px;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course img,
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld_course_grid_video_embed > * {
		height: 160px !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .entry-title {
		font-size: 1.1rem !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .entry-content {
		padding: 15px !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld_course_grid_button {
		padding: 0 15px 15px 15px !important;
	}
}

@media (max-width: 480px) {
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .thumbnail.course img,
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld_course_grid_video_embed > * {
		height: 140px !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .entry-title {
		font-size: 1rem !important;
	}
	
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .ld_course_grid_button a,
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .btn,
	body.elementor-page-22278, body.lexx-live-learning-portal .ld-course-list-items .ld_course_grid .btn-primary {
		padding: 10px 20px !important;
		font-size: 0.9rem !important;
	}
}

/* LEXX Live Learning Portal — pagination (same visual language as /our-courses) */
body.lexx-live-learning-portal .lexx-llp-pagination,
body.lexx-attendance-history .lexx-llp-pagination {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #e0e0e0;
}

body.lexx-live-learning-portal .lexx-llp-pagination .cp-pagination-content,
body.lexx-attendance-history .lexx-llp-pagination .cp-pagination-content {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

body.lexx-live-learning-portal .lexx-llp-pagination .cp-page-numbers,
body.lexx-attendance-history .lexx-llp-pagination .cp-page-numbers {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

body.lexx-live-learning-portal .lexx-llp-pagination .cp-page-numbers > span:first-child,
body.lexx-attendance-history .lexx-llp-pagination .cp-page-numbers > span:first-child {
	color: #666666;
	font-size: 0.9rem;
	margin-right: 10px;
	font-family: var(--lexx-font-poppins), sans-serif;
}

body.lexx-live-learning-portal .lexx-llp-pagination .cp-page-btn,
body.lexx-attendance-history .lexx-llp-pagination .cp-page-btn {
	background: #ffffff !important;
	color: #494949 !important;
	border: 2px solid #e0e0e0 !important;
	padding: 8px 12px !important;
	border-radius: 6px !important;
	font-size: 0.9rem !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	min-width: 40px !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	text-decoration: none !important;
	display: inline-block !important;
	box-sizing: border-box !important;
	text-align: center !important;
}

body.lexx-live-learning-portal .lexx-llp-pagination .cp-page-btn:hover,
body.lexx-attendance-history .lexx-llp-pagination .cp-page-btn:hover {
	background: #f5f5f5 !important;
	border-color: #00acef !important;
}

body.lexx-live-learning-portal .lexx-llp-pagination .cp-page-btn.active,
body.lexx-attendance-history .lexx-llp-pagination .cp-page-btn.active {
	background: #00acef !important;
	border-color: #00acef !important;
	color: #ffffff !important;
}

body.lexx-live-learning-portal .lexx-llp-pagination .cp-page-btn.ellipsis,
body.lexx-attendance-history .lexx-llp-pagination .cp-page-btn.ellipsis {
	background: transparent !important;
	border: none !important;
	cursor: default !important;
	color: #999999 !important;
}

body.lexx-live-learning-portal .lexx-llp-pagination .cp-page-btn.ellipsis:hover,
body.lexx-attendance-history .lexx-llp-pagination .cp-page-btn.ellipsis:hover {
	background: transparent !important;
	border: none !important;
}

body.lexx-live-learning-portal .lexx-llp-course-grid.lexx-llp--loading {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

/* ============================================
   IN PROGRESS PAGE - LEXX THEME STYLING
   ============================================ */

/* Global fixes for in-progress page */
body.elementor-page-22274 main#content {
	background: #ffffff;
	min-height: 100vh;
	font-family: var(--lexx-font-poppins), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.elementor-page-22274 .page-content {
	padding: 0;
	max-width: 100%;
	overflow-x: hidden;
}

/* Elementor sections - LEXX theme */
body.elementor-page-22274 .elementor-section {
	font-family: var(--lexx-font-poppins), sans-serif;
}

/* Header section styling */
body.elementor-page-22274 .elementor-element-65886f1 {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
	padding: 60px 20px !important;
	position: relative;
	overflow: hidden;
}

body.elementor-page-22274 .elementor-element-65886f1 .elementor-heading-title {
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 700 !important;
	font-size: 2.5rem !important;
	color: #494949 !important;
	text-align: center !important;
	position: relative;
	z-index: 1;
	margin: 0 !important;
}

/* Main content section */
body.elementor-page-22274 .elementor-element-8c1e80d {
	background: #ffffff !important;
	padding: 40px 20px 80px !important;
}

body.elementor-page-22274 .elementor-element-8c1e80d .elementor-container {
	max-width: 1600px;
	margin: 0 auto;
}

/* Override Elementor default styles */
body.elementor-page-22274 .elementor-widget-heading .elementor-heading-title {
	font-family: var(--lexx-font-poppins), sans-serif !important;
}

body.elementor-page-22274 .elementor-widget-shortcode {
	font-family: var(--lexx-font-poppins), sans-serif;
}

body.elementor-page-22274 .elementor-section-boxed > .elementor-container {
	max-width: 1600px;
}

/* Remove Elementor default gradients that don't match theme */
body.elementor-page-22274 .elementor-element-65886f1[data-settings*="gradient"] {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
}

/* ===== LEARNDASH COURSE CARDS - LEXX THEME STYLING (IN PROGRESS PAGE) ===== */
/* Override default LearnDash styles with LEXX theme styling */
body.elementor-page-22274 .ld-course-list-items.row,
body.elementor-page-22274 .ld-course-list-items {
	font-family: var(--lexx-font-poppins), sans-serif !important;
	margin: 0 -15px !important;
	display: flex !important;
	flex-wrap: wrap !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid,
body.elementor-page-22274 .ld_course_grid.col-sm-8.col-md-4 {
	padding: 0 15px !important;
	margin-bottom: 30px !important;
	width: 100% !important;
	flex: 0 0 100% !important;
	max-width: 100% !important;
}

@media (min-width: 600px) {
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid,
	body.elementor-page-22274 .ld_course_grid.col-sm-8.col-md-4 {
		flex: 0 0 50% !important;
		max-width: 50% !important;
		width: 50% !important;
	}
}

@media (min-width: 1200px) {
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid,
	body.elementor-page-22274 .ld_course_grid.col-sm-8.col-md-4 {
		flex: 0 0 33.333% !important;
		max-width: 33.333% !important;
		width: 33.333% !important;
	}
}

/* Course Card Container */
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .thumbnail.course {
	background: #ffffff !important;
	border: 1px solid #e0e0e0 !important;
	border-radius: 12px !important;
	padding: 0 !important;
	margin: 0 !important;
	height: auto !important;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
	transition: all 0.3s ease !important;
	display: flex !important;
	flex-direction: column !important;
	overflow: hidden !important;
	position: relative !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .thumbnail.course:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
	border-color: #00acef !important;
}

/* Course Image */
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .thumbnail.course img {
	width: 100% !important;
	height: 180px !important;
	object-fit: cover !important;
	border-radius: 12px 12px 0 0 !important;
	display: block !important;
	margin: 0 !important;
	box-shadow: none !important;
}

/* Course Content Wrapper */
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .thumbnail.course .entry-content {
	padding: 20px !important;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Course Title */
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .entry-title {
	color: #494949 !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 700 !important;
	font-size: 1.3rem !important;
	margin: 0 0 15px 0 !important;
	line-height: 1.3 !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .entry-title a {
	color: #494949 !important;
	text-decoration: none !important;
	transition: color 0.2s ease !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .entry-title a:hover {
	color: #00acef !important;
}

/* Course Description/Excerpt */
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .entry-content p,
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .entry-content .course-excerpt {
	color: #666666 !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-size: 0.95rem !important;
	line-height: 1.5 !important;
	margin: 0 0 15px 0 !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
}

/* Course Progress/Ribbon */
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .thumbnail.course .ribbon {
	background: #00acef !important;
	color: #ffffff !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 600 !important;
	font-size: 0.75rem !important;
	padding: 4px 12px !important;
	border-radius: 12px !important;
	position: absolute !important;
	top: 15px !important;
	right: 200px !important;
	z-index: 2 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .thumbnail.course .ribbon.enrolled {
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .thumbnail.course .ribbon:before {
	display: none !important;
}

/* Course Button */
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld_course_grid_button {
	position: static !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 20px 20px 20px !important;
	margin-top: auto !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld_course_grid_button a,
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .btn,
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .btn-primary {
	width: 100% !important;
	padding: 12px 24px !important;
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 8px !important;
	font-family: var(--lexx-font-poppins), sans-serif !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	text-decoration: none !important;
	text-align: center !important;
	display: block !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	box-shadow: none !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld_course_grid_button a:hover,
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .btn:hover,
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .btn-primary:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(226, 80, 39, 0.3) !important;
	color: #ffffff !important;
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld_course_grid_button a:focus,
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .btn:focus,
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .btn-primary:focus {
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(0, 162, 227, 0.1) !important;
}

/* Course Video Embed */
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld_course_grid_video_embed {
	background: transparent !important;
	padding: 0 !important;
	width: 100% !important;
	border-radius: 12px 12px 0 0 !important;
	overflow: hidden !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld_course_grid_video_embed > * {
	width: 100% !important;
	height: 180px !important;
	object-fit: cover !important;
}

/* Course Progress Bar */
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .course_progress,
body.elementor-page-22274 .ld-course-list-items .ld_course_grid dd.course_progress {
	margin: 15px 0 0 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld-progress-bar {
	background: #f5f5f5 !important;
	border-radius: 10px !important;
	height: 8px !important;
	overflow: hidden !important;
}

body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld-progress-bar-percentage {
	background: #00acef !important;
	height: 100% !important;
	border-radius: 10px !important;
	transition: width 0.3s ease !important;
}

/* Hide default progress steps */
body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld-progress-steps {
	display: none !important;
}

/* Responsive adjustments for in-progress page */
@media (max-width: 768px) {
	body.elementor-page-22274 .elementor-element-65886f1 {
		padding: 40px 20px !important;
	}
	
	body.elementor-page-22274 .elementor-element-65886f1 .elementor-heading-title {
		font-size: 2rem !important;
	}
	
	body.elementor-page-22274 .elementor-element-8c1e80d {
		padding: 30px 15px 60px !important;
	}
	
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid {
		width: 100% !important;
		margin-bottom: 25px;
	}
	
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .thumbnail.course img,
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld_course_grid_video_embed > * {
		height: 160px !important;
	}
	
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .entry-title {
		font-size: 1.1rem !important;
	}
	
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .entry-content {
		padding: 15px !important;
	}
	
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld_course_grid_button {
		padding: 0 15px 15px 15px !important;
	}
}

@media (max-width: 480px) {
	body.elementor-page-22274 .elementor-element-65886f1 .elementor-heading-title {
		font-size: 1.75rem !important;
	}
	
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .thumbnail.course img,
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld_course_grid_video_embed > * {
		height: 140px !important;
	}
	
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .entry-title {
		font-size: 1rem !important;
	}
	
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .ld_course_grid_button a,
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .btn,
	body.elementor-page-22274 .ld-course-list-items .ld_course_grid .btn-primary {
		padding: 10px 20px !important;
		font-size: 0.9rem !important;
	}
}

/* ============================================
   LEARNDASH FOCUS MODE - LEXX STYLING
   OVERRIDE ALL CP-MAIN-BODY DARK STYLES
   ============================================ */

/* Override LearnDash brand secondary (yellow) with Lexx orange */
.learndash-wrapper,
body.ld-in-focus-mode .learndash-wrapper,
body.cp-main-body .learndash-wrapper {
	--ld-color-brand-secondary: var(--lexx-color-accent-orange);
	--ld-color-button-bg: var(--lexx-color-accent-orange);
	--ld-color-button-bg-hover: #c94520;
}

/* Main Focus Mode Container - Light Background */
body.ld-in-focus-mode,
body.cp-main-body.ld-in-focus-mode,
.learndash-wrapper .ld-focus,
body.cp-main-body .learndash-wrapper .ld-focus {
	background: #f8f9fa !important;
	font-family: var(--lexx-font-poppins) !important;
}

/* Focus Mode Main Content Area - OVERRIDE DARK GRADIENT */
.learndash-wrapper .ld-focus .ld-focus-main,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-main,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-main {
	background: #f8f9fa !important;
	background-color: #f8f9fa !important;
	background-image: none !important;
}

.learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content {
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
	color: var(--lexx-color-text) !important;
	max-width: 1200px !important;
	padding: 40px !important;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	margin: 30px auto;
}

/* Override transparent background */
body.cp-main-body.ld-in-focus-mode .ld-focus-content .learndash-wrapper {
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
}

/* Focus Mode Title - OVERRIDE WHITE COLOR */
.learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content h1,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content h1,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content h1 {
	color: #1a1f36 !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 2.5rem !important;
	margin-bottom: 30px !important;
}

/* Focus Mode Content Text */
.learndash-wrapper .ld-focus .ld-focus-content p,
.learndash-wrapper .ld-focus .ld-focus-content li,
.learndash-wrapper .ld-focus .ld-focus-content div {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	line-height: 1.8 !important;
}

.learndash-wrapper .ld-focus .ld-focus-content h2,
.learndash-wrapper .ld-focus .ld-focus-content h3,
.learndash-wrapper .ld-focus .ld-focus-content h4 {
	color: #0066cc !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	margin-top: 30px !important;
	margin-bottom: 15px !important;
}

/* Focus Mode Sidebar - Light Theme - OVERRIDE DARK BACKGROUND */
.learndash-wrapper .ld-focus .ld-focus-sidebar,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading {
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
	border-right: 1px solid #e0e0e0 !important;
}

/* Exclude PTS Portal custom template */
body:not(.pts-course-class-lesson-body) .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading,
body.cp-main-body:not(.pts-course-class-lesson-body) .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading,
body:not(.pts-course-class-lesson-body).cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading {
	background: #f8f9fa !important;
	background-color: #f8f9fa !important;
	background-image: none !important;
	color: #1a1f36 !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	border-bottom: 2px solid #0066cc !important;
}

body:not(.pts-course-class-lesson-body) .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading h3,
body.cp-main-body:not(.pts-course-class-lesson-body) .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading h3,
body:not(.pts-course-class-lesson-body).cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation-heading h3 {
	color: #1a1f36 !important;
	font-family: var(--lexx-font-poppins) !important;
}

/* Sidebar Trigger Button */
.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-focus-sidebar-trigger {
	background: #0066cc !important;
	color: #ffffff !important;
}

.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-focus-sidebar-trigger:hover {
	background: #0052a3 !important;
}

/* Lesson Items in Sidebar - OVERRIDE DARK GRADIENT */
.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item {
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
	border-bottom: 1px solid #e0e0e0 !important;
	transition: background 0.3s ease;
}

.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item:hover,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item:hover,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item:hover {
	background: #f8f9fa !important;
	background-color: #f8f9fa !important;
	background-image: none !important;
}

.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item.ld-is-current-lesson,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item.ld-is-current-lesson,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-lesson-item.ld-is-current-lesson,
body.cp-main-body .learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson,
.cp-main-body .learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson {
	background: #e3f2fd !important;
	background-color: #e3f2fd !important;
	background-image: none !important;
	border-left: 4px solid #0066cc !important;
	border-bottom: 1px solid #e0e0e0 !important;
}

.learndash-wrapper .ld-course-navigation .ld-lesson-item .ld-lesson-title,
body.cp-main-body .learndash-wrapper .ld-course-navigation .ld-lesson-item .ld-lesson-title,
.cp-main-body .learndash-wrapper .ld-course-navigation .ld-lesson-item .ld-lesson-title,
body.cp-main-body .learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson .ld-lesson-title,
.cp-main-body .learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson .ld-lesson-title {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 500 !important;
}

.learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson .ld-lesson-title,
body.cp-main-body .learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson .ld-lesson-title,
.cp-main-body .learndash-wrapper .ld-course-navigation .ld-lesson-item.ld-is-current-lesson .ld-lesson-title {
	color: #0066cc !important;
	font-weight: 600 !important;
}

/* Topic List - UNIFORM BACKGROUND (no boxes effect) */
.learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-topic-list.ld-table-list,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-topic-list.ld-table-list,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-sidebar .ld-course-navigation .ld-topic-list.ld-table-list,
.learndash-wrapper .ld-topic-list,
body.cp-main-body .learndash-wrapper .ld-topic-list,
.cp-main-body .learndash-wrapper .ld-topic-list {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	border: none !important;
}

.learndash-wrapper .ld-topic-list .ld-table-list-item,
body.cp-main-body .learndash-wrapper .ld-topic-list .ld-table-list-item,
.cp-main-body .learndash-wrapper .ld-topic-list .ld-table-list-item,
.learndash-wrapper .ld-table-list-item,
body.cp-main-body .learndash-wrapper .ld-table-list-item,
.cp-main-body .learndash-wrapper .ld-table-list-item {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	border: none !important;
	border-bottom: none !important;
	border-top: none !important;
	border-left: none !important;
	border-right: none !important;
}

.learndash-wrapper .ld-topic-list .ld-table-list-item:hover,
body.cp-main-body .learndash-wrapper .ld-topic-list .ld-table-list-item:hover,
.cp-main-body .learndash-wrapper .ld-topic-list .ld-table-list-item:hover {
	background: rgba(0,102,204,0.05) !important;
	background-color: rgba(0,102,204,0.05) !important;
	background-image: none !important;
	border: none !important;
}

/* Remove borders from table list containers */
.learndash-wrapper .ld-table-list,
body.cp-main-body .learndash-wrapper .ld-table-list,
.cp-main-body .learndash-wrapper .ld-table-list {
	border: none !important;
	background: transparent !important;
}

.learndash-wrapper .ld-table-list-items,
body.cp-main-body .learndash-wrapper .ld-table-list-items,
.cp-main-body .learndash-wrapper .ld-table-list-items {
	border: none !important;
	background: transparent !important;
}

.learndash-wrapper .ld-topic-list .ld-table-list-item .ld-topic-title,
body.cp-main-body .learndash-wrapper .ld-topic-list .ld-table-list-item .ld-topic-title,
.cp-main-body .learndash-wrapper .ld-topic-list .ld-table-list-item .ld-topic-title {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
}

/* Status Icons - HIDE ALL (bolinhas) */
.learndash-wrapper .ld-course-navigation .ld-status-icon,
.learndash-wrapper .ld-status-icon,
body.cp-main-body .learndash-wrapper .ld-course-navigation .ld-status-icon,
.cp-main-body .learndash-wrapper .ld-course-navigation .ld-status-icon,
body.cp-main-body .learndash-wrapper .ld-status-icon,
.cp-main-body .learndash-wrapper .ld-status-icon,
.learndash-wrapper .ld-course-navigation .ld-status-icon.ld-status-complete,
body.cp-main-body .learndash-wrapper .ld-course-navigation .ld-status-icon.ld-status-complete,
.cp-main-body .learndash-wrapper .ld-course-navigation .ld-status-icon.ld-status-complete,
.learndash-wrapper .ld-course-navigation .ld-status-icon.ld-status-incomplete,
body.cp-main-body .learndash-wrapper .ld-course-navigation .ld-status-icon.ld-status-incomplete,
.cp-main-body .learndash-wrapper .ld-course-navigation .ld-status-icon.ld-status-incomplete,
body.cp-main-body .learndash-wrapper .ld-status-incomplete.ld-status-icon,
.cp-main-body .learndash-wrapper .ld-status-incomplete.ld-status-icon,
.learndash-wrapper .ld-course-navigation .ld-status-icon.ld-status-in-progress,
body.cp-main-body .learndash-wrapper .ld-course-navigation .ld-status-icon.ld-status-in-progress,
.cp-main-body .learndash-wrapper .ld-course-navigation .ld-status-icon.ld-status-in-progress {
	display: none !important;
}

/* Focus Mode Header - KEEP HIDDEN AS BEFORE */
.learndash-wrapper .ld-focus .ld-focus-header,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-header,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-header,
body.cp-main-body div.learndash-wrapper .ld-focus .ld-focus-header {
	background: #ffffff !important;
	background-color: #ffffff !important;
	background-image: none !important;
	border-bottom: 1px solid #e0e0e0 !important;
	display: none !important;
}

.learndash-wrapper .ld-focus .ld-focus-header .ld-focus-header-inner,
body.cp-main-body .learndash-wrapper .ld-focus .ld-focus-header .ld-focus-header-inner,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-header .ld-focus-header-inner {
	color: var(--lexx-color-text) !important;
}

/* Content Actions (inside header) - KEEP HIDDEN AS BEFORE */
body.cp-main-body div.learndash-wrapper .ld-focus .ld-focus-header .ld-content-actions,
.cp-main-body .learndash-wrapper .ld-focus .ld-focus-header .ld-content-actions,
body.cp-main-body .learndash-wrapper .ld-content-actions {
	display: none !important;
}

/* Content Actions (below content) - SHOW THESE */
.learndash-wrapper .ld-focus-content .ld-content-actions {
	display: flex !important;
}

/* Mark Complete Button + Lesson Nav (Previous/Next) - same gradient/style as page buttons */
.learndash-wrapper .ld-focus .ld-focus-content .ld-content-actions .ld-button {
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	background-color: transparent !important;
	color: #ffffff !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	text-decoration: none !important;
	border: none !important;
	padding: 16px 32px !important;
	border-radius: 14px !important;
	box-shadow: 0 4px 15px rgba(226, 80, 39, 0.3) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
}

.learndash-wrapper .ld-focus .ld-focus-content .ld-content-actions .ld-button:hover {
	transform: translateY(-2px) scale(1.01) !important;
	box-shadow: 0 8px 25px rgba(226, 80, 39, 0.4) !important;
	color: #ffffff !important;
}

/* Override LearnDash Customizer (same selectors, load after = wins) */
.learndash-wrapper .ld-content-action:first-child .ld-button:not(.ld-button-reverse):not(.learndash-link-previous-incomplete):not(.ld-button-transparent),
.learndash-wrapper .ld-content-action:last-child .ld-button:not(.ld-button-reverse):not(.learndash-link-previous-incomplete):not(.ld-button-transparent) {
	background: linear-gradient(90deg, var(--lexx-color-button-gradient-start) 0%, var(--lexx-color-button-gradient-end) 100%) !important;
	background-color: transparent !important;
	color: #fff !important;
	padding: 16px 32px !important;
	border-radius: 14px !important;
	box-shadow: 0 4px 15px rgba(226, 80, 39, 0.3) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
}

.learndash-wrapper .ld-content-action:first-child .ld-button:not(.ld-button-reverse):not(.learndash-link-previous-incomplete):not(.ld-button-transparent):hover,
.learndash-wrapper .ld-content-action:last-child .ld-button:not(.ld-button-reverse):not(.learndash-link-previous-incomplete):not(.ld-button-transparent):hover {
	transform: translateY(-2px) scale(1.01) !important;
	box-shadow: 0 8px 25px rgba(226, 80, 39, 0.4) !important;
}

/* Expand Button */
.learndash-wrapper .ld-expand-button {
	color: #0066cc !important;
	font-family: var(--lexx-font-poppins) !important;
}

.learndash-wrapper .ld-expand-button .ld-icon {
	background: #0066cc !important;
}

/* Progress Bar */
.learndash-wrapper .ld-progress {
	background: #e0e0e0 !important;
}

.learndash-wrapper .ld-progress .ld-progress-bar {
	background: linear-gradient(90deg, #0066cc 0%, #0052a3 100%) !important;
}

/* Video Container */
.learndash-wrapper .ld-focus .ld-focus-content .ld-video {
	border-radius: 8px !important;
	overflow: hidden !important;
	margin-bottom: 30px !important;
}

/* Comments Section */
.learndash-wrapper .ld-focus-comments {
	background: #ffffff !important;
	border-top: 1px solid #e0e0e0 !important;
	padding: 30px 40px !important;
	margin-top: 40px !important;
}

.learndash-wrapper .ld-focus-comments__heading {
	color: #1a1f36 !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
}

.learndash-wrapper .ld-focus-comment {
	border: 1px solid #e0e0e0 !important;
	background: #f8f9fa !important;
	border-radius: 8px !important;
	padding: 20px !important;
	margin-bottom: 20px !important;
}

.learndash-wrapper .ld-focus-comment .comment-author {
	color: #1a1f36 !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
}

.learndash-wrapper .ld-focus-comment .comment-content {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
}

/* ============================================
   ADDITIONAL FOCUS MODE ELEMENTS
   ============================================ */

/* Course Overview Link & Modal */
/* Exclude PTS Portal custom template */
body:not(.pts-course-class-lesson-body) .learndash-wrapper .ld-course-navigation-heading h3 a {
	color: #1a1f36 !important;
	text-decoration: none !important;
	font-family: var(--lexx-font-poppins) !important;
}

body:not(.pts-course-class-lesson-body) .learndash-wrapper .ld-course-navigation-heading h3 a:hover {
	color: #0066cc !important;
}

.learndash-wrapper .ld-course-navigation-heading .overview-label {
	color: #0066cc !important;
	font-size: 0.85rem !important;
	font-weight: 500 !important;
}

/* Lesson Item Preview Heading Links */
.learndash-wrapper .ld-lesson-item-preview-heading,
.learndash-wrapper .ld-table-list-item-preview {
	color: var(--lexx-color-text) !important;
	text-decoration: none !important;
	font-family: var(--lexx-font-poppins) !important;
}

.learndash-wrapper .ld-lesson-item-preview-heading:hover,
.learndash-wrapper .ld-table-list-item-preview:hover {
	color: #0066cc !important;
}

/* Current Topic Styling */
.learndash-wrapper .ld-table-list-item .ld-topic-row.ld-is-current-item {
	background: #e3f2fd !important;
	border-left: 3px solid #0066cc !important;
}

.learndash-wrapper .ld-table-list-item .ld-topic-row.ld-is-current-item .ld-topic-title {
	color: #0066cc !important;
	font-weight: 600 !important;
}

/* Focus Header Elements */
.learndash-wrapper .ld-focus-header .ld-mobile-nav {
	background: transparent !important;
}

.learndash-wrapper .ld-focus-header .ld-trigger-mobile-nav span {
	background: var(--lexx-color-text) !important;
}

.learndash-wrapper .ld-focus-header .ld-brand-logo {
	display: flex !important;
	align-items: center !important;
}

.learndash-wrapper .ld-focus-header .ld-brand-logo img {
	max-height: 40px !important;
}

/* Progress in Header */
.learndash-wrapper .ld-focus-header .ld-progress {
	background: transparent !important;
}

.learndash-wrapper .ld-focus-header .ld-progress-heading {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
}

.learndash-wrapper .ld-focus-header .ld-progress-percentage,
.learndash-wrapper .ld-focus-header .ld-progress-steps {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 500 !important;
}

.learndash-wrapper .ld-focus-header .ld-progress-bar {
	background: #e0e0e0 !important;
	border-radius: 4px !important;
}

.learndash-wrapper .ld-focus-header .ld-progress-bar-percentage {
	background: linear-gradient(90deg, #0066cc 0%, #0052a3 100%) !important;
}

/* Content Actions in Header */
.learndash-wrapper .ld-focus-header .ld-content-actions {
	display: flex !important;
	gap: 10px !important;
}

.learndash-wrapper .ld-focus-header .ld-content-actions .ld-button,
.learndash-wrapper .ld-content-actions .ld-button {
	background: linear-gradient(135deg, var(--lexx-color-accent-orange) 0%, #c94520 100%) !important;
	color: #ffffff !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	border: none !important;
	padding: 10px 20px !important;
	border-radius: 6px !important;
	transition: all 0.3s ease !important;
	text-decoration: none !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
}

.learndash-wrapper .ld-focus-header .ld-content-actions .ld-button-transparent,
.learndash-wrapper .ld-content-actions .ld-button-transparent {
	background: transparent !important;
	color: var(--lexx-color-text) !important;
	border: 2px solid #e0e0e0 !important;
}

.learndash-wrapper .ld-focus-header .ld-content-actions .ld-button:hover,
.learndash-wrapper .ld-content-actions .ld-button:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(226,80,39,0.3) !important;
}

.learndash-wrapper .ld-focus-header .ld-content-actions .ld-button-transparent:hover,
.learndash-wrapper .ld-content-actions .ld-button-transparent:hover {
	background: #f8f9fa !important;
	border-color: var(--lexx-color-accent-orange) !important;
	color: var(--lexx-color-accent-orange) !important;
}

/* Mark Complete Form */
.learndash-wrapper .sfwd-mark-complete,
.learndash-wrapper form.sfwd-mark-complete {
	display: inline-block !important;
	margin: 0 !important;
}

.learndash-wrapper .learndash_mark_complete_button,
.learndash-wrapper input[type="submit"].learndash_mark_complete_button {
	background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%) !important;
	color: #ffffff !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	border: none !important;
	padding: 10px 24px !important;
	border-radius: 6px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
}

.learndash-wrapper .learndash_mark_complete_button:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(76,175,80,0.4) !important;
}

/* User Menu */
.learndash-wrapper .ld-focus-header .ld-user-menu {
	position: relative !important;
}

.learndash-wrapper .ld-focus-header .ld-user-welcome-text {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-size: 0.9rem !important;
}

.learndash-wrapper .ld-focus-header .ld-profile-avatar img {
	border-radius: 50% !important;
	border: 2px solid #e0e0e0 !important;
}

.learndash-wrapper .ld-focus-header .ld-user-menu-items {
	background: #ffffff !important;
	border: 1px solid #e0e0e0 !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.learndash-wrapper .ld-focus-header .ld-user-menu-items a {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	text-decoration: none !important;
	padding: 10px 20px !important;
	display: block !important;
	transition: background 0.3s ease !important;
}

.learndash-wrapper .ld-focus-header .ld-user-menu-items a:hover {
	background: #f8f9fa !important;
	color: #0066cc !important;
}

/* Breadcrumbs */
.learndash-wrapper .ld-breadcrumbs {
	background: transparent !important;
	padding: 0 !important;
	margin-bottom: 20px !important;
}

.learndash-wrapper .ld-breadcrumbs-segments {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	align-items: center !important;
}

.learndash-wrapper .ld-breadcrumbs-segments span {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-size: 0.9rem !important;
}

.learndash-wrapper .ld-breadcrumbs-segments a {
	color: #0066cc !important;
	text-decoration: none !important;
	font-family: var(--lexx-font-poppins) !important;
	transition: opacity 0.3s ease !important;
}

.learndash-wrapper .ld-breadcrumbs-segments a:hover {
	opacity: 0.8 !important;
}

/* Status Badge in Breadcrumbs */
.learndash-wrapper .ld-breadcrumbs .ld-status {
	padding: 6px 14px !important;
	border-radius: 20px !important;
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	font-family: var(--lexx-font-poppins) !important;
	margin-left: auto !important;
}

.learndash-wrapper .ld-breadcrumbs .ld-status-progress {
	background: #ff9800 !important;
	color: #ffffff !important;
}

.learndash-wrapper .ld-breadcrumbs .ld-status-complete {
	background: #4caf50 !important;
	color: #ffffff !important;
}

/* Topic Status Section */
.learndash-wrapper .ld-topic-status {
	background: #f8f9fa !important;
	padding: 20px !important;
	border-radius: 8px !important;
	margin-bottom: 30px !important;
}

.learndash-wrapper .ld-topic-status .ld-progress {
	margin-top: 15px !important;
}

.learndash-wrapper .ld-topic-status .ld-progress-label {
	color: #1a1f36 !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	font-size: 0.95rem !important;
}

.learndash-wrapper .ld-topic-status .ld-progress-stats {
	display: flex !important;
	gap: 20px !important;
	align-items: center !important;
}

/* Tabs */
.learndash-wrapper .ld-tabs {
	background: transparent !important;
}

.learndash-wrapper .ld-tabs-content {
	background: transparent !important;
}

.learndash-wrapper .ld-tab-content {
	background: transparent !important;
}

/* Video Container */
.learndash-wrapper .ld-video {
	border-radius: 12px !important;
	overflow: hidden !important;
	margin-bottom: 30px !important;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.learndash-wrapper .ld-video iframe {
	width: 100% !important;
	aspect-ratio: 16/9 !important;
	border: none !important;
}

/* Back to Lesson Link */
.learndash-wrapper .ld-course-step-back {
	color: #0066cc !important;
	font-family: var(--lexx-font-poppins) !important;
	text-decoration: none !important;
	font-size: 0.95rem !important;
	margin-left: 15px !important;
	transition: opacity 0.3s ease !important;
}

.learndash-wrapper .ld-course-step-back:hover {
	opacity: 0.8 !important;
	text-decoration: underline !important;
}

/* Loader Overlay */
#loader-overlay {
	background: rgba(255,255,255,0.95) !important;
	backdrop-filter: blur(5px) !important;
}

#loader {
	border: 4px solid #e0e0e0 !important;
	border-top: 4px solid #0066cc !important;
}

/* Icon Colors */
.learndash-wrapper .ld-icon {
	color: inherit !important;
}

.learndash-wrapper .ld-icon-arrow-left,
.learndash-wrapper .ld-icon-arrow-right {
	fill: currentColor !important;
}

/* Primary Color Override */
.learndash-wrapper .ld-primary-color {
	color: #0066cc !important;
}

.learndash-wrapper .ld-primary-background {
	background: #0066cc !important;
}

.learndash-wrapper .ld-primary-color-hover:hover {
	color: #0052a3 !important;
}

/* Secondary Color Override */
.learndash-wrapper .ld-secondary-color {
	color: #0066cc !important;
}

.learndash-wrapper .ld-secondary-background {
	background: #0066cc !important;
}

/* Focus Sidebar Wrapper */
.learndash-wrapper .ld-focus-sidebar-wrapper {
	background: #ffffff !important;
}

/* Lesson Navigation */
.learndash-wrapper .ld-lesson-navigation {
	background: #ffffff !important;
}

/* Expandable Content */
.learndash-wrapper .ld-expandable {
	transition: all 0.3s ease !important;
}

/* Table List */
.learndash-wrapper .ld-table-list {
	background: #ffffff !important;
	border-radius: 0 !important;
}

.learndash-wrapper .ld-table-list-items {
	background: #ffffff !important;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
	.learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content {
		padding: 20px !important;
		margin: 15px !important;
	}
	
	.learndash-wrapper .ld-focus .ld-focus-main .ld-focus-content h1 {
		font-size: 2rem !important;
	}
	
	.learndash-wrapper .ld-focus-comments {
		padding: 20px !important;
	}
	
	.learndash-wrapper .ld-focus-header {
		flex-wrap: wrap !important;
	}
	
	.learndash-wrapper .ld-content-actions {
		flex-direction: column !important;
		gap: 10px !important;
	}
	
	.learndash-wrapper .ld-breadcrumbs-segments {
		font-size: 0.85rem !important;
	}
	
	.learndash-wrapper .ld-topic-status {
		padding: 15px !important;
	}
}

/* ============================================
   WOOCOMMERCE ORDER RECEIVED / THANK YOU PAGE
   ============================================ */

/* Main container - limit width and center */
.woocommerce-order-received .woocommerce {
	max-width: 900px !important;
	margin: 0 auto !important;
	padding: 40px 24px 60px !important;
}

/* Thank you message - hero style */
.woocommerce-order-received .woocommerce-thankyou-order-received,
.woocommerce-order-received .woocommerce-notice--success {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-size: 1.5rem !important;
	font-weight: 600 !important;
	margin-bottom: 24px !important;
	padding-bottom: 16px !important;
	border-bottom: 2px solid #f0f0f0 !important;
}

/* Order overview section - flex layout */
.woocommerce-order-received .woocommerce-order-overview,
.woocommerce-order-received ul.woocommerce-order-overview {
	display: flex !important;
	flex-wrap: nowrap !important;
	justify-content: stretch !important;
	background-color: #ffffff !important;
	padding: 0 !important;
	border-radius: 12px !important;
	margin-bottom: 32px !important;
	list-style: none !important;
	border: 1px solid #e8e8e8 !important;
	overflow: hidden !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.woocommerce-order-received .woocommerce-order-overview li,
.woocommerce-order-received ul.woocommerce-order-overview li {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	padding: 20px 16px !important;
	text-align: center !important;
	border-right: 1px solid #e8e8e8 !important;
	margin: 0 !important;
	float: none !important;
	flex: 1 !important;
	min-width: 0 !important;
}

.woocommerce-order-received .woocommerce-order-overview li:last-child,
.woocommerce-order-received ul.woocommerce-order-overview li:last-child {
	border-right: none !important;
}

.woocommerce-order-received .woocommerce-order-overview li strong,
.woocommerce-order-received ul.woocommerce-order-overview li strong {
	color: #888888 !important;
	display: block !important;
	font-size: 0.7rem !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	margin-bottom: 6px !important;
}

/* View subscription status message */
.woocommerce-order-received p,
.woocommerce-order-received .woocommerce p,
.woocommerce-order-received .woocommerce > p,
.woocommerce-order-received .woocommerce-notice,
.woocommerce-order-received .woocommerce-message {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-size: 0.95rem !important;
	margin-bottom: 32px !important;
}

.woocommerce-order-received p a,
.woocommerce-order-received .woocommerce p a,
.woocommerce-order-received .woocommerce > p a {
	color: var(--lexx-color-accent-blue) !important;
	text-decoration: underline !important;
}

/* Section titles */
.woocommerce-order-received h2,
.woocommerce-order-received .woocommerce-order-details h2,
.woocommerce-order-received .woocommerce-column__title {
	color: var(--lexx-color-accent-blue) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 1.3rem !important;
	margin: 0 0 16px 0 !important;
	padding-bottom: 12px !important;
	border-bottom: 2px solid var(--lexx-color-accent-blue) !important;
}

/* Order details and subscriptions wrapper - two column layout */
.woocommerce-order-received .woocommerce-order-details {
	margin-bottom: 32px !important;
}

/* Tables styling */
.woocommerce-order-received .woocommerce-table,
.woocommerce-order-received .woocommerce-table--order-details,
.woocommerce-order-received table.shop_table {
	background-color: #ffffff !important;
	border: 1px solid #e8e8e8 !important;
	border-radius: 10px !important;
	overflow: hidden !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	width: 100% !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.woocommerce-order-received .woocommerce-table thead th,
.woocommerce-order-received .woocommerce-table--order-details thead th,
.woocommerce-order-received table.shop_table thead th {
	color: var(--lexx-color-text) !important;
	background-color: #f8f9fa !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	font-size: 0.85rem !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	padding: 14px 16px !important;
	border-bottom: 1px solid #e8e8e8 !important;
}

.woocommerce-order-received .woocommerce-table td,
.woocommerce-order-received .woocommerce-table--order-details td,
.woocommerce-order-received table.shop_table td {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	padding: 14px 16px !important;
	border-bottom: 1px solid #f0f0f0 !important;
	font-size: 0.95rem !important;
}

.woocommerce-order-received .woocommerce-table tbody tr:last-child td,
.woocommerce-order-received table.shop_table tbody tr:last-child td {
	border-bottom: none !important;
}

.woocommerce-order-received .woocommerce-table tfoot th,
.woocommerce-order-received .woocommerce-table--order-details tfoot th,
.woocommerce-order-received table.shop_table tfoot th {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 600 !important;
	padding: 12px 16px !important;
	background-color: #fafafa !important;
	border-top: 1px solid #e8e8e8 !important;
}

.woocommerce-order-received .woocommerce-table tfoot td,
.woocommerce-order-received .woocommerce-table--order-details tfoot td,
.woocommerce-order-received table.shop_table tfoot td {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	padding: 12px 16px !important;
	background-color: #fafafa !important;
	border-top: 1px solid #e8e8e8 !important;
}

/* Product links in order table */
.woocommerce-order-received .woocommerce-table a,
.woocommerce-order-received .woocommerce-table--order-details a,
.woocommerce-order-received table.shop_table a:not(.button) {
	color: var(--lexx-color-accent-blue) !important;
	text-decoration: none !important;
	font-weight: 500 !important;
}

.woocommerce-order-received .woocommerce-table a:hover,
.woocommerce-order-received table.shop_table a:not(.button):hover {
	text-decoration: underline !important;
}

/* Small text and meta info */
.woocommerce-order-received small,
.woocommerce-order-received .variation,
.woocommerce-order-received .wc-item-meta {
	color: #888888 !important;
	font-size: 0.85rem !important;
}

.woocommerce-order-received .wc-item-meta li {
	color: #888888 !important;
}

/* Customer details / Billing address section */
.woocommerce-order-received .woocommerce-customer-details {
	margin-top: 32px !important;
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 24px !important;
}

.woocommerce-order-received .woocommerce-column {
	background-color: #ffffff !important;
	border: 1px solid #e8e8e8 !important;
	border-radius: 10px !important;
	padding: 20px !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.woocommerce-order-received .woocommerce-customer-details address,
.woocommerce-order-received .woocommerce-column--billing-address address,
.woocommerce-order-received address {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-style: normal !important;
	line-height: 1.8 !important;
	font-size: 0.95rem !important;
}

.woocommerce-order-received address p {
	margin: 0 !important;
}

/* Related subscriptions section */
.woocommerce-order-received section.woocommerce-order-details + section {
	margin-top: 32px !important;
}

/* View button styling */
.woocommerce-order-received table.shop_table a.button,
.woocommerce-order-received .woocommerce-orders-table a.button {
	background: var(--lexx-color-accent-blue) !important;
	color: #ffffff !important;
	padding: 8px 16px !important;
	border-radius: 6px !important;
	font-size: 0.85rem !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	display: inline-block !important;
	transition: background-color 0.2s ease !important;
}

.woocommerce-order-received table.shop_table a.button:hover {
	background: #0090c8 !important;
	text-decoration: none !important;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
	.woocommerce-order-received .woocommerce {
		padding: 24px 16px 40px !important;
	}
	
	.woocommerce-order-received .woocommerce-thankyou-order-received {
		font-size: 1.25rem !important;
	}
	
	.woocommerce-order-received .woocommerce-order-overview,
	.woocommerce-order-received ul.woocommerce-order-overview {
		flex-wrap: wrap !important;
	}
	
	.woocommerce-order-received .woocommerce-order-overview li,
	.woocommerce-order-received ul.woocommerce-order-overview li {
		flex: 1 1 50% !important;
		box-sizing: border-box !important;
	}
	
	.woocommerce-order-received .woocommerce-order-overview li:nth-child(2),
	.woocommerce-order-received ul.woocommerce-order-overview li:nth-child(2) {
		border-right: none !important;
	}
	
	.woocommerce-order-received .woocommerce-order-overview li:nth-child(1),
	.woocommerce-order-received .woocommerce-order-overview li:nth-child(2),
	.woocommerce-order-received ul.woocommerce-order-overview li:nth-child(1),
	.woocommerce-order-received ul.woocommerce-order-overview li:nth-child(2) {
		border-bottom: 1px solid #e8e8e8 !important;
	}
	
	.woocommerce-order-received .woocommerce-order-overview li:nth-child(4),
	.woocommerce-order-received ul.woocommerce-order-overview li:nth-child(4) {
		border-right: none !important;
	}
	
	.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns {
		grid-template-columns: 1fr !important;
	}
	
	.woocommerce-order-received h2 {
		font-size: 1.15rem !important;
	}
	
	/* Make tables scrollable on mobile */
	.woocommerce-order-received .woocommerce-table,
	.woocommerce-order-received table.shop_table {
		display: block !important;
		overflow-x: auto !important;
	}
}

/* Responsive - Mobile */
@media (max-width: 480px) {
	.woocommerce-order-received .woocommerce-order-overview,
	.woocommerce-order-received ul.woocommerce-order-overview {
		flex-direction: column !important;
	}
	
	.woocommerce-order-received .woocommerce-order-overview li,
	.woocommerce-order-received ul.woocommerce-order-overview li {
		flex: 1 1 100% !important;
		border-right: none !important;
		border-bottom: 1px solid #e8e8e8 !important;
		padding: 16px !important;
	}
	
	.woocommerce-order-received .woocommerce-order-overview li:last-child,
	.woocommerce-order-received ul.woocommerce-order-overview li:last-child {
		border-bottom: none !important;
	}
	
	.woocommerce-order-received .woocommerce-column {
		padding: 16px !important;
	}
}

/* ============================================
   MY ACCOUNT - VIEW SUBSCRIPTION
   Billing address / Customer details (last section)
   ============================================ */

.woocommerce-account .woocommerce-customer-details,
.woocommerce-account .woocommerce-customer-details address,
.woocommerce-account .woocommerce-column--billing-address,
.woocommerce-account .woocommerce-column--billing-address address,
.woocommerce-account .woocommerce-column--shipping-address,
.woocommerce-account .woocommerce-column--shipping-address address {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
}

.woocommerce-account .woocommerce-customer-details address,
.woocommerce-account .woocommerce-column--billing-address address,
.woocommerce-account .woocommerce-column--shipping-address address {
	font-style: normal !important;
	line-height: 1.8 !important;
}

.woocommerce-account .woocommerce-customer-details address *,
.woocommerce-account .woocommerce-column--billing-address address *,
.woocommerce-account .woocommerce-column--shipping-address address * {
	color: var(--lexx-color-text) !important;
}

.woocommerce-account .woocommerce-customer-details--phone,
.woocommerce-account .woocommerce-customer-details--email,
.woocommerce-account .woocommerce-customer-details address p,
.woocommerce-account address p {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
}

.woocommerce-account .woocommerce-customer-details .woocommerce-column__title,
.woocommerce-account .woocommerce-column--billing-address .woocommerce-column__title,
.woocommerce-account .woocommerce-column--shipping-address .woocommerce-column__title {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
}

/* Subscription details table on view-subscription */
.woocommerce-account .subscription_details,
.woocommerce-account .subscription_details td {
	color: var(--lexx-color-text) !important;
	font-family: var(--lexx-font-poppins) !important;
}

.woocommerce-account .subscription_details td:first-child {
	color: #666666 !important;
}

/* =============================================================
   LEXX Floating Hubs
   ============================================================= */

.lexx-floating-hubs {
	position: fixed;
	top: 20%;
	right: 0;
	z-index: 9998;
	font-family: var(--lexx-font-poppins);
	pointer-events: none;
	max-width: calc(100vw - 24px);
}

.lexx-floating-hubs > * {
	pointer-events: auto;
}

.lexx-floating-hubs__panel {
	width: min(210px, calc(100vw - 56px));
	margin-right: 12px;
	background: #ffffff;
	border: 1px solid rgba(73, 73, 73, 0.12);
	border-radius: 14px;
	box-shadow:
		0 18px 50px rgba(28, 28, 28, 0.14),
		0 0 0 1px rgba(255, 255, 255, 0.6) inset;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.lexx-floating-hubs[data-collapsed='true'] .lexx-floating-hubs__panel {
	transform: translateX(calc(100% + 48px));
	opacity: 0;
	pointer-events: none;
}

.lexx-floating-hubs__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 10px 10px 15px;
	background-color: var(--lexx-color-bottom-bar);
	border-bottom: 1px solid rgba(73, 73, 73, 0.08);
}

.lexx-floating-hubs__title {
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	color: var(--lexx-color-text);
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.lexx-floating-hubs__title img {
	height: 11px;
	width: auto;
}

.lexx-floating-hubs__close {
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	border: none !important;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.85) !important;
	color: var(--lexx-color-text) !important;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
	text-decoration: none !important;
}

.lexx-floating-hubs__close:hover,
.lexx-floating-hubs__close:focus-visible {
	background: var(--lexx-color-bottom-bar) !important;
	color: var(--lexx-color-text) !important;
}

.lexx-floating-hubs__close:focus-visible {
	outline: 2px solid var(--lexx-color-accent-blue);
	outline-offset: 2px;
}

.lexx-floating-hubs__list {
	list-style: none;
	margin: 0;
	padding: 8px;
}

.lexx-floating-hubs__item {
	margin: 0;
	padding: 0;
}

.lexx-floating-hubs__item + .lexx-floating-hubs__item {
	margin-top: 4px;
}

.lexx-floating-hubs__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 5px 10px;
	border-radius: 12px;
	text-decoration: none !important;
	color: var(--lexx-color-text) !important;
	transition: background 0.2s ease, transform 0.2s ease;
	position: relative;
}

.lexx-floating-hubs__link:hover,
.lexx-floating-hubs__link:focus-visible {
	background: var(--lexx-color-bottom-bar);
	transform: translateX(-2px);
}

.lexx-floating-hubs__link:focus-visible {
	outline: 2px solid var(--lexx-color-accent-blue);
	outline-offset: 0;
}

.lexx-floating-hubs__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lexx-floating-hubs__icon svg {
	width: 40px;
	height: 40px;
	display: block;
}

.lexx-floating-hubs__body {
	flex: 1;
	min-width: 0;
	margin-left: 10px;
	margin-top: 10px;
}

.lexx-floating-hubs .lexx-hub-card-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	margin-bottom: 0;
	padding-bottom: 0;
	text-align: left;
	width: max-content;
	max-width: 100%;
}

.lexx-floating-hubs .lexx-hub-card-logo img {
	display: block;
	margin: 0;
	max-height: 23px;
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.lexx-floating-hubs .lexx-hub-card-logo::after {
	display: block;
	text-align: left;
	font-family: var(--lexx-font-poppins);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.lexx-floating-hubs .lexx-hub-logo--live::after {
	content: 'LIVE';
	color: #cf9f00;
	letter-spacing: 0.22em;
}

.lexx-floating-hubs .lexx-hub-logo--online::after {
	content: 'ONLINE';
	color: #cf9f00;
}

.lexx-floating-hubs .lexx-hub-logo--bookstore::after {
	content: 'BOOKSTORE';
	color: #cf9f00;
	letter-spacing: 0.12em;
	font-size: 9px;
}

.lexx-floating-hubs .lexx-hub-logo--coach::after {
	content: 'COACH';
	color: #cf9f00;
	letter-spacing: 0.22em;
}

.lexx-floating-hubs__soon {
	font-size: 9px !important;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lexx-color-accent-orange);
	margin: 0;
	margin-top: -6px;
	line-height: 1;
	white-space: nowrap;
}

.lexx-floating-hubs__item--disabled .lexx-floating-hubs__link {
	cursor: default;
}

/* Current hub indicator (floating panel) */
.lexx-floating-hubs__item--current .lexx-floating-hubs__link {
	cursor: default;
	opacity: 0.45;
	background: var(--lexx-color-bottom-bar, #f5f5f5);
	border-radius: 10px;
}

.lexx-floating-hubs__item--current .lexx-floating-hubs__link:hover {
	transform: none;
}

.lexx-floating-hubs__item--disabled .lexx-floating-hubs__link:hover,
.lexx-floating-hubs__item--disabled .lexx-floating-hubs__link:focus-visible {
	background: transparent;
	transform: none;
}

.lexx-floating-hubs__desc {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: rgba(73, 73, 73, 0.6);
}

.lexx-floating-hubs__peek {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 44px !important;
	min-height: 112px;
	padding: 10px 8px !important;
	border: none !important;
	border-radius: 12px 0 0 12px !important;
	cursor: pointer;
	background: linear-gradient(180deg, var(--lexx-color-button-gradient-end), var(--lexx-color-accent-orange)) !important;
	color: #ffffff !important;
	font-family: var(--lexx-font-poppins) !important;
	font-weight: 700 !important;
	font-size: 12px !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	white-space: normal !important;
	text-align: center !important;
	box-shadow:
		-4px 10px 28px rgba(226, 80, 39, 0.32),
		-2px 6px 18px rgba(247, 147, 30, 0.22),
		0 0 0 1px rgba(255, 255, 255, 0.25) inset;
	transition: filter 0.2s ease, transform 0.2s ease;
  outline: none !important;
}

.lexx-floating-hubs__peek:hover,
.lexx-floating-hubs__peek:focus-visible {
	filter: brightness(1.06);
	background: linear-gradient(180deg, var(--lexx-color-button-gradient-end), var(--lexx-color-accent-orange)) !important;
	color: #ffffff !important;
}

.lexx-floating-hubs__peek:focus-visible {
	outline: 2px solid var(--lexx-color-accent-blue);
	outline-offset: 3px;
}

.lexx-floating-hubs:not([data-collapsed='true']) .lexx-floating-hubs__peek {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) translateX(8px);
}

.lexx-floating-hubs[data-collapsed='true'] .lexx-floating-hubs__peek {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(-50%) translateX(0);
}

/* Left-aligned variant */
.lexx-floating-hubs.lexx-floating-hubs--align-left {
	right: auto;
	left: 0;
}

.lexx-floating-hubs.lexx-floating-hubs--align-left .lexx-floating-hubs__panel {
	margin-right: 0;
	margin-left: 12px;
}

.lexx-floating-hubs.lexx-floating-hubs--align-left[data-collapsed='true'] .lexx-floating-hubs__panel {
	transform: translateX(calc(-100% - 48px));
}

.lexx-floating-hubs.lexx-floating-hubs--align-left .lexx-floating-hubs__peek {
	left: 0;
	right: auto;
	border-radius: 0 12px 12px 0;
	box-shadow:
		4px 10px 28px rgba(226, 80, 39, 0.32),
		2px 6px 18px rgba(247, 147, 30, 0.22),
		0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.lexx-floating-hubs.lexx-floating-hubs--align-left .lexx-floating-hubs__link:hover,
.lexx-floating-hubs.lexx-floating-hubs--align-left .lexx-floating-hubs__link:focus-visible {
	transform: translateX(2px);
}

@media (max-width: 782px) {
	.lexx-floating-hubs {
		top: auto;
		bottom: 90px;
		transform: none;
		right: 0;
	}

	.lexx-floating-hubs__panel {
		width: min(165px, calc(100vw - 64px));
		margin-right: 12px;
	}

	.lexx-floating-hubs__peek {
		min-height: 96px;
	}

	.lexx-floating-hubs__icon {
		width: 40px;
		height: 40px;
	}

	.lexx-floating-hubs .lexx-hub-card-logo img {
		width: auto;
		height: 18px;
	}

	.lexx-floating-hubs:not([data-collapsed='true']) .lexx-floating-hubs__peek {
		transform: translateY(-50%) translateX(8px);
	}

	.lexx-floating-hubs[data-collapsed='true'] .lexx-floating-hubs__peek {
		transform: translateY(-50%) translateX(0);
	}

	.lexx-floating-hubs.lexx-floating-hubs--align-left {
		left: max(12px, env(safe-area-inset-left, 0px));
		right: auto;
	}

	.lexx-floating-hubs.lexx-floating-hubs--align-left .lexx-floating-hubs__panel {
		margin-left: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lexx-floating-hubs__panel,
	.lexx-floating-hubs__link,
	.lexx-floating-hubs__peek {
		transition: none;
	}

	.lexx-floating-hubs__link:hover,
	.lexx-floating-hubs__link:focus-visible {
		transform: none;
	}
}

@media print {
	.lexx-floating-hubs {
		display: none !important;
	}
}

.woocommerce-account ul.payment_methods li label {
	color: var(--lexx-color-text) !important;
}

body.woocommerce-cart #content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.woocommerce-cart #content .lexx-modern-cart-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  background: #fafafa;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
  box-sizing: border-box;
}

body.woocommerce-cart #content .entry-title {
  display: none;
}

body.woocommerce-cart .woocommerce-cart .page-title, .woocommerce-cart h1 {
  padding: 0 !important;
  max-width: 1280px;
  margin: 0 auto;
}

body.woocommerce-cart #content .lexx-cart-actions {
  padding: 30px 0 !important;
  flex-wrap: wrap;
  gap: 20px;
}

body.woocommerce-cart #content .lexx-totals-row {
  border-bottom: none !important;
}

body.woocommerce-cart #content .lexx-checkout-button {
  white-space: nowrap;
}

@media (max-width: 768px) {
  body.woocommerce-cart #content .lexx-modern-cart-container {
    display: flex;
    flex-direction: column;
  }

  body.woocommerce-cart #content .lexx-cart-items-wrapper {
    width: 100%;
  }

  body.woocommerce-cart #content .lexx-cart-sidebar {
    width: 100%;
  }
}