/* =========================================================
   Glowshop — school uniforms replica (Storefront child theme)
   Breakpoints: 980 / 820 / 768
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/montserrat-n300.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/montserrat-n400.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/montserrat-n500.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/montserrat-n600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/montserrat-n700.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: italic; font-weight: 300; font-display: swap; src: url('../fonts/montserrat-i300.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/montserrat-i400.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: italic; font-weight: 500; font-display: swap; src: url('../fonts/montserrat-i500.woff2') format('woff2'); }
@font-face { font-family: 'sofia-pro'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/sofiapro-n400.woff2') format('woff2'); }
@font-face { font-family: 'sofia-pro'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/sofiapro-n700.woff2') format('woff2'); }
@font-face { font-family: 'sofia-pro'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/sofiapro-i400.woff2') format('woff2'); }
@font-face { font-family: 'sofia-pro'; font-style: italic; font-weight: 700; font-display: swap; src: url('../fonts/sofiapro-i700.woff2') format('woff2'); }

/* ---------- Design tokens ---------- */
:root {
	--gs-font: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
	--gs-font-brand: 'sofia-pro', 'Montserrat', sans-serif;
	--gs-text: #333333;
	--gs-text-soft: #58595b;
	--gs-ink: #141b4d;          /* navy: buttons, titles, hero */
	--gs-ink-deep: #010159;     /* announcement bar */
	--gs-maroon: #5a2e3f;
	--gs-pink: #F7AFB8;
	--gs-yellow: #F6CF3E;
	--gs-red: #E32424;
	--gs-star: #1d3278;
	--gs-star-warm: #f4695e;
	--gs-surface: #f7f7f7;
	--gs-surface-2: #f4f4f4;
	--gs-line: #e1e1e1;
	--gs-line-dark: #707070;
	--gs-blue-banner: #e8f1fb;
	--gs-width: 1170px;
	--gs-announce-h: 35px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--gs-font);
	font-size: 14px;
	line-height: 1.4;
	color: var(--gs-text);
	background: #fff;
}
img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gs-ink); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.gs-skip { position: absolute; left: -9999px; }
.gs-skip:focus { left: 8px; top: 8px; background: #fff; padding: 8px 16px; z-index: 99999; }
.gs-container { max-width: var(--gs-width); margin: 0 auto; padding: 0 15px; }
.gs-icon svg { width: 1em; height: 1em; fill: currentColor; display: inline-block; vertical-align: -0.125em; }
.gs-icon svg { width: 18px; height: 18px; }

/* Storefront cleanup */
.storefront-full-width-content .site-main, .site-main { margin: 0; }
.woocommerce-message, .woocommerce-info, .woocommerce-error { max-width: var(--gs-width); margin: 12px auto; }

/* =========================================================
   Announcement bar
   ========================================================= */
.gs-header-wrapper { position: sticky; top: 0; z-index: 999; }
.gs-announce {
	position: relative;
	background: var(--gs-ink-deep);
	color: #fff;
	font-family: var(--gs-font-brand);
	height: var(--gs-announce-h);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}
.gs-announce-content { position: relative; width: 100%; max-width: 1200px; height: 100%; }
.gs-announce-slide {
	position: absolute;
	inset: 0 40px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s ease-in-out, visibility .8s;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 16px;
	letter-spacing: 1.1px;
	pointer-events: none;
}
.gs-announce-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.gs-announce-slide a { color: #fff; text-decoration: underline; font-weight: 700; }
.gs-announce-sep { margin: 0 4px; }
.gs-announce-ctrl {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: transparent;
	border: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border-radius: 50%;
}
.gs-announce-ctrl svg { width: 18px; height: 18px; fill: currentColor; }
.gs-announce-ctrl:hover { background: rgba(255,255,255,.1); }
.gs-announce-prev { left: calc(50% - 320px); }
.gs-announce-next { right: calc(50% - 320px); }
.gs-announce-pause {
	right: 15px;
	border: 1px solid #fff;
	width: 24px;
	height: 24px;
	padding: 0 !important;
}
.gs-announce-pause svg { width: 10px; height: 10px; }
.gs-announce-pause .icon-play { display: none; }
.gs-announce-pause.is-paused .icon-play { display: block; }
.gs-announce-pause.is-paused .icon-pause { display: none; }
@media (min-width: 1400px) {
	.gs-announce-pause { right: calc(50% - 500px); }
}

/* =========================================================
   Header (desktop)
   ========================================================= */
.gs-header { background: #fff; position: relative; }
.gs-header-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 18px 36px 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}
.gs-logo { display: inline-block; }
.gs-logo-img { width: 152px; height: auto; display: block; }
.gs-header-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; padding-top: 12px; }
.gs-utility { display: flex; align-items: center; gap: 28px; }
.gs-utility a { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; letter-spacing: .5px; color: var(--gs-text); font-weight: 500; }
.gs-utility .gs-icon svg { width: 17px; height: 17px; }
.gs-search { display: flex; align-items: center; width: 300px; border-bottom: 1px solid #b9b9b9; padding-bottom: 2px; }
.gs-search-input {
	flex: 1;
	border: 0;
	outline: 0;
	padding: 6px 2px;
	font-size: 14px;
	color: var(--gs-text);
	background: transparent;
}
.gs-search-input::placeholder { color: #757575; }
.gs-search-btn { background: none; border: 0; color: #333; padding: 4px; display: inline-flex; }
.gs-search-btn .gs-icon svg { width: 16px; height: 16px; }

/* Main nav */
.gs-mainnav { max-width: 1400px; margin: 0 auto; }
.gs-mainnav-list {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 44px;
	padding: 6px 15px 0;
}
.gs-nav-item { position: static; display: flex; align-items: center; }
.gs-nav-link {
	display: inline-block;
	padding: 16px 2px 14px;
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	color: #3f3f3f;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}
.gs-nav-item:hover .gs-nav-link,
.gs-nav-item.is-open .gs-nav-link { border-bottom-color: var(--gs-ink); color: #232323; }
.gs-nav-caret {
	background: none;
	border: 0;
	padding: 0 0 0 2px;
	color: #3f3f3f;
	display: inline-flex;
}
.gs-nav-caret svg { width: 18px; height: 18px; fill: currentColor; transition: transform .2s; }
.gs-nav-item:hover .gs-nav-caret svg,
.gs-nav-item.is-open .gs-nav-caret svg { transform: rotate(180deg); }

/* Mega menu — anchored to the header so it spans the viewport */
.gs-mega {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	border-top: 1px solid var(--gs-line);
	box-shadow: 0 22px 30px -22px rgba(0,0,0,.25);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 60;
}
.gs-nav-item:hover > .gs-mega,
.gs-nav-item.is-open > .gs-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.gs-mega-row {
	max-width: 1170px;
	margin: 0 auto;
	padding: 26px 15px 34px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.gs-mega-col { display: flex; flex-direction: column; }
.gs-mega-heading {
	font-size: 15px;
	font-weight: 700;
	color: #2b2b2b;
	margin: 4px 0 12px;
}
.gs-mega-col .gs-mega-link:first-of-type { margin-top: 0; }
.gs-mega-link {
	font-size: 14px;
	color: #3d3d3d;
	padding: 6px 0;
}
.gs-mega-link:hover { color: var(--gs-ink); text-decoration: underline; }
/* first column holds "New Arrivals" before the Shop by Category heading */
.gs-mega-col .gs-mega-link + .gs-mega-heading { margin-top: 16px; }

/* =========================================================
   Mobile header + drawer
   ========================================================= */
.gs-mobilebar { display: none; }
.gs-drawer { display: none; }

/* =========================================================
   Hero slider
   ========================================================= */
.gs-hero { position: relative; overflow: hidden; font-family: var(--gs-font-brand); }
.gs-hero-track { position: relative; }
.gs-hero-slide {
	display: none;
	align-items: stretch;
	justify-content: space-between;
	min-height: 450px;
}
.gs-hero-slide.is-active { display: flex; }
.gs-hero-image {
	width: 50%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.gs-hero-panel {
	width: 50%;
	min-height: 450px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 30px 50px;
}
.gs-hero-slide.is-reverse { flex-direction: row-reverse; }
.bg-slide1 { background: var(--gs-pink); }
.bg-slide2 { background: var(--gs-yellow); }
.gs-hero-title { font-size: 30px; font-weight: 700; color: var(--gs-ink); line-height: 1.15; }
.gs-hero-offer {
	font-size: 84px;
	font-weight: 700;
	color: var(--gs-maroon);
	letter-spacing: -2px;
	margin-top: -10px;
	line-height: 1;
	display: flex;
	gap: 10px;
	justify-content: center;
}
.bg-slide2 ~ * .gs-hero-offer, .gs-hero-slide .bg-slide2 .gs-hero-offer { color: var(--gs-ink); }
.gs-hero-slide.is-reverse .gs-hero-offer { color: var(--gs-ink); }
.gs-hero-slide:not(.is-reverse) .gs-hero-offer { color: var(--gs-maroon); }
.gs-hero-asterisk { font-size: 30px; position: relative; top: -10px; letter-spacing: 0; }
.gs-hero-sub { font-size: 34px; font-weight: 700; color: var(--gs-ink); margin-top: 0; }
.gs-hero-text { font-size: 18px; color: var(--gs-ink); margin: 14px 0 34px; }
.gs-hero-buttons { display: flex; gap: 10px; justify-content: center; }
.gs-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 230px;
	height: 50px;
	border: 2px solid var(--gs-ink);
	background: var(--gs-ink);
	color: #fff;
	font-weight: 700;
	font-size: 20px;
}
.gs-hero-btn:hover { color: #fff; opacity: .92; }
.gs-hero-footnote { font-size: 11px; color: var(--gs-ink); margin-top: 25px; }
.gs-hero-dots { display: flex; justify-content: center; gap: 10px; padding: 12px 0 4px; }
.gs-hero-dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 0;
	background: #6b6b6b;
	text-indent: -9999px;
	padding: 0;
}
.gs-hero-dot.is-active { background: var(--gs-ink); }
.gs-hero-pause {
	position: absolute;
	left: 5px;
	bottom: 64px;
	z-index: 10;
	background: #1b1464;
	color: #fff;
	border: 0;
	border-radius: 100px;
	padding: 9px;
	display: inline-flex;
}
.gs-hero-pause svg { width: 11px; height: 11px; fill: currentColor; }
.gs-hero-pause .icon-play { display: none; }
.gs-hero-pause.is-paused .icon-play { display: block; }
.gs-hero-pause.is-paused .icon-pause { display: none; }

/* =========================================================
   Category tiles
   ========================================================= */
.gs-tiles {
	display: flex;
	justify-content: center;
	column-gap: 40px;
	padding: 50px 15px;
	font-family: var(--gs-font-brand);
}
.gs-tile-wrap { display: block; }
.gs-tile-wrap:hover { text-decoration: none; }
.gs-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 3px solid var(--gs-line-dark);
	padding: 20px;
}
.gs-tile-heading {
	background: #fff;
	font-weight: 700;
	font-size: 22px;
	color: #232323;
	text-align: center;
	margin-top: -50px;
	margin-bottom: 10px;
	padding: 0 10px;
}
.gs-tile-image {
	position: relative;
	width: 380px;
	height: 380px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gs-tile-word {
	color: #fff;
	font-size: 60px;
	font-weight: 700;
	text-transform: uppercase;
	text-shadow: 2px 3px 0 var(--gs-ink);
	letter-spacing: 2px;
}

/* =========================================================
   School admins banner
   ========================================================= */
.gs-admins {
	margin: 50px 0;
	background: var(--gs-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 60px;
	padding: 15px 20px 25px;
}
.gs-admins-icon { width: 70px; height: auto; }
.gs-admins h2 {
	font-family: var(--gs-font-brand);
	color: #111;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 5px;
	text-align: left;
}
.gs-admins-btn {
	font-family: var(--gs-font-brand);
	background: #000;
	color: #fff;
	border: 2px solid #000;
	padding: 8px 40px 10px;
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	white-space: nowrap;
}
.gs-admins-btn:hover { color: #fff; opacity: .88; }

/* =========================================================
   Product cards + carousels
   ========================================================= */
.gs-reco { padding: 10px 0 50px; }
.gs-reco-title,
.gs-share-title,
.gs-circles-title,
.gs-reviews-title {
	font-size: 36px;
	font-weight: 500;
	color: #2d2d2d;
	text-align: center;
	letter-spacing: .5px;
}
.gs-reco-title { margin-bottom: 26px; padding: 0 15px; }
.gs-reco-wrap { position: relative; max-width: 1440px; margin: 0 auto; padding: 0 56px; }
.gs-reco-track {
	display: flex !important;
	flex-wrap: nowrap;
	overflow: hidden;
	align-items: stretch;
	transition: transform .3s ease;
}
.gs-reco-track > li { flex: 0 0 16.6667%; max-width: 16.6667%; }
.gs-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	align-items: start;
}
.gs-reco-nav {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	z-index: 5;
	width: 40px;
	height: 44px;
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0,0,0,.14);
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gs-reco-nav .gs-icon svg { width: 22px; height: 22px; }
.gs-reco-prev { left: 8px; }
.gs-reco-next { right: 8px; }
.gs-reco-nav[disabled] { opacity: .4; cursor: default; }

/* Card */
.gs-card { position: relative; padding: 10px 8px 22px; text-align: center; }
.gs-card-media {
	position: relative;
	display: block;
	background: #fff;
	margin-bottom: 14px;
}
.gs-card-media img { width: 100%; height: auto; display: block; mix-blend-mode: multiply; }
.gs-card-badge {
	position: absolute;
	left: 8px;
	top: 8px;
	background: var(--gs-red);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .5px;
	padding: 3px 8px;
	z-index: 2;
}
.gs-card-info { display: block; }
.gs-card-swatches {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	vertical-align: middle;
}
.gs-card-swatch {
	width: 22px;
	height: 18px;
	border-radius: 3px;
	background-color: #ddd;
	background-size: cover;
	background-position: center;
	display: inline-block;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.gs-card-swatch-more { font-size: 13px; color: #2b2b2b; margin-left: 4px; }
.gs-card-title { font-size: 14px; font-weight: 500; line-height: 1.35; margin: 0 auto 6px; max-width: 240px; }
.gs-card-title a { color: #33517d; }
.gs-card-rating { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 6px; }
.gs-stars { display: inline-flex; gap: 1px; }
.gs-star {
	width: 14px;
	height: 14px;
	display: inline-block;
	background-color: var(--gs-star);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.7-5.2 4.6 1.5 6.8L12 16.9 5.9 20.4l1.5-6.8L2.2 9l6.9-.7z'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.3 6.9.7-5.2 4.6 1.5 6.8L12 16.9 5.9 20.4l1.5-6.8L2.2 9l6.9-.7z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.gs-star.is-half {
	background: linear-gradient(90deg, var(--gs-star) 50%, #c9d2ea 50%);
	-webkit-mask: none; mask: none;
	border-radius: 2px;
	-webkit-clip-path: none;
}
.gs-stars-score { font-size: 13px; color: #333; }
.gs-stars.gs-stars-warm .gs-star { background-color: var(--gs-star-warm); width: 26px; height: 26px; }
.gs-card-price { font-size: 14px; }
.gs-price-range { display: flex; flex-direction: column; gap: 2px; }
.gs-price-was, .gs-price-was-inline { color: #274b8f; }
.gs-price-was { text-decoration: line-through; }
.gs-price-sale { color: var(--gs-red); }
.gs-card-promo { font-size: 11.5px; color: #2b2b2b; letter-spacing: .4px; margin-top: 6px; }

/* =========================================================
   Share. Shop. Save.
   ========================================================= */
.gs-share { background: var(--gs-surface-2); padding: 40px 0 30px; margin: 30px 0 0; }
.gs-share-title { font-family: var(--gs-font-brand); font-weight: 700; color: var(--gs-ink); margin-bottom: 34px; }
.gs-share-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 15px;
}
.gs-share-box { width: 346px; max-width: 31%; text-align: center; }
.gs-share-img { width: 100%; display: block; }
.gs-share-box h3 { font-family: var(--gs-font-brand); font-weight: 700; font-size: 24px; color: var(--gs-ink); margin-top: 20px; }
.gs-share-box h3 a { color: var(--gs-ink); }
.gs-share-box p { font-family: var(--gs-font-brand); font-size: 16px; line-height: 22px; color: var(--gs-ink); width: 88%; margin: 5px auto 20px; }

/* =========================================================
   Category circles
   ========================================================= */
.gs-circles { padding: 70px 0 60px; }
.gs-circles-head { text-align: center; margin-bottom: 44px; padding: 0 20px; }
.gs-circles-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 14px;
	color: #8a8a8a;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
}
.gs-circles-rule { width: 56px; height: 1px; background: #b9b9b9; display: inline-block; }
.gs-circles-title { font-weight: 400; }
.gs-circles-title em { font-style: italic; font-weight: 400; }
.gs-circles-rail {
	display: flex;
	justify-content: center;
	gap: 42px;
	flex-wrap: wrap;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 15px;
}
.gs-circle-card { text-align: center; }
.gs-circle {
	width: 152px;
	height: 152px;
	border-radius: 50%;
	background: var(--gs-surface-2);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.gs-circle-img { width: 82%; height: 82%; object-fit: contain; mix-blend-mode: multiply; }
.gs-circle-label {
	display: inline-block;
	margin-top: 18px;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #2b2b2b;
	border-bottom: 1px solid #6f6f6f;
	padding-bottom: 3px;
}
.gs-circle-card:hover .gs-circle-label { color: var(--gs-ink); border-color: var(--gs-ink); }

/* =========================================================
   Reviews strip
   ========================================================= */
.gs-reviews { padding: 30px 0 70px; }
.gs-reviews-title {
	font-family: var(--gs-font);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.gs-reviews-wrap {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 60px;
	min-height: 130px;
}
.gs-reviews-track { position: relative; }
.gs-review { margin: 0; display: none; text-align: center; }
.gs-review.is-active { display: block; }
.gs-review-stars { display: flex; justify-content: center; margin-bottom: 12px; }
.gs-review-quote { font-size: 16px; line-height: 1.5; color: #2b2b2b; max-width: 620px; margin: 0 auto 12px; }
.gs-review-cite { font-style: normal; font-size: 12px; color: #58595b; }
.gs-reviews-nav {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	background: none;
	border: 0;
	color: #1a1a1a;
	display: inline-flex;
	padding: 6px;
}
.gs-reviews-nav .gs-icon svg { width: 34px; height: 34px; }
.gs-reviews-prev { left: 0; }
.gs-reviews-next { right: 0; }

/* =========================================================
   Newsletter + footer
   ========================================================= */
.gs-newsletter { background: var(--gs-surface-2); padding: 34px 0; }
.gs-newsletter-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.gs-newsletter-title {
	font-family: var(--gs-font-brand);
	font-weight: 700;
	font-size: 26px;
	color: var(--gs-red);
	letter-spacing: 1px;
}
.gs-newsletter-form { display: flex; align-items: flex-end; gap: 26px; }
.gs-newsletter-form input[type="email"] {
	width: 300px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #9a9a9a;
	padding: 8px 2px;
	font-size: 15px;
	outline: 0;
}
.gs-newsletter-join {
	background: var(--gs-ink);
	color: #fff;
	border: 0;
	font-family: var(--gs-font-brand);
	font-size: 16px;
	letter-spacing: 2px;
	padding: 12px 28px;
	min-width: 104px;
}
.gs-newsletter-join:hover { opacity: .9; }

.gs-footer { background: #fff; }
.gs-footer-social { border-bottom: 1px solid var(--gs-line); }
.gs-footer-social-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 90px;
	padding: 28px 15px;
}
.gs-footer-service { font-size: 14px; font-weight: 700; color: #002245; letter-spacing: .5px; }
.gs-social-list { display: flex; gap: 84px; }
.gs-social-list a { color: #002245; display: inline-flex; }
.gs-social-list .gs-icon svg { width: 22px; height: 22px; }

.gs-footer-links { padding: 44px 0 30px; }
.gs-footer-links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1030px;
}
.gs-footer-heading { font-size: 14px; font-weight: 700; color: #333; letter-spacing: .4px; margin-bottom: 14px; }
.gs-footer-col li { margin: 0 0 11px; }
.gs-footer-col a { font-size: 14px; color: var(--gs-text-soft); }
.gs-footer-col a:hover { color: var(--gs-ink); text-decoration: underline; }

.gs-footer-legal { border-top: 1px solid var(--gs-line); }
.gs-footer-legal-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 18px 15px 26px;
	flex-wrap: wrap;
}
.gs-trustmark {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	border: 1px solid #d8d8d8;
	border-radius: 3px;
	padding: 5px 10px;
	background: #fff;
}
.gs-trustmark-check {
	color: #3fae49;
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
}
.gs-trustmark-text { font-size: 11px; font-weight: 600; color: #2b2b2b; line-height: 1.1; }
.gs-trustmark-text em { display: block; font-style: normal; font-weight: 400; font-size: 8px; color: #7a7a7a; letter-spacing: .4px; }
.gs-legal-list { display: flex; flex-wrap: wrap; }
.gs-legal-list li { display: flex; align-items: center; }
.gs-legal-list li + li::before { content: "|"; color: #9a9a9a; margin: 0 10px; }
.gs-legal-list a { font-size: 12px; color: var(--gs-text-soft); }
.gs-legal-list a:hover { text-decoration: underline; }
.gs-copyright { font-size: 12px; color: var(--gs-text-soft); }

/* Mobile floating bar */
.gs-floatbar { display: none; }

/* =========================================================
   Shop / category page
   ========================================================= */
.gs-shopbanner { background: var(--gs-blue-banner); }
.gs-shopbanner-inner { max-width: 1170px; margin: 0 auto; padding: 22px 15px; text-align: center; }
.gs-shopbanner-title { font-size: 34px; font-weight: 500; color: #222; }
.gs-shopbanner-desc { font-size: 16px; font-weight: 500; color: #222; margin: 6px 0 0; }
.gs-breadcrumb { padding: 14px 15px 26px; font-size: 12px; color: var(--gs-text-soft); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.gs-breadcrumb a { color: var(--gs-text-soft); }
.gs-breadcrumb a:hover { text-decoration: underline; }
.gs-breadcrumb-sep { color: #9a9a9a; }

.gs-shoptoolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
}
.gs-shoptoolbar-title { font-size: 24px; font-weight: 500; color: #222; padding-bottom: 10px; }
.gs-filters { display: flex; gap: 22px; flex: 1; justify-content: flex-end; }
.gs-filter { position: relative; width: 278px; }
.gs-filter-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 1px solid #c9c9c9;
	padding: 13px 16px;
	font-size: 13px;
	letter-spacing: 1px;
	color: #2b2b2b;
}
.gs-filter-plus { position: relative; width: 12px; height: 12px; display: inline-block; }
.gs-filter-plus::before, .gs-filter-plus::after {
	content: "";
	position: absolute;
	background: #2b2b2b;
}
.gs-filter-plus::before { left: 0; top: 5px; width: 12px; height: 2px; }
.gs-filter-plus::after { left: 5px; top: 0; width: 2px; height: 12px; }
.gs-filter.is-open .gs-filter-plus::after { display: none; }
.gs-filter-panel {
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #c9c9c9;
	border-top: 0;
	padding: 14px 16px;
	z-index: 30;
	max-height: 320px;
	overflow: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 14px;
}
.gs-filter-color { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.gs-filter-link { font-size: 13px; padding: 4px 0; }
.gs-filter-link.is-chosen { font-weight: 700; color: var(--gs-ink); }

.gs-viewtoggle { display: inline-flex; border: 1px solid #d5d5d5; margin-bottom: 22px; }
.gs-viewtoggle button {
	background: #fff;
	border: 0;
	border-right: 1px solid #d5d5d5;
	padding: 8px 12px;
	color: #444;
	display: inline-flex;
}
.gs-viewtoggle button:last-child { border-right: 0; }
.gs-viewtoggle button .gs-icon svg { width: 15px; height: 15px; }
.gs-viewtoggle button.is-active { background: #3d3d3d; color: #fff; }

.gs-grid { grid-template-columns: repeat(4, 1fr); }
.gs-grid::before, .gs-grid::after { content: none; }
.gs-no-products { padding: 40px 0; }

.gs-promofloat {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 90;
	background: #123058;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .4px;
	padding: 13px 18px;
}
.gs-promofloat:hover { color: #fff; opacity: .92; }

/* Pagination */
.gs-shop .navigation.pagination, .gs-page .navigation.pagination {
	margin: 30px auto 50px;
	display: flex;
	justify-content: center;
}
.gs-shop .nav-links { display: flex; gap: 6px; }
.gs-shop .page-numbers {
	min-width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d5d5d5;
	font-size: 14px;
	color: #333;
	padding: 0 10px;
}
.gs-shop .page-numbers.current { background: var(--gs-ink); color: #fff; border-color: var(--gs-ink); }

/* =========================================================
   Product detail page
   ========================================================= */
.gs-pdp { padding-bottom: 40px; }
.gs-pdp-grid {
	display: grid;
	grid-template-columns: minmax(0, 57%) minmax(0, 43%);
	gap: 30px;
	align-items: start;
	margin-top: 6px;
}
.gs-pdp-mainimg {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.gs-pdp-mainimg img { mix-blend-mode: multiply; max-height: 620px; width: auto; max-width: 100%; }
.gs-pdp-thumbs { display: flex; justify-content: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.gs-pdp-thumb {
	background: #fff;
	border: 1px solid #d9d9d9;
	padding: 4px;
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.gs-pdp-thumb img { max-width: 100%; max-height: 100%; mix-blend-mode: multiply; }
.gs-pdp-thumb.is-active { border: 2px solid var(--gs-ink); }

.gs-pdp-title { font-size: 27px; font-weight: 500; color: #2f4f8d; line-height: 1.25; }
.gs-pdp-rating { display: flex; align-items: center; gap: 10px; margin: 10px 0 4px; }
.gs-pdp-write { font-size: 13px; text-decoration: underline; color: #2b2b2b; }
.gs-pdp-itemno { font-size: 12px; color: var(--gs-text-soft); margin-top: 10px; }
.gs-pdp-ourprice { font-size: 14px; color: #222; margin: 4px 0 18px; }
.gs-pdp-ourprice .woocommerce-Price-amount { font-weight: 700; }

.gs-pdp-opt { margin-bottom: 18px; }
.gs-pdp-optlabel { font-size: 13px; letter-spacing: .6px; color: #222; margin-bottom: 9px; }
.gs-pdp-ranges { display: flex; gap: 10px; }
.gs-pdp-range {
	min-width: 96px;
	height: 42px;
	border: 1px solid #c4c4c4;
	background: #fff;
	font-size: 14px;
	color: #222;
	padding: 0 16px;
}
.gs-pdp-range.is-active { background: var(--gs-ink); color: #fff; border-color: var(--gs-ink); }
.gs-pdp-colors { display: flex; flex-wrap: wrap; gap: 9px; }
.gs-pdp-color {
	width: 34px;
	height: 28px;
	border: 1px solid #c4c4c4;
	border-radius: 3px;
	background-size: cover;
	background-position: center;
	background-color: #eee;
	padding: 0;
}
.gs-pdp-color.is-active { border: 2px solid var(--gs-ink); }
.gs-pdp-fit { display: flex; align-items: center; gap: 8px; margin: 4px 0 18px; }
.gs-pdp-fit .gs-icon { color: var(--gs-red); }
.gs-pdp-fit .gs-icon svg { width: 20px; height: 20px; }
.gs-pdp-fit-link { color: var(--gs-red); font-weight: 700; font-size: 15px; letter-spacing: .4px; }
.gs-pdp-fit-text { font-size: 14px; color: #444; }
.gs-pdp-sizes { display: flex; flex-wrap: wrap; gap: 10px; }
.gs-pdp-size {
	min-width: 82px;
	border: 1px solid #c4c4c4;
	background: #fff;
	font-size: 13px;
	color: #222;
	padding: 11px 13px;
	text-align: center;
}
.gs-pdp-size.is-active { border: 2px solid var(--gs-ink); color: var(--gs-ink); font-weight: 600; }
.gs-pdp-size.is-disabled { opacity: .35; pointer-events: none; }

.gs-pdp-buy { margin-top: 22px; }
.gs-pdp-pricebox { text-align: right; }
.gs-pdp-price { margin-bottom: 12px; }
.gs-pdp-price-dyn del { color: #58595b; text-decoration: line-through; font-size: 16px; display: block; }
.gs-pdp-price-dyn ins { color: var(--gs-red); text-decoration: none; font-size: 19px; display: block; }
.gs-pdp-price-was { display: block; color: #58595b; text-decoration: line-through; font-size: 16px; }
.gs-pdp-price-sale { display: block; color: var(--gs-red); font-size: 19px; font-weight: 500; }
.gs-pdp-price-note { display: block; color: var(--gs-red); font-size: 12px; margin-top: 3px; letter-spacing: .3px; }
.gs-pdp-qtyrow { display: flex; align-items: stretch; justify-content: flex-end; gap: 14px; }
.gs-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid #c4c4c4;
}
.gs-qty button {
	width: 38px;
	height: 48px;
	background: #fff;
	border: 0;
	font-size: 18px;
	color: #333;
}
.gs-qty input {
	width: 46px;
	border: 0;
	text-align: center;
	font-size: 15px;
	-moz-appearance: textfield;
}
.gs-qty input::-webkit-outer-spin-button, .gs-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.gs-pdp-addbag {
	flex: 1;
	max-width: 460px;
	height: 50px;
	background: var(--gs-red);
	border: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1.5px;
}
.gs-pdp-addbag:hover { opacity: .9; }

/* Hide native Woo variation selects (custom UI drives them) */
.gs-pdp .variations_form table.variations,
.gs-pdp .variations_form .variations,
.gs-pdp .variations_form .reset_variations,
.gs-pdp .variations_form .woocommerce-variation-price,
.gs-pdp .variations_form .woocommerce-variation-availability,
.gs-pdp .variations_form .woocommerce-variation-description,
.gs-pdp .variations_form .woocommerce-variation-label,
.gs-pdp .woocommerce-variation-add-to-cart,
.gs-pdp .single_variation_wrap .woocommerce-variation-add-to-cart,
.gs-pdp .variations_form .single_add_to_cart_button { display: none !important; }

/* Tabs */
.gs-tabs { margin: 46px 0 10px; }
.gs-tabs-bar { display: flex; background: #e4e4e4; }
.gs-tab {
	flex: 1;
	background: #e4e4e4;
	border: 0;
	border-right: 1px solid #d2d2d2;
	padding: 15px 10px;
	font-size: 15px;
	color: #333;
	text-align: center;
}
.gs-tab:last-child { border-right: 0; }
.gs-tab.is-active { background: #fff; color: #222; text-decoration: underline; text-underline-offset: 4px; }
.gs-tabs-panels { border: 1px solid #e4e4e4; border-top: 0; padding: 26px 28px; font-size: 14px; }
.gs-tabpanel { display: none; }
.gs-tabpanel.is-active { display: block; }
.gs-tabpanel ul { list-style: disc; padding-left: 20px; margin: 0 0 1em; }
.gs-tabpanel li { margin-bottom: 4px; }

.gs-reco--pdp .gs-reco-title { font-size: 28px; }

/* PDP reviews */
.gs-pdp-reviews { border-top: 1px solid var(--gs-line); margin-top: 30px; padding-top: 26px; }
.gs-pdp-reviews-title { font-size: 24px; margin-bottom: 18px; }
.gs-pdp-reviews .comment-form-rating p.stars,
.woocommerce #reviews #comments ol.commentlist li img.avatar { border-radius: 0; }
#reviews .commentlist li { margin-bottom: 22px; }
#reviews .comment-text { border-color: var(--gs-line); }
#reviews .comment-form { border: 0; }

/* =========================================================
   Static pages
   ========================================================= */
.gs-page { padding: 30px 15px 60px; max-width: 900px; }
.gs-page-heading { font-size: 32px; margin-bottom: 20px; color: #222; }
.gs-page-content { font-size: 15px; line-height: 1.7; }

/* =========================================================
   Fallback Woo wrapper pages (cart / checkout / account)
   ========================================================= */
.gs-shop-shell { padding: 30px 0 60px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1280px) {
	.gs-hero-slide { min-height: 600px; }
	.gs-hero-panel { min-height: 600px; }
}

@media (max-width: 1120px) {
	.gs-mainnav-list { gap: 26px; }
	.gs-nav-link { font-size: 16px; }
}

@media (max-width: 980px) {
	.gs-grid { grid-template-columns: repeat(3, 1fr); }
	.gs-reco-track > li { flex: 0 0 25%; max-width: 25%; }
	.gs-footer-links-grid { grid-template-columns: repeat(2, 1fr); }
	.gs-pdp-grid { grid-template-columns: 1fr; }
	.gs-shoptoolbar { flex-direction: column; align-items: stretch; }
	.gs-filters { justify-content: flex-start; flex-wrap: wrap; }
	.gs-filter { width: calc(33% - 15px); min-width: 200px; }
}

/* Hero + tiles + share stack */
@media (max-width: 820px) {
	.gs-hero-image {
		width: 100%;
		aspect-ratio: 1 / 1;
		min-height: 390px;
	}
	.gs-hero-panel { width: 100%; min-height: 510px; padding: 60px 30px; }
	.gs-hero-slide, .gs-hero-slide.is-reverse { flex-direction: column; }
	.gs-hero-slide.is-reverse { flex-direction: column-reverse; }
	.gs-hero-title { font-size: 46px; }
	.gs-hero-offer { font-size: 60px; letter-spacing: -1px; }
	.gs-hero-asterisk { font-size: 24px; top: -10px; }
	.gs-hero-sub { font-size: 24px; }
	.gs-hero-buttons { flex-direction: column; align-items: center; }
	.gs-tiles { flex-direction: column; align-items: center; gap: 34px; padding-bottom: 10px; }
	.gs-tile { margin-bottom: 6px; }
	.gs-admins { flex-direction: column; row-gap: 14px; text-align: center; padding: 40px 20px; margin-top: 10px; }
	.gs-admins h2 { text-align: center; }
	.gs-share-grid { flex-direction: column; align-items: center; }
	.gs-share-box { width: 84%; max-width: none; }
	.gs-circles-rail { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
	.gs-circles-title { font-size: 30px; }
	.gs-reco-title, .gs-share-title, .gs-reviews-title { font-size: 28px; }
	.gs-reco-track > li { flex: 0 0 50%; max-width: 50%; }
	.gs-grid { grid-template-columns: repeat(2, 1fr); }
	.gs-newsletter-inner { flex-direction: column; gap: 16px; }
	.gs-newsletter-title { font-size: 22px; }
	.gs-footer-social-inner { flex-direction: column; gap: 20px; }
	.gs-social-list { gap: 56px; }
	.gs-pdp-pricebox { text-align: left; }
	.gs-pdp-qtyrow { justify-content: flex-start; }
}

/* Mobile header + drawer */
@media (max-width: 768px) {
	:root { --gs-announce-h: 55px; }
	.gs-header, .gs-search { display: none; }
	.gs-announce { padding: 5px 15px; }
	.gs-announce-slide {
		inset: 0 34px 0 5px;
		display: block;
		font-size: 13px;
		line-height: 1.4;
	}
	.gs-announce-sep { display: none; }
	.gs-announce-slide a { display: block; font-size: 12px; }
	.gs-announce-prev, .gs-announce-next { display: none; }
	.gs-announce-pause { right: 12px !important; }

	.gs-mobilebar { display: block; background: #fff; border-bottom: 1px solid var(--gs-line); }
	.gs-mobilebar-brand { display: flex; justify-content: center; padding: 14px 0 10px; }
	.gs-mobilebar .gs-logo-img { width: 132px; }
	.gs-mobilebar-icons { display: grid; grid-template-columns: repeat(4, 1fr); padding: 2px 6px 10px; }
	.gs-mobilebar-icons li { text-align: center; }
	.gs-mobilebar-icons a, .gs-mobilebar-icons button {
		background: none;
		border: 0;
		color: #1e1e1e;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
		font-size: 10px;
		letter-spacing: .5px;
		padding: 4px 2px;
	}
	.gs-mobilebar-icons .gs-icon svg { width: 20px; height: 20px; }
	.gs-mobilebar-count, .gs-mobilebar-label { display: inline; }
	.gs-mobile-search { display: flex; align-items: center; gap: 8px; padding: 8px 20px 12px; border-top: 1px solid var(--gs-line); }
	.gs-mobile-search[hidden] { display: none; }
	.gs-mobile-search-input { flex: 1; border: 1px solid #c9c9c9; padding: 9px 12px; font-size: 14px; outline: 0; }

	.gs-drawer {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 1200;
		visibility: hidden;
	}
	.gs-drawer.is-open { visibility: visible; }
	.gs-drawer-backdrop {
		position: absolute;
		inset: 0;
		background: rgba(0,0,0,.45);
		opacity: 0;
		transition: opacity .2s;
	}
	.gs-drawer.is-open .gs-drawer-backdrop { opacity: 1; }
	.gs-drawer-panel {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		width: min(400px, 92%);
		background: #fff;
		transform: translateX(-100%);
		transition: transform .25s ease;
		display: flex;
		flex-direction: column;
		overflow: hidden;
	}
	.gs-drawer.is-open .gs-drawer-panel { transform: translateX(0); }
	.gs-drawer-head { display: flex; justify-content: flex-end; padding: 12px; border-bottom: 1px solid var(--gs-line); }
	.gs-drawer-close { background: none; border: 0; display: inline-flex; padding: 6px; }
	.gs-drawer-close .gs-icon svg { width: 22px; height: 22px; }
	.gs-drawer-body { overflow-y: auto; padding-bottom: 30px; }
	.gs-drawer-group { border-bottom: 1px solid #e9e9e9; }
	.gs-drawer-group.is-service { background: #f4f4f4; }
	.gs-drawer-link, .gs-drawer-toggle {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		background: none;
		border: 0;
		text-align: left;
		padding: 15px 18px;
		font-size: 14px;
		font-weight: 600;
		text-transform: uppercase;
		color: #1e1e1e;
		letter-spacing: .4px;
	}
	.gs-drawer-plus { position: relative; width: 12px; height: 12px; display: inline-block; }
	.gs-drawer-plus::before, .gs-drawer-plus::after { content: ""; position: absolute; background: #1e1e1e; }
	.gs-drawer-plus::before { left: 0; top: 5px; width: 12px; height: 2px; }
	.gs-drawer-plus::after { left: 5px; top: 0; width: 2px; height: 12px; transition: transform .2s; }
	.gs-drawer-toggle[aria-expanded="true"] .gs-drawer-plus::after { transform: rotate(90deg); }
	.gs-drawer-sub { padding: 2px 18px 14px; }
	.gs-drawer-heading { font-size: 12px; font-weight: 700; color: #6a6a6a; text-transform: capitalize; margin: 12px 0 6px; }
	.gs-drawer-sublink { display: block; padding: 7px 0; font-size: 14px; color: #333; }

	/* Section side padding (20px rule) */
	.gs-share-grid, .gs-circles-rail, .gs-tiles { padding-left: 20px; padding-right: 20px; }
	.gs-shopbanner-inner { padding: 18px 20px; }
	.gs-shoptoolbar, .gs-viewtoggle, .gs-breadcrumb, .gs-page { padding-left: 20px; padding-right: 20px; }
	.gs-tabs-bar { flex-wrap: wrap; }
	.gs-tab { flex: 1 1 50%; border-bottom: 1px solid #d2d2d2; font-size: 13px; padding: 12px 6px; }
	.gs-pdp-addbag { max-width: none; width: 100%; }
	.gs-floatbar {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: #fff;
		z-index: 1100;
		box-shadow: 0 -2px 10px rgba(0,0,0,.14);
		padding-bottom: env(safe-area-inset-bottom, 0);
	}
	.gs-floatbar-inner { display: flex; flex-direction: column; gap: 8px; padding: 10px 16px 12px; }
	.gs-floatbar-text { margin: 0; font-size: 14px; font-weight: 500; color: #222; text-align: center; line-height: 1.3; }
	.gs-floatbar-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 34px;
		background: var(--gs-red);
		color: #fff;
		font-size: 16px;
		font-weight: 500;
		letter-spacing: .04em;
	}
	.gs-floatbar-btn:hover { background: #c71f1f; color: #fff; }
	body { padding-bottom: 0; }
	.gs-promofloat { bottom: 110px; }
}

@media (min-width: 769px) {
	.gs-floatbar { display: none !important; }
}

/* Storefront cascade overrides: lists, inputs */
.gs-header-wrapper ul,
.gs-header-wrapper ul li { list-style: none !important; }
.gs-utility, .gs-utility ul { list-style: none !important; margin: 0; padding: 0; }
.gs-utility li::marker, .gs-social-list li::marker, .gs-footer-col li::marker, .gs-legal-list li::marker { content: none; }
.gs-utility li, .gs-social-list li, .gs-legal-list li { list-style: none !important; }
.gs-footer-col ul { list-style: none !important; margin: 0; padding: 0; }
.gs-search-input, .gs-mobile-search-input, .gs-newsletter-form input[type="email"] { background: #fff !important; border-radius: 0; }
.gs-search .gs-search-input { background: transparent !important; }

/* Focus visibility */
.gs-nav-link:focus-visible, .gs-hero-btn:focus-visible, .gs-pdp-addbag:focus-visible,
.gs-filter-toggle:focus-visible, .gs-pdp-size:focus-visible, .gs-pdp-range:focus-visible {
	outline: 2px solid var(--gs-ink);
	outline-offset: 2px;
}
