:root {
	--jt-color-ink: #2f2f2f;
	--jt-color-paper: #f8f4ee;
	--jt-color-surface: #ffffff;
	--jt-color-leaf: #667c52;
	--jt-color-clay: #b87855;
	--jt-color-sky: #7f8f84;
	--jt-color-orange: #b97846;
	--jt-color-mustard: #b8904a;
	--jt-color-muted: #666666;
	--jt-color-border: #e3d8ca;
	--jt-radius: 8px;
	--jt-shadow: 0 10px 30px rgba(47, 47, 47, 0.08);
}

* {
	box-sizing: border-box;
}

body {
	background: var(--jt-color-paper);
	color: var(--jt-color-ink);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 0;
}

a {
	color: var(--jt-color-leaf);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--jt-color-sky);
	outline-offset: 3px;
}

.button,
button,
input[type="button"],
input[type="submit"] {
	border-radius: var(--jt-radius);
	font-weight: 700;
}

.jt-section-inner,
.jt-shop-page {
	margin: 0 auto;
	max-width: 1280px;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

/* Estilos de la Home: ver assets/css/home.css */

#somos-nosotros {
	scroll-margin-top: 96px;
}

/*
 * WooCommerce quantity stepper ([-] [qty] [+]), shared by every context that
 * renders woocommerce_quantity_input() -- product page, cart, and mini-cart
 * if one is ever added. Storefront ships `.quantity{float:left;margin-right:
 * .875em}` with no flex/nowrap of any kind, so the two .jt-qty-button
 * buttons (added via woocommerce_before/after_quantity_input_field in
 * functions.php) and the .qty input just flowed as separate inline-block
 * boxes and wrapped onto their own lines the moment the table column was
 * narrower than their combined default width -- worse on the cart page,
 * where no per-context override existed to fix it (only the product page
 * had one, scoped to .jt-product-summary). Defined here once, globally, so
 * every context gets the exact same working component instead of each
 * screen needing its own copy.
 */

.quantity {
	align-items: center;
	background: #fbf8f3;
	border: 1px solid var(--jt-color-border);
	border-radius: 999px;
	display: inline-flex;
	float: none;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	white-space: nowrap;
}

.quantity .qty {
	appearance: textfield;
	-moz-appearance: textfield;
	background: transparent;
	border: 0;
	box-shadow: none;
	color: var(--jt-color-ink);
	flex: 0 0 auto;
	font-weight: 800;
	height: 44px;
	padding: 0;
	text-align: center;
	width: 46px;
}

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

.jt-qty-button {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--jt-color-ink);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 1.05rem;
	font-weight: 800;
	height: 44px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 38px;
}

.jt-qty-button:hover,
.jt-qty-button:focus-visible {
	background: rgba(102, 124, 82, 0.1);
	color: var(--jt-color-leaf);
}

.jt-qty-button:active {
	background: rgba(102, 124, 82, 0.18);
}
