/*
 * Glowshop — replica stylesheet.
 * Design tokens measured from the reference design:
 * blue #046bd2 / hover #045cb4, headings #1e293b, body #334155,
 * stars #FDA256, footer #000, content width 1200px, breakpoint 921px.
 */

:root {
	--gs-blue: #046bd2;
	--gs-blue-dark: #045cb4;
	--gs-heading: #1e293b;
	--gs-text: #334155;
	--gs-muted: #94a3b8;
	--gs-light: #f0f5fa;
	--gs-border: #d1d5db;
	--gs-star: #fda256;
	--gs-dark: #000000;
	--gs-width: 1200px;
	--gs-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

/* ---------- base ---------- */

html.gs-theme, body.gs-theme,
.gs-theme button, .gs-theme input, .gs-theme select, .gs-theme textarea {
	font-family: var(--gs-font);
}

body.gs-theme {
	margin: 0;
	background: #fff;
	color: var(--gs-text);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.gs-theme img { max-width: 100%; height: auto; }

.gs-theme a { color: var(--gs-blue); text-decoration: none; }
.gs-theme a:hover { color: var(--gs-blue-dark); }

.gs-theme h1, .gs-theme h2, .gs-theme h3, .gs-theme h4, .gs-theme h5 {
	color: var(--gs-heading);
	margin: 0;
}

.gs-container {
	max-width: var(--gs-width);
	margin: 0 auto;
	padding: 0 30px;
}

.gs-theme ::selection { background: var(--gs-blue); color: #fff; }

/* the hidden attribute must always win over display rules */
.gs-theme [hidden] { display: none !important; }

/* Storefront overrides */
.gs-theme.woocommerce-storefront .col-full,
.gs-theme .col-full { max-width: var(--gs-width); }

/* ---------- announcement + header ---------- */

.gs-header-wrapper {
	position: sticky;
	top: 0;
	z-index: 9990;
	background: #fff;
}

.gs-announce {
	background: var(--gs-dark);
	color: #fff;
	text-align: center;
	padding: 8px 16px;
}
.gs-announce-text {
	font-size: 13.5px;
	font-weight: 400;
	letter-spacing: 0.2px;
	line-height: 1.4;
	display: inline-block;
}

.gs-header { background: #fff; }

.gs-header-inner {
	display: flex;
	align-items: center;
	padding: 0 35px;
	min-height: 82px;
	gap: 20px;
}

.gs-branding { flex: 0 0 auto; }
.gs-logo { display: inline-flex; align-items: center; }
.gs-logo img { width: 109px; height: auto; display: block; }

.gs-header-center {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	min-width: 0;
}

.gs-header-icons {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 18px;
}

.gs-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: 0;
	padding: 4px;
	cursor: pointer;
	color: var(--gs-heading);
	position: relative;
}
.gs-icon-btn svg { display: block; }
.gs-icon-btn:hover { color: var(--gs-blue); }

.gs-cart-count {
	position: absolute;
	top: -2px;
	right: -4px;
	background: var(--gs-blue);
	color: #fff;
	border-radius: 50%;
	min-width: 16px;
	height: 16px;
	line-height: 16px;
	font-size: 10px;
	text-align: center;
	padding: 0 2px;
}

/* search panel */
.gs-search-panel {
	background: #fff;
	border-top: 1px solid #eee;
	padding: 14px 35px;
}
.gs-search-form { display: flex; max-width: 720px; margin: 0 auto; position: relative; }
.gs-search-field {
	width: 100%;
	border: 1px solid var(--gs-border);
	border-radius: 4px;
	padding: 10px 44px 10px 14px;
	font-size: 15px;
	color: var(--gs-text);
	outline: none;
}
.gs-search-field:focus { border-color: var(--gs-blue); }
.gs-search-submit {
	position: absolute;
	right: 4px;
	top: 4px;
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--gs-heading);
	padding: 6px;
}

/* ---------- desktop dropdown nav ---------- */

.gs-nav .gs-menu {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.gs-nav .gs-menu-item { position: relative; }
.gs-nav .gs-menu-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--gs-heading);
	font-size: 16px;
	padding: 12px 15px;
}
.gs-nav .gs-menu-link:hover { color: var(--gs-blue-dark); }
.gs-nav .gs-menu-link svg { margin-top: 2px; }

/* dropdown panels */
.gs-nav .gs-menu .gs-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	border: 1px solid #ececec;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 8px 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.18s ease;
	z-index: 30;
}
.gs-nav .gs-menu-item:hover > .gs-menu,
.gs-nav .gs-menu-item:focus-within > .gs-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.gs-nav .gs-menu .gs-menu .gs-menu-link {
	padding: 9px 20px;
	font-size: 15px;
	white-space: nowrap;
	justify-content: space-between;
}
.gs-nav .gs-menu .gs-menu .gs-menu-link:hover { background: var(--gs-light); }
/* fly-out level 3 */
.gs-nav .gs-menu .gs-menu .gs-menu { top: -9px; left: 100%; }

