/*** RESET ***/
:root{
	--gw800: #FF2E70;
	--gw700: #FF9000;
	--gw600: #FFC600;
	--gw500: #00B4BD;
	--gw400: #9366DD;
	--gw300: #89F262;
	--gw200: #19E4FF;

	/* Neutral palette */
	--neutralWhite: #FFFFFF;
	--neutral50: #fefefe;
	--neutral100: #fbfbfc;
	--neutral200: #e6e8f7;
	--neutral250: #d5d8de;
	--neutral300: #61697b;
	--neutral400: #4a4a4a;
	--neutral500: #343f52;
	--neutral600: #21262c;
	--neutral700: #1e2229;

	--customColor100: #633a92;
	--customColor200: #592d8b;
	--customColor300: #422864;
	--customColor400: #af3131;
	--customColor500: #ffc600;
	--customColor600: #89f262;
	--customColor700: #014fa4;
	
	--primaryFont: 'Manrope', serif;

	--wp--preset--font-size--small: 12px;
	--wp--preset--font-size--medium: 20px;
	--wp--preset--font-size--large: 24px;
	--wp--preset--font-size--x-large: 36px;
	--wp--preset--font-size--xx-large: 48px;

	--wp--preset--spacing--20: 30px;
	--wp--preset--spacing--30: 50px;
	--wp--preset--spacing--40: 70px;
	--wp--preset--spacing--50: 90px;
	--wp--preset--spacing--60: 130px;
	--wp--preset--spacing--70: 180px;
	--wp--preset--spacing--80: 220px;

	--containerWidth: 1290px;
	--headerHeight: 100px;
}

*{
	box-sizing: border-box;
}
html,body{
	margin:0;
	padding:0;
	font-size:16px;
	line-height:100%;
}

body{
	line-height: 100%;
	font-family: var(--primaryFont);
	color: var(--neutral500);
	background: var(--neutralWhite);
}
h1,
h2,
h3,
h4,
h5{
	margin: 0 0 10px 0;
	line-height: 100%;
}
p,
ul,
ol{
	font-size: 16px;
    margin: 0 0 20px;
    line-height: 190%;
    font-weight: 400;
    color: var(--neutral300);
}
p:last-child,
ul:last-child,
ol:last-child{
	margin-bottom: 0;
}
ul:empty,
ol:empty,
li:empty,
p:empty{
	display: none;
}
strong{
	font-weight: 600;
}
img{
	max-width: 100%;
	border:none;
	outline:none;
}
a{
	color: currentColor;
}
a, a:hover{
	text-decoration:none
}
input,
select,
textarea,
button{
	font-family: var(--primaryFont);
	outline: none;
}
::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
}

/*** WP BLOCKS ***/

/* PADDING */
.padding-all-preset-spacing-0{
	padding: 0;
}
.padding-all-preset-spacing-20{
	padding: var(--wp--preset--spacing--20);
}
.padding-all-preset-spacing-30{
	padding: var(--wp--preset--spacing--30);
}
.padding-all-preset-spacing-40{
	padding: var(--wp--preset--spacing--40);
}
.padding-all-preset-spacing-50{
	padding: var(--wp--preset--spacing--50);
}
.padding-all-preset-spacing-60{
	padding: var(--wp--preset--spacing--60);
}
.padding-all-preset-spacing-70{
	padding: var(--wp--preset--spacing--70);
}
.padding-all-preset-spacing-80{
	padding: var(--wp--preset--spacing--80);
}
.padding-top-preset-spacing-0{
	padding-top: 0;
}
.padding-top-preset-spacing-20{
	padding-top: var(--wp--preset--spacing--20);
}
.padding-top-preset-spacing-30{
	padding-top: var(--wp--preset--spacing--30);
}
.padding-top-preset-spacing-40{
	padding-top: var(--wp--preset--spacing--40);
}
.padding-top-preset-spacing-50{
	padding-top: var(--wp--preset--spacing--50);
}
.padding-top-preset-spacing-60{
	padding-top: var(--wp--preset--spacing--60);
}
.padding-top-preset-spacing-70{
	padding-top: var(--wp--preset--spacing--70);
}
.padding-top-preset-spacing-80{
	padding-top: var(--wp--preset--spacing--80);
}
.padding-bottom-preset-spacing-0{
	padding-bottom: 0;
}
.padding-bottom-preset-spacing-20{
	padding-bottom: var(--wp--preset--spacing--20);
}
.padding-bottom-preset-spacing-30{
	padding-bottom: var(--wp--preset--spacing--30);
}
.padding-bottom-preset-spacing-40{
	padding-bottom: var(--wp--preset--spacing--40);
}
.padding-bottom-preset-spacing-50{
	padding-bottom: var(--wp--preset--spacing--50);
}
.padding-bottom-preset-spacing-60{
	padding-bottom: var(--wp--preset--spacing--60);
}
.padding-bottom-preset-spacing-70{
	padding-bottom: var(--wp--preset--spacing--70);
}
.padding-bottom-preset-spacing-80{
	padding-bottom: var(--wp--preset--spacing--80);
}

