/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ TIPOGRAFÍAS HELVETICA NOW DISPLAY                                        ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
@font-face {
  font-family: 'Barlow-Regular';
  src: url('../fonts/Barlow-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Barlow-Medium';
  src: url('../fonts/Barlow-Medium.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Barlow-SemiBold';
  src: url('../fonts/Barlow-SemiBold.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Barlow-ExtraBold';
  src: url('../fonts/Barlow-ExtraBold.ttf') format('truetype');
  font-display: swap;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ VARIABLES GLOBALES                                                       ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
:root {
    --color-primario: #191E26;
	--color-primario-medio: #202731;
	--color-primario-claro: #353542;
    --color-texto: #c9c9c9;
    --color-blanco: #ffffff;
	--color-gris-claro: #f9f9f9;
	--color-gris-medio: #353542;
    --color-hover: #f9fafb;
    --color-borde: #ffffff30;
	--color-verde: #A9FA56;
	--color-azul: #3B82F6;
	--color-purpura: #DE32FF; /*#B321E1;*/
	--color-purpura-opacidad: #DE32FF20; /*#B321E120;*/
	--color-purpura-oscuro: #B023CB; /*#8A0FB1;*/
    --color-tooltip-bg: #111827;
    --color-tooltip-text: #ffffff;

    --tipografia-titular: 'Barlow-ExtraBold', Helvetica, Arial, sans-serif;
	--tipografia-subtitulos: 'Barlow-SemiBold', Helvetica, Arial, sans-serif;
	--tipografia-medium: 'Barlow-Medium', Helvetica, Arial, sans-serif;
    --tipografia-parrafos: 'Barlow-Regular', Helvetica, Arial, sans-serif;
}


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ ESTILOS BASE                                                             ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
*{
	box-sizing: border-box !important;
}

body{
	background: var(--color-primario-medio);
}

::selection {
	background-color: var(--color-verde);
	color: var(--color-primario);
}

a{
	text-decoration: none !important;
}

*{
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.lista-en-contenido li{
	list-style: none; 
}

/* Eliminar cuadro azul de click */
.lista-en-contenido li::before {
	content: "▪";
	color: var(--color-primario);
	display: inline-block;
	width: 1em;
	margin-left: -1em 
}


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ NEUTRALIZAR FOCUS (SOLO PANEL JARV)                                      ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

body :focus,
body :focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

body input:focus,
body select:focus,
body textarea:focus,
body button:focus,
body a:focus {
    outline: none !important;
    box-shadow: none !important;
}

body *:focus-within {
    box-shadow: none !important;
}


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ DISEÑO DE SCROLLBAR                                                      ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

::-webkit-scrollbar{
	width: 7px;
	height:5px;
	background: var(--color-primario); 
}

::-webkit-scrollbar-thumb{
 	background: var(--color-azul); 
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ FIBOSEARCH                                                               ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.dgwt-wcas-search-icon.js-dgwt-wcas-search-icon-handler{
	fill: var(--color-blanco) !important;
}



/* =====================================================
   TEXOZ CART
===================================================== */
#texoz-header-cart{
	position:relative;
	display:flex;
	align-items:center;
	margin-left: 3px;
}

#texoz-cart-toggle{
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	width:30px;
	height:30px;
	border:none;
	background:transparent;
	cursor:pointer;
	color:var(--color-blanco);
	font-size:20px;
	padding:3px;
}

#texoz-cart-toggle:hover{
	opacity:.85;
}

#texoz-cart-count{
	position:absolute;
	top:-5px;
	right:-5px;
	min-width:20px;
	height:20px;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0 5px;
	border-radius:50px;
	background:var(--color-verde);
	color:var(--color-primario);
	font-size:11px;
	font-weight:700;
	line-height:1;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ CARRITO FLOTANTE                                                         ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

/*boton finalizar compra*/
.elementor-button--checkout{
	padding: 10px !important;
	border-radius: 3px !important;
}
.elementor-button--checkout:hover{
	background: var(--color-limon) !important;
}

/*boton ir a carrito*/
.elementor-button--view-cart{
	padding: 10px !important;
	border-radius: 3px !important;
}
.elementor-button--view-cart:hover{
	background: var(--color-limon) !important;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ PANEL DE BOTONES PARA COMPRA                                             ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

/* PANEL */
.texoz-purchase-panel{
	position:absolute;
	right:0;
	bottom:100%; /* aparece encima */
	transform:translateY(0px);
	opacity:0;
	pointer-events:none;
	width: 40%;
	background: var(--color-primario-medio);
	border: solid 1px var(--color-borde);
	border-bottom: none;
	border-radius:6px 6px 0px 0px;
	padding:10px;
	box-shadow:0 -10px 30px rgba(0,0,0,.1);
	transition:
		transform .35s cubic-bezier(.2,.8,.2,1),
		opacity .25s ease;
	z-index:20;
}

/* ACTIVO */
.texoz-purchase-panel.active{
	transform:translateY(-1px);
	opacity:1;
	pointer-events:auto;
}

/* overlay */
#texoz-global-overlay{
	position:fixed;
	inset:0;
	width:100vw;
	height:100vh;
	background:rgba(0,0,0,0);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	z-index:2;
	opacity:0;
	pointer-events:none;
	transition:
		opacity .25s ease,
		backdrop-filter .25s ease,
		-webkit-backdrop-filter .25s ease,
		background .25s ease;
}

#texoz-global-overlay.active{
	background:rgba(0,0,0,0.15);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	opacity:1;
	pointer-events:auto;
}

/* contenedor de botones de compra*/
#texoz-purchase-options{
	display: flex;
	gap: 10px;
	justify-content: center;
}

/* PANEL COMPRA — MOBILE */
@media (max-width: 767px){

	.texoz-purchase-panel{
		position: fixed;
		left: 50%;
		right: auto;
		bottom: 150px; /* encima del sticky bar */
		transform: translate(-50%, 20px);
		width: calc(100% - 70px);
		max-width: 400px;

		border-radius: 12px;
		padding: 14px;
	}

	.texoz-purchase-panel.active{
		transform: translate(-50%, 0);
	}

	#texoz-purchase-options{
		flex-direction: column;
		gap: 12px;
	}

	#texoz-purchase-options .texoz-btn{
		width:100%;
		justify-content:center;
	}
}

/* PANEL COMPRA — TABLET */
@media (min-width:768px) and (max-width:1024px){

	.texoz-purchase-panel{
		left:50%;
		right:auto;
		transform:translate(-50%, 20px);
		width:70%;
		max-width:400px;
	}

	.texoz-purchase-panel.active{
		transform:translate(-50%, 0);
	}
}


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ CONTENEDOR METODOS FLUJO DE RECARGA                                      ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

/* CONTENEDOR */
.texoz-payment-methods{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	width:100%;
	margin-top:10px;
}

/* cada opción */
.texoz-payment-option{
	display:inline-block;
}

/* ocultar radio */
.texoz-payment-methods .texoz-payment-option input[type="radio"]{
	position:absolute !important;
	opacity:0 !important;
	pointer-events:none !important;
}

