/**
 * Glowshop main stylesheet.
 * Original CSS implementing the measured design system.
 */

:root {
	--gs-text: #333333;
	--gs-text-soft: #424242;
	--gs-quiet: #6d6e72;
	--gs-muted: #979797;
	--gs-bg: #ffffff;
	--gs-surface: #f6f6f6;
	--gs-champagne: #fbf5f0;
	--gs-champagne-dark: #f5e5d9;
	--gs-blush-band: #fdf1ea;
	--gs-walnut: #5f433c;
	--gs-chocolate: #43230d;
	--gs-coral: #e57076;
	--gs-coral-dark: #d4555f;
	--gs-navy: #0a3566;
	--gs-navy-deep: #1f4868;
	--gs-navy-btn: #3c5f8f;
	--gs-navy-promo: #34526e;
	--gs-navy-promo-hover: #458bb3;
	--gs-magenta: #cf426e;
	--gs-sky: #577cb0;
	--gs-green: #a9c55c;
	--gs-border: #e3e3e3;
	--gs-border-strong: #b7b7b7;
	--gs-ghost: #ebeaf1;
	--gs-width: 1280px;
	--gs-serif: 'Austin News Headline Web', Georgia, 'Times New Roman', serif;
	--gs-sans: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	--gs-topbar-h: 66px;
}

/* ----------------------------------------------------------------
   Base
---------------------------------------------------------------- */
html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
.gs-body {
	margin: 0;
	background: var(--gs-bg);
	color: var(--gs-text);
	font-family: var(--gs-sans);
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
}
.gs-body *,
.gs-body *::before,
.gs-body *::after {
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
}
button {
	font-family: inherit;
	cursor: pointer;
}
input,
select,
textarea {
	font-family: inherit;
}
.gs-container {
	max-width: var(--gs-width);
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}
.gs-serif {
	font-family: var(--gs-serif);
	font-weight: 400;
}
.gs-screen-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.gs-btn {
	display: inline-block;
	background: var(--gs-coral);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	border: 0;
	border-radius: 4px;
	padding: 15px 32px;
	transition: background 0.2s ease;
}
.gs-btn:hover {
	background: var(--gs-coral-dark);
	color: #fff;
}
.gs-btn-navy {
	background: var(--gs-navy-deep);
}
.gs-btn-navy:hover {
	background: var(--gs-navy);
}
.gs-btn-magenta {
	background: var(--gs-magenta);
}
.gs-btn-magenta:hover {
	background: #b63660;
}

/* ----------------------------------------------------------------
   Announcement / promo topbar
---------------------------------------------------------------- */
.gs-header-wrapper {
	position: sticky;
	top: 0;
	z-index: 320;
}
.gs-announce {
	background: var(--gs-navy-promo);
	color: #fff;
	text-align: center;
	padding: 10px 16px;
	font-size: 14px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}
.gs-topbar {
	position: relative;
	background: var(--gs-navy-promo);
	color: #fff;
	transition: background 0.25s ease;
}
.gs-topbar:hover {
	background: var(--gs-navy-promo-hover);
}
.gs-topbar-track {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: var(--gs-topbar-h);
	position: relative;
}
.gs-topbar-slide {
	display: none;
	width: 100%;
	text-align: center;
}
.gs-topbar-slide.is-active {
	display: block;
}
.gs-topbar-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}
.gs-topbar-link:hover .gs-topbar-text {
	text-decoration: underline;
}
.gs-topbar-icon {
	flex: 0 0 auto;
}
.gs-topbar-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 13px;
}
.gs-topbar-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	color: #fff;
	padding: 10px;
	line-height: 0;
	z-index: 2;
}
.gs-topbar-prev {
	left: 14px;
}
.gs-topbar-next {
	right: 14px;
}
.gs-topbar-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding-bottom: 8px;
	margin-top: -14px;
}
.gs-topbar-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: #979797;
}
.gs-topbar-dot.is-active {
	background: #fff;
}
.gs-topbar:hover .gs-topbar-dot {
	background: rgba(255, 255, 255, 0.55);
}
.gs-topbar:hover .gs-topbar-dot.is-active {
	background: #fff;
}