.gs-nav .gs-menu-toggle { display: none; }

/* ---------- mobile drawer ---------- */

.gs-burger { display: none; }

.gs-drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 320px;
	max-width: 88vw;
	background: #fff;
	z-index: 10001;
	transform: translateX(-100%);
	transition: transform 0.25s ease;
	overflow-y: auto;
}
.gs-drawer.is-open { transform: translateX(0); box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); }
.gs-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #eee;
}
.gs-drawer-title { font-weight: 600; color: var(--gs-heading); }
.gs-drawer-close { background: none; border: 0; cursor: pointer; color: var(--gs-heading); padding: 4px; }

.gs-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.25s ease;
}
.gs-overlay.is-open { opacity: 1; }

.gs-drawer-nav .gs-menu { list-style: none; margin: 0; padding: 0; }
.gs-drawer-nav .gs-menu-item { border-bottom: 1px solid #f1f1f1; }
.gs-drawer-nav .gs-menu-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 20px;
	color: var(--gs-heading);
	font-size: 15px;
}
.gs-drawer-nav .gs-menu-toggle {
	background: none;
	border: 0;
	float: right;
	margin: -37px 12px 0 0;
	padding: 6px;
	cursor: pointer;
	color: var(--gs-heading);
}
.gs-drawer-nav .gs-menu-toggle svg { transition: transform 0.2s; display: block; }
.gs-drawer-nav .gs-menu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.gs-drawer-nav ul.gs-menu ul.gs-menu { display: none; padding-left: 14px; }
.gs-drawer-nav ul.gs-menu ul.gs-menu.is-open { display: block; }

/* ---------- front page: hero ---------- */

.gs-front { padding-bottom: 10px; }

