/*
Theme Name: Aurion Prime
Description: Aurion Prime
Author: Solomax
Template: flatsome
Version: 3.0
*/
/* ===== Feature Card (Flatsome column preset) ===== */
/* Add class "feature-card" to the column in UX-Builder */
.tab-panels .woocommerce-product-attributes th {
	text-transform: none;
}	
/* Feature Card with gradient border that stops halfway */
/* Mobile horizontal swipe row with peek */
@media (max-width: 767px) {
	.row.mobile-peek-slider {
		flex-wrap: nowrap !important; /* stop wrapping: one row that scrolls */
		overflow-x: auto;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		padding-bottom: 1.5rem; /* a bit of space under cards */
		gap: 0; /* we'll control spacing via margins */
	}

	/* Hide scrollbar if you like */
	.row.mobile-peek-slider::-webkit-scrollbar {
		display: none;
	}
	.row.mobile-peek-slider {
		-ms-overflow-style: none; /* IE/Edge */
		scrollbar-width: none; /* Firefox */
	}

	/* Each column becomes a slide */
	.row.mobile-peek-slider > .col {
		flex: 0 0 80%; /* < 100% so the next card peeks in */
		max-width: 80%;
		scroll-snap-align: start;
		margin-right: 16px; /* space between cards / creates the peek */
	}

	/* Last one: normal right padding */
	.row.mobile-peek-slider > .col:last-child {
		margin-right: 12px;
	}
}

/* Optional: ensure feature-card fills height nicely */
@media (max-width: 767px) {
	.row.mobile-peek-slider > .col .col-inner {
		height: 100%;
	}
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
	font-weight: 600;
}
h2,
.h2 {
	line-height: 1.2;
}
/* ----------------------------------------
Utility: Golden radial glow background
Usage: add class "has-gold-glow" to any element
---------------------------------------- */

.has-gold-glow {
	position: relative;
	z-index: 0; /* ensures ::before sits behind content */
}

/* the actual glow */
.glow-container::before {
	content: "";
	position: absolute;
	width: 1200px; /* size of the glow */
	height: 1000px;
	background: radial-gradient(
		circle,
		rgba(191, 156, 74, 1) 30%,
		/* bright center */ rgba(255, 255, 255, 0) 20% /* fade to transparent */
	);
	filter: blur(130px); /* softens the edge */
	opacity: 1; /* optional intensity */
	pointer-events: none;
	z-index: 0;

	/* position it where you want */
	bottom: 10px; /* slightly below bottom */
	left: 66%; /* centered horizontally */
	transform: translateX(-50%); /* perfect horizontal centering */
}

.sunrise::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 50% 100%,
		rgba(191, 156, 74, 0.8) 0%,
		rgba(191, 156, 74, 0.3) 52%,
		rgba(191, 156, 74, 0) 44%
	);
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
}
.sunrise-big::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 50% 90%,
		rgba(191, 156, 74, 0.5) 0%,
		rgba(191, 156, 74, 0.7) 45%,
		rgba(191, 156, 74, 0) 50%
	);
	filter: blur(90px);
	pointer-events: none;
	z-index: 0;
}

.has-gold-glow::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	pointer-events: none;
	border-radius: 50%;
	z-index: -1;

	/* defaults (can be overridden inline or via another class) */
	width: var(--glow-size, 800px);
	height: var(--glow-size, 800px);
	top: var(--glow-top, auto);
	left: var(--glow-left, 40%);
	transform: translate(-44%, var(--glow-translate-y, 0));

	background: radial-gradient(
		circle at center,
		rgba(var(--glow-color-rgb, 191, 156, 74), var(--glow-intensity, 1)) 29%,
		rgba(
			var(--glow-color-rgb, 191, 156, 74),
			calc(var(--glow-intensity, 0.45) * 0.5)
		)
		30%,
		rgba(
			var(--glow-color-rgb, 191, 156, 74),
			calc(var(--glow-intensity, 0.15) * 0.2)
		)
		60%,
		rgba(var(--glow-color-rgb, 191, 156, 74), 0) 100%
	);

	filter: blur(var(--glow-blur, 100px));
	opacity: var(--glow-opacity, 0.9);
	transition: opacity 0.3s ease;
}

