/* =========================================================================
   Header Gabic — reconstruido limpio para igualar el diseño original.
   Estructura: .gh-topbar (franja de datos) + .gh-mainbar (logo, Categorías,
   buscador, menú, carrito). Marca: navy #0c1555 + naranja #fd6500.
   Alto total ≈ 126px (franja 34 + barra 92).
   ========================================================================= */

#header-desktop {
	--gh-navy:     #0c1555;
	--gh-navy-2:   #0a1048;
	--gh-orange:   #fd6500;
	--gh-orange-d: #e65c00;
	display: block;
	width: 100%;
}
#header-mobile { display: none; }

/* --- Franja de datos (34px = iconos 22 + 6+6) --- */
#header-desktop .gh-topbar {
	background: var(--gh-navy);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
#header-desktop .gh-topbar__inner {
	max-width: 1720px;
	margin: 0 auto;
	padding: 6px 28px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
#header-desktop .gh-topbar__contact {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	line-height: 22px;
	flex-wrap: wrap;
}
#header-desktop .gh-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
#header-desktop .gh-topbar__item svg { flex: 0 0 auto; opacity: 0.9; }
#header-desktop .gh-topbar a { color: #fff; text-decoration: none; }
#header-desktop .gh-topbar a:hover { text-decoration: underline; }
#header-desktop .gh-topbar__social { display: inline-flex; align-items: center; gap: 6px; }
#header-desktop .gh-topbar__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 4px;
	transition: background 0.2s ease, border-color 0.2s ease;
}
#header-desktop .gh-topbar__social a:hover { background: var(--gh-orange); border-color: var(--gh-orange); }

/* --- Barra principal (92px) --- */
#header-desktop .gh-mainbar {
	background: var(--gh-navy);
	display: flex;
	align-items: center;
	min-height: 92px;
}
#header-desktop .gh-mainbar__inner {
	max-width: 1720px;
	margin: 0 auto;
	padding: 10px 28px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Logo */
#header-desktop .gh-logo { flex: 0 0 auto; }
#header-desktop .gh-logo .custom-logo-link { display: inline-block; line-height: 0; }
#header-desktop .gh-logo img { max-height: 64px; width: auto; height: auto; display: block; }

/* Botón Categorías (naranja) */
#header-desktop .gh-cats {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--gh-orange);
	color: #fff;
	padding: 14px 22px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease;
}
#header-desktop .gh-cats:hover { background: var(--gh-orange-d); color: #fff; }
#header-desktop .gh-cats__bars {
	position: relative;
	width: 18px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	flex: 0 0 auto;
}
#header-desktop .gh-cats__bars::before,
#header-desktop .gh-cats__bars::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
}
#header-desktop .gh-cats__bars::before { top: -5px; }
#header-desktop .gh-cats__bars::after { top: 5px; }

/* Buscador */
#header-desktop .gh-search {
	flex: 1 1 auto;
	max-width: 640px;
	display: flex;
	align-items: stretch;
	height: 48px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}
#header-desktop .gh-search__input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	outline: none;
	padding: 0 18px;
	font-size: 15px;
	color: #333;
	background: #fff;
}
#header-desktop .gh-search__input::placeholder { color: #9aa0a6; }
#header-desktop .gh-search__btn {
	flex: 0 0 auto;
	width: 56px;
	border: 0;
	cursor: pointer;
	background: var(--gh-orange);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}
#header-desktop .gh-search__btn:hover { background: var(--gh-orange-d); }

/* Menú */
#header-desktop .gh-nav { flex: 0 0 auto; }
#header-desktop .gh-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}
#header-desktop .gh-menu li { position: relative; }
#header-desktop .gh-menu a {
	display: inline-block;
	padding: 6px 0;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}
