/* =====================================================================
 * Numbi Sport — Cabecera Divi 5
 * Todo el CSS vive bajo .nbh / .nbh-panel / .nbh-scrim para no pisar
 * ni ser pisado por Divi o WooCommerce.
 * ================================================================== */

.nbh,
.nbh-panel,
.nbh-scrim {
	/* Cabecera en oscuro: mismo diseño, invertido. Todo el resto de la hoja
	 * usa estas variables, así que el tema se cambia solo desde aquí.
	 *
	 * El negro es el color base (barra principal, menú, desplegables y
	 * paneles). La barra superior de avisos lleva un gris muy oscuro para
	 * separarse del resto sin romper el conjunto. */
	--nbh-orange: #fe5000;
	--nbh-orange-dark: #d94400;
	--nbh-ink: #ffffff;
	--nbh-ink-soft: rgba(255, 255, 255, .62);
	--nbh-line: rgba(255, 255, 255, .14);
	--nbh-bg: #000000;
	--nbh-bg-soft: #101014;
	--nbh-top-bg: #1b1e25;
	--nbh-radius: 10px;
	--nbh-shadow: 0 18px 40px -18px rgba(20, 22, 28, .35);
	--nbh-wrap: 1400px;
	--nbh-pad: 24px;
	--nbh-ease: cubic-bezier(.22, .61, .36, 1);

	box-sizing: border-box;
	font-family: inherit;
	line-height: 1.4;
}

.nbh *,
.nbh *::before,
.nbh *::after,
.nbh-panel *,
.nbh-panel *::before,
.nbh-panel *::after {
	box-sizing: border-box;
}

/* Divi impone `list-style-type:disc; padding:0 0 23px 1em` a todo ul dentro de
 * .et-l--header (0,1,1 de especificidad), así que los resets van con dos clases. */
.nbh .nbh-menu,
.nbh .nbh-drop,
.nbh .nbh-mega__list,
.nbh .nbh-top__links,
.nbh-panel .nbh-acc,
.nbh-panel .nbh-acc__sub {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: inherit;
}

.nbh .nbh-menu > li,
.nbh .nbh-drop > li,
.nbh .nbh-mega__list > li,
.nbh .nbh-top__links > li,
.nbh-panel .nbh-acc > li,
.nbh-panel .nbh-acc__sub > li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Divi también añade padding inferior a los <p>: lo anulamos en los avisos. */
.nbh .nbh-ticker__item {
	padding: 0;
}

/* El .et_builder_inner_content de Divi crea contexto de apilamiento con z-index
 * bajo y deja el mega-menú por debajo del contenido de la página. */
.et-l--header .et_builder_inner_content {
	position: relative;
	z-index: 100;
}

.nbh .screen-reader-text,
.nbh-panel .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.nbh-wrap {
	width: 100%;
	max-width: var(--nbh-wrap);
	margin-inline: auto;
	padding-inline: var(--nbh-pad);
}

.nbh-ico {
	width: 22px;
	height: 22px;
	flex: none;
	display: block;
}

/* ------------------------------------------------------------------ *
 * Barra superior
 * ------------------------------------------------------------------ */

.nbh-top {
	background: var(--nbh-top-bg);
	color: #fff;
	font-size: 13px;
}

.nbh-top__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 38px;
}

.nbh-ticker {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	height: 38px;
	overflow: hidden;
}

/* El icono va como flex-item aparte y el texto envuelto en su propio <span>:
 * un flex descarta los nodos de solo espacio y pegaría las palabras a los
 * <strong> si el texto colgara directamente del contenedor. */
.nbh-ticker__item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	gap: 9px;
	line-height: 38px;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0;
	transform: translateY(100%);
	transition: opacity .45s var(--nbh-ease), transform .45s var(--nbh-ease);
	color: rgba(255, 255, 255, .92);
}

.nbh-ticker__item.is-active {
	opacity: 1;
	transform: none;
}

.nbh-ticker__item.is-leaving {
	opacity: 0;
	transform: translateY(-100%);
}

