/* =========================================================
   YO, TURO — HEADER / MENÚ / TOP BAR
========================================================= */

.site-header {
    width: 100%;
    -webkit-box-shadow: 9px 5px 19px -7px rgba(0,0,0,0.29);
    box-shadow: 9px 5px 19px -7px rgba(0,0,0,0.29);
}

.home .site-header {
    box-shadow: none;
}

/* Top bar */
.ast-above-header-bar .site-above-header-wrap {
    background-color: #000;
}

.ast-above-header-bar .site-above-header-wrap p {
    color: white !important;
}

.ast-above-header-bar .site-above-header-wrap p a {
    color: white !important;
    text-decoration: underline;
}

/* =========================================================
   TOP BAR — MOBILE + TABLET / IPAD
   ========================================================= */

@media (max-width: 1280px) {

    #masthead .ast-above-header-wrap,
    #masthead .ast-above-header-bar,
    #masthead .site-above-header-wrap {
        width: 100% !important;
        max-width: none !important;
        min-height: 34px !important;
        height: 34px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    #masthead .site-above-header-wrap,
    #masthead .ast-builder-grid-row-container,
    #masthead .ast-builder-grid-row,
    #masthead .site-header-above-section,
    #masthead .ast-builder-html-element {
        min-height: 34px !important;
        height: 34px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    #masthead .turo-announcement,
    #masthead .turo-announcement__track,
    #masthead .turo-announcement__group {
        min-height: 34px !important;
        height: 34px !important;
        align-items: center !important;
    }
}

/* Header carrito - sutil */
.ast-header-woo-cart,
.ast-site-header-cart {
    background: transparent !important;
    padding: 0 !important;
    transition: transform .25s ease, opacity .25s ease;
}

.ast-header-woo-cart a,
.ast-site-header-cart a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
}

.ast-header-woo-cart svg,
.ast-site-header-cart svg,
.ast-header-woo-cart .ast-icon-shopping-cart,
.ast-site-header-cart .ast-icon-shopping-cart {
    font-size: 22px !important;
}

.ast-header-woo-cart,
.ast-site-header-cart,
.ast-header-woo-cart .ast-woo-header-cart-info-wrap,
.ast-site-header-cart .ast-woo-header-cart-info-wrap {
    font-size: 17px !important;
    font-weight: 800 !important;
}

.ast-header-woo-cart:hover,
.ast-site-header-cart:hover {
    transform: translateY(-2px);
    opacity: .85;
}

/* Mobile menu */
.ast-mobile-menu-trigger-minimal {
    background: transparent;
}

.ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg {
    fill: #000000 !important;
}

.home .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg {
    fill: #ffffff !important;
}

/* ======================================
   Scroll indicator
====================================== */

.turo-hero{

    position:relative;

}

.turo-scroll-indicator{

    position:absolute;

    left:50%;
    bottom:24px;

    transform:translateX(-50%);

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:30;

    opacity:.8;

    transition:
        transform .25s ease,
        opacity .25s ease;

}

.turo-scroll-indicator:hover{

    opacity:1;

    transform:
        translateX(-50%)
        scale(1.15);

}

.turo-scroll-indicator__paw{

    width:52px;

    height:auto;

    display:block;

    filter:brightness(0) invert(1);

    animation:turoPawBounce 2s ease infinite;

}

@keyframes turoPawBounce {

    0%,
    100%{
        transform: translateY(0) scale(1);
    }

    18%{
        transform: translateY(-14px) scale(1.04);
    }

    36%{
        transform: translateY(0) scale(1);
    }

    52%{
        transform: translateY(-7px) scale(1.02);
    }

    70%{
        transform: translateY(0);
    }

}

/* ==========================================
   Subrayado del menú: activo + hover
========================================== */

.ast-builder-menu-1 .main-header-menu > .menu-item > .menu-link {
	position: relative;
}

/* Línea */
.ast-builder-menu-1 .main-header-menu > .menu-item > .menu-link::after {
	content: "";
	position: absolute;

	/* Descuenta el padding lateral de Astra */
	left: 16px;
    right: 16px;

	/* Más cerca de las palabras */
	bottom: 18px;

	height: 2px;
	background: currentColor;
	border-radius: 2px;

	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.35s cubic-bezier(.19, 1, .22, 1);
}

/* Hover */
.ast-builder-menu-1 .main-header-menu > .menu-item > .menu-link:hover::after,

/* Página o categoría activa */
.ast-builder-menu-1 .main-header-menu > .current-menu-item > .menu-link::after,
.ast-builder-menu-1 .main-header-menu > .current-menu-parent > .menu-link::after,
.ast-builder-menu-1 .main-header-menu > .current-menu-ancestor > .menu-link::after,
.ast-builder-menu-1 .main-header-menu > .current-product_cat-parent > .menu-link::after,
.ast-builder-menu-1 .main-header-menu > .current-product-ancestor > .menu-link::after {
	transform: scaleX(1);
}

/* Hero exactamente al alto visible */
.turo-hero {
	position: relative;
	height: var(--turo-hero-height, 100vh) !important;
	min-height: var(--turo-hero-height, 100vh) !important;
	max-height: var(--turo-hero-height, 100vh) !important;
	overflow: hidden;
	box-sizing: border-box;
}

/* El contenedor interno de Elementor no debe agrandarlo */
.turo-hero > .e-con-inner {
	height: 100%;
	min-height: 0 !important;
}

.turo-hero .elementor-heading-title{
    font-size: clamp(50px, 4.6vw, 74px);
    line-height: .95;
    letter-spacing: -0.03em;
}

/* =========================================================
   Single producto: no marcar "Todas las remeras"
   ========================================================= */

/* Quitar el subrayado activo automático */
.single-product
.ast-builder-menu-1
.main-header-menu
#menu-item-8689
> .menu-link::after {
	transform: scaleX(0);
}

/* Mantener el efecto cuando hacemos hover */
.single-product
.ast-builder-menu-1
.main-header-menu
#menu-item-8689
> .menu-link:hover::after {
	transform: scaleX(1);
}

/* =========================================================
   YO, TURO — Menú flotante sticky definitivo
   ========================================================= */

/* Header normal */

#masthead {
	position: relative;
	z-index: 9990;
}

/* =========================================================
   Estado sticky
   ========================================================= */

body.turo-header-is-sticky #masthead {
	position: fixed;

	top: 18px;
	left: 50%;

	width: calc(100% - 56px);
	max-width: 1480px;

	transform: translateX(-50%);

	z-index: 9990;

	overflow: hidden;

	border: 1px solid rgba(17, 17, 17, 0.06);
	border-radius: 26px;

	background: rgba(255, 255, 255, 0.97);

	box-shadow:
		0 20px 55px rgba(0, 0, 0, 0.14);

	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);

	animation: turo-floating-header-in 0.34s
		cubic-bezier(.19, 1, .22, 1);
}