/* CARD */
.texoz-payment-option .texoz-payment-card{
	display:flex;
	align-items:center;
	justify-content:center;
	height:38px;          /* ← control TOTAL del tamaño */
	padding:4px 10px;
	background:transparent;
	border:1px solid var(--color-borde);
	border-radius:6px;
	cursor:pointer;
	transition:
		border-color .18s ease,
		transform .12s ease,
		box-shadow .18s ease,
		background .18s ease;
}

/* LOGO */
.texoz-payment-card img{
	max-height:30px;
	padding: 5px;
	width:auto;
	height:auto;
	object-fit:contain;
	pointer-events:none;
}

/* HOVER */
.texoz-payment-option:hover .texoz-payment-card{
	transform:translateY(-1px);
	box-shadow:0 4px 10px rgba(0,0,0,.05);
	border-color: var(--color-verde);
}

/* VERSION COMPACTA DE METODOS DE PAGO EN CARRITO */

.texoz-payment-methods-compact .texoz-payment-methods{
	flex-wrap: nowrap;
	gap: 6px;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 2px 0px;
}

.texoz-payment-methods-compact .texoz-payment-methods::-webkit-scrollbar{
	display:none;
}

.texoz-payment-methods-compact .texoz-payment-option{
	flex: 0 0 auto;
}

.texoz-payment-methods-compact .texoz-payment-option .texoz-payment-card{
	height:30px;
	padding:3px 8px;
	border-radius:5px;
}

.texoz-payment-methods-compact .texoz-payment-card img{
	max-height:20px;
	padding:3px;
}

/* SELECCIONADO */
.texoz-payment-option.is-active .texoz-payment-card{
	border-color:var(--color-borde);
	background:var(--color-primario-claro);
	box-shadow:0 0 0 1px rgba(0,0,0,.06);
}

/* CLICK */
.texoz-payment-option:has(input:active) .texoz-payment-card{
	transform:scale(.96);
}

#texoz-cart-actions.is-hidden{
	display:none;
}

/* Contenedor de datos del cliente en carrito */
.texoz-customer-account{
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:2px;
	margin-top:10px;
	text-decoration:none;
}
.texoz-customer-account-label{
	font-size:10px;
	text-transform:uppercase;
	letter-spacing:.1em;
	opacity:.6;
}
.texoz-customer-account-data{
	font-size:12px;
	font-weight:500;
	max-width:100%;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ CONCENTIMIENTO                                                           ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.texoz-consent{
	margin-top:14px;
	font-size: 12px;
	line-height: 16px;
	color:var(--color-texto);
}

.texoz-consent .texoz-checkbox{
	display:flex;
	align-items:flex-start;
	gap:8px;
	cursor:pointer;
}
.texoz-consent .texoz-checkbox span{
	color:var(--color-texto);
	font-size: 12px;
	line-height:16px;
}
.texoz-consent .texoz-checkbox input{
	margin-top:3px;
}

.texoz-consent .texoz-checkbox a{
	text-decoration:underline;
	font-weight:500;
	font-size: 12px;
	color: var(--color-azul);
}
.texoz-consent .texoz-checkbox a:hover{
	color: var(--color-verde);
}



/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ WOOCOMMERCE                                                              ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

/**/
.woocommerce-no-major-page #content{
	margin-top: 0px;
}

/*Ocultar perfil de mi cuenta*/
.user-profile, .myaccount-menu{
	display: none !important;
}

.woocommerce .texoz-cover-product .woocommerce-product-gallery.images{
	margin-bottom: 0px !important;
}
/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ PRODUCTOS WOOCOMMERCE                                                    ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

/*item*/
.product.product-type-simple{
	background: var(--color-blanco);
	box-shadow: ; 
	padding: 0px !important;
	border-radius: 5px !important;
	overflow: hidden;
	transition: 0.5s;
}
.product.product-type-simple:hover{
	background: var(--color-limon);
	box-shadow: ; 
	padding: 0px !important;
	transition: 0.5s;
}
/*etiqueta de oferta*/
.product.product-type-simple .onsale{
	background: var(--color-limon) !important;
	padding: 2px 15px!important;
	border-radius: 50px 0px 0px 50px !important;
	color: var(--color-primrio) !important;
	font-family: Play !important;
	font-size: 12px;
	text-transform: uppercase !important; 
	font-weight: 900 !important;
}

/*imagen de producto*/
.attachment-woocommerce_thumbnail{
	margin-top: 0px !important;
	transition: 0.5s;
}
.product.product-type-simple:hover .attachment-woocommerce_thumbnail{
	margin-top: 10px !important;
	transition: 0.5s;
}

/*titulo de producto*/
.product.product-type-simple .woocommerce-loop-product__title{
	font-size: 17px !important;
	padding: 0px 15px !important;
	font-family: Play !important;
}

/*precio rebajado del producto*/
.product.product-type-simple ins .woocommerce-Price-amount.amount{
	color: var(--color-purpura) !important;
	font-weight: 900;
	font-size: 28px;
}
/*precio real*/
.product.product-type-simple del .woocommerce-Price-amount.amount{
	color: #00000050!important;
	font-weight: 900;
	font-size: 24px;
	text-decoration: line-through !important;
	border: none !important;
}
/*contenedor de precio*/
.product.product-type-simple .price{
	padding: 0px 10px;
}

.product_type_simple.add_to_cart_button{
	background: var(--color-purpura) !important;
	color: var(--color-blanco) !important;
}

@media only screen and (max-width: 700px){

	/*etiqueta de oferta*/
	.product.product-type-simple .onsale{
		padding: 0px 12px!important;
		border-radius: 50px 0px 0px 50px !important;
		font-size: 13px;
		margin-top: 113% !important;
	}
	.product.product-type-simple:hover .onsale{
		background: var(--color-purpura) !important;
		color: var(--color-blanco) !important;
		transition: 0.5s;
	}

	/*titulo de producto*/
	.product.product-type-simple .woocommerce-loop-product__title{
		font-size: 16px !important;
		padding: 10px 10px 0px 10px !important;
	}

	/*precio rebajado del producto*/
	.product.product-type-simple ins .woocommerce-Price-amount.amount{
		font-size: 25px;
	}
	/*precio real*/
		.product.product-type-simple del .woocommerce-Price-amount.amount{
		font-size: 20px;
	}
	
}


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ MENÚ SCROLL HORIZONTAL DE MI CUENTA                                      ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

/*contenedor de menú*/
.cuenta-menu-slider {
	display: flex;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	background: var(--transparente);
	padding: 10px 0;
	white-space: nowrap;
}
.cuenta-menu-slider a {
	flex: 0 0 auto;
	display: inline-block;
	padding: 10px 20px;
	margin: 0 5px;
	background: var(--color-gris-oscuro);
	color: #fff;
	font-weight: 600;
	font-family: var(--tipografia-principal);
	font-size: 14px;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s;
}
.cuenta-menu-slider a:hover {
	background: var(--color-secundario);
}


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ CONTENEDORES Y PANEL DE SUBTABS                                          ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.texoz-subtab-panel {
    display: none;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-top: none;
    padding: 20px;
    margin-top: -1px;
    border-radius: 0 0 8px 8px;
    font-family: var(--tipografia-parrafos);
}

.texoz-subtab-panel.active {
    display: block;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ TITULOS Y SUBTÍTULOS                                                    ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.texoz-title {
    font-size: 24px;
    margin-bottom: 5px;
    color: #1d2327;
	text-transform: uppercase;
    font-family: var(--tipografia-titular);
}

.texoz-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    font-family: var(--tipografia-parrafos);
}