.nbh-ticker__item > span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nbh-ticker__ico {
	width: 16px;
	height: 16px;
	flex: none;
	color: var(--nbh-orange);
}

.nbh-ticker strong {
	color: #fff;
	font-weight: 700;
}

.nbh-top__right {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: none;
}

.nbh-top__links {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nbh-top__links a,
.nbh-social {
	color: rgba(255, 255, 255, .78);
	text-decoration: none;
	transition: color .2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.nbh-top__links a:hover,
.nbh-social:hover {
	color: #fff;
}

.nbh-social .nbh-ico {
	width: 18px;
	height: 18px;
}

/* ------------------------------------------------------------------ *
 * Barra principal
 * ------------------------------------------------------------------ */

.nbh-stick {
	background: var(--nbh-bg);
	z-index: 999;
}

.nbh-main {
	border-bottom: 1px solid var(--nbh-line);
	background: var(--nbh-bg);
}

.nbh-main__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 92px;
	transition: min-height .25s var(--nbh-ease);
}

.nbh-logo {
	flex: none;
	display: block;
	line-height: 0;
}

.nbh-logo img {
	display: block;
	width: auto;
	height: 46px;
	max-width: none;
	transition: height .25s var(--nbh-ease);
}

.nbh-logo__text {
	font-size: 24px;
	font-weight: 800;
	color: var(--nbh-ink);
	line-height: 1.2;
}

/* Buscador --------------------------------------------------------- */

.nbh-search {
	position: relative;
	flex: 1 1 auto;
	max-width: 620px;
	display: flex;
	align-items: center;
	background: var(--nbh-bg-soft);
	border: 1px solid var(--nbh-line);
	border-radius: 999px;
	padding: 0 6px 0 16px;
	height: 48px;
	transition: border-color .2s, box-shadow .2s, background .2s;
}

.nbh-search:focus-within {
	background: var(--nbh-bg);
	border-color: var(--nbh-orange);
	box-shadow: 0 0 0 3px rgba(254, 80, 0, .14);
}

.nbh-search__ico {
	color: var(--nbh-ink-soft);
	width: 20px;
	height: 20px;
}

.nbh-search__input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	font-size: 15px;
	color: var(--nbh-ink);
	padding: 0 12px;
	height: 100%;
	outline: none;
	box-shadow: none;
}

.nbh-search__input::placeholder {
	color: #9aa1ad;
}

/* Oculta la cruz nativa de Chrome, que rompe la alineación */
.nbh-search__input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