#header-desktop .gh-menu a:hover { color: var(--gh-orange); }
#header-desktop .gh-menu .current-menu-item > a,
#header-desktop .gh-menu .current-menu-parent > a { color: #ffffff; font-weight: 700; }
#header-desktop .gh-menu ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	display: none;
	z-index: 200;
}
#header-desktop .gh-menu li:hover > ul.sub-menu { display: block; }
#header-desktop .gh-menu ul.sub-menu a { display: block; padding: 9px 18px; color: #1a2b4a; font-weight: 500; }
#header-desktop .gh-menu ul.sub-menu a:hover { background: #f3f5f9; color: var(--gh-orange); }

/* Carrito */
#header-desktop .gh-cart {
	flex: 0 0 auto;
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-left: 4px;
	color: #fff;
	text-decoration: none;
}
#header-desktop .gh-cart:hover { color: var(--gh-orange); }
#header-desktop .gh-cart__count {
	position: absolute;
	top: -6px;
	right: -9px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	box-sizing: border-box;
	background: var(--gh-orange);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	border-radius: 9px;
}

/* --- Responsive: por debajo de 992px se usa el header móvil --- */
@media (max-width: 991.98px) {
	#header-desktop { display: none; }
	#header-mobile { display: block; }
}

/* Compactar en pantallas medianas antes de saltar a móvil */
@media (max-width: 1300px) {
	#header-desktop .gh-menu { gap: 16px; }
	#header-desktop .gh-menu a { font-size: 14px; }
	#header-desktop .gh-search { max-width: 420px; }
	#header-desktop .gh-topbar__contact { gap: 18px; font-size: 12px; }
}

/* --- Botón "Categorias" como <button> (reset) + desplegable --- */
#header-desktop .gh-cats { border: 0; cursor: pointer; font: inherit; font-weight: 600; font-size: 15px; }
#header-desktop .gh-cats-wrap { position: relative; flex: 0 0 auto; }

#header-desktop .gh-cats-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 320px;
	max-height: min(70vh, 560px);
	overflow-y: auto;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
	z-index: 400;
	padding: 6px 0;
}
#header-desktop .gh-cats-panel[hidden] { display: none; }
#header-desktop .gh-cats-list { list-style: none; margin: 0; padding: 0; }
#header-desktop .gh-cat { position: relative; border-bottom: 1px solid #f0f1f4; }
#header-desktop .gh-cat:last-child { border-bottom: 0; }
#header-desktop .gh-cat__link {
	display: block;
	padding: 12px 46px 12px 22px;
	color: #16233d;
	font-size: 15px;
	text-decoration: none;
}
#header-desktop .gh-cat__link:hover { color: var(--gh-orange); }
#header-desktop .gh-cat__toggle {
	position: absolute;
	top: 5px;
	right: 8px;
	width: 32px;
	height: 32px;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: var(--gh-orange);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
#header-desktop .gh-cat__toggle svg { transition: transform 0.2s ease; }
#header-desktop .gh-cat__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
#header-desktop .gh-cat__sub { list-style: none; margin: 0; padding: 2px 0 8px; background: #f7f8fb; }
#header-desktop .gh-cat__sub[hidden] { display: none; }
#header-desktop .gh-cat__sub a {
	display: block;
	padding: 9px 22px 9px 34px;
	color: #465471;
	font-size: 14px;
	text-decoration: none;
}
#header-desktop .gh-cat__sub a:hover { color: var(--gh-orange); }

/* Scrollbar del panel */
#header-desktop .gh-cats-panel::-webkit-scrollbar { width: 8px; }
#header-desktop .gh-cats-panel::-webkit-scrollbar-thumb { background: var(--gh-orange); border-radius: 8px; }

/* =========================================================================
   Footer Gabic — navy #0c1555 + naranja #fd6500. Banner asesor + logo/
   contactos + columnas Menu/Marcas/Categorías + copyright.
   ========================================================================= */