/* ----------------------------------------------------------------
   Header
---------------------------------------------------------------- */
.gs-header {
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.gs-header-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 18px;
	padding-bottom: 0;
	gap: 24px;
}
.gs-burger {
	display: none;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: 0;
	padding: 8px 0;
}
.gs-burger-lines {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
}
.gs-burger-lines i {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--gs-text);
	border-radius: 2px;
}
.gs-burger-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--gs-text);
}
.gs-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}
.gs-logo-icon {
	display: none;
	width: 44px;
	height: 40px;
}
.gs-logo-full {
	width: 240px;
	height: auto;
	display: block;
}
.gs-header-right-top {
	display: flex;
	align-items: center;
	gap: 16px;
}
.gs-header-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	padding-top: 4px;
}
.gs-search {
	display: flex;
	align-items: center;
	border: 1px solid var(--gs-border-strong);
	border-radius: 8px;
	background: #fff;
	height: 44px;
	width: 200px;
	padding: 0 6px 0 14px;
}
.gs-search-input {
	border: 0;
	outline: 0;
	background: transparent;
	flex: 1;
	min-width: 0;
	font-size: 14px;
	color: var(--gs-text);
}
.gs-search-input::placeholder {
	color: var(--gs-muted);
}
.gs-search-btn {
	background: transparent;
	border: 0;
	display: inline-flex;
	padding: 6px;
}
.gs-header-utils {
	display: flex;
	align-items: center;
	gap: 18px;
}
.gs-util-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--gs-text);
	font-size: 14px;
	text-decoration: none;
}
.gs-util-link:hover {
	text-decoration: underline;
}
.gs-insider-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--gs-navy-btn);
	color: #9bc2f5;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 3px;
	padding: 6px 10px;
}
.gs-insider-btn:hover {
	background: #34537e;
}
.gs-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--gs-coral);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	min-width: 108px;
	height: 44px;
	padding: 0 18px;
	transition: background 0.2s ease;
}
.gs-cart:hover {
	background: var(--gs-coral-dark);
	color: #fff;
}
.gs-cart .gs-cart-count {
	position: static;
	background: transparent;
	padding: 0;
	font-weight: 700;
	font-size: 15px;
}
.gs-cart .gs-cart-label {
	font-size: 14px;
	font-weight: 500;
}
.gs-header-icons {
	display: none;
	align-items: center;
	gap: 16px;
}
.gs-icon-link {
	display: inline-flex;
	text-decoration: none;
	position: relative;
}
.gs-icon-link .gs-cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	background: var(--gs-coral);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	padding: 3px 5px;
	border-radius: 9px;
}