.aurion-tabs h3 {
	font-weight: 600;
}
.aurion-tabs ul li.active a {
	font-weight: 700;
}
.aurion-tabs .nav > li {
	margin: 0 48px;
}
.feature-card > .col-inner {
	position: relative;
	background-image: radial-gradient(
		400px 348px at 42% 94%,
		rgba(191, 156, 74, 0.4),
		transparent 72%
	);
	border-radius: 22px;
	padding: 10px 10px 22px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	isolation: isolate;
}

/* Stopped gradient border effect */
.feature-card > .col-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 26px;
	padding: 2px;
	background: linear-gradient(to bottom, #bf9c4a 0%, rgba(183, 146, 42, 0) 90%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: -1;
}
.feature-card .text {
	margin: 0px 20px;
}

/* Space between image and text */
.feature-card .col-inner > *:not(:first-child) {
	margin-top: 18px;
}

/* Make UX Image corners match the card */
.feature-card .col-inner .img,
.feature-card .col-inner .img-inner,
.feature-card .col-inner .img img {
	border-radius: 18px !important;
	overflow: hidden;
}

/* Title & text styling (adjust to your font scale) */
.feature-card h3,
.feature-card .h3 {
	margin: 24px 0px 18px 0px;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.15;
	color: #fff;
	letter-spacing: 0.2px;
}
.feature-card p {
	margin: 0;
	color: #e9e6df;
	line-height: 1.6;
	opacity: 0.95;
}

/* Soft corner rounding at the bottom like the screenshot */
.feature-card > .col-inner {
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}

/* Optional: subtle lift on hover (desktop only) */
@media (hover: hover) {
	.feature-card > .col-inner {
		transition: transform 0.25s ease, box-shadow 0.25s ease;
	}
	.feature-card:hover > .col-inner {
		transform: translateY(-4px);
		box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
	}
}

/* Optional: tighter padding on small screens */
@media (max-width: 549px) {
	.has-gold-glow::before { top: -400px;}
	.feature-card > .col-inner {
		padding: 18px;
	}
	.aurion-tabs .nav > li {
		margin: 0 14px;
	}
	.button.poppins-aurion {
		display: block;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		width: 100% !important;
	}
}

ul.pp-list {
	list-style: none;
}
.pp-offer {
	--pp-bg: #1f1f1f;
	--pp-bg-grad: radial-gradient(
		1200px 600px at 95% 50%,
		rgba(141, 118, 55, 0.25),
		transparent 60%
	);
	--pp-text: #e8e6e3;
	--pp-muted: #8b8b8b;
	--pp-accent: #bf9c4a; /* gold */
	--pp-accent-weak: rgba(212, 177, 101, 0.15);
	--pp-radius: 18px;
	--pp-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
	--pp-gap: clamp(16px, 2.5vw, 28px);
}

/* ========== Text ========= */
.pp-kicker {
	font-size: clamp(18px, 2.2vw, 28px);
	line-height: 1.35;
	margin: 0 0 var(--pp-gap);
	font-weight: 600;
	letter-spacing: 0.2px;
}