/* Ocultar la barra negra superior */

body.turo-header-is-sticky #masthead .ast-above-header-wrap {
	display: none !important;
}

/* Quitar fondos internos de Astra */

body.turo-header-is-sticky #masthead .ast-main-header-wrap,
body.turo-header-is-sticky #masthead .ast-mobile-header-wrap,
body.turo-header-is-sticky #masthead .main-header-bar {
	background: transparent !important;
	box-shadow: none !important;
}

/* Altura y aire interno */

body.turo-header-is-sticky #masthead .main-header-bar {
	min-height: 76px;

	padding-left: 20px;
	padding-right: 20px;
}

/* =========================================================
   Menú
   ========================================================= */

body.turo-header-is-sticky
#masthead
.main-header-menu > .menu-item > .menu-link {
	color: #171717 !important;
}

/* Hover y activo */

body.turo-header-is-sticky
#masthead
.main-header-menu > .menu-item > .menu-link:hover,
body.turo-header-is-sticky
#masthead
.main-header-menu > .current-menu-item > .menu-link,
body.turo-header-is-sticky
#masthead
.main-header-menu > .current-menu-ancestor > .menu-link {
	color: #111111 !important;
}

/* =========================================================
   Logo negro
   ========================================================= */

body.turo-header-is-sticky
#masthead
.site-logo-img
.custom-logo-link img,
body.turo-header-is-sticky
#masthead
.site-logo-img
img.custom-logo[src*="yo-turo-white"] {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;

	filter: brightness(0) saturate(100%) !important;
	-webkit-filter: brightness(0) saturate(100%) !important;

	mix-blend-mode: normal !important;
}

/* =========================================================
   Iconos del header
   ========================================================= */

body.turo-header-is-sticky #masthead a,
body.turo-header-is-sticky #masthead svg,
body.turo-header-is-sticky #masthead .ast-icon,
body.turo-header-is-sticky #masthead .ast-header-social-1-wrap {
	color: #111111 !important;
}

body.turo-header-is-sticky #masthead svg {
	fill: currentColor !important;
	stroke: currentColor !important;
}

body.turo-header-is-sticky #masthead svg [fill="none"] {
	fill: none !important;
}

/* =========================================================
   Compensación del contenido
   ========================================================= */

body.turo-header-is-sticky {
	padding-top: 108px;
}

/* =========================================================
   Animación
   ========================================================= */

@keyframes turo-floating-header-in {
	from {
		opacity: 0;

		transform:
			translateX(-50%)
			translateY(-20px)
			scale(0.98);
	}

	to {
		opacity: 1;

		transform:
			translateX(-50%)
			translateY(0)
			scale(1);
	}
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1100px) {
	body.turo-header-is-sticky #masthead {
		top: 14px;

		width: calc(100% - 30px);

		border-radius: 22px;
	}

	body.turo-header-is-sticky #masthead .main-header-bar {
		min-height: 70px;

		padding-left: 14px;
		padding-right: 14px;
	}

	body.turo-header-is-sticky {
		padding-top: 96px;
	}
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
	body.turo-header-is-sticky #masthead {
		top: 10px;

		width: calc(100% - 20px);

		border-radius: 18px;
	}

	body.turo-header-is-sticky #masthead .main-header-bar {
		min-height: 64px;

		padding-left: 8px;
		padding-right: 8px;
	}

	body.turo-header-is-sticky {
		padding-top: 84px;
	}
}

/* =========================================================
   Accesibilidad
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	body.turo-header-is-sticky #masthead {
		animation: none;
	}
}

/* =========================================================
   Instagram negro en header normal de páginas internas
   ========================================================= */

body:not(.home)
#masthead
.ast-header-social-1-wrap
.ast-builder-social-element,
body:not(.home)
#masthead
.ast-header-social-1-wrap
.ast-inline-flex,
body:not(.home)
#masthead
.ast-header-social-1-wrap
.ast-facebook-icon,
body:not(.home)
#masthead
.ast-header-social-1-wrap
svg {
	color: #111111 !important;
	fill: #111111 !important;
	stroke: #111111 !important;

	background: transparent !important;

	opacity: 1 !important;
	visibility: visible !important;

	filter: none !important;
	-webkit-filter: none !important;
}

/* Forzar las partes internas del SVG */

body:not(.home)
#masthead
.ast-header-social-1-wrap
svg path,
body:not(.home)
#masthead
.ast-header-social-1-wrap
svg circle,
body:not(.home)
#masthead
.ast-header-social-1-wrap
svg rect {
	fill: #111111 !important;
	stroke: #111111 !important;
}

/* Mantenerlo blanco en la home transparente */

body.home:not(.turo-header-is-sticky)
#masthead
.ast-header-social-1-wrap
.ast-builder-social-element,
body.home:not(.turo-header-is-sticky)
#masthead
.ast-header-social-1-wrap
svg {
	color: #ffffff !important;
	fill: #ffffff !important;
	stroke: #ffffff !important;
}

/* =========================================================
   Instagram blanco SOLO en Home Argentina
   Página ID: 10558
   ========================================================= */

body.page-id-10558:not(.turo-header-is-sticky)
#masthead
.ast-header-social-1-wrap
.ast-builder-social-element,

body.page-id-10558:not(.turo-header-is-sticky)
#masthead
.ast-header-social-1-wrap
a,

body.page-id-10558:not(.turo-header-is-sticky)
#masthead
.ast-header-social-1-wrap
.ahfb-svg-iconset,

body.page-id-10558:not(.turo-header-is-sticky)
#masthead
.ast-header-social-1-wrap
svg,

body.page-id-10558:not(.turo-header-is-sticky)
#masthead
.ast-header-social-1-wrap
svg path {
	color: #ffffff !important;
	fill: #ffffff !important;
	stroke: #ffffff !important;

	background-color: transparent !important;

	opacity: 1 !important;
	visibility: visible !important;

	filter: none !important;
	-webkit-filter: none !important;
}


/* Al convertirse en sticky, vuelve a negro */

body.page-id-10558.turo-header-is-sticky
#masthead
.ast-header-social-1-wrap
.ast-builder-social-element,

body.page-id-10558.turo-header-is-sticky
#masthead
.ast-header-social-1-wrap
a,

body.page-id-10558.turo-header-is-sticky
#masthead
.ast-header-social-1-wrap
.ahfb-svg-iconset,

body.page-id-10558.turo-header-is-sticky
#masthead
.ast-header-social-1-wrap
svg,