.texoz-section-title {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #2271b1;
    font-family: var(--tipografia-subtitulos);
}

/* Tipografía para los H2 del módulo */
.texoz-module-title {
    font-family: var(--tipografia-subtitulos);
    font-size: 22px;  /* ajustable según diseño */
    margin-bottom: 10px;
	text-transform: uppercase;
    color: var(--color-primario);
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ FORMULARIOS Y CAMPOS                                                    ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.texoz-form {
    margin-top: 0px;
    font-family: var(--tipografia-parrafos);
}

.texoz-form label {
    display: block;
	margin-top: 15px;
    margin-bottom: 4px;
    color: var(--color-blanco);
    font-family: var(--tipografia-medium);
}

.texoz-form input,
.texoz-form select,
.select2-container .select2-selection{
    width: 100% !important;
    height: 38px !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    border: 1px solid var(--color-borde) !important;
    margin-bottom: 5px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    font-family: var(--tipografia-subtitulos) !important;
	background: transparent !important;
	color: var(--color-verde) !important;
}

.texoz-form input:focus,
.texoz-form input[type="checkbox"]:focus,
.texoz-form select:focus,
.texoz-form textarea:focus,
.select2-container .select2-selection:focus {
    border-color: var(--color-verde));
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.texoz-form input[type="checkbox"] {
  	width: 20px !important;
  	height: 20px !important;
  	accent-color: #ccd0d4 !important;
  	cursor: pointer !important;
	padding: 2px !important;
	margin: 0 !important;
	border-radius: 3px !important;
}

.texoz-form textarea {
    width: 100% !important;
    min-height: 100px !important;
    resize: vertical !important;
    line-height: 1.4 !important;
	padding: 6px 10px !important;
	margin-bottom: 5px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    border-radius: 6px !important;
    border: 1px solid #ccd0d4 !important;
    font-family: var(--tipografia-parrafos) !important;
    white-space: pre-wrap !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    color: #333;
    line-height: 26px;
    font-family: var(--tipografia-parrafos);
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ GRIDS Y ADAPTABILIDAD                                                   ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.texoz-grid-1,
.texoz-grid-2,
.texoz-grid-3 {
    display: grid;
    gap: 12px;
}

.texoz-grid-1 { grid-template-columns: 1fr; }
.texoz-grid-2 { grid-template-columns: 1fr 1fr; }
.texoz-grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 800px) {
    .texoz-grid-2, .texoz-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║ COLUMNAS DEL GRID                                                ║
   ╚══════════════════════════════════════════════════════════════════╝ */

.texoz-column {
	padding: 0px;
	box-sizing: border-box;
}


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ TABLAS Y DATOS                                                          ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.texoz-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 14px;
    font-family: var(--tipografia-parrafos);
}

.texoz-table th,
.texoz-table td {
    border: 1px solid #e1e1e1;
    padding: 8px 10px;
    text-align: left;
}

.texoz-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1d2327;
    font-family: var(--tipografia-subtitulos);
}

