:root {
	--np-orange: #f36f21;
	--np-orange-dark: #d94e0a;
	--np-cream: #fff7ed;
	--np-paper: #fffdf8;
	--np-white: #ffffff;
	--np-ink: #1d1b19;
	--np-muted: #6d665f;
	--np-line: rgba(29, 27, 25, .13);
	--np-yellow: #ffd95a;
	--np-blue: #aadce7;
	--np-pink: #efa5bc;
	--np-lilac: #c8b7ee;
	--np-green: #b7d2a0;
	--np-display: "Fredoka", sans-serif;
	--np-body: "DM Sans", sans-serif;
	--np-radius: 26px;
}

body.naranjita-pro {
	margin: 0;
	background: var(--np-paper) !important;
	background-image: none !important;
	color: var(--np-ink);
	font-family: var(--np-body);
	font-size: 16px;
	line-height: 1.55;
	overflow-x: hidden;
}

body.naranjita-pro *,
body.naranjita-pro *::before,
body.naranjita-pro *::after {
	box-sizing: border-box;
}

body.naranjita-pro img {
	max-width: 100%;
}

body.naranjita-pro a {
	text-decoration: none;
}

body.naranjita-pro #masthead,
body.naranjita-pro footer#colophon,
body.naranjita-pro .site-footer:not(.np-site-footer),
body.naranjita-pro .site-primary-footer-wrap,
body.naranjita-pro .site-below-footer-wrap {
	display: none !important;
}

body.naranjita-pro .site-content,
body.naranjita-pro #content,
body.naranjita-pro .site-content::before,
body.naranjita-pro #content::before {
	background-color: var(--np-paper) !important;
	background-image: none !important;
}

body.naranjita-pro.woocommerce-page .site-content,
body.naranjita-pro.post-type-archive-product .site-content,
body.naranjita-pro.tax-product_cat .site-content,
body.naranjita-pro.search-results .site-content {
	background-color: var(--np-paper) !important;
	background-image:
		radial-gradient(circle at 7% 7%, rgba(243, 111, 33, .11), transparent 24%),
		radial-gradient(circle at 92% 26%, rgba(170, 220, 231, .24), transparent 23%),
		linear-gradient(180deg, #fffdf8 0%, #fff8ef 100%) !important;
}

body.naranjita-pro.ast-theme-transparent-header .site-content,
body.naranjita-pro.ast-theme-transparent-header #content {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.np-container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.np-header-shell {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: rgba(255, 253, 248, .93);
	transition: box-shadow .25s ease;
}

.admin-bar .np-header-shell {
	top: 32px;
}

.np-header-shell.is-scrolled {
	box-shadow: 0 14px 34px rgba(58, 38, 19, .09);
}

.np-announcement {
	height: 32px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--np-ink);
	color: var(--np-white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.np-announcement__track {
	display: flex;
	align-items: center;
	gap: 25px;
	min-width: max-content;
	animation: npTicker 28s linear infinite;
}

.np-announcement__track i {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--np-orange);
}

@keyframes npTicker {
	to { transform: translateX(-45%); }
}

.np-site-header {
	background: rgba(255, 253, 248, .93);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.is-scrolled .np-site-header {
	border-color: var(--np-line);
}

.np-header__inner {
	height: 86px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.np-brand {
	width: 130px;
	flex: none;
	display: inline-flex;
	align-items: center;
	color: var(--np-ink);
}

.np-brand__image {
	width: 100%;
	height: 72px;
	object-fit: contain;
}

.np-brand__text {
	font: 700 25px/1 var(--np-display);
	color: var(--np-orange);
}

.np-brand__text small {
	display: block;
	margin-top: 3px;
	color: var(--np-ink);
	font: 600 11px/1 var(--np-body);
	letter-spacing: .16em;
	text-transform: uppercase;
}

.np-product-search {
	height: 44px;
	max-width: 310px;
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 15px;
	margin: 0;
	background: var(--np-white);
	border: 1px solid var(--np-line);
	border-radius: 999px;
}

.np-product-search svg,
.np-cart svg {
	width: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.np-product-search input[type="search"] {
	width: 100%;
	min-height: 0;
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
	box-shadow: none;
	background: transparent;
	color: var(--np-ink);
	font: 500 14px/1 var(--np-body);
}

.np-product-search input::placeholder {
	color: #9b948c;
}

.np-desktop-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: auto;
}

.np-desktop-nav a {
	position: relative;
	color: var(--np-ink);
	font-size: 14px;
	font-weight: 700;
}

.np-desktop-nav a::after {
	content: "";
	position: absolute;
	right: 100%;
	bottom: -6px;
	left: 0;
	height: 2px;
	background: var(--np-orange);
	transition: right .22s ease;
}

.np-desktop-nav a:hover::after {
	right: 0;
}

.np-category-nav {
	position: relative;
}

.np-category-nav > button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--np-ink);
	font: 700 14px/1 var(--np-body);
	cursor: pointer;
}

.np-category-nav > button span {
	display: inline-block;
	color: var(--np-orange);
	font-size: 16px;
	transition: transform .22s ease;
}

.np-category-nav.is-open > button span {
	transform: rotate(180deg);
}

.np-category-panel {
	position: absolute;
	top: calc(100% + 25px);
	right: -190px;
	width: min(680px, calc(100vw - 40px));
	padding: 26px;
	border: 1px solid var(--np-line);
	border-radius: 24px;
	background: rgba(255, 253, 248, .98);
	box-shadow: 0 24px 55px rgba(50, 35, 20, .18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.np-category-nav.is-open .np-category-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.np-category-panel::before {
	content: "";
	position: absolute;
	top: -8px;
	right: 208px;
	width: 16px;
	height: 16px;
	border-top: 1px solid var(--np-line);
	border-left: 1px solid var(--np-line);
	background: var(--np-paper);
	transform: rotate(45deg);
}

.np-category-panel__heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.np-category-panel__heading span {
	color: var(--np-orange);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .18em;
}

.np-category-panel__heading strong {
	font: 600 25px/1 var(--np-display);
}

.np-category-menu__tools {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.np-category-menu__tools input[type="search"] {
	min-width: 0;
	min-height: 42px;
	flex: 1;
	padding: 0 15px;
	border: 1px solid var(--np-line);
	border-radius: 999px;
	background: var(--np-white);
	box-shadow: none;
	font: 500 13px/1 var(--np-body);
}

.np-category-menu__tools a {
	padding: 9px 13px;
	border-radius: 999px;
	background: var(--np-ink);
	color: var(--np-white);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.np-category-menu__tools a::after,
.np-category-menu__links a::after {
	display: none;
}

.np-category-menu__links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	max-height: 310px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.np-category-menu__links a {
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 11px 12px;
	border: 1px solid transparent;
	border-radius: 12px;
	background: rgba(243, 111, 33, .06);
	color: var(--np-ink);
	font-size: 12px;
	font-weight: 700;
	transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.np-category-menu__links a:hover {
	border-color: rgba(243, 111, 33, .35);
	background: var(--np-white);
	transform: translateY(-1px);
}

.np-category-menu__links a.is-child {
	background: rgba(170, 220, 231, .16);
}

.np-category-menu__links a span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.np-category-menu__links a i {
	color: var(--np-orange);
	font-style: normal;
}

.np-category-menu__links a small {
	min-width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--np-white);
	color: var(--np-muted);
	font-size: 10px;
}

.np-category-menu__links a.is-filtered-out {
	display: none;
}

.np-category-menu__empty {
	display: none;
	margin: 12px 0 0;
	color: var(--np-muted);
	font-size: 13px;
}

.np-category-menu__empty.is-visible {
	display: block;
}

.np-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.np-cart {
	position: relative;
	min-height: 44px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 13px;
	background: var(--np-white);
	border: 1px solid var(--np-line);
	border-radius: 999px;
	color: var(--np-ink);
}

.np-cart__total {
	font-size: 12px;
	font-weight: 700;
}

.np-cart__count {
	min-width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--np-orange);
	color: var(--np-white);
	font-size: 10px;
	line-height: 1;
}

.np-menu-button {
	width: 44px;
	height: 44px;
	display: none;
	place-content: center;
	padding: 0;
	margin: 0;
	border: 1px solid var(--np-line);
	border-radius: 50%;
	background: var(--np-white);
}

.np-menu-button span {
	width: 18px;
	height: 2px;
	display: block;
	margin: 2px;
	background: var(--np-ink);
	transition: transform .2s ease;
}

.np-menu-button[aria-expanded="true"] span:first-child {
	transform: translateY(3px) rotate(45deg);
}

.np-menu-button[aria-expanded="true"] span:last-child {
	transform: translateY(-3px) rotate(-45deg);
}

.np-mobile-menu {
	display: none;
}

body.np-cart-open {
	overflow: hidden;
}

.np-cart-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(29, 27, 25, .45);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}

.np-cart-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.np-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 10001;
	width: min(465px, 100%);
	display: flex;
	flex-direction: column;
	padding: 28px;
	background:
		radial-gradient(circle at 100% 0%, rgba(243, 111, 33, .13), transparent 28%),
		var(--np-paper);
	box-shadow: -25px 0 70px rgba(29, 27, 25, .2);
	transform: translateX(104%);
	transition: transform .42s cubic-bezier(.2, .85, .2, 1);
}

.np-cart-drawer.is-open {
	transform: translateX(0);
}

.np-cart-drawer__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--np-line);
}

