/**
 * GW Blueprint - Main Stylesheet
 * 
 * This file contains base styles and utilities for the theme
 */

/* CSS Variables for easy customization */
/* Reset and Base Styles */
:root{
	--header-height: 82px;
}
* {
	box-sizing: border-box;
}
body {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	overflow-x: clip;
}

/* Typography */
p:last-child,
ul:last-child,
ol:last-child{
	margin-bottom: 0;
}
ul:empty,
ol:empty,
li:empty,
p:empty{
	display: none;
}
img{
	max-width: 100%;
	border:none;
	outline:none;
}

input,
select,
textarea,
button{
	outline: none;
	font-family: var(--wp--preset--font-family--montserrat);
}
::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
}

/* Button Styles */
.wp-element-button,
.button{
	--btnColor: var(--wp--preset--color--custom-color-500);
	--btnColorHover: color-mix(in srgb, var(--btnColor) 85%, #000000);
	--btnTextColor: var(--wp--preset--color--neutral-white);
	--btnTextColorHover: var(--wp--preset--color--neutral-white);
	background: var(--btnColor);
	color: var(--btnTextColor);

	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap:10px;
	min-height: 40px;
	cursor: pointer;
	transition: all 0.3s;

	&:hover{
		background: var(--btnColorHover);
		color: var(--btnTextColorHover);
	}
}
.is-style-outline .wp-element-button{
	background: none;
	border: 1px solid var(--btnColor);
	color: var(--btnColor);

	&:hover{
		background: var(--btnColor);
		color: var(--btnTextColorHover);
	}
}
.button{
	border:none;
	padding:10px 35px;
	font-size: 14px;
	border-radius: 3px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
}
/** BUTTON COLORS **/
.is-style-secondary-fill .wp-element-button,
.is-style-secondary-outline .wp-element-button{
	--btnColor: var(--wp--preset--color--neutral-500);
	--btnColorHover: color-mix(in srgb, var(--btnColor) 85%, #000000);
	--btnTextColor: var(--wp--preset--color--neutral-white);
	--btnTextColorHover: var(--wp--preset--color--neutral-white);
}

.is-style-secondary-outline .wp-element-button{
	background: none;
	border: 1px solid var(--btnColor);
	color: var(--btnTextColor);

	&:hover{
		background: var(--btnColorHover);
		color: var(--btnTextColorHover);
	}
}
.is-style-white-fill .wp-element-button,
.is-style-white-outline .wp-element-button{
	--btnColor: var(--wp--preset--color--neutral-white);
	--btnColorHover: var(--wp--preset--color--neutral-white);
	--btnTextColor: var(--wp--preset--color--neutral-500);
	--btnTextColorHover: var(--wp--preset--color--neutral-500);
}

.is-style-white-outline .wp-element-button{
	background: none;
	border: 1px solid var(--btnColor);
	color: var(--btnColor);

	&:hover{
		background: var(--btnColorHover);
		color: var(--btnTextColorHover);
	}
}

.is-style-read-more .wp-element-button{
	background: none;
	color: var(--wp--preset--color--neutral-500);

	&::after{
		content: '';
		display: inline-block;
		width: 18px;
		height: 18px;
		background: url(../images/arrow-small-right.svg) no-repeat center center;
		background-size: contain;
		background-position: center center;
		transition: all 0.5s;
	}
	&:hover{
		&::after{
			transform: translateX(10px);
		}
	}
}

.is-style-read-more-alt .wp-element-button{
	--btnColor: var(--wp--preset--color--custom-color-500);
	--btnColorHover: var(--wp--preset--color--custom-color-500);
	--btnTextColor: var(--wp--preset--color--custom-color-500);
	--btnTextColorHover: var(--wp--preset--color--neutral-white);

	position: relative;
	background: none;
	color: var(--btnTextColor);
	z-index: 2;

	&::before{
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		width: 100%;
		height: 100%;
		border-width: 0 1px;
		border-style: solid;
		border-color: var(--btnColor);
		transition: all 0.5s;
		transform: translateX(-50%);
		z-index: -1;
	}
	&::after{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--btnColor);
		transform-origin: center;
		transform: scaleX(0);
		transition-delay: 0.5s;
		transition: all 0.5s;
		z-index: -1;
	}
	&:hover {
		color: var(--btnTextColorHover);
		&::before{
			width: 0;
		}
		&::after{
			transform: scaleX(1);
		}
	}
}

/*** LINK WRAPPER STYLES ***/
.link_wrapper {
	color: currentColor;
	text-decoration: none;
	display: flex;
}
.link_wrapper > .wp-block-group{
	width: 100%;
}

/*** HELPERS ***/
.w-100{
	width: 100%;
}
.wp-block-heading em{
	font-weight: 300;
}
.wp-block-image{
	max-width: 100%;
	height: auto;
}
.no-decoration,
.no-decoration a{
	text-decoration: none;
}
.divider_end_section{
	position:relative;

	&::before{
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		aspect-ratio: 1440/57;
		background-image:url(../images/secton-divider-end.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		z-index: 1;
	}
}

/*** GRAVITY FORMS ***/
.gform_description:empty,
.gform_heading{
	display: none !important;
}
.form_wrapper{
	--fields-bg-color: var(--wp--preset--color--neutral-white);
	--fields-border-color: var(--wp--preset--color--neutral-300);
	--fields-text-color: var(--wp--preset--color--neutral-500);
	--fields-border-radius: 5px;
	--fields-padding: 10px 20px;
	--fields-height: 50px;
}
.form_wrapper .gform_wrapper.gravity-theme input[type=text],
.form_wrapper .gform_wrapper.gravity-theme input[type=email],
.form_wrapper .gform_wrapper.gravity-theme input[type=password],
.form_wrapper .gform_wrapper.gravity-theme input[type=tel],
.form_wrapper .gform_wrapper.gravity-theme input[type=number],
.form_wrapper .gform_wrapper.gravity-theme select,
.form_wrapper .gform_wrapper.gravity-theme textarea{
    border: 1px solid var(--fields-border-color);
    background: var(--fields-bg-color);
	color: var(--fields-text-color);
	border-radius: var(--fields-border-radius);
    height: var(--fields-height);
    padding: var(--fields-padding);
}
.form_wrapper .gform_wrapper.gravity-theme .gfield_label{
	display: block;
	font-size: var(--wp--preset--font-size--md);
	font-weight: 400;
	margin-bottom: 10px;
	font-weight: normal;
}
.form_wrapper .gform_wrapper.gravity-theme .gform_fields {
	grid-row-gap: var(--wp--preset--spacing--lg);
}
.form_wrapper .gform_footer{
	justify-content: center;
	padding: 0 !important;
	margin-top:30px !important;
}
.form_wrapper .gform_footer .button{
	margin:0 !important;
}

.sidebar_form_wrapper .gfield_consent_label{
	font-size: 13px;
	line-height: 1.2;
}
.sidebar_form_wrapper .gfield_consent_label a{
	color: var(--wp--preset--color--custom-color-500);
}

/*** FORMS SPECIAL STYLES ***/
#field_1_6{
	margin-top:-20px
}
#field_1_6 .gchoice{
	display: flex;
    justify-content: flex-end;
    gap: 2px;
    align-items: center;
}