body.page-id-10558.turo-header-is-sticky
#masthead
.ast-header-social-1-wrap
svg path {
	color: #111111 !important;
	fill: #111111 !important;
	stroke: #111111 !important;
}

/* =========================================================
   YO, TURO — Menú mobile anticipado
   Breakpoint: 1280px
   ========================================================= */

/* Evitar que el menú desktop se parta en dos líneas */

#ast-desktop-header .main-header-menu {
	flex-wrap: nowrap !important;
}


/* =========================================================
   Desde 1280px hacia abajo: usar header mobile real
   ========================================================= */

/* Desktop */
@media (min-width: 1281px) {

	.ast-desktop .menu-item:last-child {
		display: none !important;
	}

	.ast-builder-menu .menu-item:last-child {
		display: none !important;
	}
}

/* Tablet + Mobile */

@media (max-width: 1280px) {

	/* Astra usa el header mobile también en tablet. */
	#ast-desktop-header {
		display: none !important;
	}

	#ast-mobile-header,
	.ast-mobile-header-wrap {
		display: block !important;
		width: 100%;
	}

	/* Una sola estructura para logo y hamburguesa. */
	#ast-mobile-header .main-header-bar,
	.ast-mobile-header-wrap .main-header-bar {
		display: flex !important;
		align-items: center !important;
		width: 100%;
		min-height: 82px;
		padding: 0 28px !important;
		margin: 0;
		box-sizing: border-box;
		background: #ffffff;
	}

	#ast-mobile-header .ast-builder-grid-row-container,
	.ast-mobile-header-wrap .ast-builder-grid-row-container {
		display: flex !important;
		align-items: center !important;
		width: 100%;
		height: 100%;
	}

	#ast-mobile-header .ast-builder-grid-row,
	.ast-mobile-header-wrap .ast-builder-grid-row {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
		align-items: center !important;
		width: 100%;
		height: 100%;
		max-width: none !important;
		margin: 0;
		padding: 0 !important;
	}

	#ast-mobile-header .site-header-primary-section-left,
	#ast-mobile-header .site-header-primary-section-right,
	.ast-mobile-header-wrap .site-header-primary-section-left,
	.ast-mobile-header-wrap .site-header-primary-section-right {
		display: flex !important;
		align-items: center !important;
		height: 100%;
		padding: 0 !important;
		margin: 0 !important;
	}

	#ast-mobile-header .site-header-primary-section-left,
	.ast-mobile-header-wrap .site-header-primary-section-left {
		justify-content: flex-start !important;
		justify-self: start !important;
	}

	#ast-mobile-header .site-header-primary-section-right,
	.ast-mobile-header-wrap .site-header-primary-section-right {
		justify-content: flex-end !important;
		justify-self: end !important;
	}

	#ast-mobile-header .site-branding,
	#ast-mobile-header .ast-site-identity,
	#ast-mobile-header .site-logo-img,
	#ast-mobile-header .custom-logo-link,
	.ast-mobile-header-wrap .site-branding,
	.ast-mobile-header-wrap .ast-site-identity,
	.ast-mobile-header-wrap .site-logo-img,
	.ast-mobile-header-wrap .custom-logo-link {
		display: flex !important;
		align-items: center !important;
		height: 100%;
		padding: 0 !important;
		margin: 0 !important;
		line-height: 0;
	}

	#ast-mobile-header .custom-logo-link img,
	.ast-mobile-header-wrap .custom-logo-link img {
		display: block !important;
		width: auto !important;
		max-width: 115px !important;
		height: auto !important;
		max-height: 64px;
		margin: 0 !important;
		object-fit: contain;
		object-position: left center;
	}

	#ast-mobile-header .ast-button-wrap,
	.ast-mobile-header-wrap .ast-button-wrap,
	#ast-mobile-header .menu-toggle,
	.ast-mobile-header-wrap .menu-toggle {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		margin: 0 !important;
	}

	#ast-mobile-header .menu-toggle,
	.ast-mobile-header-wrap .menu-toggle {
		width: 48px;
		height: 48px;
		padding: 8px !important;
		line-height: 1;
	}

	/* =====================================================
	   Panel desplegable
	   ===================================================== */

	#ast-mobile-header .ast-mobile-header-content,
	.ast-mobile-header-wrap .ast-mobile-header-content {
		position: absolute !important;
		top: 100% !important;
		left: 0 !important;
		right: 0 !important;

		width: 100% !important;

		padding:
			24px
			28px
			32px !important;

		background: #ffffff !important;

		box-shadow:
			0 24px 45px rgba(0, 0, 0, 0.12);

		z-index: 9998;
	}


	/* El menú debe ser vertical, igual al mobile */

	#ast-mobile-header .main-header-menu,
	.ast-mobile-header-wrap .main-header-menu,
	#ast-mobile-header .ast-nav-menu,
	.ast-mobile-header-wrap .ast-nav-menu {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;

		width: 100% !important;

		margin: 0 !important;
		padding: 0 !important;
	}


	/* Cada opción ocupa una fila */

	#ast-mobile-header .main-header-menu > .menu-item,
	.ast-mobile-header-wrap .main-header-menu > .menu-item {
		display: block !important;

		width: 100% !important;

		margin: 0 !important;

		border-bottom: 1px solid rgba(17, 17, 17, 0.08);
	}

	#ast-mobile-header .main-header-menu > .menu-item:last-child,
	.ast-mobile-header-wrap .main-header-menu > .menu-item:last-child {
		border-bottom: 0;
	}


	/* Links */

	#ast-mobile-header .main-header-menu > .menu-item > .menu-link,
	.ast-mobile-header-wrap .main-header-menu > .menu-item > .menu-link {
		display: flex !important;
		align-items: center !important;

		width: 100% !important;

		min-height: 54px !important;

		padding:
			14px
			4px !important;

		color: #171717 !important;

		font-family: "Poppins", sans-serif;
		font-size: 15px !important;
		font-weight: 600 !important;
		line-height: 1.25 !important;

		text-align: left !important;
	}


	/* Sacar subrayado desktop */

	#ast-mobile-header .main-header-menu > .menu-item > .menu-link::after,
	.ast-mobile-header-wrap .main-header-menu > .menu-item > .menu-link::after {
		display: none !important;
	}


	/* Instagram dentro del menú mobile */

	#ast-mobile-header .ast-header-social-1-wrap,
	.ast-mobile-header-wrap .ast-header-social-1-wrap {
		display: flex !important;

		width: 100%;

		margin-top: 20px;
		padding-top: 20px;

		border-top: 1px solid rgba(17, 17, 17, 0.08);
	}

	#ast-mobile-header .ast-header-social-1-wrap a,
	#ast-mobile-header .ast-header-social-1-wrap svg,
	.ast-mobile-header-wrap .ast-header-social-1-wrap a,
	.ast-mobile-header-wrap .ast-header-social-1-wrap svg {
		color: #111111 !important;
		fill: #111111 !important;
		stroke: #111111 !important;
	}
}