/* ========== Checklist ========= */
.pp-list {
	list-style: none;
	margin: 0 0 calc(var(--pp-gap) * 1.25);
	padding: 0;
	display: grid;
	/*     gap: clamp(12px, 1.4vw, 18px); */
}
.pp-list li {
	position: relative;
	padding-left: 46px;
	margin-left: 0px !important;
}
.pp-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 28px;
	height: 28px;
	transform: translateY(-50%);
	border-radius: 6px;
	-webkit-mask: radial-gradient(12px 12px at 55% 55%, #0000 57%, #000 58%) top
		left / 100% 100% no-repeat;
}
/* draw the ✓ */
.pp-list li::after {
	content: "";
	position: absolute;
	left: 9px;
	top: 50%;
	width: 10px;
	height: 18px;
	border: 2px solid var(--pp-accent);
	border-left: 0;
	border-top: 0;
	transform: translateY(-55%) rotate(45deg);
}

/* ========== Pricing Row ========= */
.pp-price-row {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 24px);
	flex-wrap: wrap;
	margin-bottom: 24px;
}
.pp-price {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.pp-price__currency {
	font-size: clamp(28px, 4.5vw, 28px);
	font-weight: 600;
	color: var(--pp-accent);
	line-height: 1;
}
.pp-price__now {
	font-size: clamp(28px, 7.5vw, 28px);
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--pp-accent);
	line-height: 0.9;
}
.pp-price__was {
	font-size: clamp(22px, 3vw, 22px);
	font-weight: 700;
	color: var(--pp-muted);
	text-decoration: line-through;
	margin-left: clamp(8px, 1.2vw, 12px);
	opacity: 0.8;
}

/* ========== Badge ========= */
.pp-badge {
	margin-left: 20px;
	background: rgba(212, 177, 101, 0.12);
	color: var(--pp-accent);
	padding: 6px 10px;
	border-radius: 4px;
	font-weight: 600;
	white-space: nowrap;
}

/* ========== Small screens ========= */
@media (max-width: 640px) {
	.pp-badge {
		margin-left: 0;
	}
}

.box-text .button {
	margin-top: 0;
}
a.button.custom-shop-button {
	color: #00b4d8;
	border: 2px solid #00b4d8;
	background-color: #fff;
	width: 100%;
}
a.button.custom-shop-button:hover {
	color: #fff;
	background-color: #00b4d8;
	box-shadow: none;
}
.badge-container.absolute.left.top {
	right: 0;
	left: auto;
}
.badge-inner.secondary.on-sale {
	padding-left: 12px;
	padding-right: 12px;
}
.box-text .price-wrapper {
	margin: 20px 6px;
	font-size: 13px;
}
.box-text-products .price del .woocommerce-Price-amount {
	color: #262626 !important;
}
.box-text-products .price .woocommerce-Price-amount,
.box-text-products .price ins .woocommerce-Price-amount {
	color: #bf9c4a !important;
}
.box-text p.product-title a {
	font-weight: 700;
}
a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
	font-size: 18px;
}
.product-small.box:hover {
	transition: all 0.35s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.product-small.box {
	border-radius: 16px;
	border: 1px solid #d9d9d9;
	padding: 8px;
}
.add-to-cart-button a {
	width: 100%;
	font-size: 16px !important;
}
#breadcrumbs a,
#breadcrumbs a:hover,
#breadcrumbs .breadcrumb_last {
	color: #00b4d8 !important;
}
p.price.product-page-price.price-on-sale del .woocommerce-Price-amount {
	color: #262626 !important;
}
.product-thumbnails a:hover,
.col.is-selected.is-nav-selected a {
	border-color: #bf9c4a;
}
.product-thumbnails a {
	border-radius: 4px;
}
.product-small.box img,
.slider > div:not(.col) {
	border-radius: 16px;
}
.product-info.summary.col-fit.col.entry-summary.product-summary
.price-wrapper
.woocommerce-Price-amount,
.widget > ul > li ul li.active a,
.widget > ul > li.active > a,
.off-canvas:not(.off-canvas-center) .nav-vertical li.current-menu-item > a,
.ux-menu-list.is-light .menu-item a:hover,
.nav-dropdown.dark > li > a:hover {
	color: #bf9c4a;
}
.woocommerce-MyAccount-navigation .nav-vertical.nav-line > li > a:before,
.woocommerce-mini-cart__buttons .button.wc-forward {
	background-color: #bf9c4a;
}
/* :not(ins):not(del) > .woocommerce-Price-amount.amount bdi {
color: #bf9c4a;
} */
.woocommerce-MyAccount-navigation .nav-vertical.nav-line > li > a {
	color: #000;
	font-size: 14px;
}
.dark-grey {
	background-color: #262626;
	color: #ffffff;
}
.light-grey {
	background-color: #676767;
	color: #ffffff;
}
.sky-current {
	background-color: #66cccc;
	color: #ffffff;
}
img.cart-img-icon {
	width: 17px !important;
	border-radius: 0px !important;
}
.footer-wrapper {
	border-top: 2px solid #bf9c4a;
}
.footer-wrapper .footer-widgets .widget_nav_menu .menu-main-menu-container {
	margin-top: 10px !important;
}
.dark .is-divider {
	display: none !important;
}
.header.has-transparent .header-main {
	background-color: transparent !important;
}
.productbox {
	border: 4px solid #ffffff;
	border-radius: 20px !important;
}

