/**
 * Ruta 7 Customizations
 * Base visual global del frontend.
 *
 * Los estilos se limitan al cuerpo y al contenido principal. El encabezado,
 * la navegación, Max Mega Menu y la ficha individual de producto quedan fuera
 * de alcance de esta etapa.
 */

:root {
	--r7-color-primary: var(--global-palette1, #2f6f3e);
	--r7-color-primary-hover: var(--global-palette2, #245a32);
	--r7-color-heading: #2d3335;
	--r7-color-text: #50585b;
	--r7-color-muted: #6b7477;
	--r7-color-surface: #ffffff;
	--r7-color-background: #f5f6f4;
	--r7-color-border: #dfe3df;
	--r7-content-width: 1200px;
	--r7-radius: 10px;
	--r7-shadow: 0 8px 28px rgb(31 42 35 / 8%);
}

body:not(.wp-admin) {
	background: var(--r7-color-background);
	color: var(--r7-color-text);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

body:not(.wp-admin):not(.single-product) :where(#primary, .content-area, .site-main) {
	min-width: 0;
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) > :where(article, .page-header, .woocommerce) {
	width: min(100%, var(--r7-content-width));
	margin-inline: auto;
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) {
	color: var(--r7-color-text);
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(h1, h2, h3, h4, h5, h6):not(.r7-home-hero *):not(.r7-services-hero *) {
	color: var(--r7-color-heading);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.018em;
	text-wrap: balance;
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(h1, h2):not(.r7-home-hero *):not(.r7-services-hero *) {
	margin-block: 0 0.65em;
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(p, li):not(.r7-home-hero *):not(.r7-services-hero *) {
	line-height: 1.7;
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.entry-content, .page-content) > * + *:not(.r7-services-hero) {
	margin-block-start: clamp(1.25rem, 2.5vw, 2.25rem);
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.wp-block-group, .wp-block-columns, section):not(.r7-services-hero) {
	scroll-margin-top: 2rem;
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.wp-block-group.has-background, .wp-block-cover, .kt-row-layout-inner):not(.r7-services-hero) {
	border-radius: var(--r7-radius);
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.wp-block-group.has-background, .wp-block-cover):not(.r7-services-hero) {
	padding: clamp(1.5rem, 4vw, 3.5rem);
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.wp-block-column, .wc-block-grid__product, ul.products li.product) {
	min-width: 0;
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.wc-block-grid__product, ul.products li.product) {
	background: var(--r7-color-surface);
	border: 1px solid var(--r7-color-border);
	border-radius: var(--r7-radius);
	box-shadow: var(--r7-shadow);
	overflow: hidden;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@media (hover: hover) {
	body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.wc-block-grid__product, ul.products li.product):hover {
		border-color: color-mix(in srgb, var(--r7-color-primary) 38%, var(--r7-color-border));
		box-shadow: 0 12px 34px rgb(31 42 35 / 12%);
		transform: translateY(-2px);
	}
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.button, button, input[type="button"], input[type="submit"], .wp-element-button):not(.components-button):not(.r7-home-hero *):not(.r7-services-hero *) {
	min-height: 44px;
	padding: 0.72em 1.35em;
	background-color: var(--r7-color-primary);
	border: 1px solid var(--r7-color-primary);
	border-radius: 7px;
	color: #ffffff;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.button, button, input[type="button"], input[type="submit"], .wp-element-button):not(.components-button):not(.r7-home-hero *):not(.r7-services-hero *):is(:hover, :focus-visible) {
	background-color: var(--r7-color-primary-hover);
	border-color: var(--r7-color-primary-hover);
	color: #ffffff;
	box-shadow: 0 5px 16px rgb(31 80 43 / 20%);
	transform: translateY(-1px);
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(a, button, input, textarea, select):not(.r7-home-hero *):not(.r7-services-hero *):focus-visible {
	outline: 3px solid color-mix(in srgb, var(--r7-color-primary) 40%, transparent);
	outline-offset: 3px;
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]), textarea, select) {
	max-width: 100%;
	background: var(--r7-color-surface);
	border: 1px solid var(--r7-color-border);
	border-radius: 7px;
	color: var(--r7-color-heading);
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(hr, .wp-block-separator) {
	border: 0;
	border-top: 1px solid var(--r7-color-border);
	margin-block: clamp(2rem, 5vw, 4rem);
}

body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 767px) {
	body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.entry-content, .page-content) {
		overflow-wrap: anywhere;
	}

	body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) :where(.wp-block-group.has-background, .wp-block-cover):not(.r7-services-hero) {
		padding: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	body:not(.wp-admin):not(.single-product) :where(.site-main, #primary) *:not(.r7-home-hero):not(.r7-home-hero *):not(.r7-services-hero):not(.r7-services-hero *) {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* ==================================================
   INICIO: COMPOSICIÓN COMERCIAL
   ================================================== */

body.home :where(
	.r7-home-benefits,
	.r7-home-products,
	.r7-home-services
) {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin-block: 0;
	font-family: "Roboto Condensed", sans-serif;
}

body.home :where(
	.r7-home-benefits *,
	.r7-home-products *,
	.r7-home-services *
) {
	box-sizing: border-box;
}

body.home .r7-home-section__inner,
body.home .r7-home-benefits__inner {
	width: min(100%, 1200px);
	margin-inline: auto;
}

body.home .r7-home-section__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(26px, 3vw, 38px);
}

body.home .r7-home-section__heading h2 {
	margin: 0;
	color: var(--r7-color-heading);
	font-size: clamp(30px, 3.4vw, 46px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

body.home .r7-home-section__heading > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	color: var(--r7-color-primary);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

body.home .r7-home-section__heading > a span {
	font-size: 22px;
	transition: transform 180ms ease;
}

body.home .r7-home-section__heading > a:hover span,
body.home .r7-home-section__heading > a:focus-visible span {
	transform: translateX(4px);
}

/* Franja compacta de beneficios. */
body.home .r7-home-benefits {
	padding: clamp(28px, 4vw, 42px) 24px;
	background: #ffffff;
	border-bottom: 1px solid var(--r7-color-border);
}

body.home .r7-home-benefits__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
}

body.home .r7-home-benefits__item {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	min-width: 0;
	padding: 5px clamp(18px, 2vw, 28px);
	border-right: 1px solid var(--r7-color-border);
}

body.home .r7-home-benefits__item:first-child {
	padding-left: 0;
}

body.home .r7-home-benefits__item:last-child {
	padding-right: 0;
	border-right: 0;
}

body.home .r7-home-benefits__icon,
body.home .r7-home-products__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--r7-color-primary);
}

body.home .r7-home-benefits__icon {
	width: 42px;
	height: 42px;
	background: color-mix(in srgb, var(--r7-color-primary) 10%, #ffffff);
	border-radius: 50%;
}

body.home .r7-home-benefits__icon svg,
body.home .r7-home-products__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

body.home .r7-home-benefits__item h3 {
	margin: 0 0 5px;
	color: var(--r7-color-heading);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

body.home .r7-home-benefits__item p {
	margin: 0;
	color: var(--r7-color-muted);
	font-size: 14px;
	line-height: 1.45;
}

/* Categorías de productos existentes. */
body.home .r7-home-products {
	padding: clamp(54px, 7vw, 82px) 24px;
	background: var(--r7-color-surface-soft);
}

body.home .r7-home-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

body.home .r7-home-products__card {
	position: relative;
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-width: 0;
	min-height: 116px;
	padding: 20px 48px 20px 18px;
	background: #ffffff;
	border: 1px solid var(--r7-color-border);
	border-top: 4px solid var(--r7-color-primary);
	border-radius: 8px;
	color: var(--r7-color-heading);
	text-decoration: none;
	transition: border-color 180ms ease, transform 180ms ease;
}

body.home .r7-home-products__card:hover,
body.home .r7-home-products__card:focus-visible {
	border-color: var(--r7-color-primary);
	transform: translateY(-3px);
}

body.home .r7-home-products__icon {
	width: 48px;
	height: 48px;
	background: var(--r7-color-surface-soft);
	border-radius: 7px;
}

body.home .r7-home-products__icon svg {
	width: 28px;
	height: 28px;
}

body.home .r7-home-products__card h3 {
	margin: 0;
	color: inherit;
	font-size: clamp(16px, 1.3vw, 18px);
	font-weight: 700;
	line-height: 1.15;
	hyphens: none;
	overflow-wrap: normal;
	text-wrap: balance;
	text-transform: uppercase;
	word-break: normal;
}

body.home .r7-home-products__arrow {
	position: absolute;
	right: 18px;
	top: 50%;
	color: var(--r7-color-primary);
	font-size: 24px;
	transform: translateY(-50%);
}

/* Hero secundario editorial de materiales y servicios. */
body.home .r7-home-services__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Fichas de Servicios reutilizadas desde la configuración central. */
body.home .r7-home-services {
	padding: clamp(54px, 7vw, 86px) 24px;
	background: var(--r7-color-surface-soft);
}

body.home .r7-home-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

body.home .r7-home-services__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--r7-color-border);
	border-radius: 10px;
}

body.home .r7-home-services__media {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--r7-color-heading);
}

body.home .r7-home-services__image {
	transition: transform 260ms ease;
}

body.home .r7-home-services__card:hover .r7-home-services__image {
	transform: scale(1.025);
}

body.home .r7-home-services__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px;
}

body.home .r7-home-services__body h3 {
	margin: 0;
	color: var(--r7-color-heading);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
}

body.home .r7-home-services__body p {
	margin: 14px 0 22px;
	color: var(--r7-color-muted);
	font-size: 15px;
	line-height: 1.55;
}

body.home .r7-home-services__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: auto;
	padding: 10px 16px;
	background: var(--r7-color-primary);
	border: 1px solid var(--r7-color-primary);
	border-radius: 6px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

body.home .r7-home-services__link:hover,
body.home .r7-home-services__link:focus-visible {
	background: var(--r7-color-primary-hover);
	border-color: var(--r7-color-primary-hover);
	color: #ffffff;
}

/* Presentación institucional. */
body.home .r7-home-services + .r7-location-section {
	margin-block-start: 0;
}

@media (max-width: 1024px) {
	body.home .r7-home-benefits__inner,
	body.home .r7-home-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.home .r7-home-benefits__item {
		padding: 16px 22px;
		border-right: 1px solid var(--r7-color-border);
		border-bottom: 1px solid var(--r7-color-border);
	}

	body.home .r7-home-benefits__item:nth-child(2n) {
		border-right: 0;
	}

	body.home .r7-home-benefits__item:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	body.home .r7-home-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 767px) {
	body.home .r7-home-benefits,
	body.home .r7-home-products,
	body.home .r7-home-services {
		padding-right: 18px;
		padding-left: 18px;
	}

	body.home .r7-home-section__heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

}

@media (max-width: 520px) {
	body.home .r7-home-benefits__inner,
	body.home .r7-home-products__grid,
	body.home .r7-home-services__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body.home .r7-home-benefits__item,
	body.home .r7-home-benefits__item:first-child,
	body.home .r7-home-benefits__item:last-child,
	body.home .r7-home-benefits__item:nth-child(2n),
	body.home .r7-home-benefits__item:nth-last-child(-n + 2) {
		padding: 17px 0;
		border-right: 0;
		border-bottom: 1px solid var(--r7-color-border);
	}

	body.home .r7-home-benefits__item:last-child {
		border-bottom: 0;
	}

	body.home .r7-home-products__card {
		min-height: 100px;
		padding: 18px;
	}

	body.home .r7-home-services__body {
		padding: 21px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.home .r7-home-section__heading > a span,
	body.home .r7-home-products__card,
	body.home .r7-home-services__image,
	body.home .r7-home-services__link {
		transition: none;
	}

	body.home .r7-home-section__heading > a:hover span,
	body.home .r7-home-section__heading > a:focus-visible span,
	body.home .r7-home-products__card:hover,
	body.home .r7-home-products__card:focus-visible,
	body.home .r7-home-services__card:hover .r7-home-services__image {
		transform: none;
	}
}

/* Buscador de productos desplegable bajo la cabecera de Kadence. */
body.r7-search-ready #search-drawer {
	display: none !important;
}

.r7-search-strip {
	position: relative;
	z-index: 89;
	max-height: 0;
	overflow: hidden;
	background: #313333;
	box-shadow: 0 8px 18px rgb(31 42 35 / 0%);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition:
		max-height 260ms ease,
		opacity 180ms ease,
		transform 260ms ease,
		visibility 0s linear 260ms,
		box-shadow 260ms ease;
}

.r7-search-strip.r7-search-strip--open {
	max-height: 110px;
	box-shadow: 0 8px 18px rgb(31 42 35 / 8%);
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition-delay: 0s;
}

.r7-search-strip__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, calc(var(--r7-content-width) + 32px));
	min-height: 94px;
	margin-inline: auto;
	padding: 20px 16px;
}