/*** HEADER ***/
header.wp-block-template-part{
	position: relative;
	height: var(--header-height);
}
#header_main{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background: rgba(255, 255, 255, 0.7);
	z-index: 100;
	backdrop-filter: blur(10px);
}
.float_active #header_main{
	position: fixed;
}
.admin-bar.float_active #header_main{
	top: 32px;
}

/*** HEADER MENU ***/
.header_menu{
	color: var(--wp--preset--color--neutral-500);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 30px;

	a{
		text-decoration: none;
		color: inherit;
		&:hover{
			color: var(--wp--preset--color--custom-color-500);
		}
	}
	.current-menu-item a{
		font-weight: 600;
		color: var(--wp--preset--color--custom-color-500);
	}
}

/*** MOBILE MENU ***/
#menu_trigger{
	position: relative;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
}
#menu_trigger::after{
	content: '';
    position: absolute;
    top: calc(50% - 2px);
    left: calc(50% - 12.5px);
    width: 25px;
    height: 3px;
    border-radius: 99px;
    background: currentColor;
    transition: all 0.5s;
}
.menu_open #menu_trigger::after{
	transform: translateX(100%);
	opacity: 0;
}
#menu_trigger i{
	position: relative;
	width: 25px;
	height: 16px;
}
#menu_trigger i::before{
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
    height: 3px;
    border-radius: 99px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::before{
	transform: translate(0px, 5px) rotate(45deg);
}
#menu_trigger i::after{
	content: '';
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
    height: 3px;
    border-radius: 99px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::after{
	transform: translate(0px, -8px) rotate(-45deg);
}
#mobile_menu_wrapper{
	transition: all 0.3s;
	clip-path: inset(0 0 100% 0);
}
.menu_open #mobile_menu_wrapper{
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    clip-path: inset(0 0 -15px 0);
}
#mobile_menu{
	padding:0;
	margin:0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-transform: uppercase;
	text-align: center;
	font-size: 15px;
	letter-spacing: 1px;
	font-weight: 500;

	a{
		text-decoration: none;
		color: inherit;
		&:hover{
			color: var(--wp--preset--color--custom-color-500);
		}
	}
}
/*** FOOTER ***/
footer.wp-block-template-part{
	margin: 0 !important;
}
.footer_menu a{
	text-decoration: none;
}