.gs-hero {
	position: relative;
	overflow: hidden;
	background: #f6f6f9;
}
.gs-hero-track { display: flex; transition: transform 0.55s ease; }
.gs-hero-slide {
	flex: 0 0 100%;
	min-width: 100%;
}
.gs-hero-slide img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 2280 / 1360;
	object-fit: cover;
}
.gs-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	padding: 0 !important;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a1a1a;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	z-index: 5;
	transition: background 0.2s;
}
.gs-hero-arrow svg { width: 20px !important; height: 20px !important; max-width: none; }
.gs-hero-arrow:hover { background: #fff; }
.gs-hero-prev { left: 16px; }
.gs-hero-next { right: 16px; }

/* ---------- front page: featured grid ---------- */

.gs-featured { padding: 42px 30px 12px; max-width: var(--gs-width); margin: 0 auto; }

.gs-feat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gs-feat-card {
	position: relative;
	background: #fff;
	border: 1px solid #ececf1;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.gs-feat-card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07); }

.gs-feat-ribbon {
	position: absolute;
	top: 17px;
	left: -34px;
	transform: rotate(-45deg);
	background: var(--gs-blue);
	color: #fff;
	font-size: 12.5px;
	font-weight: 500;
	line-height: 1;
	padding: 6px 38px;
	z-index: 3;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.gs-feat-img {
	display: block;
	background: #f6f6f9;
}
.gs-feat-img img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	display: block;
	transition: transform 0.3s ease;
}
.gs-feat-card:hover .gs-feat-img img { transform: scale(1.04); }

.gs-feat-info {
	padding: 16px 14px 18px;
	text-align: center;
	border-top: 1px solid #f1f1f5;
	margin-top: auto;
}
.gs-feat-title {
	display: block;
	color: var(--gs-heading);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 8px;
}
.gs-feat-title:hover { color: var(--gs-blue-dark); }
.gs-feat-price { font-size: 15px; color: var(--gs-heading); font-weight: 700; }
.gs-feat-price del { color: var(--gs-muted); font-weight: 400; margin-right: 4px; }
.gs-feat-price ins { text-decoration: none; color: #2b63c6; }

/* stars (self-drawn) */
.gs-rating {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--gs-star);
	line-height: 1;
}
.gs-star { position: relative; display: inline-flex; }
.gs-star svg { display: block; }
.gs-star-overlay { pointer-events: none; }

/* stars shared */
.gs-theme .star-rating {
	color: var(--gs-star);
	overflow: hidden;
	position: relative;
	height: 1em;
	line-height: 1;
	font-size: 14px;
	width: 5.6em;
	font-family: star, var(--gs-font);
	display: inline-block;
	margin: 6px auto 0;
}
.gs-theme .star-rating::before,
.gs-theme .star-rating span::before {
	content: "★★★★★";
	letter-spacing: 2px;
}
.gs-theme .star-rating span {
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	white-space: nowrap;
	padding-top: 0;
}
.gs-theme .star-rating span::before { color: var(--gs-star); }

/* ---------- front page: banner + tiles ---------- */

.gs-banner { max-width: var(--gs-width); margin: 46px auto 0; padding: 0 30px; }
.gs-banner img { width: 100%; display: block; }

.gs-tiles {
	position: relative;
	max-width: var(--gs-width);
	margin: 46px auto 40px;
	padding: 0 30px;
}
.gs-tiles-viewport { overflow: hidden; }
.gs-tiles-track {
	display: flex;
	gap: 15px;
	transition: transform 0.45s ease;
}
.gs-tile { flex: 0 0 calc((100% - 45px) / 4); }
.gs-tile img { width: 100%; aspect-ratio: 768 / 1079; object-fit: cover; display: block; }
.gs-tiles-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	padding: 0 !important;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a1a1a;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	z-index: 5;
}
.gs-tiles-arrow svg { width: 20px !important; height: 20px !important; max-width: none; }
.gs-tiles-prev { left: -12px; }
.gs-tiles-next { right: -12px; }

/* ---------- shop / archive ---------- */

.gs-page-wrap { padding: 20px 0 60px; }
.gs-main { min-height: 40vh; }

.gs-shop { padding: 34px 0 70px; }

.gs-shop-head { margin-bottom: 26px; }

.gs-breadcrumb {
	font-size: 15px;
	color: var(--gs-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
}
.gs-breadcrumb a { color: var(--gs-muted); }
.gs-breadcrumb a:hover { color: var(--gs-blue); }
.gs-breadcrumb span { color: var(--gs-muted); }

.gs-shop-title {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	margin: 12px 0 0;
	color: var(--gs-heading);
}

.gs-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 30px 0 8px;
}
.gs-result-count { margin: 0; font-size: 15px; color: var(--gs-text); }

.gs-ordering { margin: 0; }
.gs-orderby {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	background: transparent url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right center;
	font-size: 15px;
	color: var(--gs-heading);
	padding: 6px 22px 6px 0;
	cursor: pointer;
	font-family: var(--gs-font);
}

/* product grid (archive + related) */
.gs-products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 34px 24px;
	list-style: none !important;
	margin: 26px 0 0 !important;
	padding: 0 !important;
	float: none !important;
}
.gs-products::before, .gs-products::after { display: none !important; }
.gs-products li.gs-card {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	list-style: none;
}

.gs-card-media { position: relative; }
.gs-card-imglink { display: block; }
.gs-card-imglink img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	display: block;
	transition: transform 0.3s ease;
}
.gs-card:hover .gs-card-imglink img { transform: scale(1.03); }