/* =========================================================
   Desktop real
   ========================================================= */

@media (min-width: 1281px) {

	#ast-desktop-header {
		display: block !important;
	}

	#ast-mobile-header,
	.ast-mobile-header-wrap {
		display: none !important;
	}
}


/* =========================================================
   Mobile pequeño
   ========================================================= */

@media (max-width: 767px) {

	#ast-mobile-header .main-header-bar,
	.ast-mobile-header-wrap .main-header-bar {
		min-height: 78px;
		padding: 0 20px !important;
	}

	#ast-mobile-header .custom-logo-link img,
	.ast-mobile-header-wrap .custom-logo-link img {
		max-width: 104px !important;
		max-height: 60px;
	}

	#ast-mobile-header .ast-mobile-header-content,
	.ast-mobile-header-wrap .ast-mobile-header-content {
		padding: 18px 18px 26px !important;
	}

	#ast-mobile-header .main-header-menu > .menu-item > .menu-link,
	.ast-mobile-header-wrap .main-header-menu > .menu-item > .menu-link {
		min-height: 50px !important;
		font-size: 14px !important;
	}

	body.turo-header-is-sticky #masthead {
		overflow: visible !important;
	}

	body.turo-header-is-sticky #ast-mobile-header .main-header-bar,
	body.turo-header-is-sticky .ast-mobile-header-wrap .main-header-bar {
		min-height: 68px;
		padding: 0 18px !important;
	}

	body.turo-header-is-sticky #ast-mobile-header .custom-logo-link img,
	body.turo-header-is-sticky .ast-mobile-header-wrap .custom-logo-link img {
		max-width: 100px !important;
		max-height: 54px;
	}
}

/* =========================================================
   YO, TURO — HERO HOME MOBILE CORREGIDO
   ========================================================= */

@media (max-width: 767px) {

	/* Aire lateral real */

	.turo-hero > .e-con-inner,
	.turo-hero > .elementor-container {
		padding-left: 22px !important;
		padding-right: 22px !important;
		box-sizing: border-box !important;
	}


	/* Contenedor general de los widgets */

	.turo-hero .elementor-widget-heading,
	.turo-hero .elementor-widget-text-editor,
	.turo-hero .elementor-widget-button {
		width: 100% !important;
		max-width: 100% !important;

		margin-left: auto !important;
		margin-right: auto !important;
	}


	/* TÍTULO PRINCIPAL */

	.turo-hero h1,
	.turo-hero .elementor-widget-heading:first-of-type .elementor-heading-title {
		max-width: 520px !important;

		margin-left: auto !important;
		margin-right: auto !important;

		font-size: clamp(40px, 10.5vw, 52px) !important;
		line-height: 0.98 !important;
		letter-spacing: -0.05em !important;

		text-align: center !important;
		text-wrap: balance;
	}


	/* SUBTÍTULO EN NEGRITA */

	.turo-hero .elementor-widget-heading:not(:first-of-type)
	.elementor-heading-title {
		max-width: 480px !important;

		margin-left: auto !important;
		margin-right: auto !important;

		font-size: clamp(17px, 4vw, 29px) !important;
		line-height: 1.15 !important;
		letter-spacing: -0.025em !important;

		text-align: center !important;
		text-wrap: balance;
	}


	/* PÁRRAFO */

	.turo-hero .elementor-widget-text-editor {
		max-width: 460px !important;
	}

	.turo-hero .elementor-widget-text-editor p {
		margin-left: auto !important;
		margin-right: auto !important;

		font-size: 16px !important;
		line-height: 1.55 !important;

		text-align: center !important;
	}


	/* BOTÓN */

	.turo-hero .elementor-widget-button {
		margin-top: 18px !important;
	}

}

/* =========================================================
   HOME ARGENTINA MOBILE — LOGO BLANCO CONVERTIDO A NEGRO
   ========================================================= */

@media (max-width: 767px) {

	body.page-id-10558:not(.turo-header-is-sticky)
	#ast-mobile-header img.custom-logo,

	body.page-id-10558:not(.turo-header-is-sticky)
	.ast-mobile-header-wrap img.custom-logo,

	body.page-id-10558:not(.turo-header-is-sticky)
	#ast-mobile-header img[src*="yo-turo-white"],

	body.page-id-10558:not(.turo-header-is-sticky)
	.ast-mobile-header-wrap img[src*="yo-turo-white"] {
		display: block !important;

		width: auto !important;
		max-width: 100px !important;
		height: auto !important;

		opacity: 1 !important;
		visibility: visible !important;

		filter: brightness(0) saturate(100%) !important;
		-webkit-filter: brightness(0) saturate(100%) !important;

		mix-blend-mode: normal !important;
	}
}

/* =========================================================
   HOME — BOTÓN VER COLECCIÓN EN MOBILE
   ========================================================= */

@media (max-width: 767px) {

	/* Widget completo */

	.elementor-10558
	.elementor-element-86a1fc3 {
		width: 100% !important;

		display: flex !important;
		justify-content: center !important;

		margin-left: auto !important;
		margin-right: auto !important;
	}


	/* Wrapper de Elementor */

	.elementor-10558
	.elementor-element-86a1fc3
	.elementor-button-wrapper {
		display: flex !important;
		justify-content: center !important;

		width: 100% !important;
	}


	/* Botón */

	.elementor-10558
	.elementor-element-86a1fc3
	a.elementor-button {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;

		width: 190px !important;
		min-width: 190px !important;
		max-width: 190px !important;

		height: 48px !important;
		min-height: 48px !important;

		margin: 0 auto !important;
		padding: 0 22px !important;

		border-radius: 999px !important;

		font-family: "Poppins", sans-serif !important;
		font-size: 13px !important;
		font-weight: 700 !important;
		line-height: 1 !important;

		text-align: center !important;
		white-space: nowrap !important;

		box-sizing: border-box !important;
	}
}

/* =========================================================
   YO, TURO — MENÚ MOBILE FLOTANTE
   ========================================================= */