.footer_main_menu{
	gap: 26px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	list-style: none;
	margin-inline:0;
	padding:0;
	text-align: center;

	a{
		text-decoration: none;
		color: inherit;
		&:hover{
			color: var(--wp--preset--color--custom-color-500);
		}
	}
}
.footer_column_nav{
	font-size: 14px;
	font-weight: 400;
	list-style: none;
	text-align: center;
	gap: 5px;
	padding: 0;
	color: var(--wp--preset--color--neutral-300);

	a{
		text-decoration: none;
		color: inherit;
		&:hover{
			color: var(--wp--preset--color--custom-color-400);
		}
	}
}

/*** COMPONENTS ***/

/** ACCOUNT BUTTON **/
.account_button{
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--wp--preset--color--neutral-500);
	color: var(--wp--preset--color--neutral-white);
	transition: background 0.3s;
	cursor: pointer;
}
.account_button:hover{
	background: color-mix(in srgb, var(--wp--preset--color--neutral-500) 85%, #000000);
}
.account_button svg{
	display: block;
	width: 20px;
	height: 20px;
}
/** FEATURE BOX **/
.feature_box{
	position: relative;

	&::before{
		content: '';
		position: absolute;
		top: -4px;
		left: 50%;
		width: 100px;
		height: 4px;
		background: var(--wp--preset--color--custom-color-500);
		transform: translateX(-50%);
	}
	img{
		width:40px;
	}
}

/** AUTHOR BAR **/
.author_bar{
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	text-decoration: none;
}
.author_bar__label{
	font-size: 12px;
	color: var(--wp--preset--color--neutral-250);
}
.author_bar__bars{
	display: inline-flex;
	gap: 15px;
}
.author_bar__bars span{
	width: 5px;
	height: 10px;
}
.author_bar__bars span:nth-child(1){ background: #00b4bd; }
.author_bar__bars span:nth-child(2){ background: #ff2e70; }
.author_bar__bars span:nth-child(3){ background: #ffc600; }
.author_bar__bars span:nth-child(4){ background: #9366dd; }
.author_bar__bars span:nth-child(5){ background: #3787d6; }

/** EMAIL CAPTURE **/
.email_capture{
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--sm);
	box-sizing: border-box;
	width: 100%;
	max-width: 720px;
}
.email_capture__form{
	display: flex;
	align-items: stretch;
	gap: var(--wp--preset--spacing--xs);
	box-sizing: border-box;
	width: 100%;
	padding: var(--wp--preset--spacing--xs);
	background: var(--wp--preset--color--neutral-150);
	border-radius: 10px;
}
.email_capture__input{
	flex: 1 1 200px;
	min-width: 0;
	border: none;
	background: transparent;
	padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--md);
	font-family: inherit;
	font-size: var(--wp--preset--font-size--md);
	color: var(--wp--preset--color--neutral-500);
}
.email_capture__input::placeholder{
	color: var(--wp--preset--color--neutral-250);
}
.email_capture__input:focus{
	outline: none;
}
.email_capture__button{
	flex: 0 0 auto;
	border: none;
	cursor: pointer;
	padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--lg);
	border-radius: 6px;
	background: var(--wp--preset--color--custom-color-500);
	color: var(--wp--preset--color--neutral-white);
	font-family: inherit;
	font-size: var(--wp--preset--font-size--md);
	transition: background 0.3s;
}
.email_capture__button:hover{
	background: var(--wp--preset--color--custom-color-600);
}
.email_capture__terms{
	margin: 0;
	text-align: right;
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--neutral-300);
}
.email_capture__terms a{
	color: inherit;
	text-decoration: underline;
}

/** PLAN TOGGLE **/
.plan_toggle{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}
.plan_toggle__switch{
	display: flex;
	gap: 5px;
	box-sizing: border-box;
	width: 100%;
	max-width: 380px;
	height: 46px;
	padding: 5px;
	border-radius: 5px;
	background: var(--wp--preset--color--neutral-150);
}
.plan_toggle__option{
	position: relative;
	flex: 1 0 0;
	min-width: 0;
	margin: 0;
	cursor: pointer;
}
.woocommerce-page .plan_toggle__option{
	margin-bottom: 0;
}
.plan_toggle__radio{
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}
.plan_toggle__tab{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 100%;
	padding: 9px 12px;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	white-space: nowrap;
	color: var(--wp--preset--color--neutral-250);
	transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.plan_toggle__radio:checked + .plan_toggle__tab,
.plan_toggle__tab.is-active{
	background: var(--wp--preset--color--neutral-500);
	color: var(--wp--preset--color--neutral-white);
	box-shadow: 0 1px 1.5px rgba(9, 13, 15, 0.12);
}
.plan_toggle__radio:focus-visible + .plan_toggle__tab{
	outline: 2px solid var(--wp--preset--color--custom-color-500);
	outline-offset: 2px;
}
.plan_toggle__badge{
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 3px;
	background: #f04438;
	font-size: var(--wp--preset--font-size--xs);
	font-weight: 500;
	line-height: 1;
	color: var(--wp--preset--color--neutral-white);
}
.plan_toggle__details{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}
.plan_toggle__price{
	margin: 0;
	font-weight: 700;
	line-height: 1;
	color: var(--wp--preset--color--neutral-500);
}
.plan_toggle__currency,
.plan_toggle__suffix{
	font-size: var(--wp--preset--font-size--display-md);
}
.plan_toggle__amount{
	font-size: 55px;
}
.plan_toggle__note{
	margin: 0;
	font-size: var(--wp--preset--font-size--lg);
	font-weight: 600;
	color: var(--wp--preset--color--neutral-300);
}
/* En una página de producto con Plan Toggle, el bloque controla el <select
 * #pa_plan> vía JS, así que la tabla de variaciones nativa sobra. Se oculta
 * (sigue en el DOM y funcional). El :has() lo limita a productos que sí usan el
 * toggle, para no romper la selección de variación en otros productos. */
.single-product:has(.plan_toggle) .variations{
	display: none;
}

/** FORM WRAPPER **/
.gw_form{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--wp--preset--spacing--lg);
	width: 100%;
}

/** WORD ROTATOR **/
.word_rotator__rotated{
	color: var(--wp--preset--color--custom-color-500);
}
.word_rotator__caret{
	display: inline-block;
	width: 0.06em;
	min-width: 2px;
	height: 1em;
	margin-left: 0.04em;
	background: currentColor;
	vertical-align: -0.08em;
	animation: word_rotator_blink 1s steps(1) infinite;
}
@keyframes word_rotator_blink{
	50%{ opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
	.word_rotator__caret{ animation: none; }
}

/** ACCOUNT REGISTER **/
.account_register{
	width: 100%;
}
.account_register__form{
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--base);
	box-sizing: border-box;
	width: 100%;
	max-width: 625px;
	margin-inline: auto;
}
.account_register__stepper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: var(--wp--preset--spacing--xs);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
}
.account_register__step{
	font-weight: 600;
	color: var(--wp--preset--color--neutral-300);
}
.account_register__step.is-current{
	font-weight: 700;
	color: var(--wp--preset--color--custom-color-500);
}
.account_register__step.is-done{
	color: var(--wp--preset--color--neutral-300);
}
.account_register__sep{
	color: var(--wp--preset--color--neutral-300);
}
.account_register__title{
	margin: 0;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--wp--preset--color--neutral-500);
}
.account_register__row{
	display: flex;
	gap: var(--wp--preset--spacing--base);
	width: 100%;
}
.account_register__field{
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--xs);
	flex: 1 1 0;
	min-width: 0;
}
.account_register__label{
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.9px;
	color: var(--wp--preset--color--neutral-300);
}
.account_register__input{
	box-sizing: border-box;
	width: 100%;
	padding: var(--wp--preset--spacing--sm) 14px;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 3px;
	background: var(--wp--preset--color--neutral-white);
	font-family: inherit;
	font-size: 15px;
	color: var(--wp--preset--color--neutral-500);
}
.account_register__input::placeholder{
	color: var(--wp--preset--color--neutral-250);
}
.account_register__input:focus{
	outline: none;
	border-color: var(--wp--preset--color--custom-color-500);
	box-shadow: 0 0 0 1px var(--wp--preset--color--custom-color-500);
}
.account_register__input.has-error,
.login__input.has-error{
	border-color: var(--wp--preset--color--custom-color-500);
	box-shadow: 0 0 0 1px var(--wp--preset--color--custom-color-500);
}
/* Mensaje de error en línea (validación al blur). Lo inyecta forms.js como
   hermano del input; el gap del .__field se encarga de la separación. */