/* GRADIENT */
.gradient-gw400-to-gw700{
	background: linear-gradient(120deg, var(--gw400) 0%, var(--gw700) 100%);
}
.gradient-gw400-to-gw700-revert{
	background: linear-gradient(120deg, var(--gw700) 0%, var(--gw400) 100%);
}

/* IMAGES */
:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){
	border-radius: 8px;
}
.wp-block-video{
	border-radius: 8px;
	overflow: hidden;
}
.wp-block-video:last-child{
	margin-bottom: 0;
}

/* QUOTES */
.wp-block-quote{
	margin: 30px 0;
	padding: 0 0 0 30px;
	border-left: 4px solid var(--neutral300);
}
.wp-block-quote p{
	color: var(--neutral400);
	opacity: 0.8;
}

/* SEPARATORS */
.wp-block-separator{
	width: 100%;
	max-width: 1170px;
	margin:10px auto;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.1);
}
.wp-block-separator.has-neutral-100-background-color{
	border-color: var(--neutral100);
}
.wp-block-separator.has-neutral-200-background-color{
	border-color: var(--neutral200);
}
.wp-block-separator.has-neutral-300-background-color{
	border-color: var(--neutral300);
}
.wp-block-separator.has-neutral-400-background-color{
	border-color: var(--neutral400);
}
.wp-block-separator.has-neutral-500-background-color{
	border-color: var(--neutral500);
}

/*** TEXT COLORS ***/
/* GW Palette Colors */
.text-color---gw200{ color: var(--gw200); }
.text-color---gw300{ color: var(--gw300); }
.text-color---gw400{ color: var(--gw400); }
.text-color---gw500{ color: var(--gw500); }
.text-color---gw600{ color: var(--gw600); }
.text-color---gw700{ color: var(--gw700); }
.text-color---gw800{ color: var(--gw800); }

/* Neutral Colors */
.text-color---neutralWhite{ color: var(--neutralWhite); }
.text-color---neutral50{ color: var(--neutral50); }
.text-color---neutral100{ color: var(--neutral100); }
.text-color---neutral200{ color: var(--neutral200); }
.text-color---neutral250{ color: var(--neutral250); }
.text-color---neutral300{ color: var(--neutral300); }
.text-color---neutral400{ color: var(--neutral400); }
.text-color---neutral500{ color: var(--neutral500); }
.text-color---neutral600{ color: var(--neutral600); }
.text-color---neutral700{ color: var(--neutral700); }

/* Custom Colors */
.text-color---customColor100{ color: var(--customColor100); }
.text-color---customColor200{ color: var(--customColor200); }
.text-color---customColor300{ color: var(--customColor300); }
.text-color---customColor400{ color: var(--customColor400); }
.text-color---customColor500{ color: var(--customColor500); }
.text-color---customColor600{ color: var(--customColor600); }
.text-color---customColor700{ color: var(--customColor700); }

/*** BACKGROUND COLORS ***/
/* GW Palette Colors */
.bg-color---gw200{ background-color: var(--gw200); }
.bg-color---gw300{ background-color: var(--gw300); }
.bg-color---gw400{ background-color: var(--gw400); }
.bg-color---gw500{ background-color: var(--gw500); }
.bg-color---gw600{ background-color: var(--gw600); }
.bg-color---gw700{ background-color: var(--gw700); }
.bg-color---gw800{ background-color: var(--gw800); }

/* Neutral Colors */
.bg-color---neutralWhite{ background-color: var(--neutralWhite); }
.bg-color---neutral50{ background-color: var(--neutral50); }
.bg-color---neutral100{ background-color: var(--neutral100); }
.bg-color---neutral200{ background-color: var(--neutral200); }
.bg-color---neutral250{ background-color: var(--neutral250); }
.bg-color---neutral300{ background-color: var(--neutral300); }
.bg-color---neutral400{ background-color: var(--neutral400); }
.bg-color---neutral500{ background-color: var(--neutral500); }
.bg-color---neutral600{ background-color: var(--neutral600); }
.bg-color---neutral700{ background-color: var(--neutral700); }