/* Nav + mega menu */
.gs-nav {
	margin-top: 6px;
}
.gs-nav-list {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 0 0 10px;
}
.gs-nav-item {
	position: static;
}
.gs-nav-link {
	display: block;
	padding: 12px 0;
	color: var(--gs-text);
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.2px;
	text-transform: capitalize;
	text-decoration: none;
	transition: color 0.15s ease;
}
.gs-nav-item:hover .gs-nav-link,
.gs-nav-item:focus-within .gs-nav-link {
	color: #27588d;
}
.gs-mega {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	border: 1px solid var(--gs-ghost);
	border-radius: 4px;
	box-shadow: 0 18px 30px -18px rgba(20, 30, 60, 0.25);
	padding: 32px 0 36px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	z-index: 40;
	pointer-events: none;
}
.gs-nav-item:hover .gs-mega,
.gs-nav-item:focus-within .gs-mega {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.gs-mega-inner {
	display: grid;
	grid-template-columns: repeat(var(--gs-mega-cols, 2), minmax(0, 1fr));
	gap: 32px 56px;
}
.gs-mega-head {
	display: inline-block;
	color: var(--gs-text);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	text-decoration: none;
	margin-bottom: 14px;
}
.gs-mega-head:hover {
	color: #27588d;
}
.gs-mega-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.gs-mega-links a {
	color: var(--gs-text-soft);
	font-size: 14.5px;
	text-decoration: none;
}
.gs-mega-links a:hover {
	text-decoration: underline;
	color: #27588d;
}

/* Search expander */
.gs-searchbar {
	background: #fefe;
	border-bottom: 1px solid var(--gs-border);
	padding: 24px 0;
}
.gs-searchbar form {
	display: flex;
	gap: 12px;
	max-width: 640px;
	margin: 0 auto;
}
.gs-searchbar input[type='search'] {
	flex: 1;
	border: 1px solid var(--gs-border-strong);
	border-radius: 8px;
	height: 48px;
	padding: 0 16px;
	font-size: 15px;
}
.gs-searchbar button {
	background: var(--gs-navy-deep);
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 0 24px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ----------------------------------------------------------------
   Mobile drawer
---------------------------------------------------------------- */
.gs-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 398;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.gs-drawer-overlay.is-open {
	opacity: 1;
}
.gs-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: min(360px, 92vw);
	background: #fefefe;
	z-index: 399;
	transform: translateX(100%);
	transition: transform 0.4s ease;
	overflow-y: auto;
	padding-bottom: 40px;
}
.gs-drawer.is-open {
	transform: translateX(0);
}
.gs-drawer-head {
	display: flex;
	justify-content: flex-end;
	padding: 16px;
}
.gs-drawer-close {
	background: transparent;
	border: 0;
	padding: 6px;
	line-height: 0;
}
.gs-drawer-account {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 4px 24px 20px;
	border-bottom: 1px solid var(--gs-border);
}
.gs-drawer-login {
	font-size: 15px;
	font-weight: 600;
	color: var(--gs-text);
	text-decoration: underline;
}
.gs-drawer-join {
	display: inline-flex;
	justify-content: center;
	background: var(--gs-navy-btn);
	color: #9bc2f5;
	font-size: 14px;
	font-weight: 700;
	border-radius: 4px;
	padding: 10px;
	text-decoration: none;
}
.gs-drawer-group {
	border-bottom: 1px solid var(--gs-border);
}
.gs-drawer-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	border: 0;
	padding: 16px 24px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--gs-text);
}
.gs-drawer-toggle svg {
	transition: transform 0.25s ease;
}
.gs-drawer-toggle[aria-expanded='true'] svg {
	transform: rotate(180deg);
}
.gs-drawer-panel ul {
	list-style: none;
	margin: 0;
	padding: 0 24px 16px;
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.gs-drawer-panel a {
	color: var(--gs-text-soft);
	font-size: 14.5px;
	text-decoration: none;
}
.gs-drawer-panel a:hover {
	text-decoration: underline;
}

/* ----------------------------------------------------------------
   Hero + banners
---------------------------------------------------------------- */
.gs-hero {
	position: relative;
	overflow: hidden;
}
.gs-hero-track {
	display: flex;
}
.gs-hero-slide {
	min-width: 100%;
	display: none;
}
.gs-hero-slide.is-active {
	display: block;
}
.gs-hero-slide a {
	display: block;
}
.gs-hero-img {
	width: 100%;
	display: block;
}
.gs-hero-img-wide {
	display: none;
}
.gs-hero-img-mob {
	display: none;
}
.gs-hero-dots {
	position: absolute;
	bottom: 14px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 5;
}
.gs-hero-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.gs-hero-dot.is-active {
	background: #fff;
}
.gs-gwp {
	display: flex;
	flex-direction: column;
}
.gs-gwp-item {
	display: block;
}
.gs-gwp-desk {
	display: block;
	width: 100%;
}
.gs-gwp-mob {
	display: none;
	width: 100%;
}

/* ----------------------------------------------------------------
   Homepage sections
---------------------------------------------------------------- */
.gs-section-title {
	font-size: 30px;
	letter-spacing: 0.5px;
	color: var(--gs-text);
	margin: 0 0 10px;
	text-align: center;
}
.gs-cattiles {
	padding: 44px 0 10px;
}
.gs-cattiles-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px 18px;
	margin-top: 22px;
}
.gs-cattile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}
.gs-cattile-img {
	width: 100%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gs-surface);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.25s ease;
}
.gs-cattile:hover .gs-cattile-img {
	transform: translateY(-3px);
}
.gs-cattile-img img {
	max-height: 82%;
	width: auto;
	object-fit: contain;
}
.gs-cattile-label {
	color: var(--gs-text);
	font-size: 14.5px;
	font-weight: 600;
	text-align: center;
}
.gs-cattile:hover .gs-cattile-label {
	text-decoration: underline;
}