.field_error{
	font-size: 12px;
	line-height: 1.3;
	color: var(--wp--preset--color--custom-color-600);
}
.account_register__control{
	position: relative;
	width: 100%;
}
/* Cuando hay botón de revelar, dejamos hueco para que no tape el texto. */
.account_register__control.has-reveal .account_register__input{
	padding-right: 52px;
}
.account_register__reveal{
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	background: var(--wp--preset--color--neutral-500);
	color: var(--wp--preset--color--neutral-white);
	transition: background 0.2s;
}
.account_register__reveal:hover{
	background: var(--wp--preset--color--neutral-400, #3a4750);
}
.account_register__reveal:focus-visible{
	outline: 2px solid var(--wp--preset--color--custom-color-500);
	outline-offset: 2px;
}
.account_register__reveal-icon{
	width: 18px;
	height: 18px;
}
/* Por defecto se ve el ojo "mostrar"; al revelar, swap al ojo tachado. */
.account_register__reveal-icon--hide{ display: none; }
.account_register__reveal.is-revealed .account_register__reveal-icon--show{ display: none; }
.account_register__reveal.is-revealed .account_register__reveal-icon--hide{ display: inline-block; }
.account_register__hint{
	margin: 0;
	font-size: 12px;
	color: var(--wp--preset--color--neutral-300);
}
.account_register__actions{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.account_register__submit{
	min-width: 180px;
	padding: var(--wp--preset--spacing--sm) 22px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	background: var(--wp--preset--color--custom-color-500);
	color: var(--wp--preset--color--neutral-white);
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: background 0.3s;
}
.account_register__submit:hover{
	background: var(--wp--preset--color--custom-color-600);
}
.account_register__login{
	margin: 0;
	text-align: center;
	font-size: 13px;
	color: var(--wp--preset--color--neutral-300);
}
.account_register__login a{
	color: var(--wp--preset--color--custom-color-500);
	text-decoration: none;
}
.account_register__login a:hover{
	text-decoration: underline;
}
@media (max-width: 600px){
	.account_register__row{
		flex-direction: column;
		gap: var(--wp--preset--spacing--base);
	}
}

/** BRAND REGISTER **/
.brand_register{
	width: 100%;
}
.brand_register__form{
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--base);
	box-sizing: border-box;
	width: 100%;
	max-width: 440px;
	margin-inline: auto;
}
.brand_register__stepper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: var(--wp--preset--spacing--xs);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
}
.brand_register__step{
	font-weight: 600;
	color: var(--wp--preset--color--neutral-300);
}
.brand_register__step.is-current{
	font-weight: 700;
	color: var(--wp--preset--color--custom-color-500);
}
.brand_register__sep{
	color: var(--wp--preset--color--neutral-300);
}
.brand_register__title{
	margin: 0;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--wp--preset--color--neutral-500);
}
.brand_register__subtitle{
	margin: 0;
	text-align: center;
	font-size: 13px;
	color: var(--wp--preset--color--neutral-300);
}
.brand_register__field{
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--xs);
	width: 100%;
}
.brand_register__label{
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.9px;
	color: var(--wp--preset--color--neutral-300);
}
.brand_register__label--plan{
	letter-spacing: normal;
	font-weight: 600;
}
.brand_register__input{
	box-sizing: border-box;
	width: 100%;
	padding: var(--wp--preset--spacing--sm) 14px;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 3px;
	background: var(--wp--preset--color--neutral-white);
	font-family: inherit;
	font-size: 15px;
	color: var(--wp--preset--color--neutral-500);
}
.brand_register__input::placeholder{
	color: var(--wp--preset--color--neutral-250);
}
.brand_register__input:focus{
	outline: none;
	border-color: var(--wp--preset--color--custom-color-500);
	box-shadow: 0 0 0 1px var(--wp--preset--color--custom-color-500);
}
.brand_register__plan-toggle{
	display: flex;
	gap: var(--wp--preset--spacing--2xs);
	box-sizing: border-box;
	width: 100%;
	padding: var(--wp--preset--spacing--2xs);
	border-radius: 10px;
	background: var(--wp--preset--color--neutral-100);
}
.brand_register__plan{
	flex: 1 1 0;
	margin: 0;
	padding: var(--wp--preset--spacing--xs) 0;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	transition: background 0.25s, color 0.25s;
}
.brand_register__plan-radio{
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.brand_register__plan-name{
	font-size: 13px;
	color: var(--wp--preset--color--neutral-300);
}
.brand_register__plan.is-active{
	background: var(--wp--preset--color--neutral-500);
}
.brand_register__plan.is-active .brand_register__plan-name{
	color: var(--wp--preset--color--neutral-white);
	font-weight: 600;
}
.brand_register__plan-radio:focus-visible + .brand_register__plan-name{
	outline: 2px solid var(--wp--preset--color--custom-color-500);
	outline-offset: 2px;
}
.brand_register__summary{
	box-sizing: border-box;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--2xs);
	padding: var(--wp--preset--spacing--base);
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 12px;
	background: var(--wp--preset--color--neutral-white);
}
.brand_register__summary-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brand_register__summary-label{
	font-size: 14px;
	font-weight: 600;
	color: var(--wp--preset--color--neutral-500);
}
.brand_register__summary-price{
	font-size: 22px;
	font-weight: 700;
	color: var(--wp--preset--color--custom-color-500);
}
.brand_register__summary-note{
	margin: 0;
	font-size: 12px;
	color: var(--wp--preset--color--neutral-400);
}
.brand_register__actions{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.brand_register__submit{
	min-width: 214px;
	padding: var(--wp--preset--spacing--sm) 22px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	background: var(--wp--preset--color--custom-color-500);
	color: var(--wp--preset--color--neutral-white);
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: background 0.3s;
}
.brand_register__submit:hover{
	background: var(--wp--preset--color--custom-color-600);
}
.brand_register__back{
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--wp--preset--color--neutral-300);
	text-decoration: none;
}
.brand_register__back:hover{
	color: var(--wp--preset--color--neutral-500);
}