.gs-onsale-pill {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	background: #fff;
	color: #111;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	padding: 8px 15px;
	border-radius: 999px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.gs-card-body { padding-top: 10px; }
.gs-card-cat {
	display: block;
	font-size: 13px;
	color: var(--gs-muted);
	margin-bottom: 3px;
}
.gs-card-title {
	display: block;
	color: var(--gs-heading);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.45;
	margin-bottom: 5px;
}
.gs-card-title:hover { color: var(--gs-blue-dark); }

.gs-card-price { font-size: 15px; color: var(--gs-heading); }
.gs-card-price del { color: var(--gs-muted); font-weight: 400; margin-right: 4px; }
.gs-card-price ins { text-decoration: none; font-weight: 700; color: var(--gs-heading); }
.gs-card-price .from,
.gs-card-price .woocommerce-price-suffix { color: var(--gs-muted); }
/* range price (variable) */
.gs-card-price bdi { font-weight: inherit; }

.gs-card .star-rating { margin: 6px 0 4px; }

.gs-theme .gs-card-btn,
.gs-theme a.button.gs-card-btn,
.gs-theme .gs-products .button.add_to_cart_button {
	background: var(--gs-blue) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 4px !important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	padding: 12px 26px !important;
	margin: 10px 0 0 !important;
	display: inline-block;
	line-height: 1.4;
	cursor: pointer;
}
.gs-theme .gs-products .button.add_to_cart_button:hover,
.gs-theme a.button.gs-card-btn:hover {
	background: var(--gs-blue-dark) !important;
	color: #fff !important;
}
.gs-theme .gs-products .button.add_to_cart_button.loading { opacity: 0.6; }
.gs-theme .gs-products .button.product_type_variable,
.gs-theme .gs-products .button.product_type_grouped { background: var(--gs-blue) !important; }

/* pagination */
.gs-pagination { margin-top: 40px; text-align: center; }
.gs-pagination ul {
	display: inline-flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: center;
}
.gs-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid #d8dde3;
	border-radius: 999px;
	color: #475569;
	font-size: 14px;
	background: #fff;
	text-decoration: none;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.gs-pagination .page-numbers:hover { background: #f1f5f9; color: #1e293b; border-color: #cbd5e1; }
.gs-pagination .page-numbers.current,
.gs-pagination .page-numbers.current:hover {
	background: var(--gs-blue);
	color: #fff;
	border-color: var(--gs-blue);
}
.gs-pagination .page-numbers.dots { border-color: transparent; background: none; cursor: default; }
.gs-pagination .page-numbers.prev,
.gs-pagination .page-numbers.next { padding: 0 12px; font-size: 16px; }

/* ---------- single product ---------- */

.gs-single { padding: 34px 0 70px; }

.gs-single-grid {
	display: grid;
	grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}

.gs-gallery-main {
	position: relative;
	background: #fff;
}
.gs-gallery-main img.gs-main-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	display: block;
}
.gs-gallery-main .gs-onsale-pill { top: 18px; left: 0; }
.gs-gallery-zoom {
	position: absolute;
	top: 16px;
	right: 4px;
	background: none;
	border: 0;
	color: #475569;
	cursor: pointer;
	padding: 6px;
	z-index: 3;
}
.gs-gallery-zoom:hover { color: var(--gs-heading); }

.gs-gallery-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
	max-width: 460px;
}
.gs-thumb {
	background: #fff;
	border: 1px solid #e2e8f0;
	padding: 0;
	cursor: pointer;
	width: 92px;
	opacity: 0.9;
	pointer-events: auto !important;
	position: relative;
	z-index: 2;
	border-radius: 4px;
	overflow: hidden;
	transition: border-color .15s ease, opacity .15s ease;
}
.gs-thumb:hover { opacity: 1; border-color: #94a3b8; }
.gs-thumb.is-active { border-color: var(--gs-blue); opacity: 1; }
.gs-thumb img { width: 100%; aspect-ratio: 1/1; object-fit: contain; display: block; }
.gs-thumb.is-active img { opacity: 1; }

.gs-summary-top { margin-bottom: 14px; }
.gs-single-cats { margin-top: 12px; font-size: 14px; color: #64748b; }
.gs-single-cats a { color: var(--gs-blue); margin-right: 2px; }
.gs-single-cats .gs-cats-sep { color: #cbd5e1; margin: 0 4px; }

.gs-single-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 12px;
	color: var(--gs-heading);
}

.gs-single-price { font-size: 24px; color: var(--gs-heading); font-weight: 700; margin-bottom: 14px; }
.gs-single-price del { color: var(--gs-muted); font-weight: 400; font-size: 21px; margin-right: 6px; }
.gs-single-price ins { text-decoration: none; }

.gs-stock { margin: 0 0 20px; font-size: 15px; }
.gs-stock-label { font-weight: 700; color: var(--gs-heading); margin-right: 4px; }
.gs-stock-value { color: #4a9d5b; }
.gs-stock.out-of-stock .gs-stock-value { color: #c0392b; }

/* native add-to-cart form restyle */
.gs-summary { min-width: 0; }
.gs-cart-form form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
	margin: 0;
	width: 100%;
}
.gs-cart-form form.cart .quantity { margin: 0; flex: 0 0 auto; min-width: 0; }
.gs-cart-form .qty {
	width: 52px;
	flex: 0 0 52px;
	height: 46px;
	border: 0;
	background: transparent;
	padding: 0 4px;
	font-size: 15px;
	color: var(--gs-heading);
	text-align: center;
	-moz-appearance: textfield;
}
.gs-cart-form .qty::-webkit-outer-spin-button,
.gs-cart-form .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.gs-cart-form .gs-qty {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--gs-border);
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	height: 46px;
	width: auto;
}
.gs-cart-form .gs-qty-btn {
	flex: 0 0 36px;
	background: #f8fafc;
	border: 0;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	color: #475569;
	padding: 0;
	font-family: inherit;
	transition: background .15s ease, color .15s ease;
}
.gs-cart-form .gs-qty-btn:hover { background: #e2e8f0; color: #1e293b; }
.gs-cart-form .gs-qty-btn:disabled { color: #94a3b8; cursor: not-allowed; background: #f8fafc; }
.gs-cart-form .gs-qty input { flex: 0 0 52px; width: 52px; min-width: 0; padding: 0 2px; }
.gs-cart-form .single_add_to_cart_button { flex: 1 1 200px; min-width: 0; }
.gs-cart-form form.cart table.variations { flex: 1 1 100%; }
.gs-cart-form form.cart table.variations td.value select { max-width: 100%; }
.gs-theme .gs-cart-form .single_add_to_cart_button {
	background: var(--gs-blue) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 4px !important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
	font-size: 15px;
	font-weight: 400;
	padding: 13px 28px !important;
	cursor: pointer;
	line-height: 1.4;
}
.gs-theme .gs-cart-form .single_add_to_cart_button:hover { background: var(--gs-blue-dark) !important; }

/* variations */
.gs-cart-form table.variations { margin: 0 0 16px; border: 0; }
.gs-cart-form table.variations tr,
.gs-cart-form table.variations th,
.gs-cart-form table.variations td { border: 0; padding: 4px 0; background: none; }
.gs-cart-form table.variations th.label {
	text-align: left;
	font-size: 15px;
	color: var(--gs-heading);
	padding-right: 14px;
}
.gs-cart-form table.variations select {
	border: 1px solid var(--gs-border);
	border-radius: 4px;
	padding: 9px 32px 9px 12px;
	font-size: 15px;
	min-width: 220px;
	appearance: none;
	-webkit-appearance: none;
	background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
}
.gs-cart-form .reset_variations { font-size: 13px; margin-left: 10px; }
.gs-cart-form .woocommerce-variation-price { margin-bottom: 12px; font-size: 18px; color: var(--gs-heading); }
.gs-cart-form .woocommerce-variation-availability { display: none; }

/* description tab */
.gs-single-desc { margin-top: 64px; }
.gs-desc-tab {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: var(--gs-heading);
	padding: 0 26px 12px 0;
	border-bottom: 2px solid var(--gs-blue);
	margin-bottom: 26px;
}
.gs-single-desc .entry-content { color: var(--gs-text); font-size: 16px; }
.gs-single-desc .entry-content p { margin: 0 0 16px; }
.gs-single-desc .entry-content img { max-width: 100%; height: auto; }
.gs-single-desc .entry-content h1, .gs-single-desc .entry-content h2,
.gs-single-desc .entry-content h3 { margin: 22px 0 10px; font-size: 20px; }
.gs-single-desc .entry-content ul, .gs-single-desc .entry-content ol { margin: 0 0 16px 20px; }

/* related */
.gs-related { margin-top: 56px; }
.gs-related-title { font-size: 32px; font-weight: 500; margin-bottom: 6px; }

/* ---------- lightbox ---------- */

.gs-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gs-lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; }
.gs-lightbox-close {
	position: absolute;
	top: 18px;
	right: 22px;
	background: none;
	border: 0;
	color: #fff;
	cursor: pointer;
	padding: 8px;
}

/* ---------- static pages ---------- */

.gs-narrow { max-width: 860px; }
.gs-page-title { font-size: 40px; font-weight: 500; margin: 12px 0 26px; color: var(--gs-heading); }
.gs-page-content { color: var(--gs-text); font-size: 16px; }
.gs-page-content p { margin: 0 0 16px; }
.gs-page-content h2 { font-size: 22px; margin: 26px 0 12px; }
.gs-page-content ul, .gs-page-content ol { margin: 0 0 16px 22px; }

/* ---------- footer ---------- */

.gs-footer { background: var(--gs-dark); color: #fff; margin-top: 30px; }
.gs-footer-inner { max-width: var(--gs-width); margin: 0 auto; padding: 0 30px; }

.gs-footer-top {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 98px;
	padding: 46px 0 10px;
}
.gs-footer-title {
	color: #ffffff !important;
	opacity: 1;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.4px;
	margin: 0 0 12px;
}
.gs-footer-links { list-style: none; margin: 0; padding: 0; }
.gs-footer-links li { margin: 0 0 4px; }
.gs-footer-links a {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 2.9;
}
.gs-footer-links a:hover { color: #d9d9d9; }

.gs-footer-mid { padding: 44px 0 40px; }
.gs-footer-logo { display: inline-block; }
.gs-footer-logo img { width: 186px; height: auto; display: block; }

.gs-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid #1f1f1f;
	padding: 22px 0 26px;
	flex-wrap: wrap;
}
.gs-footer-social { display: flex; align-items: center; gap: 30px; }
.gs-social-link { color: #fff; display: inline-flex; }
.gs-social-link:hover { color: #d9d9d9; }

.gs-footer-legal { font-size: 13.3px; color: #fff; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.gs-footer-legal a { color: #fff; margin-right: 10px; }
.gs-footer-legal a:hover { color: #d9d9d9; }

/* ---------- responsive ≤921px ---------- */

@media (max-width: 921px) {
	.gs-header-inner {
		min-height: 68px;
		padding: 0 16px;
		gap: 12px;
	}
	.gs-burger {
		display: inline-flex;
		background: none;
		border: 0;
		cursor: pointer;
		padding: 6px;
		color: var(--gs-heading);
		order: -1;
	}
	.gs-burger-box { display: flex; flex-direction: column; gap: 4px; }
	.gs-burger-line { width: 20px; height: 2px; background: currentColor; display: block; }

	.gs-header-center { display: none; }
	.gs-nav { display: none; }

	.gs-branding { flex: 1 1 auto; text-align: center; }

	.gs-search-panel { padding: 12px 16px; }

	/* featured grid 2 cols */
	.gs-featured { padding: 28px 16px 6px; }
	.gs-feat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

	.gs-banner { padding: 0 16px; margin-top: 30px; }
	.gs-tiles { padding: 0 16px; margin: 30px auto 26px; }
	.gs-tile { flex: 0 0 100%; }

	.gs-shop { padding-top: 22px; }
	.gs-shop-title { font-size: 30px; }
	.gs-toolbar { flex-wrap: wrap; }

	.gs-products { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }

	.gs-single-grid { grid-template-columns: 1fr; gap: 26px; }
	.gs-single-title { font-size: 21px; }
	.gs-single-price { font-size: 21px; }

	.gs-footer-top { grid-template-columns: 1fr; gap: 28px; padding: 34px 0 0; }
	.gs-footer-mid { padding: 30px 0 26px; }
	.gs-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 544px) {
	.gs-container { padding: 0 16px; }
	.gs-shop-title { font-size: 26px; }
	.gs-related-title { font-size: 24px; }
	.gs-page-title { font-size: 28px; }
	.gs-footer-inner { padding: 0 16px; }
}

/* ---------- misc woocommerce pages (cart/checkout/account) ---------- */

.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-top-color: var(--gs-blue);
	font-family: var(--gs-font);
}
.gs-theme .woocommerce-message, .gs-theme .woocommerce-info, .gs-theme .woocommerce-error {
	border-top: 2px solid var(--gs-blue);
	background: var(--gs-light);
	color: var(--gs-text);
	list-style: none;
	padding: 14px 20px;
	margin: 0 0 24px;
}
.gs-theme .button, .gs-theme button.button, .gs-theme input.button,
.gs-theme .woocommerce a.button, .gs-theme .woocommerce button.button {
	background: var(--gs-blue);
	color: #fff;
	border: 0;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	font-family: var(--gs-font);
	font-weight: 400;
	font-size: 15px;
	padding: 12px 26px;
}
.gs-theme .button:hover, .gs-theme button.button:hover {
	background: var(--gs-blue-dark);
	color: #fff;
}
.gs-theme .woocommerce table.shop_table { border: 1px solid #eee; }

/* qty stepper + Add to cart on one row (1.0.9) */
.gs-cart-form .woocommerce-variation-add-to-cart {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	width: 100%;
	margin: 0;
}
.gs-cart-form .woocommerce-variation-add-to-cart .quantity { margin: 0; }

.gs-cart-form form.cart .single_variation_wrap { flex: 0 0 100%; width: 100%; }