/* Custom Colors */
.bg-color---customColor100{ background-color: var(--customColor100); }
.bg-color---customColor200{ background-color: var(--customColor200); }
.bg-color---customColor300{ background-color: var(--customColor300); }
.bg-color---customColor400{ background-color: var(--customColor400); }
.bg-color---customColor500{ background-color: var(--customColor500); }
.bg-color---customColor600{ background-color: var(--customColor600); }
.bg-color---customColor700{ background-color: var(--customColor700); }

/*** GRAVITY FORMS ***/
.gform_description:empty,
.gform_heading,
.gf_progressbar_wrapper{
	display: none !important;
}

/*** MISC ***/
.container{
	max-width: var(--containerWidth);
}
.wp-element-button,
.button{
	--btnColor: var(--customColor100);
	--btnColorHover: var(--customColor200);
	--btnTextColor: var(--neutralWhite);
	--btnTextColorHover: var(--neutralWhite);
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background: var(--btnColor);
	color: var(--btnTextColor);
	font-weight: 700;
	font-size: 16px;
	padding: 15px 30px;
	line-height: 30px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all .3s;
}
.wp-element-button:hover,
.button:hover{
	background: var(--btnColorHover);
	color: var(--btnTextColorHover);
}
.is-style-outline .wp-element-button,
.outline_button.button{
	background: none;
	border:1px solid currentColor;
	color: currentColor;
}
.is-style-outline .wp-element-button:hover,
.outline_button.button:hover{
	background: var(--btnColor);
	color: var(--btnTextColor);
}
.button.full_width_button {
    width: 100%;
}
.small_button {
    font-size: 15px;
    padding: 10px 20px;
	border-radius: 99px;
}
.button.inactive {
    opacity: .5;
    pointer-events: none;
}

.is-style-section_title{
	font-size: 30px;
    margin-bottom: 20px;
    line-height: 120%;
}
.is-style-section_subtitle{
	font-size: 24px;
	font-weight: 600;
	line-height: 130%;
	letter-spacing: -0.48px;
}

/*** HEADER ***/
#header_placeholder{
	height: var(--headerHeight);
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    transition: all .3s;
    z-index: 99;
    background: var(--neutralWhite);
    color: var(--neutral500);
    border-bottom: 1px solid var(--neutral200);
}
.admin-bar #header{
	top: 32px;
}
#header_main{
	height: var(--headerHeight);
}
#header_logo{
	display: inline-block;
	width: 63px;
	max-width: 100%;
}
#header_cart ,
#header_user {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--neutral200);
    background-image: url(../images/cart.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
#header_user {
	background-image: url(../images/user.svg);
}

/*** HEADER MENU ***/
.header_menu{
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 35px;
	letter-spacing: -.2px;
	font-weight: 600;
	font-size: 16px;
}
#header_menu > li {
    position: relative;
    padding: 25px 0;
    line-height: 25px;
}
#header_menu> li >a{
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
#header_menu>.menu-item-has-children>a:after,
.megamenu_parent>a:after{
    content: "";
    display: inline-block;
	width: 15px;
    height: 15px;
    background-image: url(../images/arrow-down.svg);
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

#header_menu .sub-menu {
    position: absolute;
    bottom: 20px;
    left: -10px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    width: 200px;
    line-height: 110%;
    border-radius: 8px;
    background: #fff;
    text-align: left;
    color: var(--neutral500);
    font-size: 15px;
    font-weight: 600;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
}
#header_menu>li:hover .sub-menu {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}
#header_menu > li.button_link {
	display: inline-flex;
	align-items: center;
	padding: 0;
	line-height: 100%;
}
#header_menu>li.button_link a {
    background: var(--customColor100);
    color: var(--neutralWhite);
    font-weight: 700;
    font-size: 16px;
    padding: 10px 25px;
	border-radius: 99px;
	line-height: 30px;
}

#megamenu_wrapper {
    position: fixed;
    width: 100%;
    max-width: 1320px;
    top: 100px;
    left: 50%;
    padding: 30px;
    background: var(--neutralWhite);
    text-align: left;
    color: var(--neutral500);
    border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%) translateY(30px);
}

.admin-bar #megamenu_wrapper{
	top: 132px ;
}

#header_menu > li:hover #megamenu_wrapper {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
  
#megamenu_wrapper ul li a:hover {
	color: var(--purple400);
}

.megamenu_column img {
	width: 100px;
}