/* Sugerencias: aparecen colgando del buscador al enfocarlo */
.nbh-search__hints {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 70;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 12px 16px;
	background: var(--nbh-bg-soft);
	border: 1px solid var(--nbh-line);
	border-radius: var(--nbh-radius);
	box-shadow: var(--nbh-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .2s var(--nbh-ease), transform .2s var(--nbh-ease), visibility .2s;
}

.nbh-search:focus-within .nbh-search__hints {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.nbh-search__hints-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: #9aa1ad;
	margin-right: 2px;
}

.nbh-chip {
	border: 1px solid var(--nbh-line);
	background: var(--nbh-bg-soft);
	color: var(--nbh-ink);
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 13px;
	border-radius: 999px;
	cursor: pointer;
	transition: background .16s, border-color .16s, color .16s;
}

.nbh-chip:hover {
	background: var(--nbh-orange);
	border-color: var(--nbh-orange);
	color: #fff;
}

.nbh-search__submit {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: var(--nbh-orange);
	color: #fff;
	cursor: pointer;
	padding: 0;
	transition: background .2s, transform .15s;
}

.nbh-search__submit:hover {
	background: var(--nbh-orange-dark);
	transform: translateX(1px);
}

.nbh-search__submit .nbh-ico {
	width: 18px;
	height: 18px;
}

/* Acciones --------------------------------------------------------- */

.nbh-actions {
	flex: none;
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Instagram vive en la barra principal, a la izquierda de "Mi cuenta". */
.nbh-actions .nbh-social--bar {
	display: inline-flex;
	color: var(--nbh-ink-soft);
	width: 42px;
	height: 42px;
}

.nbh-actions .nbh-social--bar:hover {
	color: var(--nbh-orange);
	background: var(--nbh-bg-soft);
}

.nbh-actions .nbh-social--bar .nbh-ico {
	width: 21px;
	height: 21px;
}

.nbh-icon-btn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: var(--nbh-ink);
	border-radius: var(--nbh-radius);
	cursor: pointer;
	padding: 0;
	transition: background .2s;
}

.nbh-icon-btn:hover {
	background: var(--nbh-bg-soft);
}

.nbh-action {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border: 0;
	background: transparent;
	border-radius: var(--nbh-radius);
	color: var(--nbh-ink);
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
	transition: background .2s;
}

.nbh-action:hover {
	background: var(--nbh-bg-soft);
	color: var(--nbh-ink);
}

.nbh-action__txt {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
	text-align: left;
}

.nbh-action__txt small {
	font-size: 11px;
	color: var(--nbh-ink-soft);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.nbh-action__txt strong,
.nbh-cart-total {
	font-size: 14px;
	font-weight: 700;
	color: var(--nbh-ink);
	white-space: nowrap;
}

.nbh-cart-btn__ico {
	position: relative;
	display: inline-flex;
}

.nbh-cart-count {
	position: absolute;
	top: -7px;
	right: -9px;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--nbh-orange);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 19px;
	text-align: center;
}

.nbh-cart-count.is-empty {
	display: none;
}

/* ------------------------------------------------------------------ *
 * Navegación + mega-menú
 * ------------------------------------------------------------------ */

/* El panel del mega-menú se ancla a la barra de navegación (no al ítem), para
 * que ocupe el ancho completo y su contenido quede centrado con el resto. */
.nbh-nav {
	position: relative;
	background: var(--nbh-bg);
	border-bottom: 1px solid var(--nbh-line);
}

.nbh-menu {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
}

.nbh-menu__item {
	position: relative;
	margin: 0;
}

.nbh-menu__item.has-mega {
	position: static;
}

.nbh-menu__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 15px 14px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--nbh-ink);
	text-decoration: none;
	white-space: nowrap;
	position: relative;
}

.nbh-menu__link::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 8px;
	height: 2px;
	background: var(--nbh-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s var(--nbh-ease);
}

.nbh-menu__item:hover > .nbh-menu__link::after,
.nbh-menu__item.is-open > .nbh-menu__link::after {
	transform: scaleX(1);
}

/* Rebajas / outlet: píldora naranja, no solo texto de color */
.nbh-menu__item.is-hot > .nbh-menu__link {
	color: #fff;
	background: var(--nbh-orange);
	border-radius: 999px;
	padding-block: 8px;
	margin-right: 8px;
	box-shadow: 0 6px 16px -8px rgba(254, 80, 0, .9);
	transition: background .2s, transform .2s var(--nbh-ease);
}

.nbh-menu__item.is-hot > .nbh-menu__link:hover {
	background: var(--nbh-orange-dark);
	transform: translateY(-1px);
}

.nbh-menu__item.is-hot > .nbh-menu__link::after {
	display: none;
}

/* Sección en la que estás ahora mismo */
.nbh-menu__item.is-current:not(.is-hot) > .nbh-menu__link {
	color: var(--nbh-orange);
}

.nbh-menu__item.is-current:not(.is-hot) > .nbh-menu__link::after {
	transform: scaleX(1);
}

.nbh-menu__caret {
	width: 14px;
	height: 14px;
	opacity: .6;
	transition: transform .25s var(--nbh-ease);
}

.nbh-menu__item:hover > .nbh-menu__link .nbh-menu__caret,
.nbh-menu__item.is-open > .nbh-menu__link .nbh-menu__caret {
	transform: rotate(180deg);
}

/* Desplegable simple */