@media (max-width: 1280px) {

	/* Fondo oscuro detrás del menú */

	#ast-mobile-popup-wrapper .ast-mobile-popup-overlay {
		position: fixed !important;
		inset: 0 !important;

		background: rgba(17, 17, 17, 0.48) !important;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);

		opacity: 0;
		transition: opacity 0.28s ease;
	}

	#ast-mobile-popup-wrapper .ast-mobile-popup-drawer.active
	.ast-mobile-popup-overlay {
		opacity: 1;
	}


	/* Panel blanco flotante */

	#ast-mobile-popup-wrapper .ast-mobile-popup-inner {
		position: fixed !important;

		top: 14px !important;
		right: 14px !important;
		bottom: 14px !important;
		left: 14px !important;

		width: auto !important;
		max-width: none !important;
		height: auto !important;
		max-height: calc(100dvh - 28px) !important;

		overflow-y: auto !important;
		overflow-x: hidden !important;

		padding: 24px 18px 22px !important;

		border: 1px solid rgba(17, 17, 17, 0.06);
		border-radius: 30px !important;

		background: #ffffff !important;

		box-shadow:
			0 28px 70px rgba(0, 0, 0, 0.22),
			0 8px 24px rgba(0, 0, 0, 0.08);

		transform:
			translateY(14px)
			scale(0.985);

		opacity: 0;

		transition:
			transform 0.32s cubic-bezier(.19, 1, .22, 1),
			opacity 0.25s ease !important;
	}

	#ast-mobile-popup-wrapper
	.ast-mobile-popup-drawer.active
	.ast-mobile-popup-inner {
		transform:
			translateY(0)
			scale(1);

		opacity: 1;
	}


	/* Contenido interno */

	#ast-mobile-popup-wrapper .ast-mobile-popup-content {
		display: flex !important;
		flex-direction: column !important;

		min-height: 100% !important;

		padding: 0 !important;
	}


	/* Botón cerrar */

	#ast-mobile-popup-wrapper .menu-toggle-close {
		position: sticky !important;
		top: 0 !important;
		z-index: 5 !important;

		display: flex !important;
		align-items: center !important;
		justify-content: center !important;

		width: 44px !important;
		height: 44px !important;

		margin:
			0
			0
			24px
			auto !important;

		padding: 0 !important;

		border: 1px solid rgba(17, 17, 17, 0.1) !important;
		border-radius: 50% !important;

		background: #f7f5f2 !important;
		color: #111111 !important;

		box-shadow: none !important;

		transition:
			background-color 0.2s ease,
			transform 0.2s ease;
	}

	#ast-mobile-popup-wrapper .menu-toggle-close:hover {
		background: #111111 !important;
		color: #ffffff !important;

		transform: rotate(5deg);
	}

	#ast-mobile-popup-wrapper .menu-toggle-close svg {
		width: 18px !important;
		height: 18px !important;

		fill: currentColor !important;
		stroke: currentColor !important;
	}


	/* Menú */

	#ast-mobile-popup-wrapper .main-header-menu,
	#ast-mobile-popup-wrapper .ast-nav-menu {
		display: flex !important;
		flex-direction: column !important;
		gap: 10px !important;

		width: 100% !important;

		margin: 0 !important;
		padding: 0 !important;

		list-style: none !important;
	}


	/* Cada item */

	#ast-mobile-popup-wrapper .main-header-menu > .menu-item {
		width: 100% !important;

		margin: 0 !important;
		padding: 0 !important;

		border: 0 !important;
	}


	/* Pills */

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item > .menu-link {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;

		width: 100% !important;
		min-height: 58px !important;

		margin: 0 !important;
		padding:
			15px
			18px !important;

		border: 1px solid rgba(17, 17, 17, 0.07) !important;
		border-radius: 18px !important;

		background: #f8f7f5 !important;
		color: #111111 !important;

		font-family: "Poppins", sans-serif !important;
		font-size: 14px !important;
		font-weight: 700 !important;
		letter-spacing: -0.015em !important;
		line-height: 1.25 !important;
		text-align: left !important;

		transition:
			background-color 0.22s ease,
			color 0.22s ease,
			border-color 0.22s ease,
			transform 0.22s ease;
	}


	/* Flechita al final */

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item > .menu-link::after {
		content: "→";

		display: flex;
		align-items: center;
		justify-content: center;

		width: 28px;
		height: 28px;

		margin-left: 12px;

		border-radius: 50%;

		background: #ffffff;
		color: #111111;

		font-size: 14px;
		font-weight: 500;
		line-height: 1;

		transition:
			background-color 0.22s ease,
			color 0.22s ease,
			transform 0.22s ease;
	}


	/* Hover */

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item > .menu-link:hover {
		transform: translateX(3px);

		border-color: #111111 !important;

		background: #111111 !important;
		color: #ffffff !important;
	}

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item > .menu-link:hover::after {
		background: #ffffff;
		color: #111111;

		transform: translateX(2px);
	}


	/* Item activo */

	#ast-mobile-popup-wrapper
	.main-header-menu > .current-menu-item > .menu-link,

	#ast-mobile-popup-wrapper
	.main-header-menu > .current-product_cat-ancestor > .menu-link {
		border-color: #111111 !important;

		background: #111111 !important;
		color: #ffffff !important;
	}

	#ast-mobile-popup-wrapper
	.main-header-menu > .current-menu-item > .menu-link::after,

	#ast-mobile-popup-wrapper
	.main-header-menu > .current-product_cat-ancestor > .menu-link::after {
		background: #ffffff;
		color: #111111;
	}


	/* Instagram dentro del drawer */

	#ast-mobile-popup-wrapper .ast-header-social-1-wrap {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;

		width: 100% !important;

		margin-top: auto !important;
		padding-top: 24px !important;
	}

	#ast-mobile-popup-wrapper .ast-header-social-1-wrap a {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;

		width: 48px !important;
		height: 48px !important;

		border: 1px solid rgba(17, 17, 17, 0.1) !important;
		border-radius: 50% !important;

		background: #111111 !important;
		color: #ffffff !important;
	}

	#ast-mobile-popup-wrapper .ast-header-social-1-wrap svg {
		width: 20px !important;
		height: 20px !important;

		fill: currentColor !important;
		stroke: currentColor !important;
	}


	/* Evitar ese espacio enorme vacío abajo */

	#ast-mobile-popup-wrapper .ast-mobile-popup-content,
	#ast-mobile-popup-wrapper .ast-builder-menu-mobile {
		height: auto !important;
		min-height: 0 !important;
	}

}


/* Mobile muy chico */

@media (max-width: 390px) {

	#ast-mobile-popup-wrapper .ast-mobile-popup-inner {
		top: 10px !important;
		right: 10px !important;
		bottom: 10px !important;
		left: 10px !important;

		padding: 20px 14px !important;

		border-radius: 26px !important;
	}

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item > .menu-link {
		min-height: 54px !important;

		padding:
			13px
			15px !important;

		font-size: 13px !important;
	}

}

/* =========================================================
   FIX — ITEM ACTIVO DEL MENÚ MOBILE
   ========================================================= */

