/* Grupo Universal — homepage + chrome matching mockup */

:root {
	--gu-navy: #03336C;
	--gu-navy-deep: #072447;
	--gu-navy-soft: #143f73;
	--gu-blue: #2f6fb8;
	--gu-text: #1a1f29;
	--gu-muted: #6b7280;
	--gu-border: #e5e7eb;
	--gu-surface: #f7f7f7;
	--gu-white: #ffffff;
	--gu-star: #f5b400;
	--gu-stock: #22a06b;
	--gu-warm: #e8d9c4;
	--gu-radius: 10px;
	--gu-max: 1180px;
	--gu-font: "DM Sans", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
}

body.gu-home,
.gu-home {
	font-family: var(--gu-font);
	color: var(--gu-text);
	background: var(--gu-white);
}

.gu-container {
	width: min(100% - 2rem, var(--gu-max));
	margin: 0 auto;
}

.gu-main {
	overflow: hidden;
}

/* Buttons */
.gu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	min-height: 44px;
	padding: .7rem 1.25rem;
	border-radius: 6px;
	font-weight: 600;
	font-size: .95rem;
	line-height: 1.2;
	text-decoration: none !important;
	border: 1.5px solid transparent;
	transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
	cursor: pointer;
}

.gu-btn:hover {
	transform: translateY(-1px);
}

.gu-btn--primary {
	background: var(--gu-navy);
	color: var(--gu-white) !important;
	border-color: var(--gu-navy);
}

.gu-btn--primary:hover {
	background: var(--gu-navy-soft);
	border-color: var(--gu-navy-soft);
	color: var(--gu-white) !important;
}

.gu-btn--ghost {
	background: transparent;
	color: var(--gu-white) !important;
	border-color: rgba(255,255,255,.85);
}

.gu-btn--ghost:hover {
	background: rgba(255,255,255,.12);
	color: var(--gu-white) !important;
}

.gu-btn--outline-light {
	background: transparent;
	color: var(--gu-white) !important;
	border-color: rgba(255,255,255,.9);
}

.gu-btn--outline-dark {
	background: transparent;
	color: var(--gu-navy) !important;
	border-color: var(--gu-navy);
}

.gu-btn--block {
	width: 100%;
}

/* ===== Site header (mockup) ===== */
.gu-site-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: var(--gu-white);
	box-shadow: 0 1px 0 rgba(11, 47, 91, .08);
}

.gu-topbar {
	background: var(--gu-navy);
	color: rgba(255,255,255,.92);
	font-size: .78rem;
}

.gu-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: .45rem 1.5rem;
	padding: .4rem 0;
	width: 100%;
}

.gu-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	white-space: nowrap;
}

.gu-topbar__item i {
	opacity: .9;
}

.gu-header-main {
	background: var(--gu-white);
	padding: .85rem 0;
}

.gu-header-main__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.25rem;
	align-items: center;
}

.gu-logo {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	text-decoration: none !important;
	color: var(--gu-navy) !important;
	min-width: 0;
}

.gu-logo img {
	height: 48px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	display: block;
}

.gu-logo__text {
	font-weight: 700;
	letter-spacing: .04em;
	font-size: 1.05rem;
	line-height: 1.1;
	white-space: nowrap;
}

.gu-search {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
}

.gu-search__form {
	position: relative;
	display: block;
	width: 100%;
}

.gu-search .form-control,
.gu-search input[type="search"],
.gu-search .form-control:focus,
.gu-search input[type="search"]:focus {
	height: 46px;
	width: 100%;
	border-radius: 999px !important;
	border-top-left-radius: 999px !important;
	border-top-right-radius: 999px !important;
	border-bottom-left-radius: 999px !important;
	border-bottom-right-radius: 999px !important;
	border: 1px solid #d1d5db;
	padding: .5rem 3rem .5rem 1.15rem;
	font-size: .95rem;
	color: var(--gu-text);
	background: #fafafa;
	box-shadow: none;
}

.gu-search .form-control:focus,
.gu-search input[type="search"]:focus {
	border-color: var(--gu-blue);
	background: var(--gu-white);
	box-shadow: 0 0 0 3px rgba(47, 111, 184, .15);
	outline: none;
}