.np-cart-drawer__header span {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .17em;
}

.np-cart-drawer__header h2 {
	margin: 8px 0 0;
	color: var(--np-ink);
	font: 600 40px/1 var(--np-display);
	letter-spacing: -.04em;
}

.np-cart-drawer__header button {
	width: 43px;
	height: 43px;
	display: grid;
	place-items: center;
	padding: 0 0 3px;
	border: 1px solid var(--np-line);
	border-radius: 50%;
	background: var(--np-white);
	color: var(--np-ink);
	font-size: 29px;
	line-height: 1;
	cursor: pointer;
}

.np-cart-drawer__content {
	min-height: 0;
	flex: 1;
	overflow-y: auto;
	padding: 12px 3px 0;
}

.np-cart-drawer .woocommerce-mini-cart {
	margin: 0;
	padding: 0;
	list-style: none;
}

.np-cart-drawer .woocommerce-mini-cart-item {
	position: relative;
	min-height: 102px;
	padding: 16px 34px 16px 94px !important;
	border-bottom: 1px solid var(--np-line);
}

.np-cart-drawer .woocommerce-mini-cart-item a {
	color: var(--np-ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.np-cart-drawer .woocommerce-mini-cart-item img {
	position: absolute;
	top: 16px;
	left: 0;
	width: 78px;
	height: 78px;
	padding: 7px;
	border-radius: 14px;
	background: var(--np-cream);
	object-fit: contain;
}

.np-cart-drawer .woocommerce-mini-cart-item .remove {
	position: absolute;
	top: 16px;
	right: 0;
	width: 25px;
	height: 25px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--np-white);
	color: var(--np-muted) !important;
	font-size: 19px;
}

.np-cart-drawer .woocommerce-mini-cart-item .quantity {
	display: block;
	margin-top: 7px;
	color: var(--np-orange);
	font-size: 13px;
	font-weight: 700;
}

.np-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 22px 0 15px;
	padding-top: 20px;
	border-top: 1px solid var(--np-line);
	color: var(--np-ink);
	font-size: 15px;
}

.np-cart-drawer .woocommerce-mini-cart__total strong {
	font-family: var(--np-display);
	font-size: 21px;
}

.np-cart-drawer .woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0;
}

.np-cart-drawer .woocommerce-mini-cart__buttons a,
body.naranjita-pro .np-cart-drawer .woocommerce-mini-cart__buttons a.button {
	min-height: 49px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	margin: 0;
	border: 1px solid var(--np-ink);
	border-radius: 999px;
	background: transparent;
	color: var(--np-ink);
	font-size: 12px;
	font-weight: 800;
}

.np-cart-drawer .woocommerce-mini-cart__buttons a.checkout,
body.naranjita-pro .np-cart-drawer .woocommerce-mini-cart__buttons a.checkout {
	border-color: var(--np-orange);
	background: var(--np-orange);
	color: var(--np-white);
}

.np-cart-drawer .woocommerce-mini-cart__empty-message {
	margin: 70px 0 0;
	color: var(--np-muted);
	font: 600 25px/1.3 var(--np-display);
	text-align: center;
}

.np-cart-drawer__benefit {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 17px;
	padding: 14px;
	border-radius: 16px;
	background: var(--np-yellow);
}

.np-cart-drawer__benefit > span {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	flex: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, .65);
}

.np-cart-drawer__benefit p {
	margin: 0;
	color: var(--np-ink);
	font-size: 12px;
	line-height: 1.35;
}

body.np-special-page .site-content > .ast-container,
body.np-special-page #content > .ast-container {
	width: 100%;
	max-width: none;
	padding: 0;
}

body.np-special-page .content-area,
body.np-special-page .site-main,
body.np-special-page article.page,
body.np-special-page .entry-content {
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
}

body.np-special-page .entry-header,
body.np-special-page .comments-area {
	display: none;
}

body.np-special-page .entry-content > .np-page {
	width: 100%;
	max-width: none;
	margin: 0;
}

.np-page {
	color: var(--np-ink);
	font-family: var(--np-body);
}

.np-page h1,
.np-page h2,
.np-page h3,
.np-page p {
	margin-top: 0;
}

.np-page h1,
.np-page h2,
.np-page h3 {
	font-family: var(--np-display);
}

.np-eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--np-ink);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.np-eyebrow b {
	width: 9px;
	height: 9px;
	display: inline-block;
	border-radius: 50%;
	background: var(--np-orange);
}

.np-section {
	padding: 116px 0;
}

.np-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 38px;
	margin-bottom: 42px;
}

.np-section-heading h2 {
	margin: 18px 0 0;
	font: 600 clamp(42px, 5vw, 72px)/.98 var(--np-display);
	letter-spacing: -.045em;
}

.np-text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 3px;
	border-bottom: 1px solid currentColor;
	color: var(--np-ink);
	font-size: 15px;
	font-weight: 700;
}

.np-text-link span {
	transition: transform .2s ease;
}

.np-text-link:hover span {
	transform: translate(3px, -3px);
}

.np-button,
body.naranjita-pro .np-button {
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	padding: 0 25px;
	border: 0;
	border-radius: 999px;
	font-family: var(--np-body);
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
	cursor: pointer;
}

.np-button:hover {
	transform: translateY(-3px);
}

.np-button--primary,
body.naranjita-pro .np-button--primary {
	background: var(--np-orange);
	box-shadow: 0 14px 30px rgba(243, 111, 33, .24);
	color: var(--np-white);
}

.np-button--primary:hover,
body.naranjita-pro .np-button--primary:hover {
	background: var(--np-orange-dark);
	color: var(--np-white);
}

.np-button--light {
	background: var(--np-white);
	color: var(--np-ink);
}

.np-button--ink {
	background: var(--np-ink);
	color: var(--np-white);
}

.np-hero {
	min-height: 615px;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: center;
	gap: 62px;
	padding-top: 66px;
	padding-bottom: 48px;
}

.np-hero h1 {
	margin: 20px 0;
	font: 600 clamp(58px, 5.6vw, 83px)/.94 var(--np-display);
	letter-spacing: -.055em;
}