.gs-rail-section {
	padding: 40px 0;
}
.gs-rail-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 6px;
}
.gs-rail-head .gs-section-title {
	text-align: left;
}
.gs-rail-more {
	font-size: 14px;
	font-weight: 600;
	color: var(--gs-navy-deep);
	text-decoration: underline;
}
.gs-rail-viewport {
	overflow: hidden;
}
.gs-rail {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px 22px;
}

/* Product cards */
.gs-card {
	position: relative;
	text-align: center;
}
.gs-card-media {
	position: relative;
}
.gs-card-link {
	display: block;
	text-decoration: none;
}
.gs-card-imgwrap {
	display: block;
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #f7f4f1;
}
.gs-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.25s ease;
}
.gs-card-img-hover {
	position: absolute;
	inset: 0;
	opacity: 0;
}
.gs-card-link:hover .gs-card-img-hover {
	opacity: 1;
}
.gs-card-badges {
	position: absolute;
	top: 10px;
	left: 12px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	align-items: flex-start;
	pointer-events: none;
}
.gs-badge {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.4px;
	line-height: 1.35;
}
.gs-card-name {
	margin: 10px 0 6px;
	font-size: 15px;
	line-height: 1.45;
}
.gs-card-name a {
	color: var(--gs-text);
	text-decoration: none;
}
.gs-card-name a:hover {
	text-decoration: underline;
}
.gs-card-price {
	font-size: 14.5px;
	color: var(--gs-text);
	margin-bottom: 6px;
}
.gs-card-price del {
	color: var(--gs-muted);
	margin-right: 6px;
}
.gs-card-price ins {
	text-decoration: none;
	color: var(--gs-coral-dark);
}
.gs-rail-dark {
	background: #101010;
	color: #fff;
	padding: 52px 0;
}
.gs-rail-dark .gs-section-title {
	color: #fff;
}
.gs-rail-dark .gs-card-name a,
.gs-rail-dark .gs-card-price {
	color: #f3f3f3;
}
.gs-rail-dark .gs-card-imgwrap {
	background: #1c1c1c;
}
.gs-rail-accessories {
	background: #161616;
	color: #fff;
	padding: 52px 0 56px;
}
.gs-rail-accessories .gs-section-title {
	color: #fff;
}
.gs-rail-accessories .gs-card-name a,
.gs-rail-accessories .gs-card-price {
	color: #f3f3f3;
}
.gs-rail-accessories .gs-card-imgwrap {
	background: #232323;
}
.gs-rail-cta {
	text-align: center;
	margin-top: 30px;
}

/* Value / compare band */
.gs-value {
	padding: 48px 0 54px;
}
.gs-value-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
	text-align: center;
}
.gs-value-col img {
	max-height: 190px;
	width: auto;
	margin: 0 auto 14px;
}
.gs-value-col h3 {
	font-size: 26px;
	margin: 0 0 10px;
	color: var(--gs-text);
}
.gs-value-col p {
	margin: 0 auto;
	max-width: 340px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--gs-text-soft);
}
.gs-value-cta {
	text-align: center;
	margin-top: 34px;
}

/* Stories */
.gs-stories {
	background: #050505;
	padding: 54px 0 60px;
}
.gs-stories-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}
.gs-story {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.gs-story-img {
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #111;
}
.gs-story-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gs-story-title {
	color: #fff;
	font-size: 22px;
	margin: 18px 0 14px;
	max-width: 320px;
}
.gs-story-btn {
	background: var(--gs-coral);
}

/* Brand band */
.gs-brand {
	background: var(--gs-champagne);
	padding: 56px 0;
}
.gs-brand-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}
.gs-brand-media img {
	width: 100%;
	border-radius: 10px;
	display: block;
}
.gs-trust-row {
	display: flex;
	justify-content: center;
	gap: 34px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}