.gu-search__btn {
	position: absolute;
	right: .35rem;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--gu-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.gu-search__form:focus-within .gu-search__btn,
.gu-search .form-control:focus ~ .gu-search__btn,
.gu-search input[type="search"]:focus ~ .gu-search__btn {
	display: inline-flex;
	opacity: 1;
	visibility: visible;
	color: var(--gu-navy);
}

.gu-header-utils {
	display: flex;
	align-items: center;
	gap: .35rem 1rem;
}

.gu-util {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .15rem;
	color: #03336C !important;
	text-decoration: none !important;
	background: transparent;
	border: 0;
	padding: .2rem .35rem;
	min-width: 64px;
	position: relative;
	font-size: .72rem;
	font-weight: 600;
	line-height: 1.1;
	cursor: pointer;
}

.gu-util i {
	font-size: 1.15rem;
	color: #03336C;
}

.gu-util.dropdown-toggle::after {
	display: none;
}

.gu-util__badge {
	position: absolute;
	top: -2px;
	right: 10px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	background: #4777F7;
	color: #fff;
	font-size: .65rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.gu-nav {
	background: var(--gu-navy);
}

.gu-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .15rem 1.5rem;
	list-style: none;
	margin: 0;
	padding: .7rem 0;
}

.gu-nav__list a {
	color: rgba(255,255,255,.95) !important;
	text-decoration: none !important;
	font-weight: 500;
	font-size: .92rem;
	letter-spacing: .01em;
	position: relative;
	padding: .15rem 0;
}

.gu-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: #fff;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .22s ease;
}

.gu-nav__list a:hover::after {
	transform: scaleX(1);
}

.gu-mobile-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--gu-border);
	border-radius: 8px;
	background: #fff;
	color: var(--gu-navy);
	align-items: center;
	justify-content: center;
}

.gu-nav-mobile {
	display: none;
}

/* Hide legacy sticky/header chrome when new header is present */
.gu-site-header + .sticky-top,
body.gu-home .navbar.header-v1:not(.gu-legacy-keep) {
	/* no-op reserved */
}

/* Search dropdown inside new header */
.gu-search .search {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 6px);
	background: #fff !important;
	border: 1px solid var(--gu-border);
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(11,47,91,.12);
	z-index: 1100;
	display: none;
	max-height: 320px;
	overflow: auto;
}

.gu-search .search-table {
	width: 100%;
	background: #fff;
}

.gu-search .search-table td,
.gu-search .search-table a {
	background: #fff;
}

.gu-search .ui-autocomplete,
.ui-autocomplete.ui-widget-content,
.ui-widget.ui-widget-content.ui-autocomplete {
	z-index: 1100 !important;
	background: #fff !important;
	border: 1px solid var(--gu-border) !important;
	border-radius: 12px !important;
	box-shadow: 0 12px 30px rgba(11,47,91,.12) !important;
	opacity: 1 !important;
}

.ui-autocomplete.ui-widget-content .ui-menu-item,
.ui-autocomplete.ui-widget-content .ui-menu-item-wrapper,
.ui-widget.ui-widget-content.ui-autocomplete li,
.ui-widget.ui-widget-content.ui-autocomplete a {
	background: #fff !important;
}

/* ===== Hero ===== */
.gu-hero {
	position: relative;
	min-height: clamp(420px, 68vh, 620px);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding-bottom: 4.5rem;
	overflow: hidden;
}

.gu-hero__slides {
	position: absolute;
	inset: 0;
}

.gu-hero__slide {
	position: absolute;
	inset: 0;
	background-image: var(--hero-bg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s ease, visibility .6s ease;
}

.gu-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.gu-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 24, 48, .72) 0%, rgba(7, 24, 48, .45) 45%, rgba(7, 24, 48, .18) 100%);
}

.gu-hero__content {
	position: relative;
	z-index: 1;
	padding: 4.5rem 0 2rem;
	max-width: 640px;
	animation: guFadeUp .7s ease both;
}

.gu-hero .gu-container.gu-hero__content {
	width: auto;
	max-width: min(640px, calc(100% - 1rem - 44px - 30px - 1rem - 44px));
	margin-left: calc(1rem + 44px + 30px);
	margin-right: auto;
}