.np-hero h1 em,
.np-campaign h2 em,
.np-inner-hero h1 em {
	color: var(--np-orange);
	font-style: normal;
}

.np-hero__copy > p {
	max-width: 490px;
	margin-bottom: 0;
	color: var(--np-muted);
	font-size: 18px;
	line-height: 1.7;
}

.np-hero__actions {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 32px;
}

.np-hero__note {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 44px;
}

.np-hero__note > div {
	display: flex;
}

.np-hero__note > div span {
	width: 39px;
	height: 39px;
	display: grid;
	place-items: center;
	margin-right: -8px;
	border: 2px solid var(--np-paper);
	border-radius: 50%;
	background: var(--np-white);
	box-shadow: 0 3px 11px rgba(0, 0, 0, .08);
}

.np-hero__note p {
	margin: 0;
	color: var(--np-muted);
	font-size: 13px;
	line-height: 1.5;
}

.np-hero__note strong {
	color: var(--np-ink);
}

.np-hero__visual {
	position: relative;
	min-height: 520px;
}

.np-hero__photo {
	position: absolute;
	inset: 0 0 0 32px;
	overflow: hidden;
	border-radius: 44% 44% 28px 28px;
	background: #eee;
}

.np-hero__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(150deg, transparent 54%, rgba(243, 111, 33, .14));
}

.np-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.np-sticker {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 140px;
	height: 140px;
	display: grid;
	place-content: center;
	border-radius: 50%;
	background: var(--np-orange);
	box-shadow: 0 16px 35px rgba(167, 69, 14, .2);
	color: var(--np-white);
	text-align: center;
	transform: rotate(8deg);
}

.np-sticker span {
	font-size: 9px;
	letter-spacing: .18em;
}

.np-sticker strong {
	font: 600 23px/1 var(--np-display);
}

.np-floating-card {
	position: absolute;
	bottom: 34px;
	left: -18px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	border-radius: 18px;
	background: var(--np-white);
	box-shadow: 0 18px 45px rgba(54, 42, 30, .14);
	transform: rotate(-3deg);
}

.np-floating-card > span {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--np-yellow);
}

.np-floating-card p {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
}

.np-scribble {
	position: absolute;
	top: 26px;
	left: 51px;
	padding: 7px 13px;
	border-radius: 6px;
	background: var(--np-white);
	font-family: cursive;
	font-size: 12px;
	transform: rotate(-4deg);
}

.np-benefits {
	border-block: 1px solid var(--np-line);
}

.np-benefits__grid {
	min-height: 110px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.np-benefits article {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 23px;
	border-right: 1px solid var(--np-line);
}

.np-benefits article:last-child {
	border-right: 0;
}

.np-benefits article > span {
	color: var(--np-orange);
	font: 600 24px/1 var(--np-display);
}

.np-benefits strong,
.np-benefits small {
	display: block;
}

.np-benefits strong {
	font-size: 15px;
}

.np-benefits small {
	margin-top: 3px;
	color: var(--np-muted);
	font-size: 13px;
}

.np-category-grid {
	display: grid;
	grid-template-columns: 1.25fr .75fr .75fr;
	grid-template-rows: 310px 310px;
	gap: 18px;
}

.np-category-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px;
	border-radius: var(--np-radius);
	color: var(--np-ink);
	transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.np-category-card:hover {
	color: var(--np-ink);
	transform: translateY(-6px);
}

.np-category-card--wide {
	grid-row: span 2;
}

.np-category-card--image {
	color: var(--np-white);
}

.np-category-card--image:hover {
	color: var(--np-white);
}

.np-category-card--image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72));
}

.np-category-card--image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s ease;
}

.np-category-card--image:hover img {
	transform: scale(1.04);
}

.np-category-card > *:not(img) {
	position: relative;
	z-index: 1;
}

.np-category-card--yellow { background: var(--np-yellow); }
.np-category-card--blue { background: var(--np-blue); }
.np-category-card--pink { background: var(--np-pink); }
.np-category-card--ink { background: var(--np-ink); color: var(--np-white); }
.np-category-card--ink:hover { color: var(--np-white); }

.np-category-card__number {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .15em;
}

.np-category-card h3 {
	margin: 0 0 8px;
	font: 600 clamp(28px, 2.6vw, 41px)/1.02 var(--np-display);
	letter-spacing: -.03em;
}

.np-category-card p {
	margin: 0;
	font-size: 14px;
	opacity: .75;
}

.np-category-card > i {
	position: absolute !important;
	top: 22px;
	right: 22px;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .75);
	color: var(--np-ink);
	font-style: normal;
}

.np-category-card__symbol {
	position: absolute !important;
	top: 43px;
	right: 27px;
	font: 600 88px/1 var(--np-display);
	opacity: .2;
	transform: rotate(6deg);
}

.np-category-card__symbol--orange {
	color: var(--np-orange);
	opacity: 1;
}

.np-category-card--photo {
	padding: 0;
	background: var(--np-white);
	box-shadow: 0 12px 35px rgba(55, 39, 22, .07);
}

.np-category-card--photo.np-category-card--yellow { background: #fff0b1; }
.np-category-card--photo.np-category-card--blue { background: #cdebf0; }
.np-category-card--photo.np-category-card--pink { background: #f5c6d5; }
.np-category-card--photo.np-category-card--ink { background: var(--np-ink); }

.np-category-card__media {
	position: relative !important;
	z-index: 0 !important;
	height: 59%;
	overflow: hidden;
	background: rgba(255, 255, 255, .45);
}

.np-category-card--wide .np-category-card__media {
	height: 73%;
}

.np-category-card__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 34%;
	background: linear-gradient(180deg, transparent, rgba(29, 27, 25, .08));
}

.np-category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .65s cubic-bezier(.2, .8, .2, 1);
}

.np-category-card--photo:hover .np-category-card__media img {
	transform: scale(1.055);
}

.np-category-card--photo > .np-category-card__number {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .88);
	color: var(--np-ink);
}

.np-category-card--photo > div:not(.np-category-card__media) {
	position: relative;
	z-index: 2;
	padding: 18px 22px 20px;
}

.np-category-card--photo h3 {
	font-size: clamp(25px, 2.2vw, 36px);
}

.np-products-section {
	background: var(--np-cream);
}

.np-home-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.np-product-card {
	min-width: 0;
}

.np-product-card__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1.06;
	display: block;
	border-radius: 22px;
}