.nbh-drop {
	position: absolute;
	top: 100%;
	left: 6px;
	min-width: 240px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: var(--nbh-bg-soft);
	border: 1px solid var(--nbh-line);
	border-radius: var(--nbh-radius);
	box-shadow: var(--nbh-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s var(--nbh-ease), transform .2s var(--nbh-ease), visibility .2s;
	z-index: 60;
}

.nbh-drop a {
	display: block;
	padding: 9px 12px;
	border-radius: 8px;
	font-size: 14px;
	color: var(--nbh-ink-soft);
	text-decoration: none;
	transition: background .15s, color .15s;
}

.nbh-drop a:hover {
	background: var(--nbh-bg-soft);
	color: var(--nbh-orange);
}

/* Mega-menú */

.nbh-mega {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--nbh-bg-soft);
	border-top: 1px solid var(--nbh-line);
	box-shadow: var(--nbh-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .22s var(--nbh-ease), transform .22s var(--nbh-ease), visibility .22s;
	z-index: 60;
}

.nbh-menu__item.has-mega:hover > .nbh-mega,
.nbh-menu__item.has-mega.is-open > .nbh-mega,
.nbh-menu__item.has-drop:hover > .nbh-drop,
.nbh-menu__item.has-drop.is-open > .nbh-drop {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.nbh-mega__inner {
	display: flex;
	gap: 40px;
	padding-block: 32px 36px;
}

/* auto-fill (no auto-fit): con pocas categorías las columnas no se estiran
 * hasta ocupar toda la fila, quedan agrupadas a la izquierda. */
.nbh-mega__cols {
	flex: 1 1 auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
	gap: 28px 32px;
	align-content: start;
}

.nbh-mega__title {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--nbh-ink);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color .2s, color .2s;
}

.nbh-mega__title:hover {
	color: var(--nbh-orange);
	border-bottom-color: var(--nbh-orange);
}

.nbh-mega__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 2px;
}

.nbh-mega__list a {
	display: block;
	padding: 5px 0;
	font-size: 14px;
	color: var(--nbh-ink-soft);
	text-decoration: none;
	transition: color .15s, padding-left .15s;
}

.nbh-mega__list a:hover {
	color: var(--nbh-orange);
	padding-left: 5px;
}

/* Columna derecha: los más vendidos de la categoría */

.nbh-mega__aside {
	flex: none;
	width: 300px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-left: 32px;
	border-left: 1px solid var(--nbh-line);
}

.nbh-mega__aside-title {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: #9aa1ad;
}

.nbh-mega__cards {
	display: grid;
	gap: 10px;
}

.nbh-mega__card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	border-radius: var(--nbh-radius);
	text-decoration: none;
	background: var(--nbh-bg-soft);
	transition: background .2s, transform .2s var(--nbh-ease), box-shadow .2s;
}

.nbh-mega__card:hover {
	background: var(--nbh-bg);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -16px rgba(20, 22, 28, .5);
}

.nbh-mega__card-img {
	position: relative;
	flex: none;
	width: 62px;
	height: 62px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--nbh-bg);
}

.nbh-mega__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nbh-mega__badge {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 1px 6px;
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #fff;
	background: var(--nbh-orange);
	border-radius: 0 6px 0 6px;
}

.nbh-mega__card-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.nbh-mega__card-name {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--nbh-ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nbh-mega__card-price {
	font-size: 13px;
	font-weight: 700;
	color: var(--nbh-orange);
}

.nbh-mega__card-price del {
	font-weight: 500;
	color: #9aa1ad;
	margin-right: 4px;
}

.nbh-mega__card-price ins {
	text-decoration: none;
	background: none;
	color: var(--nbh-orange);
}

.nbh-mega__card-price .woocommerce-Price-amount {
	white-space: nowrap;
}

/* El sufijo "IVA incluido" parte el precio en dos líneas dentro de la tarjeta */
.nbh-mega__card-price .woocommerce-price-suffix,
.nbh-panel--cart .woocommerce-price-suffix {
	display: none;
}

.nbh-mega__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: auto;
	padding: 11px 16px;
	border: 1px solid var(--nbh-line);
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--nbh-ink);
	text-decoration: none;
	transition: background .2s, border-color .2s, color .2s;
}

.nbh-mega__all:hover {
	background: var(--nbh-ink);
	border-color: var(--nbh-ink);
	color: #fff;
}