.gu-hero__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(7, 24, 48, .55);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
}

.gu-hero__nav:hover,
.gu-hero__nav:focus {
	background: rgba(7, 24, 48, .8);
	outline: 0;
}

.gu-hero__nav--prev {
	left: 1rem;
}

.gu-hero__nav--next {
	right: 1rem;
}

.gu-hero__title {
	color: #fff;
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 .9rem;
	letter-spacing: -.02em;
}

.gu-hero__subtitle {
	color: rgba(255,255,255,.92);
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	margin: 0 0 1.6rem;
	max-width: 30rem;
}

.gu-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}

.gu-hero .gu-btn--primary {
	background: #fff;
	color: var(--gu-navy) !important;
	border-color: #fff;
}

.gu-hero .gu-btn--primary:hover {
	background: rgba(255,255,255,.9);
	border-color: rgba(255,255,255,.9);
	color: var(--gu-navy) !important;
}

/* Trust bar — rounded card overlapping hero */
.gu-trust {
	background: transparent;
	border: 0;
	margin-top: -3.75rem;
	position: relative;
	z-index: 3;
	padding-bottom: .5rem;
}

.gu-trust__box {
	background: var(--gu-white);
	border-radius: 18px;
	box-shadow: 0 14px 40px rgba(11, 47, 91, .14);
	border: 1px solid rgba(11, 47, 91, .06);
	padding: 1.35rem 1.5rem;
}

.gu-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	padding: 0;
}

.gu-trust__item {
	display: flex;
	align-items: flex-start;
	gap: .85rem;
}

.gu-trust__icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(47, 111, 184, .1);
	color: var(--gu-blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.1rem;
}

.gu-trust__item strong {
	display: block;
	font-size: .95rem;
	color: var(--gu-text);
	margin-bottom: .15rem;
}

.gu-trust__item p {
	margin: 0;
	font-size: .82rem;
	color: var(--gu-muted);
	line-height: 1.35;
}

/* Sections */
.gu-section {
	padding: 3.25rem 0 1.5rem;
}

.gu-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.gu-section__title {
	margin: 0;
	font-size: clamp(1.45rem, 2.4vw, 1.85rem);
	font-weight: 700;
	color: var(--gu-text);
}

.gu-section__link {
	color: var(--gu-blue) !important;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none !important;
}

.gu-section__link:hover {
	text-decoration: underline !important;
}

/* Products */
.gu-product-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1rem;
}

.gu-product-card {
	position: relative;
	background: #fff;
	border: 1px solid #eceff3;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow .25s ease, transform .25s ease;
	animation: guFadeUp .6s ease both;
}

.gu-product-card__badge {
	position: absolute;
	top: .65rem;
	left: .65rem;
	z-index: 2;
	background: var(--gu-navy);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	padding: .25rem .5rem;
	border-radius: 6px;
}

.gu-product-card:nth-child(2) { animation-delay: .05s; }
.gu-product-card:nth-child(3) { animation-delay: .1s; }
.gu-product-card:nth-child(4) { animation-delay: .15s; }
.gu-product-card:nth-child(5) { animation-delay: .2s; }

.gu-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(11, 47, 91, .1);
}

.gu-product-card__media {
	display: block;
	aspect-ratio: 1 / 1.05;
	background: #fafafa;
	overflow: hidden;
}

.gu-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.gu-product-card:hover .gu-product-card__media img {
	transform: scale(1.04);
}

.gu-product-card__body {
	padding: .9rem .95rem 1rem;
	display: flex;
	flex-direction: column;
	gap: .35rem;
	flex: 1;
}