.np-product-card__image--1 { background: #f5dca2; }
.np-product-card__image--2 { background: #ffd2b8; }
.np-product-card__image--3 { background: #bfe2cf; }
.np-product-card__image--4 { background: #d7c9ef; }

.np-product-card__image img {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 20px;
	object-fit: contain;
	transition: transform .4s ease;
}

.np-product-card:hover .np-product-card__image img {
	transform: scale(1.06) rotate(1deg);
}

.np-product-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--np-white);
	color: var(--np-ink);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .12em;
}

.np-product-card__meta {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 17px 4px 12px;
}

.np-product-card__meta h3 {
	max-width: 190px;
	margin: 0;
	font: 700 15px/1.35 var(--np-body);
}

.np-product-card__meta h3 a {
	color: var(--np-ink);
}

.np-product-card__meta p {
	margin: 4px 0 0;
	color: var(--np-muted);
	font-size: 12px;
}

.np-product-card__meta p a {
	color: inherit;
}

.np-product-card__meta > strong,
.np-product-card__meta .price {
	color: var(--np-ink);
	font: 600 17px/1.2 var(--np-display);
	white-space: nowrap;
}

.np-product-card__action,
body.naranjita-pro .np-product-card__action.button {
	width: 100%;
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	margin: 0;
	border: 1px solid var(--np-line);
	border-radius: 999px;
	background: var(--np-white);
	color: var(--np-ink);
	font-size: 13px;
	font-weight: 700;
}

.np-product-card__action:hover,
body.naranjita-pro .np-product-card__action.button:hover {
	border-color: var(--np-orange);
	background: var(--np-orange);
	color: var(--np-white);
}

.np-campaign {
	min-height: 520px;
	display: grid;
	grid-template-columns: 1fr .85fr;
	overflow: hidden;
	margin-top: 116px;
	border-radius: 32px;
	background: var(--np-orange);
	color: var(--np-white);
}

.np-campaign__copy {
	padding: 68px;
}

.np-campaign__copy > span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .18em;
}

.np-campaign h2 {
	margin: 23px 0;
	font: 600 clamp(51px, 6vw, 84px)/.96 var(--np-display);
	letter-spacing: -.05em;
}

.np-campaign h2 em {
	color: var(--np-ink);
}

.np-campaign p {
	max-width: 510px;
	font-size: 17px;
	line-height: 1.7;
}

.np-campaign .np-button {
	margin-top: 22px;
}

.np-campaign__art {
	position: relative;
	min-height: 460px;
	background: radial-gradient(circle at center, rgba(255, 255, 255, .23), transparent 56%);
}

.np-paper {
	position: absolute;
	width: 185px;
	height: 235px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: var(--np-white);
	box-shadow: 0 24px 45px rgba(94, 34, 5, .18);
	color: var(--np-ink);
	font: 600 75px/1 var(--np-display);
}

.np-paper--one {
	top: 20%;
	left: 10%;
	background: var(--np-yellow);
	transform: rotate(-17deg);
}

.np-paper--two {
	top: 13%;
	left: 38%;
	transform: rotate(8deg);
}

.np-paper--three {
	top: 43%;
	left: 48%;
	background: var(--np-pink);
	font-size: 51px;
	transform: rotate(19deg);
}

.np-orbit {
	position: absolute;
	top: 10%;
	left: 10%;
	width: 355px;
	height: 355px;
	border: 1px solid rgba(255, 255, 255, .65);
	border-radius: 50%;
}

.np-story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 88px;
}

.np-story__image {
	position: relative;
}

.np-story__image img {
	width: 100%;
	height: 550px;
	object-fit: cover;
	border-radius: 48% 48% 24px 24px;
}

.np-story__image > span {
	position: absolute;
	right: -34px;
	bottom: 40px;
	width: 148px;
	height: 148px;
	display: grid;
	place-content: center;
	border-radius: 50%;
	background: var(--np-yellow);
	font: 600 19px/1.05 var(--np-display);
	text-align: center;
	transform: rotate(9deg);
}

.np-story__copy h2 {
	margin: 20px 0;
	font: 600 clamp(50px, 5.5vw, 82px)/.96 var(--np-display);
	letter-spacing: -.05em;
}

.np-story__copy > p {
	margin-bottom: 30px;
	color: var(--np-muted);
	font-size: 17px;
	line-height: 1.8;
}

.np-locations {
	padding: 98px 0;
	background: var(--np-ink);
	color: var(--np-white);
}

.np-locations__intro > span {
	color: var(--np-orange);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .17em;
}

.np-locations__intro h2 {
	margin: 18px 0 0;
	font: 600 clamp(48px, 5.5vw, 78px)/.96 var(--np-display);
	letter-spacing: -.05em;
}

.np-locations__grid {
	display: grid;
	grid-template-columns: minmax(0, 760px);
	gap: 18px;
	margin-top: 42px;
}

.np-location-card {
	padding: 39px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 24px;
	color: var(--np-white);
}

.np-location-card--orange {
	border-color: var(--np-orange);
	background: var(--np-orange);
}

.np-location-card > span {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .18em;
	opacity: .75;
}

.np-location-card h3 {
	margin: 15px 0 5px;
	color: var(--np-white);
	font: 600 32px/1.1 var(--np-display);
}

.np-location-card > p {
	margin-bottom: 28px;
	opacity: .72;
}

.np-location-card > div {
	display: flex;
	justify-content: space-between;
	padding: 13px 0;
	border-top: 1px solid rgba(255, 255, 255, .18);
}

.np-location-card small {
	color: inherit;
	font-size: 14px;
	opacity: .74;
}

.np-newsletter {
	padding: 92px 0;
	background: var(--np-yellow);
}

.np-newsletter__inner {
	display: grid;
	grid-template-columns: 1fr .75fr;
	align-items: center;
	gap: 75px;
}

.np-newsletter__inner > div:first-child > span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .15em;
}

.np-newsletter h2 {
	margin: 18px 0 0;
	font: 600 clamp(42px, 5vw, 69px)/.98 var(--np-display);
	letter-spacing: -.045em;
}

.np-newsletter__cta p {
	margin-bottom: 24px;
	font-size: 17px;
	line-height: 1.65;
}

.np-inner-hero {
	padding: 72px 0 90px;
	background: var(--np-cream);
}

.np-inner-hero > .np-container {
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	align-items: center;
	gap: 75px;
}

.np-inner-hero h1 {
	margin: 22px 0;
	font: 600 clamp(60px, 6.8vw, 98px)/.93 var(--np-display);
	letter-spacing: -.055em;
}

.np-inner-hero__copy > p {
	max-width: 490px;
	color: var(--np-muted);
	font-size: 18px;
	line-height: 1.75;
}

.np-inner-hero__image {
	position: relative;
}

.np-inner-hero__image img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: 38% 38% 24px 24px;
}

.np-inner-hero__image > span {
	position: absolute;
	right: -25px;
	bottom: 34px;
	width: 142px;
	height: 142px;
	display: grid;
	place-content: center;
	border-radius: 50%;
	background: var(--np-orange);
	color: var(--np-white);
	font: 600 19px/1.05 var(--np-display);
	text-align: center;
	transform: rotate(8deg);
}

.np-about-story {
	display: grid;
	grid-template-columns: .32fr 1fr;
	gap: 70px;
}

.np-about-story__number {
	color: var(--np-orange);
	font: 600 clamp(80px, 11vw, 165px)/.85 var(--np-display);
	letter-spacing: -.07em;
}

.np-about-story__content {
	max-width: 760px;
}

.np-about-story__content > span,
.np-values .np-eyebrow,
.np-about-cta span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .17em;
}

.np-about-story__content h2 {
	margin: 20px 0 30px;
	font: 600 clamp(42px, 5.4vw, 76px)/1 var(--np-display);
	letter-spacing: -.045em;
}

.np-about-story__content p {
	color: var(--np-muted);
	font-size: 18px;
	line-height: 1.85;
}

.np-values {
	padding: 110px 0;
	background: var(--np-yellow);
}

.np-values__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.np-values article {
	min-height: 270px;
	padding: 30px;
	border: 1px solid rgba(29, 27, 25, .16);
	border-radius: 24px;
	background: rgba(255, 255, 255, .32);
}

.np-values article > span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .15em;
}

.np-values article h3 {
	margin: 76px 0 12px;
	font: 600 34px/1 var(--np-display);
}

.np-values article p {
	margin-bottom: 0;
	line-height: 1.65;
	opacity: .72;
}

.np-about-quote {
	padding-top: 130px;
	padding-bottom: 130px;
	text-align: center;
}

.np-about-quote p {
	max-width: 930px;
	margin: 0 auto 25px;
	font: 600 clamp(43px, 6vw, 82px)/1.06 var(--np-display);
	letter-spacing: -.045em;
}

.np-about-quote span {
	color: var(--np-orange);
	font-weight: 700;
}

.np-about-cta {
	padding: 85px 0;
	background: var(--np-cream);
}

.np-about-cta > .np-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 45px;
}

.np-about-cta h2 {
	margin: 14px 0 0;
	font: 600 clamp(42px, 5vw, 69px)/1 var(--np-display);
	letter-spacing: -.045em;
}

