body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
}

html {
	scroll-behavior: smooth;
}

.no-scrollbar::-webkit-scrollbar {
	display: none;
}

.custom-scrollbar::-webkit-scrollbar {
	width: 5px;
}

.custom-scrollbar::-webkit-scrollbar-track {
	background: #f8f8f8;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
	background: #2563eb;
	border-radius: 20px;
}

.text-outline {
	-webkit-text-stroke: 1px #2563eb;
	color: transparent;
}

body.has-cart-open {
	overflow: hidden;
}

body.admin-bar #navbar {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar #navbar {
		top: 46px;
	}
}

#navbar {
	background: transparent;
}

#navbar.is-scrolled {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   MENÚ
========================= */
.omshop-primary-menu,
.omshop-mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.omshop-primary-menu li,
.omshop-mobile-menu li {
	list-style: none;
}

.omshop-primary-menu a,
.omshop-mobile-menu a {
	color: #111827;
	text-decoration: none;
	transition: color .25s ease;
}

.omshop-primary-menu a:hover,
.omshop-mobile-menu a:hover,
.omshop-primary-menu .current-menu-item > a,
.omshop-primary-menu .current-menu-ancestor > a,
.omshop-mobile-menu .current-menu-item > a,
.omshop-mobile-menu .current-menu-ancestor > a {
	color: #2563eb;
}

/* Panel móvil oculto por defecto */
#mobile-menu-panel {
	display: none !important;
	background: #fff;
	border-top: 1px solid #e5e7eb;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#mobile-menu-panel.active {
	display: block !important;
}

@media (min-width: 1024px) {
	#mobile-menu-panel {
		display: none !important;
	}
}

/* =========================
   WOOCOMMERCE GENERAL
========================= */
.omshop-product-card img,
.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.woocommerce ul.products {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px 32px;
}

.woocommerce ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	list-style: none;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	border-radius: 0.75rem;
	border: 1px solid #111;
	background: #fff;
	color: #111;
	padding: 14px 18px;
	font-size: .92rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	transition: all .25s ease;
	text-decoration: none;
	cursor: pointer;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover {
	background: #111;
	color: #fff;
}

/* =========================
   TARJETA PRODUCTO
========================= */
.product-card__actions .button,
.product-card__actions a.button,
.product-card__actions .add_to_cart_button,
.omshop-add-to-cart-btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 14px 18px;
	border-radius: 999px;
	background: #111 !important;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	border: none !important;
	transition: all .25s ease;
	cursor: pointer;
}

.product-card__actions .button:hover,
.product-card__actions a.button:hover,
.product-card__actions .add_to_cart_button:hover,
.omshop-add-to-cart-btn:hover {
	opacity: .92;
	transform: translateY(-1px);
}

.product-card__title a,
.product-card__category a {
	color: inherit;
	text-decoration: none;
}

.product-card__title a:hover {
	color: #2563eb;
}

.omshop-product-note {
	display: block;
	width: 100%;
	padding: 12px 14px;
	border-radius: 999px;
	background: #f3f4f6;
	color: #6b7280;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
}

/* =========================
   GALERÍA EN TARJETA
========================= */
.omshop-card-gallery {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 1.5rem;
	background: #f5f5f5;
}

.omshop-card-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s ease, visibility .35s ease;
}

.omshop-card-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.omshop-card-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.omshop-card-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20 !important;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.95);
	color: #111;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	transition: all .25s ease;
}

.omshop-card-arrow--prev {
	left: 12px;
}

.omshop-card-arrow--next {
	right: 12px;
}

.omshop-card-arrow:hover {
	background: #111;
	color: #fff;
	border-color: #111;
}

.omshop-card-dots {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	z-index: 20 !important;
	display: flex;
	gap: 8px;
}

.omshop-card-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, 0.65);
	cursor: pointer;
	transition: transform .2s ease, background .2s ease;
}

.omshop-card-dot.is-active {
	background: #2563eb;
	transform: scale(1.15);
}

/* =========================
   SINGLE PRODUCT
========================= */
.single-product-page {
	padding-top: 160px;
	padding-bottom: 80px;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary {
	width: 100%;
	float: none;
}

.woocommerce div.product .woocommerce-product-gallery {
	margin-bottom: 0;
}

.woocommerce div.product .summary .product_title {
	font-size: 3rem;
	line-height: 1;
	font-weight: 900;
	text-transform: uppercase;
	font-style: italic;
	margin-bottom: 1rem;
	color: #111;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 1.5rem;
	font-weight: 800;
	color: #2563eb;
	margin-bottom: 1rem;
	display: block;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	color: #6b7280;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.woocommerce div.product form.cart {
	margin-top: 1.25rem;
	margin-bottom: 1.5rem;
}

.woocommerce div.product form.cart .button,
.single_add_to_cart_button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 22px;
	border-radius: 999px;
	background: #111 !important;
	color: #fff !important;
	border: none !important;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: .06em;
	width: auto;
}

.woocommerce div.product form.cart .quantity {
	margin-right: 12px;
}

.woocommerce .quantity .qty {
	min-height: 48px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid #d1d5db;
	background: #fff;
}

.woocommerce-product-gallery__wrapper img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 1rem;
}

.woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 32px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0 0 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
	display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: none !important;
	background: transparent !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 999px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: inline-flex;
	padding: 12px 18px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #e5e7eb;
	color: #111;
	text-decoration: none;
	font-weight: 700;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	background: #111;
	color: #fff;
}

.woocommerce div.product .woocommerce-tabs .panel {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 1.25rem;
	padding: 24px;
}

/* =========================
   NOTICES
========================= */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 1rem;
	padding: 1rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid #e5e7eb;
	background: #fff;
}

.woocommerce-error {
	color: #b91c1c;
}