.gs-trust {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--gs-text);
}
.gs-trust img {
	width: 34px;
	height: 34px;
}
.gs-brand-title {
	font-size: 36px;
	margin: 0 0 6px;
	text-align: center;
	color: #2b2b2b;
}
.gs-brand-squiggle {
	display: block;
	margin: 0 auto 18px;
}
.gs-brand-copy > p {
	max-width: 460px;
	margin: 0 auto;
	text-align: center;
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--gs-text-soft);
}
.gs-brand-media-mob {
	display: none;
	text-align: center;
	margin-top: 22px;
}

/* ----------------------------------------------------------------
   Shop / archive
---------------------------------------------------------------- */
.gs-shop-crumb {
	background: #000;
	color: #d7d7d7;
	font-size: 13px;
	padding: 15px 0;
}
.gs-shop-crumb a {
	color: #d7d7d7;
	text-decoration: none;
}
.gs-shop-crumb a:hover {
	text-decoration: underline;
}
.gs-crumb-sep {
	margin: 0 8px;
}
.gs-shop-band {
	background: var(--gs-blush-band);
	padding: 40px 0 34px;
}
.gs-shop-band-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}
.gs-shop-title {
	font-size: 42px;
	margin: 0 0 8px;
	color: #2b2b2b;
}
.gs-shop-desc {
	font-size: 15px;
	line-height: 1.6;
	color: var(--gs-text-soft);
	max-width: 560px;
}
.gs-shop-band-trust {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.gs-subcards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-top: -26px;
	padding-bottom: 8px;
}
.gs-subcard {
	background: #fff;
	border: 1px solid var(--gs-border);
	border-radius: 6px;
	padding: 14px 16px 18px;
	text-decoration: none;
	box-shadow: 0 10px 22px -16px rgba(30, 30, 30, 0.35);
}
.gs-subcard-media {
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f7f4f1;
	border-radius: 4px;
	margin-bottom: 14px;
}
.gs-subcard-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gs-subcard-title {
	margin: 0 0 6px;
	font-size: 15.5px;
	font-weight: 700;
	letter-spacing: 0.4px;
	color: var(--gs-text);
}
.gs-subcard-arrow {
	font-size: 13px;
}
.gs-subcard-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--gs-text-soft);
}
.gs-shop-body {
	display: grid;
	grid-template-columns: 236px minmax(0, 1fr);
	gap: 34px;
	padding-top: 30px;
	padding-bottom: 40px;
}
.gs-filters-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px;
}
.gs-filter-group {
	margin-bottom: 26px;
}
.gs-filter-group h3 {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.gs-filter-group ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.gs-filter-group a {
	color: var(--gs-text-soft);
	font-size: 14.5px;
	text-decoration: none;
}
.gs-filter-group a:hover {
	text-decoration: underline;
}
.gs-filter-group .children {
	padding-left: 14px;
	margin-top: 9px;
}
.gs-filters-close {
	display: none;
}
.gs-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}
.gs-filter-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid var(--gs-border-strong);
	border-radius: 6px;
	padding: 9px 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gs-text);
}
.gs-sort {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--gs-text-soft);
}
.gs-sort select {
	border: 1px solid var(--gs-border-strong);
	border-radius: 6px;
	height: 38px;
	padding: 0 10px;
	font-size: 14px;
	background: #fff;
	color: var(--gs-text);
}

/* Grid overrides for Woo markup */
ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.products::before,
ul.products::after {
	content: none !important;
	display: none !important;
}
ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	padding: 0;
	text-align: center;
}
.woocommerce-result-count {
	display: none;
}
.gs-no-products {
	padding: 30px 0;
	color: var(--gs-text-soft);
}
.gs-pagination,
.pagination,
.woocommerce-pagination {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 30px;
}
.gs-pagination .page-numbers,
.pagination .page-numbers,
.woocommerce-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 8px;
	border: 1px solid var(--gs-border);
	border-radius: 4px;
	color: var(--gs-text);
	font-size: 14px;
	text-decoration: none;
}
.gs-pagination .page-numbers.current,
.pagination .page-numbers.current,
.woocommerce-pagination .page-numbers.current {
	background: var(--gs-text);
	border-color: var(--gs-text);
	color: #fff;
}