.gu-product-card__brand {
	font-size: .75rem;
	color: var(--gu-muted);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.gu-product-card__title {
	margin: 0;
	font-size: .95rem;
	font-weight: 700;
	line-height: 1.3;
	min-height: 2.5em;
}

.gu-product-card__title a {
	color: var(--gu-text) !important;
	text-decoration: none !important;
}

.gu-product-card__prices {
	display: flex;
	align-items: baseline;
	gap: .55rem;
	flex-wrap: wrap;
}

.gu-product-card__price {
	font-weight: 700;
	color: var(--gu-navy);
	font-size: 1.05rem;
}

.gu-product-card__price-old {
	font-size: .85rem;
	color: #9ca3af;
	text-decoration: line-through;
}

.gu-product-card__rating {
	color: var(--gu-star);
	font-size: .82rem;
}

.gu-product-card__rating span {
	color: var(--gu-muted);
	margin-left: .15rem;
}

.gu-product-card__stock {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .82rem;
	color: var(--gu-stock);
	font-weight: 600;
	margin: .15rem 0 .35rem;
}

.gu-product-card__stock.is-out {
	color: #b45309;
}

.gu-product-card__stock-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
}

.gu-product-card .gu-btn {
	margin-top: auto;
	font-size: .88rem;
	min-height: 40px;
}

/* Categories */
.gu-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.gu-category-card {
	position: relative;
	display: block;
	min-height: 190px;
	border-radius: 12px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	text-decoration: none !important;
	transform: translateZ(0);
}

.gu-category-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7,24,48,.05) 35%, rgba(7,24,48,.78) 100%);
	transition: background .3s ease;
}

.gu-category-card:hover::before {
	background: linear-gradient(180deg, rgba(7,24,48,.1) 20%, rgba(7,24,48,.85) 100%);
}

.gu-category-card span {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: .95rem;
	z-index: 1;
	color: #fff;
	font-weight: 700;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
}

.gu-category-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 28px rgba(11,47,91,.16);
	transition: transform .25s ease, box-shadow .25s ease;
}

.gu-category-card--navy {
	background-color: #03336C;
	background-image: none;
}

.gu-category-card--navy::before {
	background: linear-gradient(180deg, rgba(3,51,108,.15) 20%, rgba(2,28,60,.55) 100%);
}

/* Promos */
.gu-promo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.gu-promo-card {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	min-height: 240px;
	border-radius: 14px;
	overflow: hidden;
}

.gu-promo-card--navy {
	background: var(--gu-navy);
	color: #fff;
}

.gu-promo-card--warm {
	background: var(--gu-warm);
	color: var(--gu-navy);
}

.gu-promo-card__copy {
	padding: 1.6rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: .75rem;
}

.gu-promo-card__copy h3 {
	margin: 0;
	font-size: clamp(1.35rem, 2.2vw, 1.8rem);
	font-weight: 700;
	line-height: 1.15;
}

.gu-promo-card__copy p {
	margin: 0;
	opacity: .9;
	font-size: .95rem;
}

.gu-promo-card__media {
	background-size: cover;
	background-position: center;
	min-height: 100%;
}

/* Professionals */
.gu-pro {
	position: relative;
	margin-top: 2rem;
	min-height: 420px;
	display: flex;
	align-items: center;
}

.gu-pro__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.gu-pro__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(247,249,252,.92) 0%, rgba(247,249,252,.78) 42%, rgba(247,249,252,.15) 100%);
}

.gu-pro__inner {
	position: relative;
	z-index: 1;
	padding: 3rem 0;
}

.gu-pro__panel {
	max-width: 460px;
	background: rgba(255,255,255,.88);
	border: 1px solid rgba(11,47,91,.08);
	border-radius: 14px;
	padding: 1.75rem 1.6rem;
	backdrop-filter: blur(4px);
	animation: guFadeUp .7s ease both;
}

.gu-pro__eyebrow {
	display: inline-block;
	color: var(--gu-blue);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: .55rem;
}

.gu-pro__title {
	margin: 0 0 .7rem;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	color: var(--gu-text);
}

.gu-pro__text {
	margin: 0 0 1rem;
	color: var(--gu-muted);
	line-height: 1.5;
}

.gu-pro__list {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

.gu-pro__list li {
	display: flex;
	align-items: center;
	gap: .55rem;
	margin-bottom: .45rem;
	font-weight: 600;
	color: var(--gu-text);
}

.gu-pro__list i {
	color: var(--gu-blue);
}

/* Newsletter */
.gu-newsletter {
	background: var(--gu-navy-soft);
	color: #fff;
	margin-top: 0;
}

.gu-newsletter__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.75rem 0;
	flex-wrap: wrap;
}