.r7-search-strip .r7-product-search-form {
	position: relative;
	display: flex;
	width: min(100%, 650px);
	margin: 0;
}

.r7-search-strip .r7-product-search-form label {
	display: block;
	width: 100%;
	margin: 0;
}

.r7-search-strip .r7-product-search-form .search-field {
	box-sizing: border-box;
	width: 100%;
	height: 54px;
	margin: 0;
	padding: 0 60px 0 22px;
	background: #ffffff;
	border: 1px solid #548d51;
	border-radius: 999px;
	box-shadow: inset 0 1px 2px rgb(31 42 35 / 4%);
	color: var(--r7-color-heading);
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
	font-size: 17px;
	line-height: 1;
	outline: 0;
}

.r7-search-strip .r7-product-search-form .search-field::placeholder {
	color: var(--r7-color-muted);
	opacity: 1;
}

.r7-search-strip .r7-product-search-form .search-field:focus {
	border-color: #548d51;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--r7-color-primary) 18%, transparent);
}

.r7-search-strip .r7-product-search-form :where(.search-submit, button[type="submit"], input[type="submit"]) {
	position: absolute;
	top: 50%;
	right: 7px;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	min-height: 0;
	margin: 0;
	padding: 0;
	transform: translateY(-50%);
	background-color: var(--r7-color-primary);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='m16 16 4 4'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px;
	border: 0;
	border-radius: 50%;
	box-shadow: none;
	color: transparent;
	font-size: 0;
	text-indent: -9999px;
	cursor: pointer;
}

.r7-search-strip .r7-product-search-form :where(.search-submit, button[type="submit"], input[type="submit"]):is(:hover, :focus-visible) {
	background-color: var(--r7-color-primary-hover);
	box-shadow: 0 3px 9px rgb(31 80 43 / 20%);
}