/* ----------------------------------------------------------------
   Single product
---------------------------------------------------------------- */
.gs-pdp-main {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 48px;
	padding-top: 26px;
	padding-bottom: 44px;
}
.gs-pdp-media {
	position: relative;
	border-radius: 6px;
}
.gs-pdp-media img.gs-pdp-img {
	width: 100%;
	display: block;
	border-radius: 6px;
}
.gs-pdp-flag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--gs-magenta);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 5px 10px;
}
.gs-pdp-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}
.gs-pdp-thumb {
	background: #fff;
	border: 1px solid var(--gs-border);
	border-radius: 4px;
	padding: 4px;
	width: 68px;
	height: 68px;
	opacity: 0.85;
}
.gs-pdp-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2px;
}
.gs-pdp-thumb.is-active {
	border-color: var(--gs-magenta);
	opacity: 1;
}
.gs-pdp-title {
	font-size: 38px;
	line-height: 1.15;
	margin: 4px 0 12px;
	color: #2b2b2b;
}
.gs-pdp-price .price {
	font-size: 26px;
	color: var(--gs-magenta);
	font-weight: 500;
}
.gs-pdp-price .price del {
	font-size: 18px;
	color: var(--gs-muted);
	margin-right: 8px;
}
.gs-pdp-installment {
	font-size: 13.5px;
	color: var(--gs-text-soft);
	margin: 6px 0 0;
}
.gs-pdp-form {
	margin-top: 22px;
}
.gs-atc-row {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-bottom: 16px;
}
.gs-qty {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--gs-border-strong);
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
}
.gs-qty-btn {
	width: 40px;
	border: 0;
	background: #f4f4f4;
	font-size: 18px;
	color: var(--gs-text);
	line-height: 1;
}
.gs-qty-btn:hover {
	background: #e9e9e9;
}
.gs-qty .quantity {
	margin: 0;
}
.gs-qty .quantity input[type='number'] {
	width: 52px;
	height: 44px;
	border: 0;
	text-align: center;
	font-size: 15px;
	color: var(--gs-text);
	-moz-appearance: textfield;
}
.gs-qty .quantity input::-webkit-outer-spin-button,
.gs-qty .quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.gs-atc-btn {
	display: block;
	width: 100%;
	background: var(--gs-magenta);
	color: #fff;
	border: 0;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 19px 20px;
	transition: background 0.2s ease;
}
.gs-atc-btn:hover {
	background: #b63660;
}
.gs-oos {
	color: var(--gs-coral-dark);
	font-size: 14px;
}
.gs-pdp-form .variations {
	width: 100%;
	margin-bottom: 16px;
}
.gs-pdp-form .variations th {
	text-align: left;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 8px 0;
	color: var(--gs-text);
}
.gs-pdp-form .variations select {
	width: 100%;
	max-width: 320px;
	height: 44px;
	border: 1px solid var(--gs-border-strong);
	border-radius: 4px;
	padding: 0 12px;
	background: #fff;
	font-size: 14px;
}
.gs-pdp-form .woocommerce-variation-price {
	margin-bottom: 14px;
	font-size: 20px;
	color: var(--gs-magenta);
}
.gs-pdp-form .reset_variations {
	font-size: 12px;
	color: var(--gs-quiet);
	margin-left: 10px;
}
.gs-pdp-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
	margin-top: 18px;
	flex-wrap: wrap;
}
.gs-pdp-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 0;
	padding: 0;
	color: var(--gs-quiet);
	font-size: 13.5px;
	font-style: italic;
	letter-spacing: 0.8px;
}
.gs-pdp-link:hover span {
	text-decoration: underline;
}
.gs-pdp-trust {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid var(--gs-border);
}
.gs-pdp-accordion {
	margin-top: 28px;
	border-top: 1px solid var(--gs-border);
}
.gs-acc-item {
	border-bottom: 1px solid var(--gs-border);
}
.gs-acc-head {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	border: 0;
	padding: 16px 2px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--gs-text);
}
.gs-acc-icon {
	position: relative;
	width: 14px;
	height: 14px;
}
.gs-acc-icon::before,
.gs-acc-icon::after {
	content: '';
	position: absolute;
	background: var(--gs-text);
	transition: transform 0.2s ease;
}
.gs-acc-icon::before {
	left: 0;
	right: 0;
	top: 6px;
	height: 2px;
}
.gs-acc-icon::after {
	top: 0;
	bottom: 0;
	left: 6px;
	width: 2px;
}
.gs-acc-head[aria-expanded='true'] .gs-acc-icon::after {
	transform: scaleY(0);
}
.gs-acc-body {
	padding: 0 2px 18px;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--gs-text-soft);
}
.gs-acc-body > p {
	margin: 0 0 10px;
}
.gs-specs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.gs-specs li {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}
.gs-specs span {
	color: var(--gs-quiet);
}
.gs-pdp-related {
	padding-bottom: 30px;
}
.gs-pdp-related > section,
.gs-pdp-related .related.products {
	padding-top: 8px;
}
.gs-pdp-related h2 {
	font-family: var(--gs-serif);
	font-weight: 400;
	font-size: 28px;
	color: #2b2b2b;
	margin: 0 0 20px;
}