.gu-newsletter__copy {
	display: flex;
	align-items: center;
	gap: .9rem;
}

.gu-newsletter__icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	max-width: 44px;
	max-height: 44px;
	flex: 0 0 44px;
	aspect-ratio: 1 / 1;
	box-sizing: border-box;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	line-height: 1;
	overflow: hidden;
	padding: 0;
	align-self: center;
}

.gu-newsletter__copy strong {
	display: block;
	font-size: 1.15rem;
	margin-bottom: .15rem;
}

.gu-newsletter__copy p {
	margin: 0;
	opacity: .88;
	font-size: .9rem;
}

.gu-newsletter__form {
	display: flex;
	gap: .6rem;
	flex-wrap: wrap;
	min-width: min(100%, 420px);
}

.gu-newsletter__form input {
	flex: 1;
	min-width: 220px;
	height: 46px;
	border: 0;
	border-radius: 8px;
	padding: 0 1rem;
	font-size: .95rem;
}

.gu-newsletter__form .gu-btn {
	border-color: rgba(255,255,255,.55);
}

.gu-newsletter__msg {
	flex-basis: 100%;
	margin: 0.5rem 0 0;
	font-size: 0.9rem;
	text-align: center;
}

.gu-newsletter__msg--ok {
	color: #c8f7d4;
}

.gu-newsletter__msg--err {
	color: #ffd0d0;
}

/* Footer — scrolls with page (override legacy style.css footer { position: fixed }) */
.gu-footer,
footer.gu-footer,
.gu-footer.footer-fixed {
	position: static !important;
	bottom: auto !important;
	left: auto !important;
	width: 100%;
	background: var(--gu-navy);
	color: rgba(255,255,255,.88);
	padding-top: 2.25rem;
		z-index: auto;
	border-radius: 0 !important;
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}

.gu-footer a {
	color: rgba(255,255,255,.88) !important;
	text-decoration: none !important;
}

.gu-footer a:hover {
	color: #fff !important;
	text-decoration: underline !important;
}

.gu-footer__brand-row {
	margin-bottom: 1.5rem;
}

.gu-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	font-weight: 700;
	letter-spacing: .04em;
	color: #fff !important;
	text-decoration: none !important;
}

.gu-footer__logo-img {
	height: 48px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
	display: block;
	background: transparent;
	filter: none;
}

.gu-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 1fr);
	gap: 1.5rem;
	padding-bottom: 1.75rem;
}

.gu-footer__col h4 {
	color: #fff;
	font-size: .95rem;
	font-weight: 700;
	margin: 0 0 .85rem;
}

.gu-footer__col p {
	margin: 0 0 .45rem;
	font-size: .88rem;
	line-height: 1.45;
}

.gu-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gu-footer__col li {
	margin-bottom: .4rem;
	font-size: .88rem;
}

.gu-footer__social {
	display: flex;
	gap: .55rem;
	margin-top: .9rem;
}

.gu-footer__social a,
.gu-footer__social a:hover,
.gu-footer__social a:focus {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
}

.gu-footer__payments {
	display: flex;
	justify-content: center;
	gap: .65rem;
	flex-wrap: wrap;
	padding: 1rem 0 1.4rem;
	border-top: 1px solid rgba(255,255,255,.12);
}

.gu-pay-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	height: 30px;
	padding: 0 .7rem;
	border-radius: 4px;
	background: rgba(255,255,255,.95);
	color: var(--gu-navy);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .03em;
}

.gu-footer__legal {
	background: var(--gu-navy-deep);
}

.gu-footer__legal-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	padding: .85rem 0;
	font-size: .8rem;
}

.gu-footer__legal p {
	margin: 0;
	opacity: .85;
}

.gu-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: .85rem 1.1rem;
}