.texoz-table tr:nth-child(even) {
    background: #fdfdfd;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ BOTONES Y ACCIONES                                                      ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

/*Básicos para todos los botones de Elementor*/
.texoz-btn, .elementor-button, .comment-form .submit, .texoz-form button,
.texoz-filters .button{
	display: inline-block;
	font-family: var(--tipografia-titular), sans-serif;
	font-size: 16px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 13px 25px;
	color: var(--color-primario);
	border-color: var(--color-borde);
	border: 1px solid var(--color-borde);
	background: var(--color-verde);
	background-color: var(--color-verde);
	text-transform: uppercase;
}
.texoz-btn:hover, .elementor-button:hover, .comment-form .submit:hover, .texoz-form button:hover,
.texoz-filters .button:hover{
	background-color: var(--color-azul) !important;
	color: var(--color-blanco) !important;
}

/* icono de boton*/
.texoz-btn i{
	font-size: 16px;
	margin-right: 10px;
}

/*Boton principal*/
.texoz-btn-primary .elementor-button, .texoz-btn-primary{
	background-color: var(--color-verde) !important;
	color: var(--color-primario) !important;
}
.texoz-btn-primary .elementor-button:hover , .texoz-btn-primary:hover{
	background-color: var(--color-azul) !important;
	color: var(--color-blanco) !important;
}

/*Boton secundario*/
.texoz-btn-secundary .elementor-button, .texoz-btn-secundary, .comment-form .submit{
	background-color: transparent !important;
	color: var(--color-verde) !important;
	border: 2px solid var(--color-verde) !important;
}
.texoz-btn-secundary .elementor-button:hover, .texoz-btn-secundary:hover, .comment-form .submit:hover{
	background-color: var(--color-verde) !important;
	color: var(--color-blanco) !important;
}

/*Boton terciario*/
.texoz-btn-tertiary .elementor-button, .texoz-btn-tertiary, .comment-form .submit{
	background-color: transparent !important;
	color: var(--color-azul) !important;
	border: 2px solid var(--color-azul) !important;
}
.texoz-btn-tertiary .elementor-button:hover, .texoz-btn-tertiary:hover, .comment-form .submit:hover{
	background-color: var(--color-azul) !important;
	color: var(--color-blanco) !important;
}

/*Boton destacado*/
.texoz-btn-featured .elementor-button{
	background-color: var(--area-color-sa) !important;
	color: var(--color-primario) !important;
	border: none !important;
}
.texoz-btn-featured .elementor-button:hover{
	background-color: var(--color-primario) !important;
	color: white !important;
}

/*Boton enlace*/
.texoz-btn-link .elementor-button{
	background-color: transparent !important;
	color: var(--color-primario) !important;
	border: none !important;
}
..texoz-btn-link .elementor-button:hover{
	color: var(--area-color-sa) !important;
}

/*Quitar estilo por defecto*/
.no-button .elementor-button{
	border: none;
	padding: 0px;
}

/* BOTONES DE FINALIZAR COMPRA*/

/* checkout */
.texoz-btn.texoz-btn-checkout{
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	background-color:var(--color-azul);
	color: var(--color-blanco);
	text-shadow: 2px 0px 20px rgba(0, 0, 0, 0.5);
	height: 45px;
}
.texoz-btn.texoz-btn-checkout:hover{
	background-color: var(--color-primario-medio) !important;
	color: var(--color-blanco);
}
/* whatsapp */
.texoz-btn.texoz-btn-whatsapp{
	display: inline-block;
	font-size: 14px;
	font-weight: 800;
	background-color: #23ed66;
	color: var(--color-primario);
	/*text-shadow: 2px 0px 20px rgba(0, 0, 0, 0.5);*/
	height: 45px;
}
.texoz-btn.texoz-btn-whatsapp:hover{
	background-color: var(--color-primario-medio) !important;
	color: var(--color-blanco) ;
}


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ WIDGET YAY CURRENCY                                                      ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.yay-currency-custom-select__trigger{
	background: var(--color-primario-medio) !important;
	border-color: var(--color-borde) !important;
}

.yay-currency-custom-options, .yay-currency-custom-option-row{
	background-color: var(--color-primario-medio) !important;
	border: none !important;
}

.yay-currency-selected-option, .yay-currency-custom-option{
	color: var(--color-gris-claro) !important;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ FILTROS Y CAMPOS DE BÚSQUEDA                                             ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.texoz-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-family: var(--tipografia-parrafos);
}

.texoz-filters input,
.texoz-filters select {
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #ccd0d4;
    font-family: var(--tipografia-parrafos);
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ TEXTOS DE ESTADO Y UTILIDADES                                           ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.text-success { color: #198754; font-family: var(--tipografia-subtitulos); }
.text-danger  { color: #dc3545; font-family: var(--tipografia-subtitulos); }

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ TABS PRINCIPALES                                                        ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.texoz-tabs {
	display: flex;
	position: sticky;
    top: 70px;
    z-index: 1;
	background: var(--color-primario-medio);
	border-bottom: 1px solid var(--color-borde);
	margin-bottom: -1px;
	padding-top: 5px;
	gap: 5px;
	font-family: var(--tipografia-subtitulos);
}

/*@media (max-width: 800px) {
	.texoz-tabs {
		top: 0px;
	}
}*/

.texoz-tabs .texoz-nav-tab {
  background: var(--color-primario-claro);
  border: 1px solid var(--color-borde);
  border-bottom: none;
  padding: 8px 15px;
  text-decoration: none;
  color: var(--color-blanco);
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--tipografia-subtitulos);
  font-size: 18px !important;
}

.texoz-tabs .texoz-nav-tab:hover {
  	background: var(--color-primario-claro);
	font-family: var(--tipografia-subtitulos);
	color: var(--color-verde);
}

.texoz-tabs .texoz-nav-tab-active {
  background: var(--color-primario-medio);
  border: 1px solid var(--color-borde);
  border-bottom: none;
  font-family: var(--tipografia-subtitulos);
  color: var(--color-verde);
}

.texoz-tab-panel {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .25s ease;
}

.texoz-tab-panel.active {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	animation: texozFadeIn .25s ease;
}

@keyframes texozFadeIn {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.texoz-tab-content {
	background: var(--color-primario-medio);
	position: relative;
	overflow: hidden;
	transition: height 0.35s ease;
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ SUB-TABS                                                                ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.texoz-sub-tab-wrapper {
  border-bottom: 1px solid #ccc;
  margin: 15px 0;
  display: flex;
  gap: 5px;
  font-family: var(--tipografia-subtitulos);
}

.texoz-sub-tab {
  background: #fafafa;
  border: 1px solid var(--color-borde);
  border-bottom: none;
  padding: 6px 12px;
  text-decoration: none;
  color: #444;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--tipografia-subtitulos);
}

.texoz-sub-tab:hover {
  background: #f0f0f0;
}

.texoz-sub-tab-active {
  background: #fff;
  border-bottom: 1px solid var(--color-borde);
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ SELECT2 CUSTOM STYLING                                                  ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.select2-container .select2-selection {
  background: #fff;
  border: 1px solid var(--color-borde);;
  border-radius: 6px;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 14px;
  font-family: var(--tipografia-parrafos);
  box-shadow: none;
  transition: border 0.2s, box-shadow 0.2s;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  top: 35% !important;
}

.select2-dropdown {
  border: 1px solid var(--color-borde);;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  font-family: var(--tipografia-parrafos);
}

.select2-results__option {
  padding: 8px 10px;
  font-size: 14px;
  font-family: var(--tipografia-parrafos);
}

.select2-results__option--highlighted {
  background: #2271b1 !important;
  color: #fff !important;
  font-family: var(--tipografia-subtitulos);
}

/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ ESTADOS DE CELDAS / BADGES DE STATUS                                     ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */
.texoz-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9em;
    font-family: var(--tipografia-subtitulos);
}

.texoz-status.pendiente        { background-color: #f39c12; }
.texoz-status.pagado           { background-color: #27ae60; }
.texoz-status.cancelado        { background-color: #7f8c8d; }
.texoz-status.a-punto-de-vencer{ background-color: #e67e22; }
.texoz-status.vencida          { background-color: #c0392b; }





/* ╔══════════════════════════════════════════════════════════════════╗
   ║ HEADERS Y SECCIONES DE PASOS (CHECKOUT / FLUJOS)                 ║
   ╚══════════════════════════════════════════════════════════════════╝ */

.texoz-step-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0px;
	margin: 0px;
	margin-bottom: -1px;
	background: var(--color-primario);
	border: 1px solid var(--color-borde);
	border-radius: 8px 8px 0px 0px;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0px 0px 20 #00000010;
}

.texoz-step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 8px 0px 8px 0px;
	background: var(--color-verde) !important;
	color: var(--color-primario) !important;
	font-size: 25px !important;
	font-family: var(--tipografia-titular) !important;
	flex-shrink: 0;
}

.texoz-step-title {
	margin: 0px 0px 0px 10px;
	font-size: 18px !important;
	color: var(--color-texto) !important;
	font-family: var(--tipografia-subtitulos) !important;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}

.texoz-step-title-section {
	font-family: var(--tipografia-subtitulos) !important;
	font-size: 14px !important;
	color: var(--color-gris-claro) !important;
	border-bottom: 1px solid var(--color-borde) !important;;
	border-radius: 0px;
	padding: 16px 0px;
	box-sizing: border-box;
}

.texoz-step-section {
	background: var(--color-primario-medio);
	border: 1px solid var(--color-borde);
	border-radius: 0px 0px 8px 8px;
	padding: 25px;
	margin-bottom: 16px;
	box-sizing: border-box;
	box-shadow: 0px 0px 20 #00000010;
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║ PACKAGES DE RECARGAS (CHECKOUT / FLUJOS)                         ║
   ╚══════════════════════════════════════════════════════════════════╝ */
#texoz-recargas-module .texoz-grid-2{
	gap: 20px;
}
#texoz-recargas-module .texoz-grid-2.texoz-packages, #texoz-recargas-module .texoz-step-section .texoz-grid-2{
	gap: 10px;
}

.texoz-package {
	display: block;
	position: relative;
	border: 1px solid var(--color-borde);;
	border-radius: 12px;
	padding: 12px 14px;
	cursor: pointer;
	background: linear-gradient(135deg, var(--color-primario-medio) 0%, var(--color-primario-claro) 100%);
	transition: 
		border-color .2s ease,
		background .2s ease,
		box-shadow .2s ease;
}

.texoz-package:hover {
	background: linear-gradient(135deg, var(--color-purpura) 0%, var(--color-primario-claro) 100%);
	color: var(--color-blanco);
}

.texoz-package.selected, .texoz-package.selected:has(.texoz-package-oferta), .texoz-package.selected:hover:has(.texoz-package-oferta) {
	background: var(--color-verde);
}

.texoz-package-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	row-gap: 6px;
	z-index: 1px;
}

.texoz-package-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 15px 0px 10px 0px;
}

.texoz-package-thumb {
	width: 40px;
	height: 40px;
	min-width: 30px;
	min-height: 30px;
	object-fit: contain;
	flex-shrink: 0;
}

@media (max-width: 480px) {
	.texoz-package-thumb {
		width: 40px;
		height: 40px;
		min-width: 30px;
		min-height: 30px;
	}
}

.texoz-package .texoz-package-label {
	font-family: var(--tipografia-titular);
	font-size: 18px ;
	line-height: 1.2;
	color: var(--color-blanco) ;
}

/* PRECIOS */

/* base */
.texoz-package .texoz-package-price {
    display: flex;
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-family: var(--tipografia-subtitulos);
    font-size: 16px;
    justify-content: flex-end;
    align-items: end;
}

/* precio regular tachado */
.texoz-package .texoz-package-price .texoz-price-regular {
    text-decoration: line-through;
    color: var(--color-texto);
    margin-right: 0.4rem;
	font-size: 13px;
}

/* precio rebajado */
.texoz-package .texoz-package-price .texoz-price-sale {
    font-weight: 700;
    color: var(--color-blanco);
}
.texoz-package:hover .texoz-package-price .texoz-price-sale {
    color: var(--color-verde);
}

/* precio normal */
.texoz-package .texoz-package-price .texoz-price-normal {
    color: var(--color-blanco);
}
.texoz-package:hover .texoz-package-price .texoz-price-normal {
    color: var(--color-verde);
}

/* OFERTAS */
.texoz-package:has(.texoz-package-oferta) {
	background: linear-gradient(135deg, var(--color-purpura) 0%, var(--color-primario-claro) 100%);
	/*border-color: var(--color-verde);*/
}
.texoz-package:hover:has(.texoz-package-oferta) {
	background: linear-gradient(135deg, #981bbf 0%, var(--color-primario-claro) 100%);
}

/* COMPRA DIRECTA (RAYO / PREMIUM) */
.texoz-package:has(.texoz-package-directa) {
	background: linear-gradient(135deg, var(--color-primario-medio) 0%, var(--color-primario-claro) 100%);
	border-color: var(--color-borde);
}
.texoz-package:hover:has(.texoz-package-directa) {
	background: linear-gradient(135deg, var(--color-azul) 0%, var(--color-primario-claro) 100%);
	border-color: var(--color-borde);
}

/* ICONO SELECCIONADO*/
.texoz-package-selected{
	position:absolute;
	top:-7px;
	left:-1px;
	width:55px;
	height:28px;
	display:flex;
	align-items:center;
	justify-content:center;
	background: rgba(255,255,255,.15);
	backdrop-filter:blur(5px);
	border-radius:15px 15px 15px 0px;
	opacity:0;
	transform:scale(.5);
	transition:
		opacity .2s ease,
		transform .2s ease;
	pointer-events:none;
}

.texoz-package-selected svg{
	width:16px;
	height:16px;
	color:var(--color-purpura);
}

.texoz-package.selected .texoz-package-selected{
	opacity:1;
	transform:scale(1);
}

.texoz-package.selected .texoz-package-selected{
	animation:texoz-pop .25s ease;
}


/* =====================================
   ANIMACIONES:
===================================== */
@keyframes texoz-pop{
	0%{
		transform:scale(.5);
	}
	70%{
		transform:scale(1.15);
	}
	100%{
		transform:scale(1);
	}
}

@keyframes texozQtyPulse{
	0%{
		transform:scale(1);
	}
	50%{
		transform:scale(1.18);
	}
	100%{
		transform:scale(1);
	}
}

@keyframes texozTotalPulse{
	0%{
		transform:scale(1);
	}
	50%{
		transform:scale(1.04);
	}
	100%{
		transform:scale(1);
	}
}
@keyframes texozSpin{
	from{
		transform:rotate(0deg);
	}
	to{
		transform:rotate(360deg);
	}
}

.texoz-package-qty.animating{
	animation:texozQtyPulse .25s ease;
}

/* ==============================
   Carga de boton de recargar
============================== */
#texoz-btn-buy-total.animating{
	animation:texozTotalPulse .3s ease;
}

#texoz-btn-buy-total.loading{
	opacity:.8;
	pointer-events:none;
	position:relative;
}

#texoz-btn-buy-total.loading::after{
	content:"";
	display:inline-block;
	width:14px;
	height:14px;
	margin-left:8px;
	border:2px solid currentColor;
	border-right-color:transparent;
	border-radius:50%;
	animation:texozSpin .7s linear infinite;
	vertical-align:middle;
}

/* ==============================
   CONTROLES CANTIDAD + / -
============================== */

.texoz-qty-controls{
	position: absolute;
	bottom: 2px;
	left: 3px;
	display: inline-flex;
	width: auto;
	height: auto;
	align-items: center;
	gap: 3px;
	opacity: 0;
	background: transparent;
	transform: translateY(5px);
	pointer-events: none;
	transition: all .2s ease;
}

/* SOLO VISIBLE CUANDO ESTÁ SELECCIONADO */
.texoz-package.selected .texoz-qty-controls{
	opacity: 1;
	transform: translateY(0);
	pointer-events: none;
}

/* BOTONES DE CANTIDAD */
.texoz-qty-controls button{
	position: relative;
	width: 26px;
	height: 26px;
	border-radius: 0px;
	border: 1px solid var(--color-borde);
	background: rgba(0,0,0,0.15);
	backdrop-filter:blur(5px);
	color: var(--color-blanco);
	font-size: 16px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .15s ease;
	pointer-events: auto;
}

/* HOVER */
.texoz-qty-controls button:hover{
	background: var(--color-purpura);
	border-color: var(--color-purpura);
}

/* ACTIVE CLICK FEEL */
.texoz-qty-controls button:active{
	transform: scale(0.92);
	background: var(--color-purpura);
}

.texoz-qty-controls .texoz-qty-minus{
	border-radius: 0px 0px 0px 10px;
}
.texoz-qty-controls .texoz-qty-plus{
	border-radius: 0px 6px 0px 0px;
}

/* cantidad de paquete*/
.texoz-package-qty{
	font-size: 15px;
	font-weight: 700;
	color: var(--color-purpura);
	opacity: 1;
	margin: 0px 0px 3px 5px;
}

/* ==============================
   CARRITO TEXOZ
============================== */

/* PANEL */
#texoz-cart-panel{
	position:absolute;
	top:calc(100% + 12px);
	right:0;
	width:350px;
	max-width:90vw;
	padding: 20px;
	background: var(--color-primario);
	border-color: var(--color-borde) !important;
	border-bottom: 1px solid;
	border-left: 1px solid;
	border-right: 1px solid;
	border-radius:0px 0px 10px 10px;
	box-shadow: none;
	opacity:0;
	visibility:hidden;
	transform:translateY(10px);
	pointer-events:none;
	display:flex;
	flex-direction:column;
	z-index:9999;
	/*overflow: hidden;*/
	transition:
		opacity .25s ease,
		transform .25s ease,
		visibility .25s ease;
}

#texoz-cart-panel.active{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
	pointer-events:auto;
}

.texoz-cart-view{
    flex:1;
    min-height:0;
}

/* contenedor agregado por elementor en la cabecera*/
.elementor-element.elementor-element-f19adf5{
	display: flex;
	align-items: center;
}

/* HEADER */
#texoz-cart-panel .texoz-cart-panel-header{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:10px;
	border-bottom:none;
}