@media (max-width: 1280px) {

	/* Asegurar layout correcto del link */

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item > .menu-link {
		position: relative !important;

		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;

		gap: 14px !important;

		padding-left: 18px !important;
		padding-right: 16px !important;
	}


	/* Texto del menú */

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item > .menu-link {
		text-align: left !important;
	}


	/* Flecha siempre a la derecha */

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item > .menu-link::after {
		position: static !important;

		flex: 0 0 32px !important;

		width: 32px !important;
		height: 32px !important;

		margin: 0 !important;
		margin-left: auto !important;

		transform: none !important;
	}


	/* Item activo */

	#ast-mobile-popup-wrapper
	.main-hder-menu > .current-menu-item > .menu-link,

	#ast-mobile-popup-wrapper
	.main-header-menu > .current-menu-ancestor > .menu-link,

	#ast-mobile-popup-wrapper
	.main-header-menu > .current-product_cat-ancestor > .menu-link {
		padding-left: 18px !important;
		padding-right: 16px !important;

		background: #111111 !important;
		color: #ffffff !important;
	}


	/* Flecha del activo */

	#ast-mobile-popup-wrapper
	.main-header-menu > .current-menu-item > .menu-link::after,

	#ast-mobile-popup-wrapper
	.main-header-menu > .current-menu-ancestor > .menu-link::after,

	#ast-mobile-popup-wrapper
	.main-header-menu > .current-product_cat-ancestor > .menu-link::after {
		position: static !important;

		margin-left: auto !important;

		background: #ffffff !important;
		color: #111111 !important;

		transform: none !important;
	}


	/* Evitar pseudoelementos viejos de Astra */

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item > .menu-link::before {
		display: none !important;
		content: none !important;
	}

}

/* =========================================================
   SUBMENÚ PRINCIPAL — YO, TURO
   Desktop + Mobile
========================================================= */


/* =========================================================
   ÍCONO DE PATITA
   Usa mask para poder cambiarla de negro a blanco
========================================================= */