/* Ocultar mensajes automáticos y enlaces tipo Ver carrito */
.added_to_cart,
.wc-forward,
a.added_to_cart,
a.wc-forward,
.woocommerce-notices-wrapper,
.woocommerce-notices-wrapper:empty,
.woocommerce-message:empty,
.woocommerce-info:empty,
.woocommerce-error:empty {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
	min-height: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

/* =========================
   CART DRAWER
========================= */
.cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 60;
	pointer-events: none;
}

.cart-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .4);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: .3s ease;
}

.cart-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(100%, 420px);
	height: 100%;
	background: #fff;
	box-shadow: -10px 0 30px rgba(0, 0, 0, .12);
	transform: translateX(100%);
	transition: .3s ease;
	display: flex;
	flex-direction: column;
}

.cart-drawer.is-open {
	pointer-events: auto;
}

.cart-drawer.is-open .cart-drawer__overlay {
	opacity: 1;
}

.cart-drawer.is-open .cart-drawer__panel {
	transform: translateX(0);
}

.cart-drawer__header,
.cart-drawer__footer {
	padding: 24px;
}

.cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #f3f4f6;
}

.cart-drawer__header h2 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 800;
}

.cart-drawer__close {
	border: 0;
	background: transparent;
	cursor: pointer;
	color: #6b7280;
	font-size: 1.15rem;
}

.cart-drawer__body {
	flex: 1;
	overflow-y: auto;
	padding: 24px;
}

.cart-drawer__subtotal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.cart-drawer__note {
	margin: 0 0 24px;
	font-size: .8rem;
	color: #6b7280;
}

.cart-drawer__checkout {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background: #111;
	color: #fff;
	padding: 16px 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	border-radius: 0.75rem;
	text-decoration: none;
}

.omshop-cart-drawer-actions {
	display: grid;
	gap: 12px;
}

.cart-drawer__whatsapp {
	background: #25D366 !important;
	color: #fff !important;
}

.cart-drawer__email {
	background: #111 !important;
	color: #fff !important;
}

.js-cart-body.loading,
.cart-drawer__body.loading {
	opacity: .6;
	pointer-events: none;
}

/* =========================
   MINI CART LATERAL
========================= */
.cart-drawer__body .woocommerce-mini-cart {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cart-drawer__body .woocommerce-mini-cart-item {
	display: grid !important;
	grid-template-columns: 72px 1fr auto;
	gap: 14px;
	align-items: start;
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid #f3f4f6;
	position: relative;
}

.cart-drawer__body .woocommerce-mini-cart-item a:not(.remove) {
	color: #111;
	text-decoration: none;
	font-weight: 700;
	line-height: 1.3;
}

.cart-drawer__body .woocommerce-mini-cart-item img {
	width: 72px !important;
	height: 92px !important;
	object-fit: cover;
	border-radius: 12px;
	background: #f3f4f6;
	display: block;
}

.cart-drawer__body .woocommerce-mini-cart-item .remove {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	color: #b91c1c !important;
	font-size: 16px !important;
	font-weight: 700;
	text-decoration: none !important;
	background: transparent;
	border: 1px solid transparent;
	line-height: 1;
	margin-top: 2px;
}

.cart-drawer__body .woocommerce-mini-cart-item .remove:hover {
	background: #fee2e2;
	border-color: #fecaca;
	color: #991b1b !important;
}

.cart-drawer__body .woocommerce-mini-cart-item .quantity {
	display: block;
	margin-top: 6px;
	color: #6b7280;
	font-size: 14px;
	font-weight: 600;
}

.cart-drawer__body .woocommerce-mini-cart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 16px;
	margin-top: 8px;
	border-top: 1px solid #e5e7eb;
}

.cart-drawer__body .woocommerce-mini-cart__buttons,
.cart-drawer__body .buttons {
	display: none !important;
}

/* =========================
   PÁGINAS GENERALES
========================= */
.default-page {
	padding-top: 140px;
	padding-bottom: 80px;
}

.mobile-only {
	display: none;
}

.desktop-only {
	display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1279px) {
	section h2.text-\[18rem\],
	section h2.text-\[20rem\] {
		display: none;
	}
}

@media (max-width: 1024px) {
	.woocommerce div.product {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 991px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.woocommerce ul.products {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.desktop-only {
		display: none;
	}

	.mobile-only {
		display: block;
	}

	.cart-drawer__panel {
		width: 100%;
	}

	.woocommerce div.product .summary .product_title {
		font-size: 2.25rem;
	}
}
/* Drawer más respirado */
.cart-drawer__header {
	padding: 28px 24px;
}

.cart-drawer__body {
	padding: 24px !important;
}

.cart-drawer__footer {
	padding: 24px !important;
	border-top: 1px solid #f3f4f6;
	background: #fff;
}

.cart-drawer__empty {
	margin-top: 8px;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.5;
}

.cart-drawer__subtotal strong {
	font-size: 22px;
	font-weight: 800;
}

.cart-drawer__note {
	line-height: 1.5;
}
/* Slider producto tarjeta */
.omshop-card-gallery {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 1.5rem;
	background: #f5f5f5;
}

.omshop-card-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s ease, visibility .35s ease;
}

.omshop-card-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.omshop-card-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.omshop-card-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 30 !important;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.95);
	background: rgba(255,255,255,0.95);
	color: #111;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.omshop-card-arrow--prev {
	left: 12px;
}

.omshop-card-arrow--next {
	right: 12px;
}

.omshop-card-dots {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	z-index: 30 !important;
	display: flex;
	gap: 8px;
}

.omshop-card-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	background: rgba(255,255,255,0.65);
	cursor: pointer;
}

.omshop-card-dot.is-active {
	background: #2563eb;
	transform: scale(1.15);
}