/** LOGIN **/
.login{
	width: 100%;
}
.login__box{
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--md);
	box-sizing: border-box;
	width: 100%;
	max-width: 400px;
	margin-inline: auto;
}
.login__title{
	margin: 0;
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--wp--preset--color--neutral-500);
}
.login__lead{
	margin: 0;
	text-align: center;
	font-size: 13px;
	color: var(--wp--preset--color--neutral-300);
}
.login__form{
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--md);
	width: 100%;
}
.login__field{
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--xs);
	width: 100%;
}
.login__label{
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.9px;
	color: var(--wp--preset--color--neutral-300);
}
.login__input{
	box-sizing: border-box;
	width: 100%;
	padding: var(--wp--preset--spacing--sm) 14px;
	border: 1px solid var(--wp--preset--color--neutral-200);
	border-radius: 3px;
	background: var(--wp--preset--color--neutral-white);
	font-family: inherit;
	font-size: 15px;
	color: var(--wp--preset--color--neutral-500);
}
.login__input::placeholder{
	color: var(--wp--preset--color--neutral-250);
}
.login__input:focus{
	outline: none;
	border-color: var(--wp--preset--color--custom-color-500);
	box-shadow: 0 0 0 1px var(--wp--preset--color--custom-color-500);
}
/* Campo con botón de revelar contraseña (ojo). Mismo patrón que
   .account_register__reveal: el botón se posiciona absoluto dentro del control y
   alterna entre los SVGs show/hide vía .is-revealed (lo togglea forms.js). */