.nbh-mega__all .nbh-ico {
	width: 17px;
	height: 17px;
}

/* ------------------------------------------------------------------ *
 * Estado fijo al hacer scroll
 * ------------------------------------------------------------------ */

.nbh-spacer {
	display: none;
}

.nbh.is-stuck .nbh-spacer {
	display: block;
}

.nbh.is-stuck .nbh-stick {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 6px 24px -12px rgba(20, 22, 28, .28);
	animation: nbh-drop-in .28s var(--nbh-ease);
}

body.admin-bar .nbh.is-stuck .nbh-stick {
	top: 32px;
}

@keyframes nbh-drop-in {
	from {
		transform: translateY(-100%);
	}
}

.nbh.is-stuck .nbh-main__inner {
	min-height: 68px;
}

.nbh.is-stuck .nbh-logo img {
	height: 34px;
}

.nbh.is-stuck .nbh-search {
	height: 42px;
}

.nbh.is-stuck .nbh-action__txt small {
	display: none;
}

@media (prefers-reduced-motion: reduce) {

	.nbh *,
	.nbh-panel * {
		animation: none !important;
		transition-duration: .01ms !important;
	}
}

/* ------------------------------------------------------------------ *
 * Paneles laterales (menú móvil y carrito)
 * ------------------------------------------------------------------ */

.nbh-scrim {
	position: fixed;
	inset: 0;
	background: rgba(16, 18, 24, .5);
	opacity: 0;
	transition: opacity .3s var(--nbh-ease);
	z-index: 100000;
}

.nbh-scrim.is-visible {
	opacity: 1;
}

.nbh-scrim[hidden] {
	display: none;
}

.nbh-panel {
	position: fixed;
	top: 0;
	bottom: 0;
	width: min(420px, 92vw);
	display: flex;
	flex-direction: column;
	background: var(--nbh-bg);
	color: var(--nbh-ink);
	z-index: 100001;
	box-shadow: var(--nbh-shadow);
	transition: transform .34s var(--nbh-ease);
}

.nbh-panel[hidden] {
	display: none;
}

.nbh-panel--menu {
	left: 0;
	transform: translateX(-100%);
}

.nbh-panel--cart {
	right: 0;
	transform: translateX(100%);
}

.nbh-panel.is-open {
	transform: none;
}

.nbh-panel__head {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 12px 16px 20px;
	border-bottom: 1px solid var(--nbh-line);
}

.nbh-panel__title {
	font-size: 17px;
	font-weight: 800;
}

.nbh-panel .nbh-icon-btn {
	display: inline-flex;
}

.nbh-panel__body {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 8px 0 20px;
}

.nbh-panel__foot {
	flex: none;
	padding: 16px 20px;
	border-top: 1px solid var(--nbh-line);
}

.nbh-panel__foot .nbh-social {
	color: var(--nbh-ink-soft);
	font-size: 14px;
}

.nbh-panel__foot .nbh-social:hover {
	color: var(--nbh-orange);
}

/* Acordeón del menú móvil ------------------------------------------ */

.nbh-acc,
.nbh-acc__sub {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nbh-acc__sub[hidden] {
	display: none;
}

.nbh-acc__row {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--nbh-line);
}

.nbh-acc__link {
	flex: 1 1 auto;
	padding: 14px 20px;
	font-size: 15.5px;
	font-weight: 600;
	color: var(--nbh-ink);
	text-decoration: none;
}

.nbh-acc__item.is-hot > .nbh-acc__row > .nbh-acc__link {
	color: var(--nbh-orange);
}

.nbh-acc__toggle {
	flex: none;
	width: 52px;
	align-self: stretch;
	border: 0;
	border-left: 1px solid var(--nbh-line);
	background: transparent;
	color: var(--nbh-ink-soft);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nbh-acc__toggle .nbh-ico {
	transition: transform .25s var(--nbh-ease);
}

.nbh-acc__toggle[aria-expanded="true"] .nbh-ico {
	transform: rotate(180deg);
	color: var(--nbh-orange);
}

.nbh-acc__sub {
	background: var(--nbh-bg-soft);
}

.nbh-acc__sub .nbh-acc__link {
	padding-left: 36px;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--nbh-ink-soft);
}