@keyframes guFadeUp {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 1199.98px) {
	.gu-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991.98px) {
	.gu-header-main__inner {
		grid-template-columns: auto 1fr auto;
		gap: .75rem;
	}

	.gu-logo__text {
		display: none;
	}

	.gu-util span {
		display: none;
	}

	.gu-util {
		min-width: 42px;
	}

	.gu-nav__list {
		gap: .15rem 1rem;
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		padding-bottom: .8rem;
	}

	.gu-nav__list a {
		white-space: nowrap;
	}

	.gu-trust {
		margin-top: -2.75rem;
	}

	.gu-trust__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gu-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gu-promo-grid {
		grid-template-columns: 1fr;
	}

	.gu-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767.98px) {
	.gu-topbar {
		font-size: .65rem;
	}

	.gu-topbar__inner {
		justify-content: center;
		overflow: visible;
		flex-wrap: wrap;
		gap: .3rem .7rem;
		padding: .35rem .5rem;
	}

	.gu-topbar__item--break {
		flex: 1 0 100%;
		justify-content: center;
	}

	.gu-header-main__inner {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"logo utils"
			"search search";
		align-items: center;
	}

	.gu-logo {
		grid-area: logo;
		align-self: center;
	}

	.gu-header-utils {
		grid-area: utils;
		justify-self: end;
		justify-content: flex-end;
		align-self: center;
		margin-left: auto;
		margin-right: 0;
		width: max-content;
		max-width: 100%;
		height: 100%;
		min-height: 100%;
		display: flex;
		align-items: center;
		gap: .15rem .35rem;
		padding: 0;
		margin-bottom: 60px;
	}

	.gu-header-utils .gu-util {
		min-width: 0;
		padding: .15rem .2rem;
	}

	.gu-search { grid-area: search; max-width: none; }

	.gu-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gu-promo-card {
		grid-template-columns: 1fr;
	}

	.gu-promo-card__media {
		min-height: 160px;
	}

	.gu-trust {
		margin-top: -2.25rem;
	}

	.gu-trust__box {
		border-radius: 14px;
		padding: 1.1rem 1rem;
	}

	.gu-trust__grid {
		grid-template-columns: 1fr;
	}

	.gu-category-grid {
		grid-template-columns: 1fr;
	}

	.gu-category-card {
		min-height: 160px;
	}

	.gu-newsletter__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.gu-newsletter__copy {
		align-items: center;
	}

	.gu-newsletter__form {
		min-width: 0;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.gu-newsletter__form input {
		width: 100%;
		min-width: 0;
	}

	.gu-newsletter__form .gu-btn {
		margin-left: auto;
		margin-right: auto;
		align-self: center;
	}

	.gu-newsletter__msg {
		text-align: center;
		width: 100%;
	}

	.gu-footer__grid {
		grid-template-columns: 1fr;
	}

	.gu-footer__brand-row,
	.gu-footer__col {
		text-align: center;
	}

	.gu-footer__logo {
		justify-content: center;
		width: 100%;
	}

	.gu-footer__social {
		justify-content: center;
	}

	.gu-footer__legal-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.gu-hero {
		min-height: 460px;
		padding-bottom: 3.5rem;
	}

	.gu-hero__slide {
		background-image: var(--hero-bg-mobile);
	}

	.gu-hero__nav {
		width: 36px;
		height: 36px;
		font-size: 1.15rem;
	}

	.gu-hero__nav--prev {
		left: .5rem;
	}

	.gu-hero__nav--next {
		right: .5rem;
	}

	.gu-hero__content {
		padding: 3.25rem 0 1.5rem;
	}

	.gu-hero .gu-container.gu-hero__content {
		max-width: min(640px, calc(100% - .5rem - 36px - 30px - .5rem - 36px));
		margin-left: calc(.5rem + 36px + 30px);
	}
}

@media (max-width: 480px) {
	.gu-product-grid {
		grid-template-columns: 1fr;
	}
}

/* Apply chrome styles site-wide when new header/footer classes exist */
body:not(.gu-home) .gu-site-header,
body:not(.gu-home) .gu-footer {
	font-family: var(--gu-font);
}

/* Catalog filters relocated into header on small screens */
#mainMenu #divFilter {
	grid-column: 1 / -1;
	width: 100%;
	padding: .25rem 0 .75rem;
}

#mainMenu #divFilter > .btn {
	background: var(--gu-navy);
	color: #fff !important;
	border-radius: 8px;
}

/* Ensure sticky header stays above content; footer never sticks */
.gu-site-header.sticky-top {
	position: sticky;
	top: 0;
	z-index: 1030;
}