.main-header-menu .sub-menu .menu-link::before {
    content: "";

    display: block;
    flex: 0 0 auto;

    width: 15px;
    height: 15px;

    background-color: currentColor;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 224c-79.5 0-192 122.8-192 200.2C64 463.1 95.8 480 128 480c41.1 0 70.2-24.3 128-24.3S342.9 480 384 480c32.2 0 64-16.9 64-55.8C448 346.8 335.5 224 256 224zM96 208c35.3 0 64-35.8 64-80S131.3 48 96 48 32 83.8 32 128s28.7 80 64 80zm320 0c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80zM208 176c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80zm96 0c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 224c-79.5 0-192 122.8-192 200.2C64 463.1 95.8 480 128 480c41.1 0 70.2-24.3 128-24.3S342.9 480 384 480c32.2 0 64-16.9 64-55.8C448 346.8 335.5 224 256 224zM96 208c35.3 0 64-35.8 64-80S131.3 48 96 48 32 83.8 32 128s28.7 80 64 80zm320 0c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80zM208 176c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80zm96 0c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80z'/%3E%3C/svg%3E");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-position: center;
    mask-position: center;

    -webkit-mask-size: contain;
    mask-size: contain;

    opacity: 0;
    transform: scale(0.7);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 922px) {

    .ast-desktop
    .main-header-menu
    .sub-menu {
        min-width: 285px;

        margin-top: 10px;
        padding: 9px;

        background: rgba(255, 255, 255, 0.98);

        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-radius: 20px;

        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.14),
            0 4px 14px rgba(0, 0, 0, 0.06);

        overflow: hidden;

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }


    .ast-desktop
    .main-header-menu
    .sub-menu
    li {
        margin: 0;
        padding: 0;

        border: 0 !important;
        background: transparent;
    }


    .ast-desktop
    .main-header-menu
    .sub-menu
    .menu-link {
        display: flex;
        align-items: center;
        gap: 10px;

        min-height: 48px;
        padding: 12px 15px;

        color: #222;
        background: transparent;

        border: 0 !important;
        border-radius: 13px;

        font-size: 14px;
        font-weight: 700;
        line-height: 1.25;

        transition:
            color 0.2s ease,
            background-color 0.2s ease,
            transform 0.2s ease;
    }


    /*
     * Hover:
     * fondo suave, texto y patita negros
     */
    .ast-desktop
    .main-header-menu
    .sub-menu
    .menu-link:hover {
        color: #111;
        background: #f1f1f1;

        transform: translateX(2px);
    }


    .ast-desktop
    .main-header-menu
    .sub-menu
    .menu-link:hover::before {
        opacity: 1;
        transform: scale(1);
    }


    /*
     * Página activa:
     * fondo negro, texto y patita blancos
     */
    .ast-desktop
    .main-header-menu
    .sub-menu
    .current-menu-item > .menu-link,

    .ast-desktop
    .main-header-menu
    .sub-menu
    .current-product_cat-ancestor > .menu-link,

    .ast-desktop
    .main-header-menu
    .sub-menu
    .current-menu-ancestor > .menu-link {
        color: #fff !important;
        background: #111;
    }


    .ast-desktop
    .main-header-menu
    .sub-menu
    .current-menu-item > .menu-link::before,

    .ast-desktop
    .main-header-menu
    .sub-menu
    .current-product_cat-ancestor > .menu-link::before,

    .ast-desktop
    .main-header-menu
    .sub-menu
    .current-menu-ancestor > .menu-link::before {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================================================
   MOBILE Y TABLET
========================================================= */

@media (max-width: 921px) {

    /*
     * Contenedor completo del menú mobile
     */
    .ast-header-break-point
    .main-navigation
    .main-header-menu {
        width: 100%;
    }


    /*
     * Opciones principales: Remeras y Mantas
     */
    .ast-header-break-point
    .main-navigation
    .main-header-menu
    > li {
        width: 100%;

        margin: 0 0 12px;
        padding: 0;

        background: #faf9f8;

        border: 1px solid rgba(0, 0, 0, 0.09) !important;
        border-radius: 18px;

        overflow: hidden;

        box-shadow: none;
    }


    /*
     * Link principal
     */
    .ast-header-break-point
    .main-navigation
    .main-header-menu
    > li
    > .menu-link {
        display: flex;
        align-items: center;

        width: 100%;
        min-height: 70px;

        padding: 18px 65px 18px 20px;

        color: #171717 !important;
        background: transparent !important;

        border: 0 !important;

        font-size: 17px;
        font-weight: 800;
        line-height: 1.2;
    }


    /*
     * El submenu queda integrado dentro
     * de la misma tarjeta de Remeras.
     */
    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu {
        position: static !important;

        display: none;

        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 10px 10px !important;

        background: transparent !important;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        overflow: visible !important;

        transform: none !important;
    }


    /*
     * Astra agrega estas clases cuando abre
     * el submenu.
     */
    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .menu-item-has-children.ast-submenu-expanded
    > .sub-menu,

    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .menu-item-has-children
    > .sub-menu[style*="display: block"] {
        display: block;
    }


    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    li {
        width: 100%;

        margin: 0 0 4px;
        padding: 0;

        background: transparent;

        border: 0 !important;
        border-radius: 0;
    }


    /*
     * Opciones internas
     */
    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .menu-link {
        display: flex;
        align-items: center;
        gap: 10px;

        width: 100%;
        min-height: 46px;

        padding: 11px 14px;

        color: #292929 !important;
        background: transparent;

        border: 0 !important;
        border-radius: 12px;

        font-size: 15px;
        font-weight: 700;
        line-height: 1.25;

        white-space: normal;

        transition:
            color 0.2s ease,
            background-color 0.2s ease;
    }


    /*
     * Hover o toque
     */
    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .menu-link:hover,

    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .menu-link:focus-visible {
        color: #111 !important;
        background: #ededed;
    }


    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .menu-link:hover::before,

    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .menu-link:focus-visible::before {
        opacity: 1;
        transform: scale(1);
    }


    /*
     * Página activa
     */
    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .current-menu-item > .menu-link,

    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .current-product_cat-ancestor > .menu-link,

    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .current-menu-ancestor > .menu-link {
        color: #fff !important;
        background: #111 !important;
    }


    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .current-menu-item > .menu-link::before,

    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .current-product_cat-ancestor > .menu-link::before,

    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu
    .current-menu-ancestor > .menu-link::before {
        opacity: 1;
        transform: scale(1);
    }


    /*
     * Cuando Remeras está desplegado,
     * dejamos aire debajo de su encabezado.
     */
    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .menu-item-has-children.ast-submenu-expanded
    > .menu-link {
        padding-bottom: 14px;
    }


    /*
     * Evitar que aparezca la tarjeta blanca
     * gigante que mostraba Astra.
     */
    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu::before,

    .ast-header-break-point
    .main-navigation
    .main-header-menu
    .sub-menu::after {
        display: none !important;
        content: none !important;
    }
}

/* =========================================================
   SUBMENÚ MOBILE — CORRECCIÓN FINAL
   El submenu queda integrado dentro de REMERAS
========================================================= */

@media (max-width: 921px) {

	/* Evitar separación artificial entre Remeras y su submenu */
	#ast-mobile-popup-wrapper
	.main-header-menu {
		gap: 12px !important;
	}


	/* El item principal que contiene submenu */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children {
		display: flex !important;
		flex-direction: column !important;

		width: 100% !important;

		margin: 0 !important;
		padding: 0 !important;

		background: #f8f7f5 !important;

		border: 1px solid rgba(17, 17, 17, 0.08) !important;
		border-radius: 18px !important;

		position: relative !important;
		overflow: hidden !important;
	}


	/* Link principal REMERAS */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .menu-link {
		width: 100% !important;
		min-height: 58px !important;

		margin: 0 !important;
		padding: 15px 70px 15px 18px !important;

		background: transparent !important;

		border: 0 !important;
		border-radius: 0 !important;

		color: #111111 !important;

		position: relative !important;
	}


	/*
	 * Botón real de Astra para abrir/cerrar submenu.
	 * Lo ubicamos en la esquina derecha.
	 */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .ast-menu-toggle {
		position: absolute !important;
		top: 13px !important;
		right: 16px !important;

		display: flex !important;
		align-items: center !important;
		justify-content: center !important;

		width: 34px !important;
		height: 34px !important;

		margin: 0 !important;
		padding: 0 !important;

		background: #ffffff !important;

		border: 0 !important;
		border-radius: 50% !important;

		color: #111111 !important;

		z-index: 3 !important;
	}


	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .ast-menu-toggle:hover,
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .ast-menu-toggle:focus {
		background: #ffffff !important;
		color: #111111 !important;
	}


	/*
	 * Sacar la flecha artificial del link principal,
	 * porque ya usamos el botón real de Astra.
	 */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .menu-link::after {
		display: none !important;
		content: none !important;
	}


	/* Submenu sin tarjeta independiente */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu {
		position: static !important;

		width: 100% !important;
		min-width: 0 !important;
		max-width: none !important;

		margin: 0 !important;
		padding: 4px 10px 12px !important;

		background: transparent !important;

		border: 0 !important;
		border-radius: 0 !important;

		box-shadow: none !important;

		transform: none !important;
		overflow: visible !important;
	}


	/* Sin fondos, bordes ni cajas en cada li interno */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> li {
		width: 100% !important;

		margin: 2px 0 !important;
		padding: 0 !important;

		background: transparent !important;

		border: 0 !important;
		border-radius: 0 !important;
	}


	/* Links internos */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> li
	> .menu-link {
		display: flex !important;
		align-items: center !important;
		gap: 10px !important;

		width: 100% !important;
		min-height: 44px !important;

		margin: 0 !important;
		padding: 10px 14px !important;

		background: transparent !important;
		color: #2b2b2b !important;

		border: 0 !important;
		border-radius: 12px !important;

		font-size: 14px !important;
		font-weight: 700 !important;
		line-height: 1.25 !important;

		white-space: normal !important;

		transition:
			background-color 0.2s ease,
			color 0.2s ease;
	}


	/* Patita oculta por defecto */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> li
	> .menu-link::before {
		content: "" !important;

		display: block !important;
		flex: 0 0 15px !important;

		width: 15px !important;
		height: 15px !important;

		background-color: currentColor !important;

		-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 224c-79.5 0-192 122.8-192 200.2C64 463.1 95.8 480 128 480c41.1 0 70.2-24.3 128-24.3S342.9 480 384 480c32.2 0 64-16.9 64-55.8C448 346.8 335.5 224 256 224zM96 208c35.3 0 64-35.8 64-80S131.3 48 96 48 32 83.8 32 128s28.7 80 64 80zm320 0c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80zM208 176c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80zm96 0c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80z'/%3E%3C/svg%3E") !important;

		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 224c-79.5 0-192 122.8-192 200.2C64 463.1 95.8 480 128 480c41.1 0 70.2-24.3 128-24.3S342.9 480 384 480c32.2 0 64-16.9 64-55.8C448 346.8 335.5 224 256 224zM96 208c35.3 0 64-35.8 64-80S131.3 48 96 48 32 83.8 32 128s28.7 80 64 80zm320 0c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80zM208 176c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80zm96 0c35.3 0 64-35.8 64-80s-28.7-80-64-80-64 35.8-64 80 28.7 80 64 80z'/%3E%3C/svg%3E") !important;

		-webkit-mask-repeat: no-repeat !important;
		mask-repeat: no-repeat !important;

		-webkit-mask-position: center !important;
		mask-position: center !important;

		-webkit-mask-size: contain !important;
		mask-size: contain !important;

		opacity: 0 !important;
		transform: scale(0.7) !important;

		transition:
			opacity 0.2s ease,
			transform 0.2s ease !important;
	}


	/* Hover: fondo gris y patita negra */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> li
	> .menu-link:hover,
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> li
	> .menu-link:focus-visible {
		background: #ecebea !important;
		color: #111111 !important;
	}


	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> li
	> .menu-link:hover::before,
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> li
	> .menu-link:focus-visible::before {
		opacity: 1 !important;
		transform: scale(1) !important;
	}


	/* Categoría activa: negro y patita blanca */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> .current-menu-item
	> .menu-link,

	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> .current-product_cat-ancestor
	> .menu-link {
		background: #111111 !important;
		color: #ffffff !important;
	}


	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> .current-menu-item
	> .menu-link::before,

	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item-has-children
	> .sub-menu
	> .current-product_cat-ancestor
	> .menu-link::before {
		opacity: 1 !important;
		transform: scale(1) !important;
	}


	/* Mantas mantiene su pill normal */
	#ast-mobile-popup-wrapper
	.main-header-menu
	> .menu-item:not(.menu-item-has-children)
	> .menu-link {
		min-height: 58px !important;
	}


	/* Eliminar cualquier tarjeta heredada del submenu */
	#ast-mobile-popup-wrapper
	.main-header-menu
	.sub-menu::before,
	#ast-mobile-popup-wrapper
	.main-header-menu
	.sub-menu::after {
		display: none !important;
		content: none !important;
	}

}

/* =========================================================
   TABLET / IPAD — LOGO VISIBLE EN HEADER MOBILE
   ========================================================= */

@media (min-width: 768px) and (max-width: 1280px) {

	body.home:not(.turo-header-is-sticky)
	#ast-mobile-header img.custom-logo,

	body.home:not(.turo-header-is-sticky)
	.ast-mobile-header-wrap img.custom-logo,

	body.page-id-10558:not(.turo-header-is-sticky)
	#ast-mobile-header img.custom-logo,

	body.page-id-10558:not(.turo-header-is-sticky)
	.ast-mobile-header-wrap img.custom-logo {

		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;

		width: auto !important;
		height: auto !important;
		max-width: 115px !important;

		filter: brightness(0) saturate(100%) !important;
		-webkit-filter: brightness(0) saturate(100%) !important;

		mix-blend-mode: normal !important;
	}

	#ast-mobile-header .site-branding,
	#ast-mobile-header .ast-site-identity,
	#ast-mobile-header .site-logo-img,
	.ast-mobile-header-wrap .site-branding,
	.ast-mobile-header-wrap .ast-site-identity,
	.ast-mobile-header-wrap .site-logo-img {
		display: flex !important;
		align-items: center !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

}

/* =========================================================
   MENÚ FLOTANTE — AJUSTE TABLET / IPAD
   ========================================================= */

@media (min-width: 768px) and (max-width: 1280px) {

	#ast-mobile-popup-wrapper .ast-mobile-popup-inner {
        top: 24px !important;
        right: 24px !important;
        bottom: 24px !important;
        left: auto !important;

        width: 360px !important;
        max-width: calc(100vw - 48px) !important;

        height: auto !important;
        max-height: calc(100dvh - 48px) !important;

        padding: 28px 24px 26px !important;

        border-radius: 30px !important;
    }
    
    #ast-mobile-popup-wrapper .main-header-menu > .menu-item {
        width: 100%;
    }

    #ast-mobile-popup-wrapper .main-header-menu > .menu-item > .menu-link {
        width: 100%;
        box-sizing: border-box;
    }

	#ast-mobile-popup-wrapper .ast-mobile-popup-content {
		width: 100% !important;
	}

	#ast-mobile-popup-wrapper .main-header-menu,
	#ast-mobile-popup-wrapper .ast-nav-menu {
		width: 100% !important;
	}

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item > .menu-link {
		min-height: 60px !important;
		padding: 16px 20px !important;

		background: #f8f7f5 !important;
		color: #111111 !important;

		font-size: 15px !important;
	}

	#ast-mobile-popup-wrapper .menu-toggle-close {
		width: 46px !important;
		height: 46px !important;
		margin-bottom: 26px !important;
	}
}