#megamenu_wrapper .megamenu_column:not(:last-child) {
	border-right: 1px solid var(--gray200);
}

.megamenu_column ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	margin: 10px 0 0 0;
	padding: 0;
	gap: 3px;
	color: var(--neutral500);
	font-size: 15px;
	font-weight: 600;
}

/*** MOBILE MENU ***/
#menu_trigger{
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
#menu_trigger::after{
	content: '';
	position: absolute;
	top:calc(50% - 1px);
	left: 50%;
	width: 25px;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
	transform: translateX(-50%);
}
.menu_open #menu_trigger::after{
	transform: translateX(100%);
	opacity: 0;
}
#menu_trigger i{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25px;
	height: 16px;
	transform: translate(-50%, -50%);
}
#menu_trigger i::before{
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::before{
	transform: translate(0px, 6px) rotate(45deg);
}
#menu_trigger i::after{
	content: '';
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::after{
	transform: translate(0px, -8px) rotate(-45deg);
}

#mobile_menu_wrapper{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(6, 7, 14, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.menu_open #mobile_menu_wrapper{
	opacity: 1;
	visibility: visible;
}
#mobile_menu{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	list-style: none;
	gap: 30px;
	line-height: 100%;
	font-size: 30px;
	font-weight: 400;
	letter-spacing: -0.6px;
}

/*** FOOTER ***/
#footer{
    padding: 50px 0;
    background: var(--neutral600);
    color: var(--neutral200);
    font-weight: 300;
}
#footer_logo img {
    width: 100px;
}
#footer_bottom_bar{
	padding: 40px 0 50px;
	font-size: 16px;
	color:rgba(255, 255, 255, 0.30);
}
#footer_copyright {
    line-height: 170%;
    margin-top: 20px;
}
#footer_social_icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
#footer .wp-block-list{
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 0;
	list-style: none;
	font-weight: 300;
}
.widget_title{
    font-size: 18px;
    font-weight: 600;
    color: var(--neutralWhite);
    margin-bottom: 20px;
}
.widget_menu{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 16px;
	font-weight: 300;
	line-height: 150%;
	letter-spacing: -0.32px;
}

/*** STEPS FORMS ***/
.product_gallery_slider {
	position: relative;
}
.slider_nav {
	position: absolute;
	top: calc(50% - 20px);
	left: 0;
	width: 40px;
	height: 40px;
	background-image: url(../images/slider_nav.svg);
	background-size: 14px;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 2;
	cursor: pointer;
}
.swiper-button-disabled {
	opacity: 0.3;
}
.slider_nav.slider_nav_next {
	left: auto;
	right: 0;
	transform: scaleX(-1);
}
  
.form_wrapper .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 20px;
}
.form_wrapper input[type=text],
.form_wrapper input[type=email],
.form_wrapper input[type=tel],
.form_wrapper input[type=number],
.form_wrapper select,
.form_wrapper textarea{
	height: 44px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 5px;
    border: 1px solid var(--neutral250);
}
.form_wrapper input[type=text]:focus,
.form_wrapper input[type=email]:focus,
.form_wrapper input[type=tel]:focus,
.form_wrapper input[type=number]:focus,
.form_wrapper select:focus,
.form_wrapper textarea:focus{
	border-color: var(--customColor100);
}
.form_wrapper input[type=text]::placeholder,
.form_wrapper input[type=email]::placeholder,
.form_wrapper input[type=tel]::placeholder,
.form_wrapper input[type=number]::placeholder,
.form_wrapper select::placeholder,
.form_wrapper textarea::placeholder{
	color: var(--neutral300);
}
#subscription_type{
	width: 100%;
    max-width: 200px;
}
.form_wrapper .gfield_label {
    font-size: 16px;
    font-weight: 600;
}
.field_description{
	margin: 0 0 15px 0;
    color: var(--neutral300);
    font-size: 14px;
	opacity: 0.8;
}
.product_form_input_pill{
	position: relative;
}
.product_form_input_pill input {
	display: none;
}
.product_form_input_pill_label {
	display: inline-flex;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.product_form_input_pill_label:hover {
	background-color: var(--neutral200);
}
.product_form_input_pill_label i{
	position:relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	border:2px solid var(--neutral300);
	border-radius: 2px;
}
.product_form_input_pill_label i::after{
	content: '';
	position: absolute;
	top: calc(50% - 5px);
	left: calc(50% - 5px);
	width: 10px;
	height: 10px;
	border-radius: 2px;
	background-color: var(--customColor100);
	transform: scale(0);
}
input:checked + .product_form_input_pill_label i{
	border-color: var(--customColor100);
}
input:checked + .product_form_input_pill_label i::after{
	transform: scale(1);
}
#selected_variants_select_all{
	color: var(--customColor100);
	text-decoration: underline;
	cursor: pointer;
	transition: all 0.3s ease;
}
#selected_variants_select_all:hover{
	color: var(--customColor200);
}