/* Card container */
.ux-timer span {
	position: relative;
	border-radius: 16px !important;
	font-weight: 400 !important;
	font-size: 32px !important;
	padding: 12px 0px 0px 36px;
	background-color: #404040 !important;
	/*   background: radial-gradient(120% 120% at 20% 25%, #5b532f 0%, #1f1f1f 60%, #171717 100%); */
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}
.ux-timer span:before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 16px;
	padding: 2px; /* border thickness */
	background: linear-gradient(to bottom, #bf9c4a 0%, rgba(183, 146, 42, 0) 90%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.aurion-hero-card {
	position: relative;
	border-radius: 26px;
	padding: 12px 0px 0px 36px !important;
	background: radial-gradient(
		120% 120% at 20% 25%,
		#5b532f 0%,
		#1f1f1f 60%,
		#171717 100%
	);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}
.aurion-hero-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 26px;
	padding: 2px; /* border thickness */
	background: linear-gradient(to bottom, #bf9c4a 0%, rgba(183, 146, 42, 0) 90%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.poppins-aurion {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
}

/* Typography */
.aurion-hero-card h2,
.aurion-hero-card .h2 {
	color: #fff;
}
.aurion-hero-card p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 26px;
	max-width: 52ch;
}

/* CTA button */
.btn-pill.button,
.btn-pill .button {
	border-radius: 999px !important;
	font-weight: 600;
	background: #04c2d6;
	border: none;
	color: #fff;
}
.btn-pill.button:hover,
.btn-pill .button:hover {
	filter: brightness(0.95);
	transform: translateY(-1px);
}

/* Product image overlap */
.aurion-hero-visual img {
	border-radius: 26px;
}
.aurion-hero-card__product {
	width: 410px !important;
	height: auto;
	position: relative;
	z-index: 9999;
}
@media (min-width: 992px) {
	.aurion-hero-card__product {
	}
}

/* Page background */
.has-dark-hero-bg {
	background: #222;
}
.aurion-hero-card .widget-title .divider,
.aurion-hero-card .ux-title .divider {
	display: none !important;
}


.woocommerce-tabs ul li a {
	color: #000;
	font-weight: 600;
	font-size: 18px;
}

.ux-swatch.tooltip.ux-swatch--label.tooltipstered.selected {
	background: #f5fdff;
}
span.ux-swatch__text {
	font-size: 20px;
	font-weight: 900;
}
.ux-swatches--x-large .ux-swatch--color,
.ux-swatches--x-large .ux-swatch--image {
	height: 150px;
	width: 130px;
}

/* ---------- WooCommerce Sexy Notices (Flatsome-friendly) ---------- */