/* Banner asesor (naranja con puntas, superpuesto al footer navy) */
.gf-advisor { background: #ffffff; }
.gf-advisor__inner {
	max-width: 1180px;
	margin: 0 auto -46px;
	position: relative;
	z-index: 3;
	background: #fd6500;
	color: #fff;
	padding: 22px 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
}
.gf-advisor__text { margin: 0; font-size: 22px; font-weight: 400; }
.gf-advisor__text strong { font-weight: 800; }
.gf-advisor__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #25d366;
	color: #fff;
	text-decoration: none;
	padding: 11px 22px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: background 0.2s ease;
}
.gf-advisor__btn:hover { background: #1eb955; color: #fff; }

/* Cuerpo del footer */
.gf-footer { background: #0c1555; color: #fff; padding: 92px 0 0; }
.gf-footer__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 44px 48px;
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr 1.15fr;
	gap: 40px;
}
.gf-footer a { text-decoration: none; }

/* Columna marca (logo + contactos) */
.gf-brand-logo img { max-width: 300px; width: auto; height: auto; }
.gf-contact { margin-top: 20px; color: #c9cee6; font-size: 14px; line-height: 1.5; }
.gf-contact__phones { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.gf-contact__phones-icon { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; color: #fff; }
.gf-contact__phones ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: auto auto; gap: 3px 26px; }
.gf-contact__line { display: flex; align-items: flex-start; gap: 9px; margin: 8px 0; }
.gf-contact__line svg { flex: 0 0 auto; margin-top: 2px; }
.gf-contact__line a, .gf-contact__phones ul li { color: #c9cee6; }
.gf-social { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
.gf-social a { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-size: 13px; font-weight: 600; }
.gf-social a:hover { color: #fd6500; }

/* Columnas de enlaces */
.gf-col .gf-title { color: #fd6500; font-size: 20px; font-weight: 700; margin: 0 0 18px; }
.gf-list { list-style: none; margin: 0; padding: 0; }
.gf-list li { margin-bottom: 9px; }
.gf-list a { color: #575b79; font-size: 14px; }
.gf-list a:hover { color: #fd6500; }
.gf-list .current-menu-item > a { color: #fff; font-weight: 700; }
.gf-list--scroll { max-height: 240px; overflow-y: auto; padding-right: 10px; }
.gf-list--scroll::-webkit-scrollbar { width: 6px; }
.gf-list--scroll::-webkit-scrollbar-track { background: rgba(255,255,255,.08); border-radius: 6px; }
.gf-list--scroll::-webkit-scrollbar-thumb { background: #fd6500; border-radius: 6px; }

/* Copyright */
.gf-copyright { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.gf-copyright__inner { max-width: 1440px; margin: 0 auto; padding: 18px 44px; text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 13px; }

/* Responsive */
@media (max-width: 991.98px) {
	.gf-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
	.gf-advisor__inner { flex-direction: column; text-align: center; gap: 16px; padding: 20px 40px; clip-path: none; border-radius: 12px; margin-bottom: -40px; }
	.gf-advisor__text { font-size: 18px; }
}
@media (max-width: 575.98px) {
	.gf-footer__inner { grid-template-columns: 1fr; }
	.gf-contact__phones ul { grid-template-columns: 1fr 1fr; }
}

/* =========================================================================
   Header móvil (se muestra < 992px; #header-desktop se oculta arriba).
   ========================================================================= */
#header-mobile { background: #0c1555; }
.ghm-bar { display: flex; align-items: center; gap: 12px; padding: 10px 16px; }
.ghm-burger {
	flex: 0 0 auto; width: 44px; height: 44px; border: 0; background: #fd6500;
	border-radius: 8px; cursor: pointer;
	display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.ghm-burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; }
.ghm-logo { flex: 1 1 auto; line-height: 0; }
.ghm-logo .custom-logo-link { display: inline-block; line-height: 0; }
.ghm-logo img { max-height: 44px; width: auto; height: auto; }
.ghm-cart { flex: 0 0 auto; position: relative; color: #fff; display: inline-flex; align-items: center; }
.ghm-cart__count {
	position: absolute; top: -6px; right: -8px; min-width: 18px; height: 18px; padding: 0 4px;
	box-sizing: border-box; background: #fd6500; color: #fff; font-size: 11px; font-weight: 700;
	line-height: 18px; text-align: center; border-radius: 9px;
}
.ghm-search { display: flex; padding: 0 16px 12px; }
.ghm-search__input {
	flex: 1 1 auto; min-width: 0; border: 0; padding: 0 14px; height: 44px;
	background: #fff; border-radius: 8px 0 0 8px; font-size: 15px; color: #333; outline: none;
}
.ghm-search__btn {
	flex: 0 0 auto; width: 52px; height: 44px; border: 0; background: #fd6500; color: #fff;
	border-radius: 0 8px 8px 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
/* Menú móvil como BARRA LATERAL (off-canvas) que entra desde la izquierda. */
.ghm-panel {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(320px, 86vw);
	height: 100vh;
	height: 100dvh;
	background: #fff;
	box-shadow: 4px 0 26px rgba(0,0,0,0.22);
	z-index: 100000;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translateX(-100%);
	visibility: hidden;
	transition: transform 0.3s ease, visibility 0.3s ease;
}
.ghm-panel.is-open { transform: translateX(0); visibility: visible; }

/* Cabecera de la barra: título + botón cerrar (X). */
.ghm-panel__head {
	position: sticky;
	top: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	background: #0c1555;
	color: #fff;
}
.ghm-panel__title { font-size: 15px; font-weight: 700; letter-spacing: 0.02em; }
.ghm-panel__close {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; padding: 0;
	background: transparent; border: 0; color: #fff; cursor: pointer; border-radius: 8px;
}
.ghm-panel__close:hover { background: rgba(255,255,255,0.14); }

/* Fondo oscuro detrás de la barra lateral. */
.capa {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 99999;
}
.capa.is-open { opacity: 1; visibility: visible; }

/* Sin scroll del fondo mientras la barra está abierta. */
body.ghm-drawer-open { overflow: hidden; }
.ghm-menu, .ghm-cats-list { list-style: none; margin: 0; padding: 0; }
.ghm-menu li a, .ghm-cats-list li a {
	display: block; padding: 13px 20px; color: #16233d; text-decoration: none;
	border-bottom: 1px solid #f0f1f4; font-size: 15px;
}
.ghm-menu li a:hover, .ghm-cats-list li a:hover { color: #fd6500; background: #f8f9fb; }
.ghm-cats__title {
	margin: 0; padding: 12px 20px 8px; color: #fd6500; font-size: 13px; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.02em; background: #f7f8fb; border-top: 1px solid #ececf2;
}
.ghm-cats-list { max-height: 340px; overflow-y: auto; }

/* =========================================================================
   HOME — Sección "Productos de EPPS con Precios Exclusivos"
   Portado del diseño WPBakery de producción (#section-2).
   En el maquetador aplica estas clases (campo "Clase CSS personalizada"):
     · a la SECCIÓN/fila full-width  ->  sec-epp
     · al bloque de TEXTO del título ->  sec-epp-title
   ========================================================================= */

/* Fondo: azul marino con franja BLANCA abajo (corte seco ~78-79%). No es
   imagen: es un degradado. La franja blanca es donde apoyan las tarjetas. */
.sec-epp {
	background: linear-gradient(180deg, #0c1555 0%, #0c1555 78%, #ffffff 79%, #ffffff 100%) !important;
}

/* Título tipo "cinta": caja blanca (trapecio) con picos naranjas a los lados.
   El texto del título debe ir en un <p> (el bloque de texto lo hace por defecto). */
.sec-epp-title p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 532px;
	margin: 0 auto !important;
	padding: 7px 14px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #0c1555;
	background: #ffffff;
	clip-path: polygon(0 0, 100% 0, 93% 100%, 7% 100%);
}
.sec-epp-title p::before,
.sec-epp-title p::after {
	content: "";
	flex: 0 0 87px;
	align-self: stretch;
	background: #fd6500;
}
.sec-epp-title p::before { clip-path: polygon(0 0, 63% 0%, 100% 100%, 39% 100%); }
.sec-epp-title p::after  { clip-path: polygon(37% 0%, 100% 0, 58% 100%, 0% 100%); }

/* Móvil (≤575px): se ocultan los picos, como el diseño original. */
@media (max-width: 575.98px) {
	.sec-epp-title p::before,
	.sec-epp-title p::after { display: none; }
	.sec-epp-title p { clip-path: none; border-radius: 6px; }
}

/* =========================================================================
   COTIZADOR — Carrito + Sidecart con colores de marca Gabic.
   El plugin trae azul #004674 + amarillo #f7d022; aquí lo pasamos a
   azul marino #0c1555 + naranja #fd6500 (verde solo para WhatsApp).
   Se sobreescriben las variables (doble clase para ganar especificidad).
   ========================================================================= */
/* Carrito/cotizador (página completa) — colores Proinval: banner/estructura
   NEGRO + acentos ROJOS (WhatsApp verde se fuerza más abajo). Antes: navy Gabic. */
.ozc-quote-cart.ozc-quote-cart {
	--ozc-accent:      #111111;   /* banner + botón email + estructura: negro */
	--ozc-accent-dark: #000000;
	--ozc-accent-line: #db0209;   /* líneas de acento: rojo */
	--ozc-yellow:      #db0209;   /* badges y barras de acento: rojo Proinval */
	--ozc-yellow-dark: #b3160e;
	--ozc-border:      rgba(17, 17, 17, 0.13);
	--ozc-border-soft: rgba(17, 17, 17, 0.07);
}
/* CAJÓN LATERAL (sidecart) — colores Proinval: header NEGRO + acentos ROJOS.
   (Antes: skin Gabic azul marino #0c1555 + naranja #fd6500.) */
.ozc-sidecart.ozc-sidecart {
	--ozc-sc-accent:      #db0209;   /* rojo Proinval: acentos + botón "Ver Carrito" */
	--ozc-sc-accent-dark: #b3160e;
	--ozc-sc-border:      rgba(17, 17, 17, 0.12);
	--ozc-sc-border-soft: rgba(17, 17, 17, 0.06);
}
/* Header del cajón en negro, fijo (aunque el plugin cambie su default). */
.ozc-sidecart.ozc-sidecart .ozc-sidecart__header {
	background: linear-gradient(135deg, #111111 0%, #000000 100%);
}
/* "Ver Carrito" en rojo con texto blanco. */
.ozc-sidecart.ozc-sidecart .ozc-sidecart__btn--cart,
.ozc-sidecart.ozc-sidecart .ozc-sidecart__btn--cart:hover {
	color: #ffffff;
}

/* "Cotizar por WhatsApp" del carrito iba en amarillo; lo pasamos a VERDE
   WhatsApp (igual que el sidecart y la convención). html body para ganarle
   a la regla base sin depender del orden de carga. */
html body .ozc-quote-cart a.ozc-quote-cart__btn--primary.ozc-quote-cart__btn--whatsapp,
html body .ozc-quote-cart button.ozc-quote-cart__btn--primary.ozc-quote-cart__btn--whatsapp {
	background: var(--ozc-wa);
	border-color: var(--ozc-wa-dark);
	color: #ffffff;
}
html body .ozc-quote-cart a.ozc-quote-cart__btn--primary.ozc-quote-cart__btn--whatsapp:hover,
html body .ozc-quote-cart button.ozc-quote-cart__btn--primary.ozc-quote-cart__btn--whatsapp:hover {
	background: var(--ozc-wa-dark);
	border-color: var(--ozc-wa-dark);
}

/* =========================================================================
   COTIZADOR "TODO-EN-UNO" (página cotizador-de-productos)
   2 columnas: catálogo (izquierda, productos con "Cotizar") + formulario de
   cotización (derecha, sticky). La lista de la derecha se refresca en vivo
   (fragment de WooCommerce en inc/gabic-header.php).
   ========================================================================= */
.ozc-quoter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 30px;
	align-items: start;
	max-width: 1440px;
	margin: 0 auto;
	padding: 24px 16px 56px;
}
.ozc-quoter__catalog { min-width: 0; }
.ozc-quoter__catalog-head { margin-bottom: 22px; }
.ozc-quoter__catalog-head h2 { margin: 0 0 6px; color: #0c1555; font-size: 26px; font-weight: 800; line-height: 1.2; }
.ozc-quoter__catalog-head p { margin: 0 0 14px; color: #64748b; font-size: 15px; }
.ozc-quoter__search { display: flex; gap: 8px; max-width: 480px; }
.ozc-quoter__search input[type="search"] {
	flex: 1 1 auto; min-width: 0; padding: 11px 14px;
	border: 1px solid #e2e8f0; border-radius: 10px; background: #fff; font-size: 15px; color: #1e293b;
}
.ozc-quoter__search input[type="search"]:focus { outline: none; border-color: #fd6500; box-shadow: 0 0 0 3px rgba(253,101,0,.15); }
.ozc-quoter__search button {
	flex: 0 0 auto; padding: 11px 22px; border: 0; border-radius: 10px;
	background: #fd6500; color: #fff; font-weight: 700; font-size: 15px; cursor: pointer;
}
.ozc-quoter__search button:hover { background: #e35c00; }

/* La derecha (formulario) fija mientras se hace scroll en el catálogo. */
.ozc-quoter__aside { position: sticky; top: 20px; }

/* El catálogo usa el loop de WooCommerce (cards del pack gabic con "Cotizar"). */
.ozc-quoter__catalog ul.products { margin: 0 !important; }

@media (max-width: 991px) {
	.ozc-quoter { grid-template-columns: 1fr; gap: 24px; }
	.ozc-quoter__aside { position: static; }
}

/* Formulario de cotización [oz_quote_form] (aside): estilo de marca (era básico,
   botón negro). Tarjeta blanca + título azul marino + botón/foco naranjas. */
.ozc-quoter .ozc-quote-form {
	background: #ffffff;
	border: 1px solid #edf1f7;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(12, 21, 85, 0.07);
	padding: 22px 20px;
}
.ozc-quoter .ozc-quote-form__title { color: #0c1555; font-size: 18px; font-weight: 800; }
.ozc-quoter .ozc-quote-form input:focus,
.ozc-quoter .ozc-quote-form textarea:focus {
	outline: none; border-color: #fd6500; box-shadow: 0 0 0 3px rgba(253, 101, 0, 0.15);
}
.ozc-quoter .ozc-quote-form__submit {
	background: #fd6500 !important;
	border-color: #fd6500 !important;
	color: #ffffff !important;
	border-radius: 10px !important;
	width: 100%;
	padding: 13px 16px !important;
}
.ozc-quoter .ozc-quote-form__submit:hover {
	background: #e35c00 !important;
	border-color: #e35c00 !important;
}

/* Centrar el cotizador: el contenedor del tema dejaba el contenido pegado a la
   izquierda (esta página no trae la clase .woocommerce que libera el ancho).
   Liberamos el ancho SOLO en la página 7302 y centramos el bloque (max 1440). */
body.page-id-7302 .site,
body.page-id-7302 .site-main,
body.page-id-7302 #post-7302,
body.page-id-7302 #post-7302 > .entry-content {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
body.page-id-7302 .ozc-quoter {
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Más aire en el formulario de cotización (estaba muy junto): más separación
   entre filas, entre label e input, y alrededor del resumen y el botón. */
.ozc-quoter .ozc-quote-form__summary { margin: 0 0 24px !important; padding: 14px 16px !important; }
.ozc-quoter .ozc-quote-form__items { gap: 12px !important; }
.ozc-quoter .ozc-quote-form__form { display: block !important; }
.ozc-quoter .ozc-quote-form__grid { gap: 22px 18px !important; margin: 0 0 22px !important; }
.ozc-quoter .ozc-quote-form__grid p { gap: 9px !important; margin: 0 !important; }
.ozc-quoter .ozc-quote-form__grid label,
.ozc-quoter .ozc-quote-form label {
	display: block !important;
	font-size: 14px !important; font-weight: 600 !important; color: #334155 !important; line-height: 1.3 !important;
}
.ozc-quoter .ozc-quote-form input,
.ozc-quoter .ozc-quote-form textarea { padding: 12px 14px !important; }
.ozc-quoter .ozc-quote-form__submit { margin-top: 12px !important; }