.login__control{
	position: relative;
	width: 100%;
}
.login__control.has-reveal .login__input{
	padding-right: 52px;
}
.login__reveal{
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	background: var(--wp--preset--color--neutral-500);
	color: var(--wp--preset--color--neutral-white);
	transition: background 0.2s;
}
.login__reveal:hover{
	background: var(--wp--preset--color--neutral-400, #3a4750);
}
.login__reveal:focus-visible{
	outline: 2px solid var(--wp--preset--color--custom-color-500);
	outline-offset: 2px;
}
.login__reveal-icon{
	width: 18px;
	height: 18px;
}
.login__reveal-icon--hide{ display: none; }
.login__reveal.is-revealed .login__reveal-icon--show{ display: none; }
.login__reveal.is-revealed .login__reveal-icon--hide{ display: inline-block; }
.login__row{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--wp--preset--spacing--sm);
}
.login__check{
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	font-size: 13px;
	color: var(--wp--preset--color--neutral-400);
	cursor: pointer;
}
.login__forgot{
	font-size: 13px;
	font-weight: 600;
	color: var(--wp--preset--color--custom-color-500);
	text-decoration: none;
	white-space: nowrap;
}
.login__forgot:hover{
	text-decoration: underline;
}
.login__actions{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.login__submit{
	min-width: 170px;
	padding: var(--wp--preset--spacing--sm) 22px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	background: var(--wp--preset--color--custom-color-500);
	color: var(--wp--preset--color--neutral-white);
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: background 0.3s;
}
.login__submit:hover{
	background: var(--wp--preset--color--custom-color-600);
}
.login__alt{
	margin: 0;
	text-align: center;
	font-size: 13px;
	color: var(--wp--preset--color--neutral-300);
}
.login__alt a{
	color: var(--wp--preset--color--custom-color-500);
	text-decoration: none;
}
.login__alt a:hover{
	text-decoration: underline;
}

/** FLOATING SHAPES **/
.floating_shapes{
	--fs-scale: 1;
	position: relative;
	width: 100%;
	min-height: calc(var(--fs-min-height, 515px) * var(--fs-scale));
	overflow: hidden;
}
/* Difumina la franja superior: las figuras se desvanecen en blanco al salir
   por arriba, en vez de cortarse de golpe contra el borde. */
.floating_shapes::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
	pointer-events: none;
	z-index: 2;
}
.floating_shapes__shape{
	position: absolute;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.floating_shapes__shape-inner{
	display: block;
	width: 100%;
	height: 100%;
}
.floating_shapes__circle,
.floating_shapes__ring{
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.floating_shapes__ring{
	border-style: solid;
	background: transparent;
}
.floating_shapes__shape svg,
.floating_shapes__bubble svg{
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}
.floating_shapes__logo{
	position: absolute;
	left: 50%;
	top: 50%;
	width: calc(var(--logo-size, 190px) * var(--fs-scale));
	height: calc(var(--logo-size, 190px) * var(--fs-scale));
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.floating_shapes__logo-img{
	display: block;
	width: 100%;
	height: auto;
}
.floating_shapes__logo-placeholder{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--wp--preset--color--custom-color-500);
}
@keyframes floating_shapes_bob{
	0%   { transform: translate(0, 0) rotate(0deg); }
	50%  { transform: translate(var(--fs-dx, 0px), calc(-1 * var(--fs-amp, 14px))) rotate(var(--fs-rot, 0deg)); }
	100% { transform: translate(0, 0) rotate(0deg); }
}
.floating_shapes.is-animated .floating_shapes__shape-inner{
	animation: floating_shapes_bob var(--fs-dur, 6s) ease-in-out var(--fs-delay, 0s) infinite;
}
.floating_shapes.is-animated.is-speed-slow .floating_shapes__shape-inner{
	animation-duration: calc(var(--fs-dur, 6s) * 1.6);
}
.floating_shapes.is-animated.is-speed-fast .floating_shapes__shape-inner{
	animation-duration: calc(var(--fs-dur, 6s) * 0.6);
}
.floating_shapes.is-animated .floating_shapes__logo-img,
.floating_shapes.is-animated .floating_shapes__logo-placeholder{
	--fs-amp: 10px;
	animation: floating_shapes_bob 7s ease-in-out infinite;
}
.floating_shapes__field{
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}
/* Burbujas: figuras que suben de abajo hacia arriba en bucle. Empiezan justo bajo
   el borde inferior y recorren toda la altura del área (--fs-h) hasta salir arriba. */
.floating_shapes__bubble{
	position: absolute;
	bottom: -14%;
	display: block;
	opacity: 0;
	pointer-events: none;
	will-change: transform, opacity;
}
.floating_shapes.is-animated .floating_shapes__bubble{
	animation: fs_bubble var(--p-dur, 14s) linear var(--p-delay, 0s) infinite;
}
@keyframes fs_bubble{
	0%   { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg); }
	8%   { opacity: var(--p-op, 0.95); }
	25%  { transform: translate3d(var(--p-sway, 12px), calc(-0.25 * (var(--fs-h, 515px) + 110px)), 0) rotate(calc(var(--p-rot, 0deg) * 0.25)); }
	50%  { transform: translate3d(0, calc(-0.5 * (var(--fs-h, 515px) + 110px)), 0) rotate(calc(var(--p-rot, 0deg) * 0.5)); }
	75%  { transform: translate3d(calc(-1 * var(--p-sway, 12px)), calc(-0.75 * (var(--fs-h, 515px) + 110px)), 0) rotate(calc(var(--p-rot, 0deg) * 0.75)); }
	92%  { opacity: var(--p-op, 0.95); }
	100% { opacity: 0; transform: translate3d(0, calc(-1 * (var(--fs-h, 515px) + 110px)), 0) rotate(var(--p-rot, 0deg)); }
}
@media (max-width: 992px){
	.floating_shapes{ --fs-scale: 0.7; }
}
@media (max-width: 600px){
	.floating_shapes{ --fs-scale: 0.5; }
}
@media (prefers-reduced-motion: reduce){
	.floating_shapes .floating_shapes__shape-inner,
	.floating_shapes .floating_shapes__logo-img,
	.floating_shapes .floating_shapes__logo-placeholder,
	.floating_shapes .floating_shapes__bubble{
		animation: none !important;
	}
	.floating_shapes .floating_shapes__bubble{ opacity: var(--p-op, 0.9) !important; }
}

/*** FLOATING LOGOS ***/
/* Variante de floating-shapes: varios logos repartidos (ninguno centrado) más las
   figuras decorativas; todo flota de forma discreta e independiente. */
.floating_logos{
	--fl-scale: 1;
	position: relative;
	width: 100%;
	min-height: calc(var(--fl-min-height, 523px) * var(--fl-scale));
	overflow: hidden;
}
.floating_logos__shape,
.floating_logos__logo{
	position: absolute;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.floating_logos__shape-inner,
.floating_logos__logo-inner{
	display: block;
	width: 100%;
	height: 100%;
}
.floating_logos__circle,
.floating_logos__ring{
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.floating_logos__ring{
	border-style: solid;
	background: transparent;
}
.floating_logos__shape svg,
.floating_logos__logo svg{
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}
@keyframes floating_logos_bob{
	0%   { transform: translate(0, 0) rotate(0deg); }
	50%  { transform: translate(var(--fl-dx, 0px), calc(-1 * var(--fl-amp, 12px))) rotate(var(--fl-rot, 0deg)); }
	100% { transform: translate(0, 0) rotate(0deg); }
}
.floating_logos.is-animated .floating_logos__shape-inner,
.floating_logos.is-animated .floating_logos__logo-inner{
	animation: floating_logos_bob var(--fl-dur, 7s) ease-in-out var(--fl-delay, 0s) infinite;
}
.floating_logos.is-animated.is-speed-slow .floating_logos__shape-inner,
.floating_logos.is-animated.is-speed-slow .floating_logos__logo-inner{
	animation-duration: calc(var(--fl-dur, 7s) * 1.6);
}
.floating_logos.is-animated.is-speed-fast .floating_logos__shape-inner,
.floating_logos.is-animated.is-speed-fast .floating_logos__logo-inner{
	animation-duration: calc(var(--fl-dur, 7s) * 0.6);
}
@media (max-width: 992px){
	.floating_logos{ --fl-scale: 0.7; }
}
@media (max-width: 600px){
	.floating_logos{ --fl-scale: 0.5; }
}
@media (prefers-reduced-motion: reduce){
	.floating_logos .floating_logos__shape-inner,
	.floating_logos .floating_logos__logo-inner{
		animation: none !important;
	}
}

/*** ACCORDION ***/
.wp-block-accordion-heading__toggle{
	padding: 0;
}
.wp-block-accordion-heading__toggle-icon{
	position: relative;
	width: 15px;
	height: 15px;
	color: transparent;
}
.wp-block-accordion-heading__toggle-icon::before{
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--wp--preset--color--custom-color-500);
	mask: url(../images/plus.svg) no-repeat center / contain;
	-webkit-mask: url(../images/plus.svg) no-repeat center / contain;
	transition: transform 0.2s ease;
}
.wp-block-accordion-item.is-open > .wp-block-accordion-heading .wp-block-accordion-heading__toggle-icon{
	transform: none;
}
.wp-block-accordion-heading__toggle[aria-expanded="true"] .wp-block-accordion-heading__toggle-icon::before{
	transform: rotate(45deg);
}
@media (prefers-reduced-motion: reduce){
	.wp-block-accordion-heading__toggle-icon::before{
		transition: none;
	}
}
h1 small{
	font-size: 70%;
	font-weight: 300;
	font-style: italic;
}

/*** PAGINATION ***/

/*** WOOCOMMERCE ***/
.woocommerce div.product{
	margin: 0;
}
.single_add_to_cart_button{
	width: 100%;
}

/*** MEDIA QUERIES ***/
@media (max-width: 1320px) {
}

@media (max-width: 992px) {
	:root {
		--header-height: 73px;
	}
	.custom-logo-link{
		width:140px;
	}
	#menu_trigger{
		display: inline-flex;
	}
	h1{
		--wp--preset--font-size--display-2-xl: 35px !important;
	}
	.email_capture__button{
		padding:0;
		width:42px;
		height: 42px;
		color:transparent;
		background-image: url(../images/paper-plane.svg);
		background-size: 24px;
		background-repeat: no-repeat;
		background-position: center center;
	}
	h2 {
		--wp--preset--font-size--display-42: 25px;
	}
	.footer_main_menu{
		flex-direction: column !important;
	}
	.divider_end_section{
		padding-top: 60px !important;
    	padding-bottom: 60px !important;

		p{
			font-size: 18px !important;
		}
	}
	.center-in-mobile{
		text-align: center !important;
	}
	.brands-logo-wrapper img{
		width: 230px !important;
	}
}