/* Base wrapper – ensures stacked spacing */
.woocommerce-notices-wrapper,
.ux-notices,
.woocommerce > .woocommerce-message,
.woocommerce > .woocommerce-info,
.woocommerce > .woocommerce-error {
	margin: 0 0 18px 0;
}

/* Design tokens (easy to tweak) */
:root {
	--wc-radius: 14px;
	--wc-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
	--wc-pad-y: 14px;
	--wc-pad-x: 16px;

	/* Color sets */
	--wc-info: 214 89% 52%; /* blue */
	--wc-success: 151 73% 40%; /* green */
	--wc-error: 358 85% 55%; /* red */
	--wc-bg: 0 0% 100%;
	--wc-fg: 222 24% 16%;
	--wc-muted: 222 8% 38%;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
	:root {
		--wc-bg: 222 22% 12%;
		--wc-fg: 0 0% 100%;
		--wc-muted: 220 10% 70%;
		--wc-shadow: 0 10px 25px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.35);
	}
}

/* Generic notice card */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error li {
	position: relative;
	display: flex;
	align-items: start;
	gap: 12px;
	padding: var(--wc-pad-y) calc(var(--wc-pad-x) + 6px);
	background: hsl(var(--wc-bg));
	color: hsl(var(--wc-fg));
	border-radius: var(--wc-radius);
	box-shadow: var(--wc-shadow);
	border: 1px solid hsl(0 0% 100% / 0.06);
	overflow: hidden;
	/* subtle entrance */
	animation: wcFadeSlide 0.35s ease both;
}

/* Left accent bar */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	border-top-left-radius: var(--wc-radius);
	border-bottom-left-radius: var(--wc-radius);
}

/* Icon bubble */
.woocommerce-message::after,
.woocommerce-info::after,
.woocommerce-error li::after {
	content: "✓";
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	margin-right: 4px;
	flex: 0 0 24px;
	transform: translateY(1px);
}

/* Text content: keep tight, readable */
.woocommerce-message p,
.woocommerce-info p,
.woocommerce-error li {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: hsl(var(--wc-fg));
}

/* Links inside notices */
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
	color: currentColor;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 600;
}

/* Buttons inside notices (Flatsome/BTN) */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
	margin-left: auto; /* push to right */
	border-radius: 999px;
	padding: 9px 14px;
	font-weight: 600;
}

/* --- Variants --- */

/* SUCCESS (.woocommerce-message) */
.woocommerce-message::before {
	background: linear-gradient(
		180deg,
		hsl(var(--wc-success) / 0.9),
		hsl(var(--wc-success) / 0.7)
	);
}
.woocommerce-message::after {
	content: "✓";
	background: hsl(var(--wc-success) / 0.12);
	color: hsl(var(--wc-success));
	border: 1px solid hsl(var(--wc-success) / 0.35);
}

/* INFO (.woocommerce-info) */
.woocommerce-info::before {
	background: linear-gradient(
		180deg,
		hsl(var(--fs-color-primary) / 0.9),
		hsl(var(--fs-color-primary) / 0.7)
	);
}
.message-wrapper,
.ul.woocommerce-error li,
.ul.woocommerce-error,
.wc-empty-cart-message,
.woocommerce-notices-wrapper {
	display: flex;
	margin: 0 auto;
	position: relative;
	width: auto;
	align-content: center;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 12px;
}
.message-wrapper {
	margin-bottom: 26px;
}
.theme-images-list {
	list-style: none;
	padding: 0;
	margin: 20px 0 10px 0;
	display: flex;
	gap: 15px;
}

.theme-images-list li {
	display: inline-block;
	margin: 0;
	margin-left: 0.25em;
}
.theme-images-list img {
	max-width: 50px;
	height: auto;
	display: block;
}