.np-about-cta > .np-container > div:last-child {
	display: flex;
	align-items: center;
	gap: 24px;
}

.np-contact-hero {
	padding: 86px 0;
	background: var(--np-orange);
	color: var(--np-white);
}

.np-contact-hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.np-contact-hero .np-eyebrow,
.np-contact-hero h1 {
	color: var(--np-white);
}

.np-contact-hero .np-eyebrow b {
	background: var(--np-yellow);
}

.np-contact-hero h1 {
	margin: 20px 0 10px;
	font: 600 clamp(72px, 9vw, 128px)/.9 var(--np-display);
	letter-spacing: -.06em;
}

.np-contact-hero p {
	max-width: 530px;
	margin-bottom: 0;
	font-size: 19px;
}

.np-contact-hero__badge {
	width: 185px;
	height: 185px;
	display: grid;
	place-content: center;
	border-radius: 50%;
	background: var(--np-yellow);
	color: var(--np-ink);
	text-align: center;
	transform: rotate(7deg);
}

.np-contact-hero__badge span,
.np-contact-hero__badge small {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .13em;
}

.np-contact-hero__badge strong {
	font: 600 31px/1 var(--np-display);
}

.np-contact-main {
	display: grid;
	grid-template-columns: 1.08fr .92fr;
	gap: 72px;
}

.np-contact-form-card {
	padding: 45px;
	border: 1px solid var(--np-line);
	border-radius: 28px;
	background: var(--np-white);
	box-shadow: 0 20px 60px rgba(60, 42, 22, .07);
}

.np-form-kicker,
.np-contact-info__intro > span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .16em;
}

.np-contact-form-card h2,
.np-contact-info__intro h2 {
	margin: 14px 0 30px;
	font: 600 clamp(36px, 4vw, 57px)/1 var(--np-display);
	letter-spacing: -.04em;
}

.np-contact-form-card form {
	margin: 0;
}

.np-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.np-contact-form-card label {
	display: block;
	margin-bottom: 16px;
	color: var(--np-ink);
	font-size: 13px;
	font-weight: 700;
}

.np-contact-form-card input,
.np-contact-form-card select,
.np-contact-form-card textarea {
	width: 100%;
	min-height: 50px;
	display: block;
	margin-top: 8px;
	padding: 13px 15px;
	border: 1px solid var(--np-line);
	border-radius: 13px;
	outline: 0;
	background: var(--np-paper);
	box-shadow: none;
	color: var(--np-ink);
	font: 500 15px/1.4 var(--np-body);
}

.np-contact-form-card textarea {
	resize: vertical;
}

.np-contact-form-card input:focus,
.np-contact-form-card select:focus,
.np-contact-form-card textarea:focus {
	border-color: var(--np-orange);
	box-shadow: 0 0 0 3px rgba(243, 111, 33, .12);
}

.np-contact-form-card .np-button {
	width: 100%;
}

.np-contact-form-card form > small {
	display: block;
	margin-top: 12px;
	color: var(--np-muted);
	font-size: 11px;
	text-align: center;
}

.np-contact-info {
	display: flex;
	flex-direction: column;
}

.np-contact-link {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 22px 50px 22px 0;
	border-top: 1px solid var(--np-line);
	color: var(--np-ink);
}

.np-contact-link:hover {
	color: var(--np-orange);
}

.np-contact-link > span {
	color: var(--np-muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.np-contact-link strong {
	font-size: 17px;
	word-break: break-word;
}

.np-contact-link i {
	position: absolute;
	top: 50%;
	right: 5px;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid var(--np-line);
	border-radius: 50%;
	color: var(--np-ink);
	font-style: normal;
	transform: translateY(-50%);
}

.np-site-footer {
	position: relative;
	z-index: 2;
	padding: 68px 0 20px;
	background: var(--np-paper);
	color: var(--np-ink);
	font-family: var(--np-body);
}

.np-footer__main {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 48px;
}

.np-brand--footer {
	width: 150px;
}

.np-footer__brand p {
	margin: 8px 0 0;
	color: var(--np-muted);
}

.np-footer__column {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.np-footer__column strong {
	margin-bottom: 5px;
	font-size: 11px;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.np-footer__column a {
	color: var(--np-muted);
	font-size: 14px;
}

.np-footer__column a:hover,
.np-footer__bottom a:hover {
	color: var(--np-orange);
}

.np-footer__bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 52px;
	padding-top: 19px;
	border-top: 1px solid var(--np-line);
	color: var(--np-muted);
	font-size: 12px;
}

.np-footer__bottom a {
	color: var(--np-ink);
	font-weight: 700;
}

.np-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .72s ease, transform .72s cubic-bezier(.2, .8, .2, 1);
}

.np-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* WooCommerce: tienda, categorías y búsquedas. */
body.naranjita-pro.woocommerce-page .site-content > .ast-container,
body.naranjita-pro.post-type-archive-product .site-content > .ast-container,
body.naranjita-pro.tax-product_cat .site-content > .ast-container,
body.naranjita-pro.search-results .site-content > .ast-container {
	width: min(1180px, calc(100% - 40px));
	max-width: 1180px;
	padding-top: 64px;
	padding-bottom: 90px;
}

body.naranjita-pro .woocommerce-products-header__title,
body.naranjita-pro .entry-title,
body.naranjita-pro.woocommerce-page h1 {
	color: var(--np-ink);
	font-family: var(--np-display);
	letter-spacing: -.035em;
}

body.naranjita-pro .widget-area {
	padding-right: 26px;
}

body.naranjita-pro .widget-area .widget {
	padding: 24px;
	border: 1px solid var(--np-line);
	border-radius: 20px;
	background: var(--np-white);
}

body.naranjita-pro .widget-title,
body.naranjita-pro .widget-area h2 {
	margin-bottom: 18px;
	font: 600 20px/1.2 var(--np-display);
}

body.naranjita-pro .widget-area a {
	color: var(--np-muted);
}

body.naranjita-pro .widget-area a:hover {
	color: var(--np-orange);
}

body.naranjita-pro .woocommerce-result-count {
	color: var(--np-muted);
	font-size: 13px;
}

.np-shop-intro {
	grid-column: 1 / -1;
	margin-bottom: 42px;
	padding: 45px;
	border-radius: 28px;
	background: var(--np-orange);
	color: var(--np-white);
}

.np-shop-intro .np-eyebrow {
	color: var(--np-white);
}

.np-shop-intro .np-eyebrow b {
	background: var(--np-yellow);
}

.np-shop-intro h1 {
	margin: 16px 0 10px;
	color: var(--np-white) !important;
	font: 600 clamp(42px, 5.5vw, 72px)/.95 var(--np-display) !important;
	letter-spacing: -.045em;
}

.np-shop-intro p {
	max-width: 630px;
	margin: 0;
	font-size: 16px;
	opacity: .9;
}

body.naranjita-pro .woocommerce-ordering select {
	min-height: 44px;
	padding: 0 40px 0 15px;
	border: 1px solid var(--np-line);
	border-radius: 999px;
	background-color: var(--np-white);
	color: var(--np-ink);
}

body.naranjita-pro .woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

body.naranjita-pro .woocommerce ul.products::before,
body.naranjita-pro .woocommerce ul.products::after {
	display: none;
}

body.naranjita-pro .woocommerce ul.products li.product,
body.naranjita-pro .woocommerce-page ul.products li.product {
	width: auto !important;
	min-width: 0;
	overflow: hidden;
	padding: 0 0 20px;
	margin: 0 !important;
	border: 1px solid var(--np-line);
	border-radius: 22px;
	background: var(--np-white);
	box-shadow: 0 12px 35px rgba(55, 39, 22, .06);
	transition: transform .25s ease, box-shadow .25s ease;
}

body.naranjita-pro .woocommerce ul.products li.product:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 45px rgba(55, 39, 22, .11);
}

body.naranjita-pro .woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 18px;
	padding: 20px;
	border-radius: 21px 21px 16px 16px;
	background: var(--np-cream);
	object-fit: contain;
	opacity: 1 !important;
	visibility: visible !important;
}