.nbh-acc__sub .nbh-acc__sub .nbh-acc__link {
	padding-left: 52px;
	font-size: 14px;
}

/* "Contacto" y "Hazte Distribuidor" se leen igual que el resto de entradas del
 * menú (como "Sobre Numbi Sport"): sin separador ni tipografía apagada. */

/* ------------------------------------------------------------------ *
 * Carrito lateral
 * ------------------------------------------------------------------ */

.nbh-cart-progress {
	flex: none;
	padding: 14px 20px;
	background: var(--nbh-bg-soft);
	border-bottom: 1px solid var(--nbh-line);
}

.nbh-cart-progress.is-off {
	display: none;
}

.nbh-cart-progress__txt {
	margin: 0 0 9px;
	font-size: 13.5px;
	color: var(--nbh-ink-soft);
}

.nbh-cart-progress__txt strong {
	color: var(--nbh-ink);
}

.nbh-cart-progress__txt .woocommerce-Price-amount {
	color: var(--nbh-orange);
}

.nbh-cart-progress__bar {
	height: 6px;
	border-radius: 999px;
	background: #e3e6ea;
	overflow: hidden;
}

.nbh-cart-progress__bar span {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--nbh-orange), #ff8a3d);
	transition: width .45s var(--nbh-ease);
}

.nbh-cart-body {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 6px 20px;
}

.nbh-cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 60px 0;
	text-align: center;
	color: var(--nbh-ink-soft);
}

.nbh-cart-empty__ico {
	width: 46px;
	height: 46px;
	color: #c9ced7;
}

.nbh-cart-empty p {
	margin: 0;
	font-size: 15px;
}

/* Línea de producto */

.nbh-ci {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--nbh-line);
	transition: opacity .2s;
}

.nbh-ci.is-busy {
	opacity: .45;
	pointer-events: none;
}

.nbh-ci__media {
	flex: none;
	width: 74px;
}

.nbh-ci__media img {
	display: block;
	width: 74px;
	height: 74px;
	object-fit: cover;
	border-radius: 8px;
	background: var(--nbh-bg-soft);
}

.nbh-ci__info {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nbh-ci__top {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.nbh-ci__name {
	flex: 1 1 auto;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.35;
}

.nbh-ci__name a {
	color: var(--nbh-ink);
	text-decoration: none;
}

.nbh-ci__name a:hover {
	color: var(--nbh-orange);
}

.nbh-ci__remove {
	flex: none;
	width: 30px;
	height: 30px;
	border: 0;
	background: transparent;
	color: #a7adb8;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color .18s, background .18s;
}

.nbh-ci__remove:hover {
	color: #d92c20;
	background: #fdeceb;
}

.nbh-ci__remove .nbh-ico {
	width: 17px;
	height: 17px;
}

.nbh-ci__meta,
.nbh-ci__meta p {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--nbh-ink-soft);
}

.nbh-ci__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 2px;
}

.nbh-ci__price {
	font-size: 14.5px;
	font-weight: 700;
	white-space: nowrap;
}

/* WooCommerce cuelga un "(incl. impuestos)" de cada línea; en el carrito
 * lateral ya lo explica la nota del pie y aquí solo estorba. */
.nbh-panel--cart .tax_label {
	display: none;
}

/* Precio tachado + precio final en la misma línea, sin el hueco de <del>/<ins>. */
.nbh-ci__price del {
	font-weight: 500;
	opacity: .55;
	margin-right: 5px;
}

.nbh-ci__price ins {
	text-decoration: none;
	background: none;
	color: var(--nbh-orange);
}

.nbh-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--nbh-line);
	border-radius: 999px;
	overflow: hidden;
	background: var(--nbh-bg);
}

.nbh-qty__btn {
	width: 30px;
	height: 30px;
	border: 0;
	background: transparent;
	color: var(--nbh-ink);
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: background .15s, color .15s;
}