#texoz-cart-panel .texoz-cart-panel-header h4{
	margin:0;
	font-size:18px;
	font-weight:700;
	color:#fff;
}

#texoz-cart-close{
	background:none;
	border:none;
	color: var(--color-purpura);
	font-size:32px;
	cursor:pointer;
	line-height:1;
	padding:0;
	transition:.2s;
}

#texoz-cart-close:hover{
	color: var(--color-verde);
	transform:scale(1.1);
}

/* LISTA ITEMS */
#texoz-cart-items{
	max-height:250px;
	overflow-y:auto;
	padding: 0px 0px 10px 0px;
}

/* Scroll */
#texoz-cart-items::-webkit-scrollbar{
	width:3px;
}
#texoz-cart-items::-webkit-scrollbar-thumb{
	background:rgba(255,255,255,.15);
	border-radius:20px;
}

/* ITEM */
.texoz-cart-item{
	position: relative;
	align-items:center;
	padding:12px;
	margin-bottom:5px;
	background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-primario-medio) 100%);
	border: none;
	border-radius:7px;
	overflow: hidden;
}

.texoz-cart-item:last-child{
	margin-bottom:0;
}

/* INFO PRODUCTO */
.texoz-cart-item-info{
	flex:1;
	min-width:0;
	width: 100%;
}