/*** MEDIA QUERIES ***/
@media(max-width:992px) {
	h1.is-style-section_title {
		font-size: 40px;
	}
	.is-style-section_title {
		font-size: 30px;
	}
	.wp-block-cover.is-style-half_gradient::after {
		background: linear-gradient(to right, rgba(6, 7, 14, 1), rgba(6, 7, 14, 0.6) 100%);
		left: 0;
	}
	.wp-block-cover.is-style-half_gradient .wp-block-cover__image-background {
		width: 100%;
		left: 0;
	}
	.footer_widget .wp-block-social-links{
		justify-content: center;
	}
	.contact_grid{
		gap:10px !important;
	}
	#map_home .map_component_map{
		aspect-ratio: 1 !important;
	}
}

/*** SAMPLE PRODUCT COMPONENT ***/
.product_gallery_image{
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10px;
  }
.product_gallery_thumb_item{
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10px;
}

/* NPI Modal*/
.lightbox {
	position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
	display: none;
}
.lightbox.active {
  display: flex;
}
.lightbox_overlay {
	position: absolute;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}
.lightbox_content {
	position: relative;
    width: 100%;
    max-width: 500px;
    background-color: var(--neutralWhite);
    padding: 30px;
    border-radius: 10px;
    z-index: 100;
}
.close_lightbox {
	position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-image: url(../images/close.svg);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.field_alert{
	font-size: 14px;
	color: #e74c3c;
	margin-top: 5px;
}
.field_alert:empty{
	display: none;
}

/*** REGULAR PAGE ***/
.page_content_wrapper{
	padding: 80px 0;
}

/*** WOOCOMMERCE EDITIONS ***/
.wp-block-woocommerce-checkout-order-summary-totals-block{
    display: none;
}

/*** WOOCOMMERCE ACCOUNT PAGE ***/
.woocommerce-account.logged-in .woocommerce {
    display: flex;
    gap: 20px;
    max-width: var(--containerWidth);
    padding: 20px 0;
}

.woocommerce-MyAccount-navigation {
	width: 260px !important;
	min-width: 260px;
    background: var(--neutralWhite);
    border-radius: 12px;
    box-shadow: 0 2px 16px 0 rgba(52, 63, 82, 0.08);
    padding: 30px 0;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.woocommerce-MyAccount-navigation-link {
    margin: 0;
}

.woocommerce-MyAccount-navigation-link a {
    display: block;
    padding: 14px 32px;
    color: var(--neutral500);
    font-weight: 500;
    font-size: 17px;
    border-left: 4px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-MyAccount-navigation-link a:focus,
.woocommerce-MyAccount-navigation-link a:hover {
    background: var(--neutral200);
    color: var(--customColor100);
    border-left: 4px solid var(--customColor100);
    text-decoration: none;
}
.woocommerce-account .woocommerce::after, .woocommerce-account .woocommerce::before{
	display: none !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: calc(100% - 280px);
}

.woocommerce-MyAccount-content {
    flex: 1;
    background: var(--neutralWhite);
    border-radius: 12px;
    box-shadow: 0 2px 16px 0 rgba(52, 63, 82, 0.08);
    padding: 40px 32px;
    min-width: 0;
}

.woocommerce-MyAccount-content p {
    color: var(--neutral500);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.woocommerce-MyAccount-content a {
    color: var(--customColor100);
    text-decoration: underline;
    transition: color 0.2s;
}

.woocommerce-MyAccount-content a:hover {
    color: var(--customColor200);
    text-decoration: underline;
}

.woocommerce-notices-wrapper {
    margin-bottom: 24px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
	.footer_widget .wp-block-image{
		text-align: center;
		width: 100%;
	}
    .woocommerce {
        flex-direction: column;
        gap: 24px;
        margin: 30px 10px;
    }
    .woocommerce-MyAccount-navigation {
        min-width: 0;
        width: 100%;
        padding: 16px 0;
    }
    .woocommerce-MyAccount-navigation-link a {
        padding: 12px 20px;
        font-size: 16px;
    }
    .woocommerce-MyAccount-content {
        padding: 24px 12px;
    }
}