/* ----------------------------------------------------------------
   Plain pages
---------------------------------------------------------------- */
.gs-page-wrap {
	padding: 34px 0 50px;
}
.gs-page-title {
	font-size: 34px;
	margin: 0 0 20px;
}
.gs-post-card {
	margin-bottom: 26px;
}
.gs-post-title {
	font-size: 22px;
	margin: 0 0 8px;
}
.gs-post-title a {
	color: var(--gs-text);
	text-decoration: none;
}

/* ----------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.gs-footer {
	background: var(--gs-champagne);
	margin-top: 60px;
}
.gs-footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 2fr);
	gap: 48px;
	padding: 52px 0 44px;
}
.gs-footer-title {
	font-family: var(--gs-serif);
	font-weight: 400;
	font-size: 38px;
	line-height: 1.15;
	color: var(--gs-walnut);
	margin: 0 0 12px;
}
.gs-footer-title .gs-color-letter {
	font-style: italic;
}
.gs-footer-signup-text {
	font-size: 14.5px;
	color: var(--gs-chocolate);
	margin: 0 0 18px;
}
.gs-newsletter-ok {
	background: #9bbf4b;
	color: #fff;
	font-weight: 700;
	border-radius: 4px;
	padding: 10px 14px;
	font-size: 14px;
}
.gs-newsletter-field {
	position: relative;
	display: flex;
	border: 1px solid var(--gs-muted);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	max-width: 400px;
}
.gs-newsletter-input {
	flex: 1;
	min-width: 0;
	height: 56px;
	border: 0;
	outline: 0;
	padding: 22px 14px 6px;
	font-size: 14px;
	color: var(--gs-text);
	background: transparent;
}
.gs-newsletter-label {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 13px;
	color: var(--gs-text-soft);
	pointer-events: none;
	transition: all 0.15s ease;
}
.gs-newsletter-input:focus + .gs-newsletter-label,
.gs-newsletter-input:not(:placeholder-shown) + .gs-newsletter-label {
	top: 14px;
	font-size: 10.5px;
	color: var(--gs-quiet);
}
.gs-newsletter-label sup {
	color: var(--gs-coral-dark);
}
.gs-newsletter-btn {
	background: var(--gs-sky);
	color: #fff;
	border: 0;
	padding: 0 20px;
	height: 56px;
	font-size: 15px;
}
.gs-newsletter-btn:hover {
	background: #45648f;
}
.gs-footer-terms-note {
	font-size: 11.5px;
	color: var(--gs-chocolate);
	margin: 10px 0 0;
}
.gs-footer-terms-note a {
	color: inherit;
}
.gs-social {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 26px;
}
.gs-social-link {
	color: #3c2b23;
	display: inline-flex;
}
.gs-social-link:hover {
	color: var(--gs-magenta);
}
.gs-footer-cols {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.gs-footer-col-title {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #2f2f2f;
	margin: 6px 0 16px;
}
.gs-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.gs-footer-col a {
	color: var(--gs-text-soft);
	font-size: 15px;
	text-decoration: none;
}
.gs-footer-col a:hover {
	text-decoration: underline;
}
.gs-footer-legal {
	background: var(--gs-champagne-dark);
	padding: 13px 0;
}
.gs-footer-legal-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}
.gs-copyright {
	margin: 0;
	font-size: 12.5px;
	color: var(--gs-chocolate);
}
.gs-legal-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
}
.gs-legal-links a {
	color: var(--gs-chocolate);
	font-size: 12.5px;
	text-decoration: none;
}
.gs-legal-links a:hover {
	text-decoration: underline;
}

/* ----------------------------------------------------------------
   Responsive — compact header below 1279px
---------------------------------------------------------------- */
@media (max-width: 1279px) {
	.gs-header-inner {
		display: flex;
		flex-direction: row;
		align-items: center;
		padding-top: 10px;
		padding-bottom: 10px;
		gap: 10px;
	}
	.gs-burger {
		display: inline-flex;
		order: 30;
		margin-left: auto;
	}
	.gs-logo {
		order: 1;
		margin-right: auto;
	}
	.gs-logo-icon {
		display: none;
	}
	.gs-logo-full {
		display: block;
		width: 130px;
	}
	.gs-header-right {
		display: contents;
	}
	.gs-search,
	.gs-header-utils,
	.gs-cart {
		display: none;
	}
	.gs-header-icons {
		display: flex;
		order: 20;
		gap: 14px;
	}
	.gs-nav {
		display: none;
	}
	.gs-hero-img-desk {
		display: none;
	}
	.gs-hero-img-mob {
		display: block;
	}
	.gs-hero-img-wide {
		display: none;
	}
	.gs-gwp-desk {
		display: none;
	}
	.gs-gwp-mob {
		display: block;
	}
	.gs-cattiles-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.gs-value-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.gs-stories-grid {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin: 0 auto;
	}
	.gs-brand-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.gs-brand-media {
		display: none;
	}
	.gs-brand-media-mob {
		display: block;
	}
	.gs-shop-band-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.gs-shop-band-trust {
		justify-content: flex-start;
	}
	.gs-subcards {
		grid-template-columns: 1fr;
	}
	.gs-shop-body {
		grid-template-columns: 1fr;
	}
	.gs-filters {
		display: none;
		position: fixed;
		inset: 0;
		z-index: 397;
		background: #fff;
		padding: 24px 20px;
		overflow-y: auto;
	}
	.gs-filters.is-open {
		display: block;
	}
	.gs-filters-close {
		display: block;
		position: absolute;
		top: 14px;
		right: 16px;
		background: transparent;
		border: 0;
		font-size: 26px;
		line-height: 1;
		color: var(--gs-text);
	}
	.gs-filter-toggle {
		display: inline-flex;
	}
	ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 14px;
	}
	.gs-pdp-main {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.gs-pdp-title {
		font-size: 30px;
	}
	.gs-footer-top {
		grid-template-columns: 1fr;
		gap: 34px;
	}
	.gs-footer-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 18px;
	}
	:root {
		--gs-topbar-h: 58px;
	}
	.gs-topbar-text {
		font-size: 12.5px;
		letter-spacing: 0.8px;
	}
	.gs-topbar-cta {
		font-size: 11.5px;
	}
	.gs-rail {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 16px;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
	}
	.gs-rail .gs-card {
		min-width: 46%;
		scroll-snap-align: start;
	}
}

@media (max-width: 767px) {
	.gs-section-title {
		font-size: 24px;
	}
	.gs-cattiles-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.gs-footer-legal-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.gs-shop-title {
		font-size: 30px;
	}
	.gs-pdp-title {
		font-size: 26px;
	}
	.gs-rail .gs-card {
		min-width: 62%;
	}
	.gs-footer-title {
		font-size: 30px;
	}
}