@media (max-width: 767px) {
	.r7-search-strip.r7-search-strip--open {
		max-height: 94px;
	}

	.r7-search-strip__inner {
		min-height: 82px;
		padding: 14px 16px;
	}

	.r7-search-strip .r7-product-search-form .search-field {
		height: 52px;
		padding-left: 18px;
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.r7-search-strip,
	.r7-search-strip.r7-search-strip--open {
		transform: none;
		transition-duration: 0.01ms;
	}
}

/* Carrito moderno convertido en carro de presupuesto. */
body.woocommerce-cart.r7-modern-cart :where(.entry-title, .page-title) {
	color: var(--r7-color-heading) !important;
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif !important;
}

body.woocommerce-cart.r7-modern-cart .wp-block-woocommerce-cart {
	width: min(100%, var(--r7-content-width));
	margin-inline: auto;
	color: var(--r7-color-text);
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

body.woocommerce-cart.r7-modern-cart .wc-block-cart {
	column-gap: clamp(24px, 4vw, 52px);
	min-width: 0;
}

body.woocommerce-cart.r7-modern-cart :where(.wc-block-cart__main, .wc-block-cart__sidebar) {
	min-width: 0;
}

@media (min-width: 783px) {
	body.woocommerce-cart.r7-modern-cart .wc-block-cart.wc-block-components-sidebar-layout {
		display: grid !important;
		grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr) !important;
		align-items: start !important;
		gap: clamp(24px, 4vw, 52px) !important;
	}

	body.woocommerce-cart.r7-modern-cart .wc-block-cart.wc-block-components-sidebar-layout > .wc-block-cart__main {
		grid-column: 1;
		width: auto !important;
		max-width: none !important;
		margin: 0 !important;
	}

	body.woocommerce-cart.r7-modern-cart .wc-block-cart.wc-block-components-sidebar-layout > .wc-block-cart__sidebar {
		grid-column: 2;
		width: auto !important;
		max-width: none !important;
		margin: 0 !important;
	}
}

body.woocommerce-cart.r7-modern-cart :where(.wc-block-cart-items, .wc-block-components-sidebar-layout .wc-block-cart__sidebar) {
	background: #ffffff;
	border: 1px solid var(--r7-color-border) !important;
	border-radius: var(--r7-radius);
	box-shadow: var(--r7-shadow);
}

body.woocommerce-cart.r7-modern-cart .wc-block-cart-items {
	overflow: hidden;
}

body.woocommerce-cart.r7-modern-cart .wc-block-cart-items th,
body.woocommerce-cart.r7-modern-cart .wc-block-cart-items td {
	border-color: var(--r7-color-border) !important;
}

body.woocommerce-cart.r7-modern-cart .wc-block-cart-items__header {
	color: var(--r7-color-heading) !important;
	font-weight: 700;
}

body.woocommerce-cart.r7-modern-cart :where(.wc-block-components-product-name, .wc-block-components-totals-item__label, .wc-block-components-totals-item__value) {
	color: var(--r7-color-heading) !important;
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif !important;
}

body.woocommerce-cart.r7-modern-cart .wc-block-components-product-name:is(:hover, :focus-visible) {
	color: var(--r7-color-primary) !important;
}

body.woocommerce-cart.r7-modern-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar {
	align-self: start;
	padding: clamp(20px, 3vw, 30px) !important;
}

body.woocommerce-cart.r7-modern-cart .wc-block-components-totals-coupon,
body.woocommerce-cart.r7-modern-cart .wc-block-cart__submit,
body.woocommerce-cart.r7-modern-cart .wc-block-cart__submit-container,
body.woocommerce-cart.r7-modern-cart .wc-block-cart__submit-button,
body.woocommerce-cart.r7-modern-cart .wc-block-cart a[href*="checkout"] {
	display: none !important;
}

body.woocommerce-cart.r7-modern-cart .wc-block-components-totals-wrapper {
	border-color: var(--r7-color-border) !important;
}

body.woocommerce-cart.r7-modern-cart .wc-block-components-totals-footer-item {
	font-size: 1.15rem;
	font-weight: 700;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-actions {
	display: grid;
	gap: 12px;
	width: 100%;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--r7-color-border);
}

body.woocommerce-cart.r7-modern-cart .r7-cart-actions .r7-cart-action {
	display: flex !important;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 100% !important;
	min-height: 50px !important;
	margin: 0 !important;
	padding: 12px 18px !important;
	border: 2px solid transparent !important;
	border-radius: 7px !important;
	box-shadow: none !important;
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-align: center;
	text-decoration: none !important;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-actions .r7-cart-action--pdf {
	background: var(--r7-color-primary) !important;
	border-color: var(--r7-color-primary) !important;
	color: #ffffff !important;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-actions .r7-cart-action--continue {
	background: #ffffff !important;
	border-color: var(--r7-color-primary) !important;
	color: var(--r7-color-primary) !important;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-actions .r7-cart-action--whatsapp {
	background: #25d366 !important;
	border-color: #25d366 !important;
	color: #ffffff !important;
	cursor: pointer;
	opacity: 1;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-actions .r7-cart-action--whatsapp:disabled,
body.woocommerce-cart.r7-modern-cart .r7-cart-actions .r7-cart-action--loading {
	background: #1eaa52 !important;
	border-color: #1eaa52 !important;
	cursor: wait;
	opacity: 0.78;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-actions__message {
	grid-column: 1 / -1;
	margin: 2px 0 0;
	padding: 10px 12px;
	background: #f1f5f1;
	border-left: 3px solid var(--r7-color-primary);
	border-radius: 5px;
	color: var(--r7-color-heading);
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-actions__message--error {
	background: #fff3f2;
	border-left-color: #b42318;
	color: #7a271a;
}

body.woocommerce-cart.r7-modern-cart .wc-block-cart__sidebar .r7-cart-shipping-info {
	width: 100%;
	max-width: 100%;
	margin: 22px 0 0;
	padding: 22px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--r7-color-border);
	border-top: 4px solid var(--r7-color-primary);
	border-radius: var(--r7-radius);
	box-shadow: var(--r7-shadow);
	box-sizing: border-box;
	color: var(--r7-color-text);
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__title {
	margin: 0 0 14px;
	color: var(--r7-color-heading);
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 700;
	line-height: 1.2;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__rates {
	width: 100%;
	max-width: 100%;
	margin: 0;
	background: transparent;
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__rates tr {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #e3e7e4;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__rates th,
body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__rates td {
	padding: 9px 0;
	background: transparent;
	border: 0;
	color: var(--r7-color-text);
	font-size: 15px;
	line-height: 1.3;
	vertical-align: top;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__rates th {
	width: 52%;
	padding-right: 12px;
	font-weight: 600;
	text-align: left;
	overflow-wrap: anywhere;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__rates td {
	width: 48%;
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__notices {
	display: grid;
	gap: 8px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__notices li {
	position: relative;
	margin: 0;
	padding-left: 14px;
	color: var(--r7-color-text);
	font-size: 15px;
	line-height: 1.4;
}

body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__notices li::before {
	position: absolute;
	top: 0.58em;
	left: 0;
	width: 5px;
	height: 5px;
	background: var(--r7-color-primary);
	border-radius: 50%;
	content: "";
}

body.woocommerce-cart.r7-modern-cart .r7-cart-shipping-info__notice--important {
	color: var(--r7-color-heading) !important;
	font-weight: 700;
}

@media (hover: hover) {
	body.woocommerce-cart.r7-modern-cart .r7-cart-actions .r7-cart-action--pdf:hover {
		background: var(--r7-color-primary-hover) !important;
		border-color: var(--r7-color-primary-hover) !important;
		transform: translateY(-1px);
	}

	body.woocommerce-cart.r7-modern-cart .r7-cart-actions .r7-cart-action--continue:hover {
		background: color-mix(in srgb, var(--r7-color-primary) 8%, #ffffff) !important;
		color: var(--r7-color-primary-hover) !important;
		transform: translateY(-1px);
	}

	body.woocommerce-cart.r7-modern-cart .r7-cart-actions .r7-cart-action--whatsapp:not(:disabled):hover {
		background: #1eaa52 !important;
		border-color: #1eaa52 !important;
		transform: translateY(-1px);
	}
}

@media (max-width: 782px) {
	body.woocommerce-cart.r7-modern-cart .wp-block-woocommerce-cart {
		padding-inline: 16px;
	}

	body.woocommerce-cart.r7-modern-cart .wc-block-cart {
		display: block;
	}

	body.woocommerce-cart.r7-modern-cart .wc-block-cart__main,
	body.woocommerce-cart.r7-modern-cart .wc-block-cart__sidebar {
		width: 100% !important;
		max-width: 100% !important;
	}

	body.woocommerce-cart.r7-modern-cart .wc-block-cart__sidebar {
		margin-top: 24px;
	}

	body.woocommerce-cart.r7-modern-cart .wc-block-cart__sidebar .r7-cart-shipping-info {
		margin-top: 18px;
		padding: 18px;
	}

	body.woocommerce-cart.r7-modern-cart .wc-block-cart-items {
		display: table;
		width: 100%;
		table-layout: fixed;
	}

	body.woocommerce-cart.r7-modern-cart .wc-block-cart-item__image {
		width: 72px !important;
	}

	body.woocommerce-cart.r7-modern-cart .wc-block-cart-item__total {
		word-break: normal;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.woocommerce-cart.r7-modern-cart .r7-cart-actions .r7-cart-action {
		transition-duration: 0.01ms;
	}
}

/* Oculta el precio unitario debajo del nombre */
body.woocommerce-cart
.wc-block-cart-item__wrap
.wc-block-cart-item__prices {
	display: none !important;
}

/* Mantiene visible el precio total de la derecha */
body.woocommerce-cart
.wc-block-cart-item__total {
	display: block !important;
}

/* Recupera la imagen y el nombre principal del producto en el carrito */
body.woocommerce-cart .wc-block-cart-item__image,
body.woocommerce-cart .wc-block-cart-item__product,
body.woocommerce-cart .wc-block-cart-item__wrap,
body.woocommerce-cart .wc-block-components-product-name {
	opacity: 1 !important;
	visibility: visible !important;
}

body.woocommerce-cart .wc-block-cart-item__image {
	display: table-cell !important;
	width: 86px !important;
	min-width: 86px !important;
	padding-right: 16px !important;
	vertical-align: top !important;
}

body.woocommerce-cart .wc-block-cart-item__image a {
	display: block !important;
	width: 64px !important;
	height: 64px !important;
}

body.woocommerce-cart .wc-block-cart-item__image img {
	display: block !important;
	width: 64px !important;
	max-width: 64px !important;
	height: 64px !important;
	object-fit: cover;
	border-radius: 4px;
}

body.woocommerce-cart .wc-block-cart-item__product {
	display: table-cell !important;
	min-width: 0;
	vertical-align: top !important;
}

body.woocommerce-cart .wc-block-cart-item__wrap {
	display: block !important;
	min-width: 0;
}

body.woocommerce-cart .wc-block-components-product-name {
	display: inline-block !important;
	max-width: 100%;
	margin: 0 0 6px !important;
	color: var(--r7-color-heading) !important;
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	text-decoration: none !important;
}

body.woocommerce-cart .wc-block-components-product-name:hover,
body.woocommerce-cart .wc-block-components-product-name:focus-visible {
	color: var(--r7-color-primary) !important;
}

@media (max-width: 782px) {
	body.woocommerce-cart .wc-block-cart-item__image {
		width: 68px !important;
		min-width: 68px !important;
		padding-right: 12px !important;
	}

	body.woocommerce-cart .wc-block-cart-item__image a,
	body.woocommerce-cart .wc-block-cart-item__image img {
		width: 54px !important;
		max-width: 54px !important;
		height: 54px !important;
	}
}

/* ==================================================
   CARRITO: SELECTOR DE CANTIDAD
   ================================================== */

body.woocommerce-cart .wc-block-components-quantity-selector {
	display: inline-grid !important;
	grid-template-columns: 36px 48px 36px;
	align-items: center;
	width: 120px !important;
	height: 38px;
	margin: 8px 0 0 !important;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #cfd4d1 !important;
	border-radius: 6px !important;
	box-shadow: none !important;
}

/* Botones de restar y sumar */
body.woocommerce-cart
.wc-block-components-quantity-selector
.wc-block-components-quantity-selector__button {
	position: relative;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 36px !important;
	min-width: 36px !important;
	height: 38px !important;
	padding: 0 !important;
	margin: 0 !important;
	background: #168447 !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: transparent !important;
	font-size: 0 !important;
	line-height: 1 !important;
	cursor: pointer;
	box-shadow: none !important;
	opacity: 1 !important;
}

/* Símbolos nuevos */
body.woocommerce-cart
.wc-block-components-quantity-selector__button--minus::before {
	content: "−";
}

body.woocommerce-cart
.wc-block-components-quantity-selector__button--plus::before {
	content: "+";
}

body.woocommerce-cart
.wc-block-components-quantity-selector__button::before {
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 21px;
	font-weight: 600;
	line-height: 1;
}

/* Número central */
body.woocommerce-cart
.wc-block-components-quantity-selector__input {
	width: 48px !important;
	min-width: 0 !important;
	height: 38px !important;
	padding: 0 !important;
	margin: 0 !important;
	background: #ffffff !important;
	border: 0 !important;
	border-radius: 0 !important;
	color: #292b2b !important;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 16px !important;
	font-weight: 600;
	text-align: center;
	box-shadow: none !important;
	appearance: textfield;
}

/* Interacción */
body.woocommerce-cart
.wc-block-components-quantity-selector__button:hover {
	background: #106b38 !important;
}

body.woocommerce-cart
.wc-block-components-quantity-selector__button:focus-visible {
	outline: 2px solid #292b2b !important;
	outline-offset: -3px;
}

/* Botón deshabilitado */
body.woocommerce-cart
.wc-block-components-quantity-selector__button:disabled {
	background: #9da6a1 !important;
	cursor: not-allowed;
}

/* Elimina el borde generado por WooCommerce */
body.woocommerce-cart
.wc-block-components-quantity-selector::after {
	display: none !important;
}

/* Botón para eliminar productos del carrito */
body.woocommerce-cart .r7-cart-remove {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 46px;
	width: 46px !important;
	min-width: 46px !important;
	height: 46px !important;
	min-height: 46px !important;
	padding: 0 !important;
	background: #ffffff !important;
	border: 1px solid #d5d9d7 !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	color: #b42318 !important;
	line-height: 1 !important;
	transform: none !important;
	cursor: pointer;
}

body.woocommerce-cart .r7-cart-remove svg,
body.woocommerce-cart .r7-cart-remove svg * {
	color: currentColor !important;
	fill: currentColor !important;
	stroke: currentColor !important;
}

body.woocommerce-cart .r7-cart-remove svg {
	width: 24px;
	height: 24px;
	pointer-events: none;
}

body.woocommerce-cart .r7-cart-remove:hover,
body.woocommerce-cart .r7-cart-remove:focus-visible {
	background: #b42318 !important;
	border-color: #b42318 !important;
	color: #ffffff !important;
}

body.woocommerce-cart .r7-cart-remove:focus-visible {
	outline: 2px solid #b42318 !important;
	outline-offset: 2px;
}

/* ==================================================
   PRODUCTO: INFORMACIÓN DE ENVÍOS Y RETIROS
   ================================================== */

body.single-product.woocommerce div.product .summary .r7-product-disclosures {
	clear: both;
	width: 100%;
	max-width: 100%;
	margin: 26px 0 0;
	box-sizing: border-box;
	color: var(--r7-color-text);
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure {
	width: 100%;
	margin: 0;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--r7-color-border);
	border-radius: 8px;
	box-sizing: border-box;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure + .r7-product-disclosure {
	margin-top: 12px;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 54px;
	margin: 0;
	padding: 14px 18px;
	background: #f7f8f7;
	color: var(--r7-color-heading);
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	list-style: none;
	cursor: pointer;
	box-sizing: border-box;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__summary::-webkit-details-marker {
	display: none;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__summary::marker {
	content: "";
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__summary:focus-visible {
	outline: 3px solid var(--r7-color-primary);
	outline-offset: -3px;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	background: var(--r7-color-primary);
	border-radius: 50%;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	transition: background-color 160ms ease, transform 160ms ease;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__icon::before {
	content: "+";
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure[open] > .r7-product-disclosure__summary {
	background: #eef4ef;
	color: var(--r7-color-primary-hover);
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure[open] > .r7-product-disclosure__summary .r7-product-disclosure__icon {
	background: var(--r7-color-primary-hover);
	transform: rotate(180deg);
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure[open] > .r7-product-disclosure__summary .r7-product-disclosure__icon::before {
	content: "−";
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__content {
	padding: 16px 18px 18px;
	background: #ffffff;
	border-top: 1px solid var(--r7-color-border);
	box-sizing: border-box;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__shipping-rates {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-collapse: collapse !important;
	border-spacing: 0 !important;
	table-layout: fixed;
	box-shadow: none !important;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__shipping-rates tr {
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid #e3e7e4 !important;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__shipping-rates th,
body.single-product.woocommerce div.product .summary .r7-product-disclosure__shipping-rates td {
	padding: 9px 0 !important;
	background: transparent !important;
	border: 0 !important;
	color: var(--r7-color-text) !important;
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif !important;
	font-size: 15px !important;
	line-height: 1.3 !important;
	vertical-align: top;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__shipping-rates th {
	width: 52%;
	padding-right: 12px !important;
	font-weight: 600 !important;
	text-align: left !important;
	overflow-wrap: anywhere;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__shipping-rates td {
	width: 48%;
	font-weight: 700 !important;
	text-align: right !important;
	white-space: nowrap;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__shipping-notices {
	display: grid;
	gap: 8px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__shipping-notices li {
	position: relative;
	margin: 0;
	padding-left: 14px;
	color: var(--r7-color-text);
	font-size: 15px;
	line-height: 1.4;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__shipping-notices li::before {
	position: absolute;
	top: 0.58em;
	left: 0;
	width: 5px;
	height: 5px;
	background: var(--r7-color-primary);
	border-radius: 50%;
	content: "";
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__notice--important {
	color: var(--r7-color-heading) !important;
	font-weight: 700;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-list {
	margin: 0;
	padding: 0;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item {
	display: grid;
	grid-template-columns: minmax(88px, 0.32fr) minmax(0, 1fr);
	align-items: start;
	gap: 10px 16px;
	margin: 0;
	padding: 12px 0;
	border-bottom: 1px solid #e3e7e4;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item:first-child {
	padding-top: 0;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item dt,
body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item dd {
	margin: 0;
	color: var(--r7-color-text);
	font-size: 15px;
	line-height: 1.45;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item dt {
	color: var(--r7-color-heading);
	font-weight: 700;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item a {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-height: 44px;
	margin: -8px 0;
	padding: 8px 0;
	color: var(--r7-color-primary) !important;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	overflow-wrap: anywhere;
	box-sizing: border-box;
}

body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item a:is(:hover, :focus-visible) {
	color: var(--r7-color-primary-hover) !important;
	text-decoration-thickness: 2px;
}

@media (max-width: 480px) {
	body.single-product.woocommerce div.product .summary .r7-product-disclosure__summary {
		gap: 12px;
		padding: 14px;
		font-size: 17px;
	}

	body.single-product.woocommerce div.product .summary .r7-product-disclosure__content {
		padding: 14px;
	}

	body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item {
		display: block;
	}

	body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item dt {
		margin-bottom: 4px;
	}

	body.single-product.woocommerce div.product .summary .r7-product-disclosure__contact-item a {
		margin-block: -4px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.single-product.woocommerce div.product .summary .r7-product-disclosure__icon {
		transition-duration: 0.01ms;
	}
}

/* Amplía la imagen principal en la página del producto */
body.single-product
.woocommerce-product-gallery__image img {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	object-fit: contain;
}

/* ==================================================
   INICIO: PORTADA PRINCIPAL
   ================================================== */

body.home .r7-home-hero {
	position: relative;
	display: flex;
	align-items: center;
	width: 100vw !important;
	max-width: none !important;
	min-height: clamp(620px, calc(100svh - 120px), 880px);
	margin: 0 calc(50% - 50vw) !important;
	padding: clamp(60px, 9vw, 130px) max(24px, calc((100vw - 1200px) / 2));
	overflow: hidden;
	background-position: center center !important;
	background-size: cover !important;
	background-attachment: fixed;
	border-radius: 0 !important;
	isolation: isolate;
}

/* Capa oscura sobre la imagen */
body.home .r7-home-hero .wp-block-cover__background {
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgb(18 22 20 / 82%) 0%,
			rgb(18 22 20 / 58%) 48%,
			rgb(18 22 20 / 28%) 100%
		) !important;
	opacity: 1 !important;
}

/* Degradado inferior */
body.home .r7-home-hero::after {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	left: 0;
	height: 28%;
	background: linear-gradient(
		to bottom,
		transparent,
		rgb(20 24 22 / 88%)
	);
	content: "";
	pointer-events: none;
}

/* Contenido */
body.home .r7-home-hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
	width: min(100%, 1200px);
	margin-inline: auto;
}

body.home .r7-home-hero .r7-home-hero__logo {
	display: block;
	width: clamp(260px, 30vw, 360px);
	max-width: 100%;
	height: auto;
	margin: clamp(12px, 1.5vw, 18px) 0;
	object-fit: contain;
}

/* Celulares */
@media (max-width: 767px) {
	body.home .r7-home-hero {
		min-height: calc(100svh - 90px);
		padding: 70px 22px;
		background-attachment: scroll;
		background-position: center center !important;
	}

	body.home .r7-home-hero .wp-block-cover__background {
		background: rgb(18 22 20 / 66%) !important;
	}

	body.home .r7-home-hero .r7-home-hero__logo {
		width: min(82vw, 300px);
		margin-block: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.home .r7-home-hero {
		background-attachment: scroll;
	}
}

/* Ocultar únicamente el título automático de la página Inicio */
body.home .entry-hero.page-hero-section,
body.home .content-area .entry-header {
	display: none;
}

/* Sección de ubicación de la página Inicio */
body.home .r7-location-section {
	padding: clamp(55px, 7vw, 90px) 24px;
	background: #f2f4f3;
}

body.home .r7-location-section > h2 {
	margin: 0 0 38px;
	color: #2d3335;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 700;
	text-align: center;
}

body.home .r7-location-section > h2::after {
	display: block;
	width: 58px;
	height: 4px;
	margin: 14px auto 0;
	background: #2f6f3e;
	border-radius: 10px;
	content: "";
}

body.home .r7-location-grid {
	display: grid !important;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.5fr);
	gap: 24px !important;
	max-width: 1200px;
	margin: 0 auto !important;
}

body.home .r7-location-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(28px, 4vw, 42px);
	background: #ffffff;
	border-top: 5px solid #2f6f3e;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgb(24 35 29 / 10%);
}

body.home .r7-location-info p {
	margin: 0 0 24px;
	color: #4a504d;
	font-size: 17px;
	line-height: 1.6;
}


body.home .r7-location-social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 9px;
	margin-top: 6px;
}

body.home .r7-location-whatsapp,
body.home .r7-location-instagram {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	max-width: 100%;
	padding: 9px 11px;
	border-radius: 10px;
	box-shadow: none;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.home .r7-location-whatsapp {
	background: #edf9f1;
	border: 1px solid rgb(37 211 102 / 38%);
	color: #12733c;
}

body.home .r7-location-whatsapp__icon,
body.home .r7-location-instagram__icon {
	display: grid;
	place-items: center;
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
}

body.home .r7-location-whatsapp__icon {
	background: #25d366;
}

body.home .r7-location-whatsapp__icon img {
	display: block;
	width: 15px;
	height: 15px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

body.home .r7-location-whatsapp__copy,
body.home .r7-location-instagram__copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	line-height: 1.18;
}

body.home .r7-location-whatsapp__copy strong {
	color: #10783b;
	font-size: 13px;
	font-weight: 750;
}

body.home .r7-location-whatsapp__copy span {
	margin-top: 2px;
	color: #178c4d;
	font-size: 12px;
	font-weight: 650;
}

body.home .r7-location-instagram {
	background: #fff;
	border: 1px solid rgb(54 58 56 / 14%);
	color: #303633;
}

body.home .r7-location-instagram__icon {
	color: #c72d7b;
	background: #fff5fa;
}

body.home .r7-location-instagram__icon svg {
	display: block;
	width: 17px;
	height: 17px;
	fill: currentColor;
}

body.home .r7-location-instagram__copy strong {
	color: #303633;
	font-size: 13px;
	font-weight: 700;
}

body.home .r7-location-instagram__copy span {
	margin-top: 2px;
	color: #666d69;
	font-size: 12px;
	font-weight: 600;
}

@media (hover: hover) {
	body.home .r7-location-whatsapp:hover {
		background: #e4f7eb;
		border-color: rgb(37 211 102 / 62%);
		box-shadow: 0 4px 10px rgb(18 115 60 / 10%);
		transform: translateY(-1px);
		color: #12733c;
	}

	body.home .r7-location-instagram:hover {
		background: #fff8fb;
		border-color: rgb(199 45 123 / 25%);
		box-shadow: 0 4px 10px rgb(90 42 68 / 8%);
		transform: translateY(-1px);
		color: #303633;
	}
}

body.home .r7-location-whatsapp:focus-visible,
body.home .r7-location-instagram:focus-visible {
	outline: 2px solid rgb(33 140 77 / 28%);
	outline-offset: 2px;
}

body.home .r7-home-map {
	height: 100%;
	min-height: 420px;
	border: 0;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgb(24 35 29 / 10%);
}

body.home .r7-home-map iframe {
	width: 100%;
	height: 100%;
	min-height: 420px;
}

@media (max-width: 767px) {
	body.home .r7-location-grid {
		grid-template-columns: 1fr;
	}

	body.home .r7-home-map,
	body.home .r7-home-map iframe {
		min-height: 340px;
	}
}

/* Entrada animada del contenido principal */
body.home .r7-home-hero .r7-hero-content > *:not(.screen-reader-text),
body.home
.r7-home-hero
.r7-hero-content
> .wp-block-group__inner-container
> *:not(.screen-reader-text) {
	opacity: 0;
	transform: translate3d(-65px, 0, 0);
	animation: r7-hero-enter 900ms cubic-bezier(.22, 1, .36, 1) forwards;
}

/* Subtitulo */
body.home .r7-home-hero .r7-hero-content > .r7-home-hero__subtitle,
body.home
.r7-home-hero
.r7-hero-content
> .wp-block-group__inner-container
> .r7-home-hero__subtitle {
	animation-delay: 180ms;
}

/* Logo */
body.home .r7-home-hero .r7-hero-content > .r7-home-hero__logo,
body.home
.r7-home-hero
.r7-hero-content
> .wp-block-group__inner-container
> .r7-home-hero__logo {
	animation-delay: 380ms;
}

/* Descripcion */
body.home .r7-home-hero .r7-hero-content > .r7-home-hero__description,
body.home
.r7-home-hero
.r7-hero-content
> .wp-block-group__inner-container
> .r7-home-hero__description {
	animation-delay: 580ms;
}

/* Botones */
body.home .r7-home-hero .r7-hero-content > .wp-block-buttons,
body.home
.r7-home-hero
.r7-hero-content
> .wp-block-group__inner-container
> .wp-block-buttons {
	animation-delay: 780ms;
}

@keyframes r7-hero-enter {
	from {
		opacity: 0;
		transform: translate3d(-65px, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* Accesibilidad: desactivar movimientos si el usuario lo solicita */
@media (prefers-reduced-motion: reduce) {
	body.home .r7-home-hero .r7-hero-content > *,
	body.home
	.r7-home-hero
	.r7-hero-content
	> .wp-block-group__inner-container
	> * {
		opacity: 1;
		transform: none;
		animation: none;
	}
}

/* ==================================================
   SERVICIOS: PORTADA, CARRUSEL Y COTIZADORES
   ================================================== */

body.page-id-269 {
	--r7-services-green: #2f6f3e;
	--r7-services-green-dark: #245a32;
	--r7-services-graphite: #2d3335;
	--r7-services-muted: #5f6763;
	--r7-services-border: #dce1de;
	--r7-services-surface: #ffffff;
	--r7-services-background: #f5f5f5;
}

/* El fondo se limita al contenido de Servicios: no alcanza cabecera ni pie. */
body.page-id-269 #primary,
body.page-id-269 .content-area,
body.page-id-269 main.site-main,
body.page-id-269 main.site-main > article,
body.page-id-269 main.site-main .entry-content-wrap,
body.page-id-269 main.site-main .entry-content {
	background: var(--r7-services-background);
}

body.page-id-269 #primary,
body.page-id-269 main.site-main {
	overflow-x: hidden;
	overflow-x: clip;
}

/* Portada con diapositivas superpuestas para evitar saltos o fondos blancos. */
body.page-id-269 .r7-services-hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: clamp(520px, 66svh, 620px);
	overflow: hidden;
	background: #1f2522;
	color: #ffffff;
	isolation: isolate;
}

body.page-id-269 .r7-services-hero__slides,
body.page-id-269 .r7-services-hero__slide {
	position: absolute;
	inset: 0;
}

body.page-id-269 .r7-services-hero__slides {
	z-index: 1;
	overflow: hidden;
	background: transparent;
}

body.page-id-269 .r7-services-hero__slide {
	visibility: hidden;
	z-index: 0;
	margin: 0;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 900ms ease,
		visibility 0s linear 900ms;
}

body.page-id-269 .r7-services-hero__slide.is-active {
	visibility: visible;
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0s;
}

body.page-id-269 .r7-services-hero__slide img,
body.page-id-269 .r7-services-hero__slide picture,
body.page-id-269 .r7-services-hero__slide picture img {
	display: block;
	width: 100%;
	height: 100%;
}

body.page-id-269 .r7-services-hero__slide img,
body.page-id-269 .r7-services-hero__slide picture img {
	object-fit: cover;
	object-position: center;
}

body.page-id-269 .r7-services-hero::after {
	position: absolute;
	z-index: 2;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgb(18 23 20 / 78%) 0%,
		rgb(18 23 20 / 54%) 52%,
		rgb(18 23 20 / 34%) 100%
	);
	content: "";
	pointer-events: none;
}

/* La capa propia evita oscurecer dos veces el fondo nativo del bloque Cover. */
body.page-id-269 .r7-services-hero > .wp-block-cover__background {
	opacity: 0 !important;
}

body.page-id-269 .r7-services-hero__overlay {
	position: absolute;
	z-index: 2;
	inset: 0;
	pointer-events: none;
}

body.page-id-269 .r7-services-hero__content,
body.page-id-269 .r7-services-hero__inner,
body.page-id-269 .r7-services-hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 3;
	width: min(100%, 1200px);
	margin-inline: auto;
	padding: clamp(48px, 7vw, 92px) clamp(22px, 5vw, 56px);
}

body.page-id-269 .r7-services-hero__content h1,
body.page-id-269 .r7-services-hero__content h2,
body.page-id-269 .r7-services-hero__content p,
body.page-id-269 .r7-services-hero__inner h1,
body.page-id-269 .r7-services-hero__inner h2,
body.page-id-269 .r7-services-hero__inner p {
	color: inherit;
	text-shadow: 0 3px 16px rgb(0 0 0 / 38%);
}

/* Carrusel liviano: la variable también informa a JavaScript cuántas fichas mostrar. */
body.page-id-269 .r7-services-carousel {
	--r7-services-per-view: 3;
	--r7-services-gap: 24px;
	--r7-services-card-size: calc(33.333333% - 16px);
	position: relative;
	width: min(100%, 1200px);
	margin-inline: auto;
	padding: clamp(44px, 6vw, 76px) clamp(54px, 6vw, 72px);
	font-family: "Roboto Condensed", sans-serif;
}

body.page-id-269 #cotizar-servicio {
	scroll-margin-top: 104px;
}

body.admin-bar.page-id-269 #cotizar-servicio {
	scroll-margin-top: 136px;
}

body.page-id-269 .r7-services-carousel__viewport {
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
}

body.page-id-269 .r7-services-carousel__track {
	display: flex;
	align-items: stretch;
	gap: var(--r7-services-gap);
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	will-change: transform;
	transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
}

body.page-id-269 .r7-service-card {
	display: flex;
	flex: 0 0 var(--r7-services-card-size);
	flex-direction: column;
	min-width: 0;
	height: auto;
	overflow: hidden;
	background: var(--r7-services-surface);
	border: 1px solid rgb(45 51 53 / 9%);
	border-radius: 0 0 12px 12px;
	box-shadow: 0 10px 28px rgb(24 35 29 / 9%);
}

body.page-id-269 .r7-service-card__media-wrap {
	width: 100%;
	margin: 0;
	padding: 0;
	gap: 0;
}

body.page-id-269 .r7-service-card__media {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	background: #edf0ee;
	border-radius: 0 !important;
	aspect-ratio: 16 / 10;
}

body.page-id-269 .r7-service-card__media img,
body.page-id-269 .r7-service-card__media picture,
body.page-id-269 .r7-service-card__media picture img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0 !important;
}

body.page-id-269 .r7-service-card__media img,
body.page-id-269 .r7-service-card__media picture img {
	object-fit: cover;
	object-position: center;
}

body.page-id-269 .r7-service-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: stretch;
	padding: clamp(20px, 2.4vw, 28px);
	color: var(--r7-services-graphite);
}

body.page-id-269 .r7-service-card__body h2,
body.page-id-269 .r7-service-card__body h3 {
	margin: 0 0 12px;
	color: var(--r7-services-graphite);
	font-family: "Roboto Condensed", sans-serif;
	line-height: 1.2;
}

body.page-id-269 .r7-service-card__body p {
	margin: 0 0 20px;
	color: var(--r7-services-muted);
	line-height: 1.55;
}

body.page-id-269 .r7-service-card__body .wp-block-buttons,
body.page-id-269 .r7-service-card__body .wp-block-button,
body.page-id-269 .r7-service-card__actions,
body.page-id-269 .r7-service-card__body > a:last-child {
	margin-top: auto;
}

body.page-id-269 .r7-service-card__body .wp-block-button {
	width: 100%;
}

body.page-id-269 .r7-service-card__actions {
	display: flex;
	align-items: stretch;
	width: 100%;
	padding-top: 4px;
}

body.page-id-269 .r7-service-card__body .wp-block-button__link,
body.page-id-269 .r7-service-card__quote,
body.page-id-269 .r7-service-card__body > a:last-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	border-radius: 6px;
	text-align: center;
}

body.page-id-269 .r7-service-card__quote:focus-visible {
	outline: 3px solid rgb(47 111 62 / 28%);
	outline-offset: 3px;
}

body.page-id-269 .r7-services-carousel__controls {
	position: absolute;
	z-index: 4;
	inset: 0;
	margin: 0;
	pointer-events: none;
}

body.page-id-269 .r7-services-carousel__arrow {
	position: absolute;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	min-height: 42px;
	padding: 0;
	background: #ffffff !important;
	border: 1px solid #cfd6d2 !important;
	border-radius: 50%;
	color: var(--r7-services-green) !important;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 14px rgb(24 35 29 / 8%);
	transform: translateY(-50%);
	pointer-events: auto;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

body.page-id-269 .r7-services-carousel__arrow--prev {
	left: clamp(5px, 1vw, 14px);
}

body.page-id-269 .r7-services-carousel__arrow--next {
	right: clamp(5px, 1vw, 14px);
}

body.page-id-269 .r7-services-carousel__arrow svg {
	width: 18px;
	height: 18px;
	color: currentColor !important;
	fill: currentColor !important;
	stroke: currentColor !important;
}

body.page-id-269 .r7-services-carousel__arrow:hover {
	background: var(--r7-services-green) !important;
	border-color: var(--r7-services-green) !important;
	color: #ffffff !important;
	transform: translateY(-50%) scale(1.03);
}

body.page-id-269 .r7-services-carousel__arrow:focus-visible {
	background: var(--r7-services-green) !important;
	border-color: var(--r7-services-green) !important;
	color: #ffffff !important;
	outline: 3px solid rgb(47 111 62 / 30%);
	outline-offset: 3px;
}

body.page-id-269 .r7-services-carousel__status {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	border: 0 !important;
	white-space: nowrap !important;
}

/* Páginas individuales: componente reutilizable del futuro cotizador. */
body.r7-service-quote-page {
	--r7-service-quote-green: #2f6f3e;
	--r7-service-quote-green-dark: #245a32;
	--r7-service-quote-graphite: #2d3335;
	--r7-service-quote-muted: #5f6763;
	--r7-service-quote-border: #dce1de;
	--r7-service-quote-background: #f5f5f5;
}

body.r7-service-quote-page #primary,
body.r7-service-quote-page .content-area,
body.r7-service-quote-page main.site-main,
body.r7-service-quote-page main.site-main > article,
body.r7-service-quote-page main.site-main .entry-content-wrap,
body.r7-service-quote-page main.site-main .entry-content {
	background: var(--r7-service-quote-background);
}

body.r7-service-quote-page #primary,
body.r7-service-quote-page main.site-main {
	overflow-x: hidden;
	overflow-x: clip;
}

body.r7-service-quote-page .entry-hero.page-hero-section,
body.r7-service-quote-page .content-area > .entry-header,
body.r7-service-quote-page main.site-main > article > .entry-header {
	display: none;
}

.r7-service-quote {
	width: min(100%, 1200px);
	margin-inline: auto;
	padding: clamp(32px, 5vw, 72px) clamp(18px, 3vw, 28px);
	color: var(--r7-service-quote-graphite, #2d3335);
	font-family: "Roboto Condensed", sans-serif;
}

.r7-service-quote .r7-service-quote__header {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
	align-items: stretch;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--r7-service-quote-border, #dce1de);
	border-radius: 14px;
	box-shadow: 0 12px 34px rgb(24 35 29 / 10%);
}

.r7-service-quote .r7-service-quote__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 390px;
	margin: 0;
	object-fit: cover;
	object-position: center;
}

.r7-service-quote .r7-service-quote__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(30px, 5vw, 58px);
}

.r7-service-quote .r7-service-quote__content h1 {
	margin: 0 0 18px;
	color: var(--r7-service-quote-graphite, #2d3335);
	font-family: "Roboto Condensed", sans-serif;
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.08;
}

.r7-service-quote .r7-service-quote__description {
	margin: 0;
	color: var(--r7-service-quote-muted, #5f6763);
	font-size: clamp(17px, 1.8vw, 20px);
	line-height: 1.6;
}

.r7-service-quote .r7-service-quote__calculator {
	margin-top: clamp(24px, 4vw, 38px);
	padding: clamp(24px, 4vw, 42px);
	background: #ffffff;
	border: 1px solid var(--r7-service-quote-border, #dce1de);
	border-top: 5px solid var(--r7-service-quote-green, #2f6f3e);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgb(24 35 29 / 8%);
}

.r7-service-quote .r7-service-quote__calculator h2 {
	margin: 0 0 20px;
	color: var(--r7-service-quote-graphite, #2d3335);
	font-family: "Roboto Condensed", sans-serif;
	font-size: clamp(26px, 3vw, 36px);
}

.r7-service-quote .r7-service-quote__table {
	width: 100%;
	padding: clamp(22px, 4vw, 34px);
	overflow-x: auto;
	background: #f3f6f4;
	border: 1px dashed #b9c5be;
	border-radius: 8px;
	color: var(--r7-service-quote-graphite, #2d3335);
	text-align: center;
}

.r7-service-quote .r7-service-quote__placeholder {
	margin: 14px 0;
	padding: 18px;
	background: #ffffff;
	border: 0;
	border-radius: 6px;
	color: var(--r7-service-quote-green, #2f6f3e);
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 700;
	text-align: center;
}

.r7-service-quote .r7-service-quote__placeholder strong,
.r7-service-quote .r7-service-quote__table > strong:first-child {
	display: block;
	margin-bottom: 8px;
	color: var(--r7-service-quote-green, #2f6f3e);
	font-size: clamp(20px, 2.4vw, 26px);
}

.r7-service-quote .r7-service-quote__table table {
	width: 100%;
	min-width: 620px;
	margin: 0;
	border-collapse: collapse;
	text-align: left;
}

.r7-service-quote .r7-service-quote__calculator :is(input, select, textarea) {
	max-width: 100%;
	border: 1px solid #bfc8c3;
	border-radius: 6px;
}

.r7-service-quote .r7-service-quote__calculator :is(input, select, textarea):focus-visible {
	border-color: var(--r7-service-quote-green, #2f6f3e);
	outline: 3px solid rgb(47 111 62 / 24%);
	outline-offset: 1px;
}

.r7-service-quote .r7-service-quote__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	margin-top: 18px;
	padding: 12px 22px;
	background: #218c4d !important;
	border: 2px solid #218c4d !important;
	border-radius: 7px;
	color: #ffffff !important;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition:
		background-color 180ms ease,
		border-color 180ms ease;
}

.r7-service-quote .r7-service-quote__whatsapp:hover {
	background: #176d3a !important;
	border-color: #176d3a !important;
	color: #ffffff !important;
}

.r7-service-quote .r7-service-quote__whatsapp:focus-visible {
	background: #176d3a !important;
	border-color: #176d3a !important;
	color: #ffffff !important;
	outline: 3px solid rgb(33 140 77 / 30%);
	outline-offset: 3px;
}

@media (max-width: 1024px) {
	body.page-id-269 .r7-services-carousel {
		--r7-services-per-view: 2;
		--r7-services-card-size: calc(50% - 12px);
	}

	body.page-id-269 .r7-services-hero {
		min-height: clamp(500px, 64svh, 580px);
	}

	.r7-service-quote .r7-service-quote__header {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
	}
}

@media (max-width: 767px) {
	body.page-id-269 .r7-services-hero {
		min-height: clamp(440px, 70svh, 540px);
	}

	body.page-id-269 .r7-services-hero::after {
		background: rgb(18 23 20 / 66%);
	}

	body.page-id-269 .r7-services-hero__content,
	body.page-id-269 .r7-services-hero__inner,
	body.page-id-269 .r7-services-hero .wp-block-cover__inner-container {
		padding: 44px 20px;
	}

	body.page-id-269 .r7-services-carousel {
		--r7-services-per-view: 1;
		--r7-services-gap: 16px;
		--r7-services-card-size: 100%;
		padding: 38px 48px 48px;
	}

	body.page-id-269 #cotizar-servicio {
		scroll-margin-top: 96px;
	}

	body.admin-bar.page-id-269 #cotizar-servicio {
		scroll-margin-top: 150px;
	}

	body.page-id-269 .r7-services-carousel__arrow {
		width: 38px;
		height: 38px;
		min-height: 38px;
	}

	body.page-id-269 .r7-services-carousel__arrow--prev {
		left: 4px;
	}

	body.page-id-269 .r7-services-carousel__arrow--next {
		right: 4px;
	}

	body.page-id-269 .r7-service-card__body {
		padding: 22px;
	}

	.r7-service-quote {
		padding: 28px 16px 46px;
	}

	.r7-service-quote .r7-service-quote__header {
		grid-template-columns: minmax(0, 1fr);
	}

	.r7-service-quote .r7-service-quote__image {
		min-height: 250px;
		max-height: 360px;
	}

	.r7-service-quote .r7-service-quote__content,
	.r7-service-quote .r7-service-quote__calculator {
		padding: 24px 20px;
	}

	.r7-service-quote .r7-service-quote__content h1 {
		font-size: clamp(32px, 10vw, 44px);
	}
}

@media (prefers-reduced-motion: reduce) {
	body.page-id-269 .r7-services-hero__slide,
	body.page-id-269 .r7-services-carousel__track,
	body.page-id-269 .r7-services-carousel__arrow,
	.r7-service-quote .r7-service-quote__whatsapp {
		transition: none !important;
	}

	body.page-id-269 .r7-services-carousel__track {
		scroll-behavior: auto;
	}
}

/* ==================================================
   PRODUCTOS DE SERVICIO: FICHA Y COTIZADOR
   ================================================== */

body.single-product.woocommerce.r7-service-product {
	--r7-service-product-green: #2f6f3e;
	--r7-service-product-green-dark: #245a32;
	--r7-service-product-whatsapp: #218c4d;
	--r7-service-product-whatsapp-dark: #176d3a;
	--r7-service-product-graphite: #2d3335;
	--r7-service-product-muted: #5f6763;
	--r7-service-product-border: #dce1de;
	--r7-service-product-soft: #f3f6f4;
	--r7-service-product-surface: #ffffff;
	--r7-service-product-shadow: 0 12px 34px rgb(24 35 29 / 10%);
	background: #f5f6f4;
}

body.single-product.woocommerce.r7-service-product :where(
	#primary,
	.content-area,
	.site-main,
	div.product,
	.woocommerce-product-gallery,
	.summary,
	.r7-service-product-calculator,
	.r7-service-product-quote-only
) {
	min-width: 0;
}

body.single-product.woocommerce.r7-service-product :where(#primary, .site-main) {
	overflow-x: hidden;
	overflow-x: clip;
}

body.single-product.woocommerce.r7-service-product div.product {
	display: grid !important;
	grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
	align-items: start;
	gap: clamp(28px, 4vw, 54px);
	width: min(100%, 1200px);
	max-width: 100%;
	margin-inline: auto;
	color: var(--r7-service-product-graphite);
	font-family: "Roboto Condensed", sans-serif;
}

body.single-product.woocommerce.r7-service-product div.product > :where(
	.woocommerce-product-gallery,
	.summary
) {
	float: none !important;
	width: 100% !important;
	max-width: 100%;
	margin: 0 !important;
}

body.single-product.woocommerce.r7-service-product div.product > :where(
	.woocommerce-tabs,
	.related,
	.upsells
) {
	grid-column: 1 / -1;
	width: 100%;
}

body.single-product.woocommerce.r7-service-product .woocommerce-product-gallery {
	align-self: start;
	padding: clamp(12px, 2vw, 18px);
	background: var(--r7-service-product-surface);
	border: 1px solid var(--r7-service-product-border);
	border-radius: 12px;
	box-shadow: var(--r7-service-product-shadow);
}

body.single-product.woocommerce.r7-service-product .woocommerce-product-gallery__wrapper {
	margin: 0;
}

body.single-product.woocommerce.r7-service-product .woocommerce-product-gallery__image {
	overflow: hidden;
	background: var(--r7-service-product-soft);
	border-radius: 8px;
}

body.single-product.woocommerce.r7-service-product
.woocommerce-product-gallery__image img {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	margin: 0 auto;
	object-fit: contain;
}

body.single-product.woocommerce.r7-service-product div.product > .summary {
	padding: clamp(24px, 4vw, 42px);
	background: var(--r7-service-product-surface);
	border: 1px solid var(--r7-service-product-border);
	border-radius: 12px;
	box-shadow: var(--r7-service-product-shadow);
}

body.single-product.woocommerce.r7-service-product .summary .product_title {
	margin: 0 0 16px;
	color: var(--r7-service-product-graphite) !important;
	font-family: "Roboto Condensed", sans-serif;
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

body.single-product.woocommerce.r7-service-product
.summary .woocommerce-product-details__short-description {
	margin-bottom: 24px;
	color: var(--r7-service-product-muted);
	font-size: 17px;
	line-height: 1.65;
}

body.single-product.woocommerce.r7-service-product
.summary .woocommerce-product-details__short-description > :last-child {
	margin-bottom: 0;
}

body.single-product.woocommerce.r7-service-product .r7-service-product-calculator {
	display: grid;
	gap: 18px;
	width: 100%;
	max-width: 100%;
	margin-top: 24px;
	padding: clamp(22px, 3vw, 30px);
	background: var(--r7-service-product-soft);
	border: 1px solid var(--r7-service-product-border);
	border-top: 4px solid var(--r7-service-product-green);
	border-radius: 10px;
	box-shadow: 0 8px 22px rgb(24 35 29 / 7%);
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator--quote-configurator {
	border-top-color: var(--r7-service-product-graphite);
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(h2, h3, legend) {
	margin: 0;
	color: var(--r7-service-product-graphite) !important;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator > h2 {
	font-size: clamp(25px, 3vw, 32px);
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(fieldset, .r7-service-product-calculator__fieldset) {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(
	.r7-service-product-calculator__field,
	.form-row
) {
	min-width: 0;
	margin: 0;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(label, .r7-service-product-calculator__label) {
	display: block;
	margin: 0 0 7px;
	color: var(--r7-service-product-graphite);
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(
	input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
	select,
	textarea
) {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 10px 13px;
	background: var(--r7-service-product-surface) !important;
	border: 1px solid #bbc5bf !important;
	border-radius: 7px !important;
	color: var(--r7-service-product-graphite) !important;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 16px;
	line-height: 1.3;
	box-shadow: none !important;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator textarea {
	min-height: 110px;
	resize: vertical;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(input, select, textarea):focus-visible {
	border-color: var(--r7-service-product-green) !important;
	outline: 3px solid rgb(47 111 62 / 22%);
	outline-offset: 1px;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(.description, .r7-service-product-calculator__help) {
	display: block;
	margin: 7px 0 0;
	color: var(--r7-service-product-muted);
	font-size: 14px;
	line-height: 1.45;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator__summary {
	display: grid;
	gap: 12px;
	width: 100%;
	padding: 18px;
	background: var(--r7-service-product-graphite);
	border-radius: 8px;
	color: #ffffff;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator__summary-row,
body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator__summary > p {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator__summary > p {
	margin: 0;
	color: rgb(255 255 255 / 78%);
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator__summary-row > :first-child {
	color: rgb(255 255 255 / 78%);
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(
	[data-r7-unit-price],
	[data-r7-total],
	[data-r7-curving-unit-price],
	[data-r7-curving-total]
) {
	color: #ffffff;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	text-align: right;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator__summary-row--total,
body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator__summary > p:last-child {
	padding-top: 12px;
	border-top: 1px solid rgb(255 255 255 / 20%);
	font-size: clamp(20px, 3vw, 26px);
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator__summary-row--total [data-r7-total],
body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator__summary > p:last-child :where([data-r7-total], [data-r7-curving-total]) {
	color: #bfe1c6;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(form.cart, .r7-service-product-calculator__actions) {
	display: grid !important;
	gap: 12px;
	width: 100%;
	margin: 0 !important;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(
	.single_add_to_cart_button,
	.r7-service-product-calculator__submit
) {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	min-height: 54px;
	margin: 0 !important;
	padding: 12px 20px !important;
	background: var(--r7-service-product-green) !important;
	border: 2px solid var(--r7-service-product-green) !important;
	border-radius: 7px !important;
	color: #ffffff !important;
	font-family: "Roboto Condensed", sans-serif !important;
	font-size: 17px !important;
	font-weight: 700 !important;
	line-height: 1.2;
	text-align: center;
	box-shadow: none !important;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(
	.single_add_to_cart_button,
	.r7-service-product-calculator__submit
):is(:hover, :focus-visible) {
	background: var(--r7-service-product-green-dark) !important;
	border-color: var(--r7-service-product-green-dark) !important;
	color: #ffffff !important;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator :where(
	.single_add_to_cart_button,
	.r7-service-product-calculator__submit
):disabled {
	background: #9ba59f !important;
	border-color: #9ba59f !important;
	color: #ffffff !important;
	cursor: not-allowed;
	opacity: 1;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-quote-only {
	display: grid;
	gap: 14px;
	width: 100%;
	margin-top: 24px;
	padding: clamp(20px, 3vw, 28px);
	background: var(--r7-service-product-soft);
	border: 1px solid var(--r7-service-product-border);
	border-top: 4px solid var(--r7-service-product-whatsapp);
	border-radius: 10px;
}

body.single-product.woocommerce.r7-service-product
:where(
	.r7-service-product-calculator__whatsapp,
	.r7-service-product__whatsapp,
	.r7-service-product-quote-only a[href*="wa.me"]
) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 11px 18px;
	background: var(--r7-service-product-whatsapp) !important;
	border: 2px solid var(--r7-service-product-whatsapp) !important;
	border-radius: 7px;
	color: #ffffff !important;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	text-decoration: none !important;
	transition: background-color 180ms ease, border-color 180ms ease;
}

body.single-product.woocommerce.r7-service-product
:where(
	.r7-service-product-calculator__whatsapp,
	.r7-service-product__whatsapp,
	.r7-service-product-quote-only a[href*="wa.me"]
):is(:hover, :focus-visible) {
	background: var(--r7-service-product-whatsapp-dark) !important;
	border-color: var(--r7-service-product-whatsapp-dark) !important;
	color: #ffffff !important;
}

body.single-product.woocommerce.r7-service-product
:where(
	.r7-service-product-calculator__downloads,
	.r7-service-product__downloads
) {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
}

body.single-product.woocommerce.r7-service-product
:where(
	.r7-service-product-calculator__download,
	.r7-service-product__download,
	.r7-service-product-quote-only__download
) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 10px 16px;
	background: var(--r7-service-product-surface) !important;
	border: 2px solid var(--r7-service-product-green) !important;
	border-radius: 7px;
	color: var(--r7-service-product-green) !important;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	text-decoration: none !important;
	transition: background-color 180ms ease, color 180ms ease;
}

body.single-product.woocommerce.r7-service-product
:where(
	.r7-service-product-calculator__download,
	.r7-service-product__download,
	.r7-service-product-quote-only__download
):is(:hover, :focus-visible) {
	background: var(--r7-service-product-green) !important;
	color: #ffffff !important;
}

body.single-product.woocommerce.r7-service-product
:where(
	.r7-service-product-calculator__notice,
	.r7-service-product-calculator__status,
	.r7-service-product-quote-only__notice,
	.r7-service-product-quote-only [role="status"]
) {
	margin: 0;
	padding: 12px 14px;
	background: #ffffff;
	border: 1px solid var(--r7-service-product-border);
	border-left: 4px solid var(--r7-service-product-green);
	border-radius: 6px;
	color: var(--r7-service-product-muted);
	font-size: 14px;
	line-height: 1.5;
}

body.single-product.woocommerce.r7-service-product
.r7-service-product-calculator [role="alert"] {
	margin: 0;
	padding: 12px 14px;
	background: #fff4f2;
	border: 1px solid #efc5bf;
	border-left: 4px solid #b42318;
	border-radius: 6px;
	color: #7a271f;
	font-size: 14px;
	line-height: 1.5;
}

@media (max-width: 1024px) {
	body.single-product.woocommerce.r7-service-product div.product {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 0.95fr);
		gap: 28px;
	}

	body.single-product.woocommerce.r7-service-product div.product > .summary {
		padding: 26px;
	}
}

@media (max-width: 900px) {
	body.single-product.woocommerce.r7-service-product div.product {
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product.woocommerce.r7-service-product div.product > :where(
		.woocommerce-product-gallery,
		.summary,
		.woocommerce-tabs,
		.related,
		.upsells
	) {
		grid-column: 1;
	}
}

@media (max-width: 767px) {
	body.single-product.woocommerce.r7-service-product div.product {
		gap: 20px;
	}

	body.single-product.woocommerce.r7-service-product .woocommerce-product-gallery {
		padding: 8px;
		border-radius: 9px;
	}

	body.single-product.woocommerce.r7-service-product div.product > .summary {
		padding: 22px 18px;
		border-radius: 9px;
	}

	body.single-product.woocommerce.r7-service-product .summary .product_title {
		font-size: clamp(31px, 10vw, 42px);
	}

	body.single-product.woocommerce.r7-service-product .r7-service-product-calculator,
	body.single-product.woocommerce.r7-service-product .r7-service-product-quote-only {
		padding: 20px 16px;
	}

	body.single-product.woocommerce.r7-service-product
	.r7-service-product-calculator__fields,
	body.single-product.woocommerce.r7-service-product
	:where(
		.r7-service-product-calculator__downloads,
		.r7-service-product__downloads
	) {
		grid-template-columns: minmax(0, 1fr);
	}

	body.single-product.woocommerce.r7-service-product
	.r7-service-product-calculator__summary-row,
	body.single-product.woocommerce.r7-service-product
	.r7-service-product-calculator__summary > p {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	body.single-product.woocommerce.r7-service-product
	.r7-service-product-calculator :where(
		[data-r7-unit-price],
		[data-r7-total],
		[data-r7-curving-unit-price],
		[data-r7-curving-total]
	) {
		width: 100%;
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.single-product.woocommerce.r7-service-product
	:where(
		.r7-service-product-calculator__submit,
		.single_add_to_cart_button,
		.r7-service-product-calculator__whatsapp,
		.r7-service-product__whatsapp,
		.r7-service-product-calculator__download,
		.r7-service-product__download,
		.r7-service-product-quote-only__download
	) {
		transition: none !important;
	}
}

/* ==================================================
   CATÁLOGO: ARCHIVO DE PRODUCTOS
   ================================================== */

body.r7-catalog-archive #primary {
	width: 100%;
	max-width: none;
}

body.r7-catalog-archive #primary > .content-container.site-container {
	width: 100%;
	max-width: 1320px;
	padding-inline: 24px;
}

body.r7-catalog-archive .woocommerce-products-header {
	margin: 0 0 clamp(30px, 4vw, 52px);
	padding: 0;
}

body.r7-catalog-archive .r7-catalog-heading {
	text-align: center;
}

body.r7-catalog-archive .r7-catalog-heading__title,
body.r7-catalog-archive .woocommerce-products-header .page-title {
	margin: 0;
	color: #2d3335;
	font-family: "Roboto Condensed", sans-serif;
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	text-align: center;
}

body.r7-catalog-archive .r7-catalog-heading__title::after,
body.r7-catalog-archive .woocommerce-products-header .page-title::after {
	display: block;
	width: 58px;
	height: 4px;
	margin: 14px auto 0;
	background: #2f6f3e;
	border-radius: 10px;
	content: "";
}

body.r7-catalog-archive ul.products,
body.r7-catalog-archive ul.products.content-wrap,
body.r7-catalog-archive ul.products.grid-cols {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: clamp(16px, 2vw, 24px) !important;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

body.r7-catalog-archive ul.products li.product,
body.r7-catalog-archive ul.products li.entry.loop-entry {
	display: grid !important;
	grid-template-rows: auto 1fr;
	float: none !important;
	width: auto !important;
	min-width: 0;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	background: #ffffff !important;
	border: 1px solid #dce2de;
	border-radius: 10px;
	box-shadow: 0 5px 16px rgb(24 35 29 / 7%);
	transition:
		transform 200ms ease,
		border-color 200ms ease,
		box-shadow 200ms ease;
}

body.r7-catalog-archive ul.products li.product:hover,
body.r7-catalog-archive ul.products li.entry.loop-entry:hover {
	border-color: #b8c8be;
	box-shadow: 0 10px 24px rgb(24 35 29 / 12%);
	transform: translateY(-3px);
}

body.r7-catalog-archive ul.products li.product .woocommerce-loop-image-link {
	display: grid;
	place-items: center;
	width: 100%;
	min-width: 0;
	aspect-ratio: 1 / 1;
	margin: 0;
	padding: clamp(10px, 1.5vw, 16px);
	overflow: hidden;
	background: #f3f5f4;
}

body.r7-catalog-archive ul.products li.product .woocommerce-loop-image-link:focus-visible {
	outline: 3px solid #2f6f3e;
	outline-offset: -3px;
}

body.r7-catalog-archive ul.products li.product .woocommerce-loop-image-link img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	object-fit: contain;
	object-position: center;
	transform: scale(1);
	transition: transform 200ms ease;
}

body.r7-catalog-archive ul.products li.product:hover .woocommerce-loop-image-link img {
	transform: scale(1.02);
}

body.r7-catalog-archive ul.products li.product .product-details {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 40px;
	grid-template-rows: auto 1fr;
	align-items: end;
	gap: 9px 12px;
	min-width: 0;
	min-height: 112px;
	padding: 14px 15px 15px !important;
	background: #ffffff !important;
}

body.r7-catalog-archive ul.products li.product .woocommerce-loop-product__title {
	grid-column: 1 / -1;
	align-self: start;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 17px !important;
	font-weight: 700;
	line-height: 1.22;
}

body.r7-catalog-archive ul.products li.product .woocommerce-loop-product__title a {
	display: -webkit-box;
	overflow: hidden;
	color: #2d3335 !important;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

body.r7-catalog-archive ul.products li.product .woocommerce-loop-product__title a:hover {
	color: #2f6f3e !important;
}

body.r7-catalog-archive ul.products li.product .woocommerce-loop-product__title a:focus-visible {
	outline: 2px solid #2f6f3e;
	outline-offset: 3px;
}

body.r7-catalog-archive ul.products li.product .price {
	grid-column: 1;
	grid-row: 2;
	align-self: end;
	min-width: 0;
	margin: 0 !important;
	color: #3f4743 !important;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 14px !important;
	font-weight: 600;
	line-height: 1.28;
	overflow-wrap: anywhere;
}

body.r7-catalog-archive ul.products li.product .price :where(.amount, bdi) {
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit;
}

body.r7-catalog-archive ul.products li.product .product-action-wrap {
	display: flex;
	grid-column: 2;
	grid-row: 2;
	align-self: end;
	justify-content: flex-end;
	width: 40px;
	margin: 0 !important;
	padding: 0 !important;
}

body.r7-catalog-archive ul.products li.product .r7-catalog-card__plus {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 40px !important;
	min-width: 40px !important;
	height: 40px !important;
	min-height: 40px !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #2f6f3e !important;
	border: 1px solid #2f6f3e !important;
	border-radius: 7px !important;
	color: #ffffff !important;
	font-family: Arial, sans-serif;
	font-size: 25px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}

body.r7-catalog-archive ul.products li.product .r7-catalog-card__plus:hover {
	background: #245a32 !important;
	border-color: #245a32 !important;
	color: #ffffff !important;
	transform: translateY(-1px);
}

body.r7-catalog-archive ul.products li.product .r7-catalog-card__plus:focus-visible {
	outline: 3px solid #93b89d !important;
	outline-offset: 2px;
}

body.r7-catalog-archive nav.woocommerce-pagination {
	display: flex;
	justify-content: center;
	margin: clamp(34px, 5vw, 58px) 0 0;
}

body.r7-catalog-archive nav.woocommerce-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

body.r7-catalog-archive nav.woocommerce-pagination ul.page-numbers li {
	margin: 0 !important;
	border: 0 !important;
}

body.r7-catalog-archive nav.woocommerce-pagination .page-numbers :where(a, span) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px !important;
	background: #ffffff !important;
	border: 1px solid #d5d9d7 !important;
	border-radius: 6px;
	color: #2d3335 !important;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

body.r7-catalog-archive nav.woocommerce-pagination .page-numbers span.current,
body.r7-catalog-archive nav.woocommerce-pagination .page-numbers a:hover {
	background: #2f6f3e !important;
	border-color: #2f6f3e !important;
	color: #ffffff !important;
}

body.r7-catalog-archive nav.woocommerce-pagination .page-numbers a:focus-visible {
	outline: 3px solid #93b89d;
	outline-offset: 2px;
}

@media (max-width: 1100px) {
	body.r7-catalog-archive ul.products,
	body.r7-catalog-archive ul.products.content-wrap,
	body.r7-catalog-archive ul.products.grid-cols {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 780px) {
	body.r7-catalog-archive #primary > .content-container.site-container {
		padding-inline: 16px;
	}

	body.r7-catalog-archive ul.products,
	body.r7-catalog-archive ul.products.content-wrap,
	body.r7-catalog-archive ul.products.grid-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px !important;
	}

	body.r7-catalog-archive ul.products li.product .product-details {
		grid-template-columns: minmax(0, 1fr) 38px;
		gap: 8px 9px;
		min-height: 108px;
		padding: 12px !important;
	}

	body.r7-catalog-archive ul.products li.product .woocommerce-loop-product__title {
		font-size: 16px !important;
	}

	body.r7-catalog-archive ul.products li.product .price {
		font-size: 13px !important;
	}

	body.r7-catalog-archive ul.products li.product .product-action-wrap,
	body.r7-catalog-archive ul.products li.product .r7-catalog-card__plus {
		width: 38px !important;
		min-width: 38px !important;
	}

	body.r7-catalog-archive ul.products li.product .r7-catalog-card__plus {
		height: 38px !important;
		min-height: 38px !important;
	}
}

@media (max-width: 359px) {
	body.r7-catalog-archive ul.products,
	body.r7-catalog-archive ul.products.content-wrap,
	body.r7-catalog-archive ul.products.grid-cols {
		grid-template-columns: minmax(0, 1fr) !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.r7-catalog-archive ul.products li.product,
	body.r7-catalog-archive ul.products li.entry.loop-entry,
	body.r7-catalog-archive ul.products li.product .woocommerce-loop-image-link img,
	body.r7-catalog-archive ul.products li.product .r7-catalog-card__plus {
		transition: none !important;
	}

	body.r7-catalog-archive ul.products li.product:hover,
	body.r7-catalog-archive ul.products li.entry.loop-entry:hover,
	body.r7-catalog-archive ul.products li.product:hover .woocommerce-loop-image-link img,
	body.r7-catalog-archive ul.products li.product .r7-catalog-card__plus:hover {
		transform: none;
	}
}
\n/* Productos relacionados: reutiliza el lenguaje visual compacto del catálogo. */\nbody.single-product.woocommerce .related.products ul.products {\n\tdisplay: grid !important;\n\tgrid-template-columns: repeat(4, minmax(0, 1fr)) !important;\n\tgap: clamp(16px, 2vw, 24px) !important;\n\twidth: 100%;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tlist-style: none;\n}\n\nbody.single-product.woocommerce .related.products ul.products li.product {\n\tdisplay: grid !important;\n\tgrid-template-rows: auto 1fr;\n\tfloat: none !important;\n\twidth: auto !important;\n\tmin-width: 0;\n\theight: 100%;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\toverflow: hidden;\n\tbackground: #ffffff !important;\n\tborder: 1px solid #dce2de;\n\tborder-radius: 10px;\n\tbox-shadow: 0 5px 16px rgb(24 35 29 / 7%);\n\ttransition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;\n}\n\nbody.single-product.woocommerce .related.products ul.products li.product:hover {\n\tborder-color: #b8c8be;\n\tbox-shadow: 0 10px 24px rgb(24 35 29 / 12%);\n\ttransform: translateY(-3px);\n}\n\nbody.single-product.woocommerce .related.products ul.products li.product .woocommerce-loop-image-link {\n\tdisplay: grid;\n\tplace-items: center;\n\twidth: 100%;\n\taspect-ratio: 1 / 1;\n\tmargin: 0;\n\tpadding: clamp(10px, 1.5vw, 16px);\n\toverflow: hidden;\n\tbackground: #f3f5f4;\n}\n\nbody.single-product.woocommerce .related.products ul.products li.product .woocommerce-loop-image-link img {\n\tdisplay: block;\n\twidth: 100% !important;\n\theight: 100% !important;\n\tmax-width: 100% !important;\n\tmargin: 0 !important;\n\tobject-fit: contain;\n\tobject-position: center;\n}\n\nbody.single-product.woocommerce .related.products ul.products li.product .product-details {\n\tdisplay: grid;\n\tgrid-template-columns: minmax(0, 1fr) 40px;\n\tgrid-template-rows: auto 1fr;\n\talign-items: end;\n\tgap: 9px 12px;\n\tmin-width: 0;\n\tmin-height: 112px;\n\tpadding: 14px 15px 15px !important;\n\tbackground: #ffffff !important;\n}\n\nbody.single-product.woocommerce .related.products ul.products li.product .woocommerce-loop-product__title {\n\tgrid-column: 1 / -1;\n\talign-self: start;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tfont-family: "Roboto Condensed", sans-serif;\n\tfont-size: 17px !important;\n\tfont-weight: 700;\n\tline-height: 1.22;\n}\n\nbody.single-product.woocommerce .related.products ul.products li.product .price {\n\tgrid-column: 1;\n\tgrid-row: 2;\n\talign-self: end;\n\tmargin: 0 !important;\n\tcolor: #3f4743 !important;\n\tfont-family: "Roboto Condensed", sans-serif;\n\tfont-size: 14px !important;\n\tfont-weight: 600;\n\tline-height: 1.28;\n}\n\nbody.single-product.woocommerce .related.products ul.products li.product .product-action-wrap {\n\tdisplay: flex;\n\tgrid-column: 2;\n\tgrid-row: 2;\n\talign-self: end;\n\tjustify-content: flex-end;\n\twidth: 40px;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n}\n\nbody.single-product.woocommerce .related.products ul.products li.product .r7-catalog-card__plus {\n\tdisplay: inline-flex !important;\n\talign-items: center;\n\tjustify-content: center;\n\twidth: 40px !important;\n\tmin-width: 40px !important;\n\theight: 40px !important;\n\tmin-height: 40px !important;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tbackground: #2f6f3e !important;\n\tborder: 1px solid #2f6f3e !important;\n\tborder-radius: 7px !important;\n\tcolor: #ffffff !important;\n\tfont-family: Arial, sans-serif;\n\tfont-size: 25px !important;\n\tfont-weight: 500 !important;\n\tline-height: 1 !important;\n\ttext-decoration: none !important;\n\tbox-shadow: none !important;\n}\n\nbody.single-product.woocommerce .related.products ul.products li.product .r7-catalog-card__plus:hover {\n\tbackground: #245a32 !important;\n\tborder-color: #245a32 !important;\n\tcolor: #ffffff !important;\n}\n\n@media (max-width: 1100px) {\n\tbody.single-product.woocommerce .related.products ul.products {\n\t\tgrid-template-columns: repeat(3, minmax(0, 1fr)) !important;\n\t}\n}\n\n@media (max-width: 780px) {\n\tbody.single-product.woocommerce .related.products ul.products {\n\t\tgrid-template-columns: repeat(2, minmax(0, 1fr)) !important;\n\t\tgap: 14px !important;\n\t}\n}\n\n@media (max-width: 359px) {\n\tbody.single-product.woocommerce .related.products ul.products {\n\t\tgrid-template-columns: minmax(0, 1fr) !important;\n\t}\n}\n

/* ==================================================
   TIENDA AGRUPADA POR FAMILIAS
   ================================================== */

body.r7-grouped-shop .woocommerce-products-header {
	margin-bottom: clamp(26px, 3vw, 38px);
}

body.r7-grouped-shop .r7-grouped-catalog {
	display: grid;
	gap: clamp(46px, 6vw, 76px);
	width: 100%;
	margin: 0 0 clamp(42px, 6vw, 72px);
}

body.r7-grouped-shop .r7-grouped-catalog__section {
	min-width: 0;
}

body.r7-grouped-shop .r7-grouped-catalog__section-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 20px;
	padding: 0 0 11px;
	border-bottom: 1px solid #dce2de;
}

body.r7-grouped-shop .r7-grouped-catalog__section-title {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: "Roboto Condensed", sans-serif;
	font-size: clamp(25px, 2.3vw, 34px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.015em;
}

body.r7-grouped-shop .r7-grouped-catalog__section-title::after {
	position: absolute;
	left: 0;
	bottom: -12px;
	width: 52px;
	height: 3px;
	background: #2f6f3e;
	border-radius: 10px;
	content: "";
}

body.r7-grouped-shop .r7-grouped-catalog__section-title a {
	color: #2d3335;
	text-decoration: none;
}

body.r7-grouped-shop .r7-grouped-catalog__section-title a:hover {
	color: #2f6f3e;
}

body.r7-grouped-shop .r7-grouped-catalog__section-title a:focus-visible {
	outline: 2px solid #2f6f3e;
	outline-offset: 4px;
}

body.r7-grouped-shop .r7-grouped-catalog__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
	width: 100%;
}

body.r7-grouped-shop .r7-grouped-catalog__grid--portal {
	grid-template-columns: minmax(220px, 300px);
}

body.r7-grouped-shop .r7-grouped-product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #dce2de;
	border-radius: 10px;
	box-shadow: 0 5px 16px rgb(24 35 29 / 7%);
	transition:
		transform 200ms ease,
		border-color 200ms ease,
		box-shadow 200ms ease;
}

body.r7-grouped-shop .r7-grouped-product-card:hover {
	border-color: #b8c8be;
	box-shadow: 0 10px 24px rgb(24 35 29 / 12%);
	transform: translateY(-3px);
}

body.r7-grouped-shop .r7-grouped-product-card__image-link {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0;
	padding: clamp(10px, 1.5vw, 16px);
	overflow: hidden;
	background: #f3f5f4;
}

body.r7-grouped-shop .r7-grouped-product-card__image-link:focus-visible {
	outline: 3px solid #2f6f3e;
	outline-offset: -3px;
}

body.r7-grouped-shop .r7-grouped-product-card__image {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	object-fit: contain;
	object-position: center;
	transform: scale(1);
	transition: transform 200ms ease;
}

body.r7-grouped-shop .r7-grouped-product-card:hover .r7-grouped-product-card__image {
	transform: scale(1.02);
}

body.r7-grouped-shop .r7-grouped-product-card__details {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 10px;
	min-height: 112px;
	padding: 14px 15px 15px;
	background: #ffffff;
}

body.r7-grouped-shop .r7-grouped-product-card__title {
	align-self: start;
	min-width: 0;
	margin: 0;
	padding: 0;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.22;
}

body.r7-grouped-shop .r7-grouped-product-card__title a {
	display: -webkit-box;
	overflow: hidden;
	color: #2d3335;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

body.r7-grouped-shop .r7-grouped-product-card__title a:hover {
	color: #2f6f3e;
}

body.r7-grouped-shop .r7-grouped-product-card__bottom {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 40px;
	align-items: end;
	gap: 12px;
	min-width: 0;
}

body.r7-grouped-shop .r7-grouped-product-card__price {
	min-width: 0;
	color: #3f4743;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.28;
	overflow-wrap: anywhere;
}

body.r7-grouped-shop .r7-grouped-product-card__price :where(.amount, bdi) {
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit;
}

body.r7-grouped-shop .r7-grouped-product-card__plus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	height: 40px;
	min-height: 40px;
	margin: 0;
	padding: 0;
	background: #2f6f3e;
	border: 1px solid #2f6f3e;
	border-radius: 7px;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 25px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	box-shadow: none;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}

body.r7-grouped-shop .r7-grouped-product-card__plus:hover {
	background: #245a32;
	border-color: #245a32;
	color: #ffffff;
	transform: translateY(-1px);
}

body.r7-grouped-shop .r7-grouped-product-card__plus:focus-visible {
	outline: 3px solid #93b89d;
	outline-offset: 2px;
}

body.r7-grouped-shop .r7-grouped-category-card__label {
	color: #5b625f;
	font-weight: 600;
}

body.r7-grouped-shop .r7-grouped-category-card__fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 180px;
	color: #2f6f3e;
}

body.r7-grouped-shop .r7-grouped-category-card__fallback svg {
	width: 42%;
	max-width: 120px;
	height: auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 1100px) {
	body.r7-grouped-shop .r7-grouped-catalog__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	body.r7-grouped-shop .r7-grouped-catalog__grid--portal {
		grid-template-columns: minmax(220px, 300px);
	}
}

@media (max-width: 780px) {
	body.r7-grouped-shop .r7-grouped-catalog {
		gap: 42px;
	}

	body.r7-grouped-shop .r7-grouped-catalog__section-header {
		margin-bottom: 17px;
	}

	body.r7-grouped-shop .r7-grouped-catalog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	body.r7-grouped-shop .r7-grouped-catalog__grid--portal {
		grid-template-columns: minmax(0, 1fr);
		max-width: 320px;
	}

	body.r7-grouped-shop .r7-grouped-product-card__details {
		min-height: 108px;
		padding: 12px;
	}

	body.r7-grouped-shop .r7-grouped-product-card__title {
		font-size: 16px;
	}

	body.r7-grouped-shop .r7-grouped-product-card__bottom {
		grid-template-columns: minmax(0, 1fr) 38px;
		gap: 9px;
	}

	body.r7-grouped-shop .r7-grouped-product-card__price {
		font-size: 13px;
	}

	body.r7-grouped-shop .r7-grouped-product-card__plus {
		width: 38px;
		min-width: 38px;
		height: 38px;
		min-height: 38px;
	}
}

@media (max-width: 359px) {
	body.r7-grouped-shop .r7-grouped-catalog__grid,
	body.r7-grouped-shop .r7-grouped-catalog__grid--portal {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	body.r7-grouped-shop .r7-grouped-product-card,
	body.r7-grouped-shop .r7-grouped-product-card__image,
	body.r7-grouped-shop .r7-grouped-product-card__plus {
		transition: none;
	}

	body.r7-grouped-shop .r7-grouped-product-card:hover,
	body.r7-grouped-shop .r7-grouped-product-card:hover .r7-grouped-product-card__image,
	body.r7-grouped-shop .r7-grouped-product-card__plus:hover {
		transform: none;
	}
}

/* ==========================================================
   Footer corporativo global — Ruta 7 1.0.55
   ========================================================== */
body.r7-custom-footer-enabled #colophon.site-footer {
	display: none !important;
}

.r7-site-footer {
	position: relative;
	width: 100%;
	margin: 0;
	background: #292c2a;
	color: #fff;
}


.r7-site-footer__panel {
	background: #292c2a;
}

.r7-site-footer__inner {
	display: grid;
	grid-template-columns: minmax(300px, 1fr) minmax(420px, .9fr);
	align-items: center;
	gap: 72px;
	width: min(1260px, calc(100% - 64px));
	min-height: 260px;
	margin: 0 auto;
	padding: 42px 0;
}

.r7-site-footer__brand {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	text-decoration: none;
}

.r7-site-footer__brand img {
	display: block;
	width: min(360px, 100%);
	max-height: 150px;
	object-fit: contain;
	object-position: left center;
}

.r7-site-footer__contact {
	display: grid;
	gap: 24px;
	margin: 0;
	font-style: normal;
}

.r7-site-footer__contact-row {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	min-width: 0;
	color: #fff;
	font-size: clamp(17px, 1.25vw, 22px);
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none;
	transition: color .18s ease, transform .18s ease;
}

.r7-site-footer__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #00ae4d;
}

.r7-site-footer__icon svg {
	display: block;
	width: 30px;
	height: 30px;
	fill: currentColor;
}

@media (hover: hover) {
	.r7-site-footer__contact-row:hover {
		color: #00c45a;
		transform: translateX(3px);
	}
}

.r7-site-footer__brand:focus-visible,
.r7-site-footer__contact-row:focus-visible {
	outline: 2px solid #00ae4d;
	outline-offset: 5px;
}

@media (max-width: 900px) {
	.r7-site-footer__inner {
		grid-template-columns: 1fr;
		gap: 34px;
		width: min(100% - 40px, 720px);
		min-height: 0;
		padding: 44px 0 48px;
	}

	.r7-site-footer__brand img {
		width: min(330px, 82vw);
	}

	.r7-site-footer__contact {
		gap: 18px;
	}
}

@media (max-width: 600px) {	.r7-site-footer__inner {
		width: calc(100% - 32px);
		gap: 30px;
		padding: 36px 0 40px;
	}

	.r7-site-footer__brand img {
		width: min(285px, 82vw);
	}

	.r7-site-footer__contact-row {
		grid-template-columns: 30px minmax(0, 1fr);
		gap: 13px;
		font-size: 16px;
	}

	.r7-site-footer__icon,
	.r7-site-footer__icon svg {
		width: 26px;
		height: 26px;
	}
}