/* =========================================================
   BOTÓN CONTACTO — MENÚ MOBILE + TABLET
   ========================================================= */

@media (max-width: 1280px) {

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item:last-child {
		width: 100% !important;
		margin-top: 12px !important;
	}

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item:last-child > .menu-link {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;

		width: 100% !important;
		min-height: 62px !important;
		padding: 16px 24px !important;

		border: 1px solid #000000 !important;
		border-radius: 999px !important;

		background: #000000 !important;
		color: #ffffff !important;

		font-size: 15px !important;
		font-weight: 700 !important;
		letter-spacing: 0.02em !important;
		text-align: center !important;
		text-transform: uppercase !important;
	}

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item:last-child > .menu-link::after,
	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item:last-child
	.ast-menu-toggle {
		display: none !important;
	}

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item:last-child > .menu-link:hover,
	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item:last-child.current-menu-item > .menu-link {
		background: #000000 !important;
		color: #ffffff !important;
		border-color: #000000 !important;
		transform: translateY(-1px);
	}
}
@media (max-width: 1280px) {

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item:last-child
	.menu-link > span:last-child,

	#ast-mobile-popup-wrapper
	.main-header-menu > .menu-item:last-child
	.menu-link .ast-icon {
		display: none !important;
	}
}

@media (max-width: 921px){

  #ast-mobile-popup-wrapper #ast-hf-menu-1-mobile,
  #ast-mobile-popup-wrapper .main-header-menu{
    background: #ffffff !important;
    background-color: #ffffff !important;
  }

}


/* =========================================================
   FIX SUBMENÚ DESKTOP EN HEADER STICKY
   ========================================================= */

@media (min-width: 1281px) {

    body.turo-header-is-sticky #masthead {
        overflow: visible !important;
    }

    body.turo-header-is-sticky
    #masthead
    .main-header-menu
    .sub-menu {
        z-index: 10000 !important;
    }

    body.turo-header-is-sticky #masthead .ast-main-header-wrap,
    body.turo-header-is-sticky #masthead .main-header-bar {
        border-radius: inherit;
    }
}

/* =========================================================
   HOME NAV — respaldo para el header negro
   La forma zigzag principal vive en 20-home-slider.css.
   ========================================================= */
.home #masthead .ast-primary-header-bar {
    background-color: #111 !important;
}

.home #masthead .main-header-menu > .menu-item > .menu-link {
    color: #fff !important;
}