body.naranjita-pro .woocommerce ul.products li.product:nth-child(4n + 1) a img { background: #f7dfb3; }
body.naranjita-pro .woocommerce ul.products li.product:nth-child(4n + 2) a img { background: #ffd6c1; }
body.naranjita-pro .woocommerce ul.products li.product:nth-child(4n + 3) a img { background: #c9e9dd; }
body.naranjita-pro .woocommerce ul.products li.product:nth-child(4n + 4) a img { background: #dfd2f4; }

body.naranjita-pro .woocommerce ul.products li.product {
	animation: npProductIn .55s both;
}

body.naranjita-pro .woocommerce ul.products li.product:nth-child(2n) { animation-delay: .07s; }
body.naranjita-pro .woocommerce ul.products li.product:nth-child(3n) { animation-delay: .14s; }

@keyframes npProductIn {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: none; }
}

body.naranjita-pro .woocommerce ul.products li.product .ast-woo-product-category,
body.naranjita-pro .woocommerce ul.products li.product .woocommerce-loop-category__title,
body.naranjita-pro .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.naranjita-pro .woocommerce ul.products li.product .price,
body.naranjita-pro .woocommerce ul.products li.product .button {
	margin-right: 18px;
	margin-left: 18px;
}

body.naranjita-pro .woocommerce ul.products li.product .ast-woo-product-category {
	color: var(--np-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

body.naranjita-pro .woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 50px;
	color: var(--np-ink);
	font: 700 15px/1.4 var(--np-body);
}

body.naranjita-pro .woocommerce ul.products li.product .price {
	color: var(--np-orange);
	font: 600 19px/1.2 var(--np-display);
}

body.naranjita-pro .woocommerce ul.products li.product .button,
body.naranjita-pro .woocommerce a.button,
body.naranjita-pro .woocommerce button.button,
body.naranjita-pro .woocommerce input.button,
body.naranjita-pro .woocommerce #respond input#submit {
	min-height: 43px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	background: var(--np-orange);
	color: var(--np-white);
	font-family: var(--np-body);
	font-size: 13px;
	font-weight: 700;
}

body.naranjita-pro .woocommerce ul.products li.product .button:hover,
body.naranjita-pro .woocommerce a.button:hover,
body.naranjita-pro .woocommerce button.button:hover,
body.naranjita-pro .woocommerce input.button:hover {
	background: var(--np-orange-dark);
	color: var(--np-white);
}

body.naranjita-pro .woocommerce nav.woocommerce-pagination ul {
	display: flex;
	gap: 8px;
	border: 0;
}

body.naranjita-pro .woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

body.naranjita-pro .woocommerce nav.woocommerce-pagination ul li a,
body.naranjita-pro .woocommerce nav.woocommerce-pagination ul li span {
	min-width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 1px solid var(--np-line);
	border-radius: 50%;
	background: var(--np-white);
	color: var(--np-ink);
}

body.naranjita-pro .woocommerce nav.woocommerce-pagination ul li span.current,
body.naranjita-pro .woocommerce nav.woocommerce-pagination ul li a:hover {
	border-color: var(--np-orange);
	background: var(--np-orange);
	color: var(--np-white);
}

/* WooCommerce: producto individual. */
body.naranjita-pro.single-product .site-content > .ast-container {
	width: min(1180px, calc(100% - 40px));
	max-width: 1180px;
	padding-top: 70px;
	padding-bottom: 100px;
}

body.naranjita-pro.single-product .site-content {
	background-image:
		radial-gradient(circle at 10% 12%, rgba(239, 165, 188, .16), transparent 24%),
		radial-gradient(circle at 88% 18%, rgba(255, 217, 90, .18), transparent 23%),
		linear-gradient(180deg, #fffdf8 0%, #fff8ef 100%) !important;
}

body.naranjita-pro.single-product .woocommerce-breadcrumb {
	margin-bottom: 30px;
	color: var(--np-muted);
	font-size: 12px;
}

body.naranjita-pro.single-product .woocommerce-product-gallery {
	overflow: hidden;
	padding: 30px;
	border-radius: 26px;
	background: var(--np-cream);
}

body.naranjita-pro.single-product .woocommerce-product-gallery img {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

body.naranjita-pro.single-product div.product .summary {
	padding: 20px 0 20px 45px;
}

body.naranjita-pro.single-product .product_title {
	margin-bottom: 17px;
	color: var(--np-ink);
	font: 600 clamp(35px, 4.4vw, 58px)/1.03 var(--np-display);
	letter-spacing: -.045em;
}

body.naranjita-pro.single-product div.product p.price,
body.naranjita-pro.single-product div.product span.price {
	color: var(--np-orange);
	font: 600 28px/1.2 var(--np-display);
}

body.naranjita-pro.single-product .quantity .qty {
	min-height: 46px;
	border: 1px solid var(--np-line);
	border-radius: 12px;
	background: var(--np-white);
}

body.naranjita-pro.single-product div.product form.cart .button {
	min-height: 48px;
	padding-inline: 30px;
}

body.naranjita-pro.single-product .product_meta {
	padding-top: 18px;
	border-top: 1px solid var(--np-line);
	color: var(--np-muted);
	font-size: 13px;
}

.np-product-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
	margin: 22px 0;
}

.np-product-benefits > div {
	min-width: 0;
	padding: 13px 10px;
	border: 1px solid var(--np-line);
	border-radius: 14px;
	background: rgba(255, 255, 255, .72);
	text-align: center;
}

.np-product-benefits > div > span {
	display: block;
	margin-bottom: 6px;
	font-size: 19px;
}

.np-product-benefits p,
.np-product-benefits strong,
.np-product-benefits small {
	display: block;
	margin: 0;
}

.np-product-benefits strong {
	color: var(--np-ink);
	font-size: 11px;
}

.np-product-benefits small {
	margin-top: 2px;
	color: var(--np-muted);
	font-size: 10px;
}

body.naranjita-pro.single-product .woocommerce-tabs {
	clear: both;
	padding-top: 70px;
}

body.naranjita-pro.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 10px;
	padding: 0;
	border: 0;
}

body.naranjita-pro.single-product .woocommerce-tabs ul.tabs::before,
body.naranjita-pro.single-product .woocommerce-tabs ul.tabs li::before,
body.naranjita-pro.single-product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

body.naranjita-pro.single-product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 1px solid var(--np-line);
	border-radius: 999px;
	background: var(--np-white);
}

body.naranjita-pro.single-product .woocommerce-tabs ul.tabs li.active {
	border-color: var(--np-ink);
	background: var(--np-ink);
}

body.naranjita-pro.single-product .woocommerce-tabs ul.tabs li a {
	padding: 11px 18px;
	color: var(--np-ink);
}

body.naranjita-pro.single-product .woocommerce-tabs ul.tabs li.active a {
	color: var(--np-white);
}

body.naranjita-pro.single-product .woocommerce-Tabs-panel {
	padding: 30px;
	border: 1px solid var(--np-line);
	border-radius: 20px;
	background: var(--np-white);
}

body.naranjita-pro.single-product .related {
	clear: both;
	padding-top: 70px;
}

body.naranjita-pro.single-product .related > h2 {
	margin-bottom: 30px;
	font: 600 clamp(35px, 4vw, 54px)/1 var(--np-display);
	letter-spacing: -.04em;
}

body.naranjita-pro.single-product .related ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* WooCommerce: carrito, finalizar compra, cuenta y avisos. */
body.naranjita-pro.woocommerce-cart .site-content > .ast-container,
body.naranjita-pro.woocommerce-checkout .site-content > .ast-container,
body.naranjita-pro.woocommerce-account .site-content > .ast-container {
	width: min(1080px, calc(100% - 40px));
	max-width: 1080px;
	padding-top: 65px;
	padding-bottom: 100px;
}

body.naranjita-pro .woocommerce table.shop_table,
body.naranjita-pro .woocommerce .cart-collaterals .cart_totals,
body.naranjita-pro .woocommerce form.checkout,
body.naranjita-pro .woocommerce-MyAccount-navigation,
body.naranjita-pro .woocommerce-MyAccount-content {
	border: 1px solid var(--np-line);
	border-radius: 20px;
	background: var(--np-white);
}

.np-checkout-intro {
	position: relative;
	overflow: hidden;
	margin: 0 0 35px;
	padding: 38px 42px;
	border-radius: 24px;
	background: var(--np-orange);
	color: var(--np-white);
}

.np-checkout-intro::after {
	content: "✓";
	position: absolute;
	top: 50%;
	right: 45px;
	color: rgba(255, 255, 255, .17);
	font: 600 110px/1 var(--np-display);
	transform: translateY(-50%) rotate(8deg);
}

.np-checkout-intro > span {
	position: relative;
	z-index: 1;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .17em;
}

.np-checkout-intro h2 {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 12px 0 8px;
	color: var(--np-white);
	font: 600 clamp(32px, 4vw, 51px)/1 var(--np-display);
	letter-spacing: -.04em;
}

.np-checkout-intro p {
	position: relative;
	z-index: 1;
	margin: 0;
	opacity: .9;
}

body.naranjita-pro .wc-block-cart,
body.naranjita-pro .wc-block-checkout {
	font-family: var(--np-body);
}

body.naranjita-pro .wc-block-components-sidebar-layout {
	gap: 25px;
}

body.naranjita-pro .wc-block-components-sidebar,
body.naranjita-pro .wc-block-components-main {
	padding: 25px !important;
	border: 1px solid var(--np-line);
	border-radius: 22px;
	background: var(--np-white);
}

body.naranjita-pro .wc-block-components-button {
	min-height: 52px;
	border-radius: 999px;
	background: var(--np-orange);
	color: var(--np-white);
	font-weight: 700;
}

body.naranjita-pro .wc-block-components-text-input input,
body.naranjita-pro .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
	border-color: var(--np-line);
	border-radius: 12px;
	background: var(--np-paper);
}

body.naranjita-pro .woocommerce table.shop_table {
	overflow: hidden;
}

body.naranjita-pro .woocommerce .cart-collaterals .cart_totals,
body.naranjita-pro .woocommerce-MyAccount-navigation,
body.naranjita-pro .woocommerce-MyAccount-content {
	padding: 25px;
}

body.naranjita-pro .woocommerce form .form-row input.input-text,
body.naranjita-pro .woocommerce form .form-row textarea,
body.naranjita-pro .woocommerce form .form-row select,
body.naranjita-pro .select2-container .select2-selection--single {
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--np-line);
	border-radius: 12px;
	background: var(--np-paper);
	box-shadow: none;
}