.nbh-qty__btn:hover {
	background: var(--nbh-bg-soft);
	color: var(--nbh-orange);
}

.nbh-qty__input {
	width: 38px;
	height: 30px;
	border: 0;
	border-inline: 1px solid var(--nbh-line);
	background: transparent;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: var(--nbh-ink);
	padding: 0;
	outline: none;
	-moz-appearance: textfield;
	appearance: textfield;
}

.nbh-qty__input::-webkit-outer-spin-button,
.nbh-qty__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Pie del carrito */

.nbh-cart-foot {
	flex: none;
	padding: 16px 20px 20px;
	border-top: 1px solid var(--nbh-line);
	background: var(--nbh-bg);
	display: grid;
	gap: 10px;
}

.nbh-cart-foot.is-empty {
	display: none;
}

.nbh-cart-foot__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	font-size: 15px;
}

.nbh-cart-foot__row strong {
	font-size: 20px;
	font-weight: 800;
}

.nbh-cart-foot__note {
	margin: -4px 0 4px;
	font-size: 12px;
	color: var(--nbh-ink-soft);
}

.nbh-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 20px;
	border-radius: var(--nbh-radius);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: background .2s, color .2s, border-color .2s;
}

.nbh-btn--primary {
	background: var(--nbh-orange);
	color: #fff;
}

.nbh-btn--primary:hover {
	background: var(--nbh-orange-dark);
	color: #fff;
}

.nbh-btn--ghost {
	background: var(--nbh-bg);
	color: var(--nbh-ink);
	border: 1px solid var(--nbh-line);
}

.nbh-btn--ghost:hover {
	border-color: var(--nbh-ink);
	color: var(--nbh-ink);
}

body.nbh-locked {
	overflow: hidden;
}

/* ------------------------------------------------------------------ *
 * Responsive
 * ------------------------------------------------------------------ */

@media (max-width: 1180px) {
	.nbh {
		--nbh-pad: 18px;
	}

	.nbh-menu__link {
		padding: 14px 10px;
		font-size: 13.8px;
	}

	.nbh-mega__aside {
		display: none;
	}
}

/* Tablet y móvil: fuera barra de navegación, entra hamburguesa */
@media (max-width: 1024px) {

	.nbh-nav {
		display: none;
	}

	.nbh-burger {
		display: inline-flex;
		margin-left: -10px;
	}

	.nbh-main__inner {
		min-height: 72px;
		gap: 14px;
	}

	.nbh-logo img {
		height: 38px;
	}

	.nbh-action__txt {
		display: none;
	}

	.nbh-action {
		width: 44px;
		height: 44px;
		justify-content: center;
		padding: 0;
	}

	.nbh.is-stuck .nbh-main__inner {
		min-height: 64px;
	}
}

/* Móvil: el buscador baja a su propia línea y se abre con el icono */
@media (max-width: 782px) {

	.nbh-top__links {
		display: none;
	}

	.nbh-main__inner {
		flex-wrap: wrap;
		padding-bottom: 0;
	}

	.nbh-logo {
		margin-right: auto;
	}

	.nbh-logo img {
		height: 34px;
	}

	.nbh-search-toggle {
		display: inline-flex;
	}

	/* En móvil el hueco es escaso: Instagram queda en el pie del menú lateral. */
	.nbh-actions .nbh-social--bar {
		display: none;
	}

	.nbh-search {
		order: 10;
		flex: 1 0 100%;
		max-width: none;
		height: 44px;
		margin-bottom: 12px;
		display: none;
	}

	.nbh-main.is-search-open .nbh-search {
		display: flex;
	}

	.nbh.is-stuck .nbh-search {
		height: 40px;
	}

	body.admin-bar .nbh.is-stuck .nbh-stick {
		top: 0;
	}
}

@media (max-width: 480px) {
	.nbh {
		--nbh-pad: 14px;
	}

	.nbh-ticker__item {
		font-size: 12.2px;
	}

	.nbh-ci__media,
	.nbh-ci__media img {
		width: 62px;
	}

	.nbh-ci__media img {
		height: 62px;
	}
}