.texoz-cart-item-product{
	font-size:10px;
	font-weight:400;
	color:#bdbdbd !important;
	margin-bottom:10px;
}
.texoz-cart-item-product:hover{
	color: var(--color-verde) !important;
}

.texoz-cart-item-price_unit{
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	font-size:14px;
	font-weight:400;
	color:#bdbdbd;
	margin-bottom:10px;
}

.texoz-cart-item-package{
	font-size:14px;
	font-weight:600;
	color: var(--color-blanco);
	line-height:1.4;
}

/* ACCIONES */

.texoz-cart-item-actions{
	position: absolute;
	bottom: 0px;
	right: 0px;
	display: flex;
	align-items: center;
	gap: 0px;
	border: none;
	border-radius: 6px 0px 6px 0px;
	overflow: hidden;
}

.texoz-cart-item-actions span{
	min-width:30px;
	text-align:center;
	font-weight:700;
	color: var(--color-blanco);
}

/* BOTONES + - */
.texoz-cart-plus, .texoz-cart-minus{
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 0px;
	background:rgba(255,255,255,.03);
	color: var(--color-blanco);
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	transition: .2s;
	padding: 0px;
}

.texoz-cart-plus:hover,
.texoz-cart-minus:hover{
	background:rgba(255,255,255,.08);
	transform:translateY(-1px);
}

/* ELIMINAR */
.texoz-cart-remove{
	width:30px;
	height:30px;
	border:none;
	border-radius:0px;
	background: var(--color-purpura-opacidad);
	color: var(--color-purpura);
	cursor:pointer;
	font-size:14px;
	transition:.2s;
	padding: 0px;
}

.texoz-cart-remove:hover{
	background: var(--color-purpura);
	color: #ffffff80;
}

/* VACÍO */
.texoz-cart-empty{
	padding:40px 20px;
	text-align:center;
	color:#999;
	font-size:14px;
}

/* FOOTER */
.texoz-cart-panel-footer{
	padding: 0px 0px 15px 0px;
	border-top:1px solid rgba(255,255,255,.08);
	display:flex;
	flex-direction:column;
	gap:14px;
}

/* TOTAL */
.texoz-cart-total{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding: 12px;
	background: linear-gradient(90deg, var(--color-primario) 0%, var(--color-primario-medio) 50%, var(--color-primario) 100%);
}

.texoz-cart-total span{
	color:#bdbdbd;
	font-size:14px;
}

#texoz-cart-total{
	font-size:20px;
	font-weight:700;
	color:#fff;
}

/* BOTÓN FINAL */
#texoz-cart-go-checkout{
	width:100%;
	height:48px;
	border:none;
	border-radius:12px;
	font-weight:700;
	cursor:pointer;
}

/*Panel ingresar datos*/
#texoz-customer-panel{
	position:absolute;
	inset:0;
	padding: 20px;
	background:var(--color-primario);
	border: none;
	box-shadow: none;
	opacity:0;
	transform:translateX(100%);
	pointer-events:none;
	z-index:5;
	display:flex;
	flex-direction:column;
	overflow-x: none;
	overflow-y: auto;
	transition:
		opacity .25s ease,
		transform .25s ease;
}

#texoz-customer-panel.active{
	transform:translateX(0);
	opacity:1;
	pointer-events:auto;
}

/*  BOTON CERRAR PANEL DATOS CLIENTE */
#texoz-customer-close{
	display:flex;
	align-items:center;
	justify-content:center;
	width: auto;
	height: 30px;
	padding: 5px 12px;
	margin:0;
	border:none;
	background:transparent;
	color:var(--color-texto);
	font-size:12px;
	font-weight:500;
	line-height:1;
	letter-spacing: 1px;
	cursor:pointer;
	border-radius:6px;
	transition:
		background .18s ease,
		transform .12s ease,
		color .18s ease;
}
#texoz-customer-close:hover{
	background:rgba(255,255,255,.08);
	transform:translateX(-2px);
}
#texoz-customer-close:active{
	transform:scale(.95);
}
#texoz-customer-close:focus{
	outline:none;
	box-shadow:0 0 0 2px rgba(255,255,255,.15);
}

#texoz-customer-close i::before{
	margin-right: 7px;
}

@media (max-width:768px){
	#texoz-cart-panel{
		position:fixed;
		top:70px;
		right:10px;
		left:10px;
		width:auto;
		max-width:none;
		transform:translateY(10px);
		border-color: var(--color-borde) !important;
		border-bottom: 1px solid;
		border-left: 1px solid;
		border-right: 1px solid;
	}
	#texoz-cart-panel.active{
		transform:translateY(0);
	}
}



/* ==============================
   BADGES
============================== */
.texoz-package-badges {
	display: flex;
	position: absolute;
	top: 10px;
	right: 10px;
	justify-content: flex-end;
	gap: 6px;
	font-family: var(--tipografia-subtitulos) !important;
	font-size: 10px !important;
}

.texoz-package-badges span {
	background: var(--color-primario-medio) !important;
	color: var(--color-blanco) !important;
	padding: 3px 6px;
	border-radius: 3px;
	white-space: nowrap;
}

.texoz-package:hover .texoz-package-badges span {
	background: var(--color-primario-claro) !important;
	color: var(--color-blanco) !important;
}

/* PAQUETE SELECCIONADO) */
.texoz-package.selected .texoz-package-price .texoz-price-sale, 
.texoz-package.selected .texoz-package-price .texoz-price-normal {
	color: var(--color-primario);
}
.texoz-package.selected .texoz-package-price .texoz-price-regular {
	color: var(--color-primario-claro);
	opacity: 0.7;
}
.texoz-package.selected .texoz-package-label{
	color: var(--color-primario);
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║ TOTAL FIJO DE FLUJO DE COMPRA                                    ║
   ╚══════════════════════════════════════════════════════════════════╝ */

#texoz-total-bar {
    position: relative;
    overflow:visible;
    display: flex;
    flex-direction: column; /* importante */
    width: 100%;
	min-height: 95px;
	background: linear-gradient(135deg, var(--color-primario-medio) 0%, var(--color-primario) 100%);
    padding: 10px 20px 15px 20px;
    transition: height .35s ease;
	border: 1px solid transparent;
	border-top: 1px solid var(--color-borde);
	transition: 0.5s;
	z-index: 3 !important;
}
.ekit-sticky{
	z-index: 3 !important;
}