/*************** USPS ***************/
.entry-summary .list-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
}
.entry-summary .list-checklist li {
	position: relative;
	padding-left: 0px;
	margin: 4px 0;
	font-size: 80%;
	font-weight: 500;
}
.entry-summary .list-checklist li:before {
	content: "\f00c";
	font-family: FontAwesome;
	top: 0;
	left: 0px;
	padding-right: 10px;
	color: #66bc29;
}
.widget ul.product-categories {
	margin-top: 20px;
}
.shop-page-title.featured-title .title-overlay {
	background-color: transparent !important;
}

/*************** Discount Badge ***************/
.discount-badge {
	background-color: rgba(191, 156, 74, 0.2);
	color: #bf9c4a;
	font-size: 14px;
}
.scroll {
	white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}
nav.woocats {
	white-space: nowrap;
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	border-radius: 0 0 3px 3px;
	padding: 9px 0px 9px 0px;
	margin-bottom: 30px;
}
nav.woocats a {
	padding: 9px 8px 9px 8px;
	border: 1px solid rgba(114, 124, 135, 0.2);
}
nav.woocats a:not(:last-child) {
	margin-right: 8px;
	/* 	 border-right: 0px solid rgba(114, 124, 135, .2); */
}
.scroll::-webkit-scrollbar {
	display: none;
}

/* FAQ Accordion Styles */
.faq-accordion {
	max-width: 100%;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 12px;
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-title {
	margin: 0;
	padding: 20px 24px;
	cursor: pointer;
	position: relative;
	font-size: 20px;
	line-height: 140%;
	font-weight: 600;
	color: #262626 !important;
	background-color: #f0f0f0;
	transition: all 0.3s ease;
	user-select: none;
}

.faq-title:hover {
	background-color: #e5e5e5;
}

.faq-title.active {
	color: #262626;
}

.faq-toggle-icon {
	position: absolute;
	right: 24px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-right: 2px solid rgba(38, 38, 38, 1);
	border-bottom: 2px solid rgba(38, 38, 38, 1);
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease;
}

.faq-title.active .faq-toggle-icon {
	border-color: rgba(38, 38, 38, 1);
	transform: translateY(-50%) rotate(45deg);
}

.faq-content {
	padding: 0 24px;
	background-color: #f0f0f0;
}

.faq-content p {
	padding: 20px 0;
	margin: 0;
	font-size: 16px;
	line-height: 150%;
	font-weight: 400;
	color: rgba(38, 38, 38, 1);
}

/* FAQ Accordion Dark Theme */
.faq-accordion-dark .faq-title {
	background-color: #676767;
	color: #ffffff !important;
}

.faq-accordion-dark .faq-title:hover {
	background-color: #575757;
}

.faq-accordion-dark .faq-title.active {
	background-color: rgba(191, 156, 74, 1);
	color: #ffffff !important;
}

.faq-accordion-dark .faq-toggle-icon {
	border-right-color: #ffffff;
	border-bottom-color: #ffffff;
}

.faq-accordion-dark .faq-title.active .faq-toggle-icon {
	border-color: #ffffff;
}

.faq-accordion-dark .faq-content {
	background-color: #676767;
	color: #ffffff;
}

.faq-accordion-dark .faq-content p {
	color: #ffffff;
}

.faq-content ul {
	padding: 20px 0;
}

/* FAQ Category Grouping */
.faq-category-group {
	margin-bottom: 32px;
}

.faq-category-title {
	margin: 0 0 16px 0;
	padding: 0;
	font-size: 24px;
	line-height: 140%;
	font-weight: 700;
	color: #262626;
}

/* Dark theme category title */
.faq-accordion-dark .faq-category-title {
	color: #ffffff;
}

@media only screen and (max-width: 48em) {
	/*************** ADD MOBILE ONLY CSS HERE  ***************/

	.faq-title {
		font-size: 16px;
		padding: 16px 20px;
	}

	.faq-content {
		padding: 0 20px;
	}

	.faq-toggle-icon {
		right: 20px;
	}

	.faq-category-title {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.faq-category-group {
		margin-bottom: 24px;
	}
}