body.naranjita-pro .woocommerce-message,
body.naranjita-pro .woocommerce-info,
body.naranjita-pro .woocommerce-error {
	border: 1px solid var(--np-line);
	border-top: 4px solid var(--np-orange);
	border-radius: 16px;
	background: var(--np-white);
}

body.naranjita-pro .woocommerce-message::before,
body.naranjita-pro .woocommerce-info::before {
	color: var(--np-orange);
}

@media (max-width: 1080px) {
	.np-product-search { max-width: 260px; }
	.np-desktop-nav { gap: 16px; }
	.np-desktop-nav a { font-size: 13px; }
	.np-cart__total { display: none; }
}

@media (max-width: 920px) {
	.np-desktop-nav { display: none; }
	.np-product-search { margin-left: auto; }
	.np-menu-button { display: grid; }
	.np-mobile-menu {
		position: absolute;
		top: 100%;
		right: 20px;
		left: 20px;
		max-height: calc(100vh - 125px);
		overflow-y: auto;
		overscroll-behavior: contain;
		padding: 18px;
		border: 1px solid var(--np-line);
		border-radius: 20px;
		background: var(--np-white);
		box-shadow: 0 22px 50px rgba(50, 35, 20, .15);
	}
	.np-mobile-menu.is-open {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
	.np-mobile-menu > a {
		display: flex;
		justify-content: space-between;
		padding: 12px 5px;
		border-bottom: 1px solid var(--np-line);
		color: var(--np-ink);
		font-weight: 700;
	}
	.np-mobile-categories {
		border-bottom: 1px solid var(--np-line);
	}
	.np-mobile-categories > button {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 5px;
		border: 0;
		background: transparent;
		color: var(--np-ink);
		font: 700 14px/1.55 var(--np-body);
		text-align: left;
	}
	.np-mobile-categories > button span {
		color: var(--np-orange);
		font-size: 19px;
		transition: transform .2s ease;
	}
	.np-mobile-categories.is-open > button span {
		transform: rotate(45deg);
	}
	.np-mobile-categories__panel {
		display: none;
		padding: 4px 0 16px;
	}
	.np-mobile-categories.is-open .np-mobile-categories__panel {
		display: block;
	}
	.np-mobile-categories .np-category-menu__links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-height: none;
	}
	.np-mobile-categories .np-category-menu__links a {
		font-size: 11px;
	}
	.np-mobile-categories .np-category-menu__tools a {
		color: var(--np-white);
	}
	.np-mobile-menu > a.np-mobile-checkout {
		margin-top: 8px;
		padding-inline: 14px;
		border: 0;
		border-radius: 999px;
		background: var(--np-orange);
		color: var(--np-white);
	}
	.np-mobile-search {
		display: none;
	}
	.np-cart-drawer {
		width: min(420px, 100%);
		padding: 24px 20px;
	}
	.np-hero {
		grid-template-columns: 1fr;
		gap: 35px;
	}
	.np-hero__visual { min-height: 520px; }
	.np-hero__photo { left: 0; }
	.np-category-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 380px 270px 270px;
	}
	.np-category-card--wide {
		grid-row: auto;
		grid-column: span 2;
	}
	.np-home-products { grid-template-columns: repeat(2, 1fr); }
	.np-campaign { grid-template-columns: 1fr; }
	.np-story { grid-template-columns: 1fr; gap: 60px; }
	.np-story__image { max-width: 700px; }
	.np-story__image > span { right: 20px; }
	.np-newsletter__inner { grid-template-columns: 1fr; gap: 42px; }
	.np-inner-hero > .np-container { grid-template-columns: 1fr; gap: 50px; }
	.np-inner-hero__image { max-width: 720px; }
	.np-about-story { grid-template-columns: 1fr; gap: 25px; }
	.np-values__grid { grid-template-columns: 1fr; }
	.np-values article { min-height: 220px; }
	.np-values article h3 { margin-top: 45px; }
	.np-contact-main { grid-template-columns: 1fr; }
	.np-footer__main { grid-template-columns: 1.4fr 1fr 1fr; }
	.np-footer__column:last-child { grid-column: 2; }
	body.naranjita-pro.single-product .related ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.admin-bar .np-header-shell { top: 46px; }
	.np-container { width: min(100% - 28px, 1180px); }
	.np-announcement { height: 29px; }
	.np-announcement__track { gap: 18px; }
	.np-header__inner { height: 74px; gap: 10px; }
	.np-brand { width: 94px; }
	.np-brand__image { height: 62px; }
	.np-product-search { display: none; }
	.np-cart { margin-left: auto; padding-inline: 10px; }
	.np-cart__total { display: none; }
	.np-mobile-search {
		display: flex;
		gap: 8px;
		margin-bottom: 8px;
	}
	.np-mobile-search input {
		min-width: 0;
		flex: 1;
		min-height: 43px;
		padding: 0 13px;
		border: 1px solid var(--np-line);
		border-radius: 999px;
	}
	.np-mobile-search button {
		min-height: 43px;
		padding: 0 15px;
		border: 0;
		border-radius: 999px;
		background: var(--np-orange);
		color: var(--np-white);
		font-weight: 700;
	}
	.np-hero {
		min-height: auto;
		padding-top: 47px;
		padding-bottom: 30px;
	}
	.np-hero h1 { font-size: clamp(53px, 17vw, 74px); }
	.np-hero__copy > p { font-size: 16px; }
	.np-hero__actions { flex-direction: column; align-items: flex-start; gap: 17px; }
	.np-hero__note { margin-top: 32px; }
	.np-hero__visual { min-height: 410px; }
	.np-hero__photo { border-radius: 42% 42% 20px 20px; }
	.np-sticker { top: -14px; right: -7px; width: 103px; height: 103px; }
	.np-sticker strong { font-size: 17px; }
	.np-floating-card { bottom: 16px; left: -4px; padding: 12px; }
	.np-scribble { left: 14px; }
	.np-benefits__grid { grid-template-columns: 1fr; }
	.np-benefits article {
		justify-content: flex-start;
		padding: 18px 4px;
		border-right: 0;
		border-bottom: 1px solid var(--np-line);
	}
	.np-benefits article:last-child { border-bottom: 0; }
	.np-section { padding: 82px 0; }
	.np-section-heading { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 29px; }
	.np-section-heading h2 { font-size: 47px; }
	.np-category-grid {
		display: flex;
		overflow-x: auto;
		padding-bottom: 8px;
		scroll-snap-type: x mandatory;
	}
	.np-category-card {
		min-width: 82vw;
		height: 310px;
		scroll-snap-align: center;
	}
	.np-category-card--image { height: 410px; }
	.np-category-card--photo { height: 350px; }
	.np-category-card--photo.np-category-card--wide { height: 430px; }
	.np-category-card__media,
	.np-category-card--wide .np-category-card__media { height: 66%; }
	.np-home-products {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}
	.np-product-card {
		min-width: 78vw;
		scroll-snap-align: center;
	}
	.np-campaign { margin-top: 80px; border-radius: 24px; }
	.np-campaign__copy { padding: 43px 24px 20px; }
	.np-campaign h2 { font-size: 52px; }
	.np-campaign__art { min-height: 340px; }
	.np-paper { width: 132px; height: 172px; font-size: 55px; }
	.np-paper--three { font-size: 38px; }
	.np-orbit { width: 265px; height: 265px; }
	.np-story { gap: 44px; }
	.np-story__image img { height: 425px; }
	.np-story__image > span { width: 118px; height: 118px; font-size: 16px; }
	.np-story__copy h2 { font-size: 51px; }
	.np-locations { padding: 74px 0; }
	.np-locations__intro h2 { font-size: 51px; }
	.np-locations__grid { grid-template-columns: 1fr; }
	.np-location-card { padding: 27px; }
	.np-newsletter { padding: 72px 0; }
	.np-newsletter h2 { font-size: 47px; }
	.np-inner-hero { padding: 60px 0 75px; }
	.np-inner-hero h1 { font-size: 57px; }
	.np-inner-hero__image img { height: 410px; }
	.np-inner-hero__image > span { right: 8px; width: 117px; height: 117px; font-size: 16px; }
	.np-about-story__number { font-size: 85px; }
	.np-about-story__content h2 { font-size: 45px; }
	.np-values { padding: 80px 0; }
	.np-about-quote { padding-top: 90px; padding-bottom: 90px; }
	.np-about-quote p { font-size: 44px; }
	.np-about-cta > .np-container,
	.np-about-cta > .np-container > div:last-child { flex-direction: column; align-items: flex-start; }
	.np-contact-hero { padding: 63px 0; }
	.np-contact-hero h1 { font-size: 76px; }
	.np-contact-hero__badge { width: 125px; height: 125px; flex: none; }
	.np-contact-hero__badge strong { font-size: 22px; }
	.np-contact-main { gap: 50px; }
	.np-contact-form-card { padding: 27px 20px; }
	.np-form-row { grid-template-columns: 1fr; gap: 0; }
	.np-footer__main { grid-template-columns: 1fr 1fr; }
	.np-footer__brand { grid-column: span 2; }
	.np-footer__column:last-child { grid-column: auto; }
	.np-footer__bottom { flex-direction: column; gap: 7px; }
	body.naranjita-pro.woocommerce-page .site-content > .ast-container,
	body.naranjita-pro.post-type-archive-product .site-content > .ast-container,
	body.naranjita-pro.tax-product_cat .site-content > .ast-container,
	body.naranjita-pro.search-results .site-content > .ast-container,
	body.naranjita-pro.single-product .site-content > .ast-container,
	body.naranjita-pro.woocommerce-cart .site-content > .ast-container,
	body.naranjita-pro.woocommerce-checkout .site-content > .ast-container,
	body.naranjita-pro.woocommerce-account .site-content > .ast-container {
		width: min(100% - 28px, 1180px);
		padding-top: 42px;
		padding-bottom: 70px;
	}
	body.naranjita-pro .widget-area { padding-right: 0; }
	body.naranjita-pro .woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
	body.naranjita-pro .woocommerce ul.products li.product,
	body.naranjita-pro .woocommerce-page ul.products li.product { border-radius: 17px; }
	body.naranjita-pro .woocommerce ul.products li.product a img { padding: 11px; margin-bottom: 12px; }
	body.naranjita-pro .woocommerce ul.products li.product .ast-woo-product-category,
	body.naranjita-pro .woocommerce ul.products li.product .woocommerce-loop-category__title,
	body.naranjita-pro .woocommerce ul.products li.product .woocommerce-loop-product__title,
	body.naranjita-pro .woocommerce ul.products li.product .price,
	body.naranjita-pro .woocommerce ul.products li.product .button {
		margin-right: 12px;
		margin-left: 12px;
	}
	body.naranjita-pro .woocommerce ul.products li.product .woocommerce-loop-product__title {
		min-height: 58px;
		font-size: 13px;
	}
	body.naranjita-pro .woocommerce ul.products li.product .button { width: calc(100% - 24px); padding: 0 8px; font-size: 11px; }
	body.naranjita-pro.single-product .woocommerce-product-gallery { width: 100% !important; float: none !important; }
	body.naranjita-pro.single-product div.product .summary { width: 100% !important; float: none !important; padding: 28px 0 0; }
	body.naranjita-pro.single-product .product_title { font-size: 40px; }
	.np-product-benefits { grid-template-columns: 1fr; }
	.np-product-benefits > div {
		display: flex;
		align-items: center;
		gap: 10px;
		text-align: left;
	}
	.np-product-benefits > div > span { margin: 0; }
	body.naranjita-pro.single-product .related ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	body.naranjita-pro.single-product .woocommerce-tabs ul.tabs { overflow-x: auto; }
	.np-checkout-intro { padding: 30px 24px; }
	.np-checkout-intro::after { right: 15px; font-size: 85px; }
	body.naranjita-pro .wc-block-components-sidebar-layout { display: block; }
	body.naranjita-pro .wc-block-components-sidebar { width: 100%; margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
	body.naranjita-pro *,
	body.naranjita-pro *::before,
	body.naranjita-pro *::after {
		scroll-behavior: auto !important;
		animation: none !important;
		transition: none !important;
	}
	.np-reveal {
		opacity: 1;
		transform: none;
	}
}