.texoz-container-total {
    display: flex;
    width: 100%;
	border-top: none;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0; /* clave para que NO se comprima */
}

.texoz-container-package {
    flex: 1;
    padding-right: 30px;
    text-align: start;
	margin:0px;
}

.texoz-container-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
	margin:0px;
}

#texoz-btn-buy-total{
	margin-top: 5px !important;
	width: 100%;
	margin: 0px;
}

@media (max-width: 800px) {
	.texoz-container-package{
		margin-top: 1px;
		width: 25%;
		padding-right: 10px;
		text-align: left;
	}
	.texoz-container-right{
		width: 75%;
		text-align: start;
		justify-content: left;
		align-items: start;
		margin:0px;
	}
	#texoz-btn-buy-total{
		margin-top: 5px;
		width: 100%;
		padding: 13px 7px !important;
	}
}

/* Label "Paquete" */
#texoz-total-bar .texoz-total-label {
	display: block;
	width: 100%;
	font-family: var(--tipografia-subtitulos);
	font-size: 13px;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: var(--color-blanco);
}

/* Nombre del paquete seleccionado */
#texoz-total-bar .texoz-total-package {
	font-family: var(--tipografia-subtitulos);
	font-size: 16px;
	color: var(--color-azul);
}



/* ==============================
   PANEL COLAPSADO
============================== */

#texoz-package-panel {
    width: 100%;
    height: 0;
    overflow: hidden;
	margin: 0px;
    background: rgba(32,39,49,0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: none;
    box-shadow: 0 -15px 40px rgba(0,0,0,0.18);
    border: none;
    transform: translateY(-15px) scale(.98);
    opacity: 0;
    transition:
        transition: height .35s ease;
}

/* ==============================
   TOTAL EXPANDIDO
============================== */

#texoz-total-bar.open {
    height: calc(100vh - 80px); 
    max-height: calc(100vh - 80px); 
    flex-direction: column;
	padding: 15px 20px;
	background: linear-gradient(135deg, var(--color-primario-claro) 0%, var(--color-primario-medio) 100%);
	border: 1px solid var(--color-borde);
	border-bottom: 1px solid transparent;
	transition: 0.5s;
}

/* Panel visible */
#texoz-total-bar.open #texoz-package-panel {
    height: calc(100vh - 80px - 80px); 
    opacity: 1;
    transform: translateY(0) scale(1);
	border-top: none;
} 

#texoz-total-bar.open .texoz-container-total{
	border-top: 1px solid var(--color-borde);
	padding-top: 10px;
}

@media (max-width: 800px) {
	
	#texoz-total-bar.open {
		height: calc(95vh - 80px); 
		max-height: calc(95vh - 80px); 
		flex-direction: column;
		padding: 15px 20px;
		border: 1px solid transparent;
		border-top: 1px solid var(--color-borde);
		transition: 0.5s;
	}
	
	/* Panel visible */
	#texoz-total-bar.open #texoz-package-panel {
		height: calc(95vh - 80px - 80px); 
	}
}



/* ==============================
   SCROLL SOLO INTERNO
============================== */

.texoz-panel-inner {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
}


/* ==========================================
   TRIGGER VISUAL DE PAQUETE
========================================== */

.texoz-package-trigger {
	cursor: pointer;
	transition: transform .15s ease, opacity .2s ease;
}

.texoz-package-trigger:hover {
	opacity: .85;
}

.texoz-total-package-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}


/* ==========================================
   Animación sutil tipo pulse
========================================== */

@keyframes texoz-pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.03); }
	100% { transform: scale(1); }
}

.texoz-attention {
	animation: texoz-pulse 1.2s ease-in-out 2;
}

/* Flecha indicativa */

.texoz-mode-expandable:not(.open) .texoz-container-package::after {
	content: "↑ Elegir paquete";
	margin-left: 5px;
	display: inline-block;
	animation: texoz-bounce-up 1.5s infinite;
	font-size: 14px;
}

#texoz-total-bar.open .texoz-container-package::after {
	transform: rotate(180deg);
}

@keyframes texoz-bounce-up {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}




/* ╔══════════════════════════════════════════════════════════════════╗
   ║ ITEMS DEL CHECKOUT MODERNO DE CARFLOW                            ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* Todo el item */
#texoz-checkout .cart_item {
	position: relative;
}

/* Contenedor principal del item */
#texoz-checkout .cart_item .product-name {
	display: block;
	width: 100%;
	padding: 15px 0px 15px 15px;
}

/* Header visual (nombre + cantidad) */
#texoz-checkout .cart_item .wcf-product-image {
	display: flex;
	width: 88%;
}

/* Cantidad */
#texoz-checkout .cart_item .product-name .product-quantity {
	position: absolute;
	top: 25px;
	right: 33%;
	display: inline-block;
	font-family: var(--tipografia-subtitulos);
	font-size: 13px;
	color: var(--color-purpura);
	margin: 0px;
	width: 10%;
}

#texoz-checkout .cart_item .wcf-product-image .wcf-product-thumbnail{
	margin:0px;
}
#texoz-checkout .cart_item .wcf-product-image .wcf-product-thumbnail img{
	width: 30px;
}

/* Nombre del producto */
#texoz-checkout .cart_item .product-name .wcf-product-name {
	font-family: var(--tipografia-titular);
	font-size: 16px;
	line-height: 1.1;
	width: 70%;
	padding-left:10px;
	margin:0px;
}

/* Precio alineado arriba a la derecha */
#texoz-checkout .cart_item .product-total {
	position: absolute;
	display: inline-block;
	top: 10px;
	right: 0;
	font-family: var(--tipografia-subtitulos);
	text-align: right;
	font-size: 16px;
	padding: 15px 15px 15px 10px;
}

/* Variaciones debajo, ancho completo */
#texoz-checkout .cart_item dl.variation {
	width: 100%;
	margin: -10px 0px 0px 40px;
	font-size: 12px;
	color: #ffffffdd;
}

/* Títulos de variación */
#texoz-checkout .cart_item dl.variation dt, .cart_item dl.variation dt {
	font-family: var(--tipografia-subtitulos);
	white-space: nowrap;
	padding: 0px;
	color: #ffffffdd;
}

/* Valores */
#texoz-checkout .cart_item dl.variation dd, .cart_item dl.variation dd {
	font-family: var(--tipografia-subtitulos);
	margin: 0px;
	margin-left: 5px;
	padding: 0px;
	color: #ffffffaa;
}

#texoz-checkout .cart_item dl.variation dd.variation-Compradirecta, #texoz-checkout .cart_item dl.variation dt.variation-Compradirecta, .cart_item dl.variation dd.variation-Compradirecta, .cart_item dl.variation dt.variation-Compradirecta{
	display:none;
}

#texoz-checkout .woocommerce-checkout-review-order-table, #texoz-checkout .wc_payment_methods.payment_methods.methods{
	border: 1px solid var(--color-borde) !important;
	box-shadow: none !important;
	border-radius: 7px;
}
/* Borde inferior */
#texoz-checkout .wc_payment_method{
	border-bottom: 1px solid var(--color-borde) !important;
}
/* Borde superior */
#texoz-checkout .payment_box{
	border-top: 1px solid var(--color-borde) !important;
}

/* Select2 del checkout*/
#texoz-checkout .select2-container .select2-selection{
    height: 52px !important;
	padding: 15px 10px 5px 15px !important;
}

/*Nombre visible del metodo de pago en checkout*/
#texoz-checkout .wc_payment_method label{
	font-size: 0 !important;
}

/* Titulo de zona de pedido en página de gracias*/
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received{
	display: none;
}


/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║ TEXOZ PRODUCT CLUSTER MEGAMENU                                           ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */

.texoz-products-cluster{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
}

.texoz-products-cluster .texoz-cluster-item{
    display:block;
    text-decoration:none;
    border-radius:6px;
    transition:.2s ease;
	padding:0px 8px 0px 2px;
}

.texoz-products-cluster .texoz-cluster-item .texoz-cluster-inner{
    display:flex;
	height:44px;
    align-items:center;
    gap:10px;
}

.texoz-products-cluster .texoz-cluster-item:hover{
    background: rgba(255, 255, 255, .05);
    transform:translateX(4px);
}

.texoz-products-cluster .texoz-cluster-item .texoz-cluster-inner .texoz-cluster-image{
    margin: 0;
	padding: 0;
	height:40px;
	border-radius: 6px;
}

.texoz-products-cluster .texoz-cluster-item .texoz-cluster-inner .texoz-cluster-image img{
    width:40px;
    height:40px;
    object-fit:cover;
    border-radius:6px;
}

.texoz-products-cluster .texoz-cluster-item .texoz-cluster-inner .texoz-cluster-title{
	font-family: var(--tipografia-subtitulos);
    font-size:13px;
    font-weight:600;
    line-height: 13px;
	letter-spacing: 2;
	color: var(--color-blanco);
}

.texoz-products-cluster .texoz-cluster-item .texoz-cluster-inner:hover .texoz-cluster-title{
	color: var(--color-blanco);
}

/*imagen de cover plantilla de producto*/
.texoz-product-cover{
	border-radius: 6px !important;
}
/*icono de lupa en cover*/
.woocommerce-product-gallery__trigger{
	display: none;
}



/* ╔══════════════════════════════════════════════════════════════╗
   ║ TEXOZ — ACORDEÓN DE PASOS (SOLO MOBILE)                      ║
   ╚══════════════════════════════════════════════════════════════╝ */

@media (max-width:768px){
	
	.texoz-step{
		position: relative;
		z-index: 1;
	}

	/* HEADER CLICKABLE */
	.texoz-step-header{
		display:flex;
		align-items:center;
		cursor:pointer;
	}
	.texoz-step-header .texoz-step-title{
		text-transform: none !important;
	}

	/* evita selección accidental al tocar */
	.texoz-step-header *{
		pointer-events:none;
	}
	
	#texoz-recargas-module .texoz-grid-2{
		gap: 0px;
	}
	#texoz-recargas-module .texoz-grid-2.texoz-packages, #texoz-recargas-module .texoz-step-section .texoz-grid-2{
		gap: 10px;
	}

	/* ICONO + / − */
	.texoz-step-toggle{
		display:flex;
		position: absolute;
		right: 8px;
		align-items:center;
		justify-content:center;
		width:35px;
		height:35px;
		border-radius:6px 6px 0px 6px;
		border:1px solid var(--color-borde);
		background:var(--color-primario-claro);
		flex-shrink:0;
	}
	.texoz-step-toggle::after{
		content:"+";
		font-size:25px;
		font-family:var(--tipografia-subtitulos);
		color:var(--color-blanco);
		transition:transform .25s ease;
		margin-top: -3px;
	}
	/* estado abierto */
	.texoz-step.active .texoz-step-toggle::after{
		content:"−";
		transform:rotate(180deg);
		margin-top: 5px;
	}

	/* CONTENIDO ACORDEÓN */
	.texoz-step-section{
		/*overflow:hidden;*/
		max-height:0;
		opacity:0;
		padding: 25px;
		transition:
			max-height .35s cubic-bezier(.2,.8,.2,1),
			opacity .25s ease;
	}
	.texoz-step.active .texoz-step-section{
		max-height:2000px; /* suficiente para cualquier contenido */
		opacity:1;
		padding: 25px;
	}

}


/* ╔══════════════════════════════════════════════════════════════╗
   ║ TEXOZ — ELEMENTO DE CARGA O ESPERA DE PROCESOS               ║
   ╚══════════════════════════════════════════════════════════════╝ */

.texoz-processing{
    text-align:center;
    padding:20px 10px;
}

.texoz-loader{
    width:38px;
    height:38px;
    border:3px solid rgba(255,255,255,.2);
    border-top-color:#25D366;
    border-radius:50%;
    margin:0 auto 12px;
    animation:texozSpin .8s linear infinite;
}

@keyframes texozSpin{
    to{ transform:rotate(360deg); }
}

.texoz-processing-text{
    font-size:14px;
    opacity:.85;
}

#texoz-message-preview{
	margin-top:10px;
	font-size:14px;
	line-height:1.5;
	white-space:pre-wrap;
	opacity:.9;
	min-height:60px;
}

.texoz-typing-caret::after{
	content:"|";
	margin-left:2px;
	animation: texozBlink 1s infinite;
}

@keyframes texozBlink{
	0%,50%,100%{opacity:1;}
	25%,75%{opacity:0;}
}


/* ╔════════════════════════════════════════════════════════════════╗
   ║ TEXOZ TURNSTILE STYLING                                          ║
   ╚════════════════════════════════════════════════════════════════╝ */

/* Contenedor que envuelve el turnstile */
#texoz-container-turnstile {
    padding: 7px 7px 2px 7px;
	margin-top: 10px;
	/*background-color: var(--color-primario-medio);
    border-radius: 6px;
    display: inline-block;
    border: 1px solid var(--color-borde);
    max-width: 350px;
	width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;*/
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║ TEXOZ FORM ERRORS (FRONTEND)                                 ║
   ╚══════════════════════════════════════════════════════════════╝ */

.texoz-input-error {
    border-color: #ff4d4f !important;
    background: rgba(255,77,79,0.05);
}

.texoz-field-error {
    font-family: var(--tipografia-subtitulos);
    font-size: 0.85rem;
    color: var(--color-purpura);
    margin-top: 0px;
    line-height: 1.3;
    animation: texozErrorFade .2s ease;
}

@keyframes texozErrorFade {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║ TEXOZ TOOTIP PRICES (FRONTEND)                               ║
   ╚══════════════════════════════════════════════════════════════╝ */

.texoz-price-wrapper {
    position: relative;
    cursor: help;
}

.texoz-tooltip-admin {
    position: absolute;
    bottom: 130%;
	transform: translateX(50px) scale(1);
    background: #353542aa;
    backdrop-filter: blur(6px);
    color: var(--color-blanco);
    padding: 10px 12px;
    font-size: 12px;
	font-family: var(--tipografia-subtitulos);
	border: 1px solid var(--color-borde);
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.texoz-price-wrapper:hover .texoz-tooltip-admin {
    opacity: 1;
    transform: translateX(0px) scale(1);
}
