/*
Theme Name: GoShirtShop
Theme URI: https://goshirtshop.com
Author: GoShirtShop
Description: A house-of-brands custom apparel marketplace theme built for WooCommerce. Shop by brand, request custom apparel, and browse curated picks — bold engine red, royal blue, and white throughout.
Version: 1.7.0-marketplace-team-uniforms
Requires PHP: 7.4
Text Domain: goshirtshop
*/

/* =========================================================================
   0. TOKENS
   ========================================================================= */
:root{
	--red:        #E8112D;
	--red-dark:   #B80C22;
	--blue:       #1B3FE0;
	--blue-dark:  #12299E;
	--ink:        #14131A;
	--paper:      #F7F6F2;
	--white:      #FFFFFF;
	--line:       #E7E4DC;
	--gray:       #6B6A66;

	--font-display: 'Anton', Impact, sans-serif;
	--font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono:    'Space Mono', monospace;

	--radius: 6px;
	--container: 1280px;
	--shadow-tag: 0 6px 0 var(--ink);
}

/* =========================================================================
   1. RESET & BASE
   ========================================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--paper);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; font-size: 16px; }
h1,h2,h3,h4{ font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em; line-height: 1.05; margin: 0 0 .4em; }
p{ margin: 0 0 1em; }

.gss-container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.screen-reader-text{ position: absolute !important; clip: rect(1px,1px,1px,1px); overflow: hidden; height: 1px; width: 1px; }

:focus-visible{ outline: 3px solid var(--blue); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce){
	*{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* =========================================================================
   2. BUTTONS + SIGNATURE "HANGTAG" ELEMENT
   ========================================================================= */
.gss-btn{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: .03em;
	font-size: 15px;
	padding: 14px 28px;
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	background: var(--white);
	color: var(--ink);
	transition: transform .15s ease, box-shadow .15s ease;
	box-shadow: 4px 4px 0 var(--ink);
}
.gss-btn:hover{ transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.gss-btn:active{ transform: translate(0,0); box-shadow: 2px 2px 0 var(--ink); }
.gss-btn--red{ background: var(--red); color: var(--white); border-color: var(--ink); }
.gss-btn--blue{ background: var(--blue); color: var(--white); border-color: var(--ink); }
.gss-btn--ghost{ background: transparent; }
.gss-btn--sm{ padding: 9px 18px; font-size: 13px; box-shadow: 3px 3px 0 var(--ink); }

/* The hangtag: our signature motif. A little clothing price-tag shape
   with a punched hole, reused for badges, labels, and section eyebrows. */
.gss-tag{
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	background: var(--ink);
	color: var(--white);
	padding: 6px 14px 6px 22px;
	border-radius: 3px 8px 8px 3px;
}
.gss-tag::before{
	content: "";
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--paper);
}
.gss-tag--red{ background: var(--red); }
.gss-tag--blue{ background: var(--blue); }

.gss-eyebrow{
	display: inline-block;
	margin-bottom: 14px;
}

.gss-stripe{
	height: 10px;
	background: repeating-linear-gradient(-45deg, var(--red) 0 22px, var(--blue) 22px 44px);
}

/* =========================================================================
   3. HEADER / NAV
   ========================================================================= */
.gss-topbar{
	background: var(--ink);
	color: var(--white);
	font-family: var(--font-mono);
	font-size: 12.5px;
	letter-spacing: .03em;
	text-align: center;
}
.gss-topbar .gss-container{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 8px;
	padding-bottom: 8px;
	gap: 16px;
	flex-wrap: wrap;
}
.gss-topbar a{ margin-left: 12px; }
.gss-topbar a:hover{ color: var(--red); }

/* Header: icons left, logo centered, icons right */
.gss-header{
	background: var(--white);
	border-bottom: 4px solid var(--ink);
	position: sticky;
	top: 0;
	z-index: 100;
}
.gss-header__inner{
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
}
.gss-header__side{ display: flex; align-items: center; gap: 6px; }
.gss-header__side--left{ justify-self: start; }
.gss-header__side--right{ justify-self: end; }

.gss-logo{
	font-family: var(--font-display);
	font-size: 22px;
	letter-spacing: .01em;
	display: flex;
	align-items: center;
	justify-self: center;
	text-align: center;
}
.gss-logo img{ max-height: 44px; width: auto; }
.gss-logo span{ color: var(--red); }

.gss-icon-btn{
	background: none;
	border: none;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink);
	border-radius: var(--radius);
	position: relative;
}
.gss-icon-btn:hover{ color: var(--red); }
.gss-menu-toggle span{ display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; transition: transform .2s ease, opacity .2s ease; }
.gss-menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.gss-menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.gss-menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.gss-cart-link{ position: relative; }
.gss-cart-count{
	position: absolute;
	top: -2px;
	right: -2px;
	background: var(--red);
	color: var(--white);
	font-family: var(--font-mono);
	font-size: 10px;
	min-width: 16px;
	height: 16px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 3px;
	border: 2px solid var(--white);
}

/* Collapsible search bar under the header */
.gss-search-bar{
	max-height: 0;
	overflow: hidden;
	background: var(--paper);
	border-top: 0 solid var(--ink);
	transition: max-height .25s ease, border-width .25s ease;
}
.gss-search-bar.is-open{ max-height: 420px; border-top-width: 3px; overflow: visible; }
.gss-search-bar__inner{ display: flex; gap: 10px; padding: 14px 20px; align-items: flex-start; }
.gss-search-bar__field{ position: relative; flex: 1; }
.gss-search-bar input{
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--ink);
	border-radius: 24px;
	background: var(--white);
}
.gss-search-bar button{
	font-family: var(--font-display);
	text-transform: uppercase;
	background: var(--blue);
	color: var(--white);
	border: 2px solid var(--ink);
	border-radius: 24px;
	padding: 0 22px;
	height: 46px;
	flex: 0 0 auto;
}

.gss-search-suggest{
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	box-shadow: 5px 5px 0 var(--ink);
	max-height: 340px;
	overflow-y: auto;
	z-index: 10;
	padding: 6px;
}
.gss-search-suggest.is-active{ display: block; }
.gss-search-suggest__label{
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--gray);
	padding: 8px 10px 4px;
}
.gss-search-suggest__row{
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 10px;
	border-radius: 6px;
}
.gss-search-suggest__row:hover{ background: var(--paper); }
.gss-search-suggest__row img{ width: 38px; height: 38px; object-fit: contain; border: 2px solid var(--line); border-radius: 4px; background: var(--white); flex: 0 0 auto; }
.gss-search-suggest__row .gss-noimg{ width: 38px; height: 38px; border-radius: 4px; background: var(--paper); flex: 0 0 auto; }
.gss-search-suggest__text{ display: flex; flex-direction: column; min-width: 0; }
.gss-search-suggest__text strong{ font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gss-search-suggest__text span{ font-family: var(--font-mono); font-size: 12px; color: var(--red-dark); }
.gss-search-suggest__empty{ padding: 14px 10px; color: var(--gray); font-size: 13.5px; }

/* Full-screen off-canvas primary nav */
.gss-nav-overlay{
	position: fixed; inset: 0; background: rgba(20,19,26,.5);
	opacity: 0; visibility: hidden; transition: opacity .25s ease;
	z-index: 199;
}
.gss-nav-overlay.is-open{ opacity: 1; visibility: visible; }

.gss-nav{
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(92vw, 420px);
	background: var(--white);
	z-index: 200;
	transform: translateX(-100%);
	transition: transform .28s ease;
	overflow-y: auto;
	padding: 0 0 32px;
	box-shadow: 10px 0 0 var(--ink);
}
.gss-nav.is-open{ transform: translateX(0); }
.gss-nav__head{ display: flex; justify-content: flex-end; padding: 18px 18px 0; }
.gss-nav__close{
	width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--white);
	border: none; font-size: 16px; display: flex; align-items: center; justify-content: center;
}
.gss-nav > ul{ padding: 8px 22px 20px; border-bottom: 2px solid var(--line); }
.gss-nav > ul > li{ border-bottom: 1px solid var(--line); }
.gss-nav > ul > li:last-child{ border-bottom: none; }
.gss-nav > ul > li > a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 4px;
	font-family: var(--font-display);
	font-size: 19px;
	letter-spacing: .02em;
	text-transform: uppercase;
}
.gss-nav > ul > li > a:hover{ color: var(--red); }
.gss-nav .sub-menu{ display: none; padding: 0 0 14px 12px; }
.gss-nav li.gss-open-sub > .sub-menu{ display: block; }
.gss-nav .sub-menu li a{
	display: block; padding: 8px 4px; font-family: var(--font-body); font-weight: 600; font-size: 15px;
}
.gss-nav .sub-menu li a:hover{ color: var(--red); }

.gss-nav__sellers{ padding: 20px 22px; border-bottom: 2px solid var(--line); }
.gss-nav__sellers h4{ font-family: var(--font-display); font-size: 15px; text-transform: uppercase; margin-bottom: 12px; }
.gss-nav__socials{ display: flex; gap: 10px; flex-wrap: wrap; padding: 20px 22px 0; }
.gss-nav__socials a{
	width: 38px; height: 38px; border: 2px solid var(--ink); border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.gss-nav__socials a svg{ width: 18px; height: 18px; }
.gss-nav__socials a:hover{ background: var(--red); color: var(--white); border-color: var(--red); }

/* =========================================================================
   4. HOMEPAGE — HERO
   ========================================================================= */
.gss-hero{
	background: var(--blue);
	color: var(--white);
	position: relative;
	overflow: hidden;
	padding: 72px 0 60px;
}
.gss-hero::after{
	content: "";
	position: absolute;
	right: -80px;
	top: -80px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: var(--red);
	opacity: .9;
}
.gss-hero__inner{ position: relative; z-index: 2; max-width: 640px; }
.gss-hero h1{ font-size: clamp(40px, 6vw, 76px); margin-bottom: 20px; }
.gss-hero p{ font-size: 18px; max-width: 480px; margin-bottom: 28px; opacity: .95; }
.gss-hero__actions{ display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================================
   5. BRAND MARQUEE (auto-scroll) + JUST DROPPED / INSTAGRAM (manual scroll)
   ========================================================================= */
.gss-section{ padding: 56px 0; }
.gss-section--tight{ padding: 40px 0; }
.gss-section--red{ background: var(--paper); }
.gss-section__head{ display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.gss-section__head--center{ justify-content: center; text-align: center; margin-bottom: 22px; }
.gss-section__head h2{ font-size: clamp(26px, 4vw, 40px); margin: 0; }

/* Auto-scrolling brand-logo marquee */
.gss-marquee{ overflow: hidden; position: relative; padding: 6px 0 30px; }
.gss-marquee__track{
	display: flex;
	align-items: center;
	gap: 48px;
	width: max-content;
	animation: gss-scroll 32s linear infinite;
}
.gss-marquee:hover .gss-marquee__track{ animation-play-state: paused; }
@keyframes gss-scroll{
	from{ transform: translateX(0); }
	to{ transform: translateX(-50%); }
}
.gss-marquee__item{ flex: 0 0 auto; display: flex; align-items: center; justify-content: center; height: 46px; opacity: .85; transition: opacity .2s ease, transform .2s ease; }
.gss-marquee__item:hover{ opacity: 1; transform: translateY(-2px); }
.gss-marquee__item img{ max-height: 100%; max-width: 140px; object-fit: contain; }

/* Auto-scrolling CARD marquee — New Arrivals / Instagram / X. Image
   height is always fixed with object-fit: cover, so a tall/odd source
   photo still crops to a clean, consistent card no matter what was
   uploaded. Driven by JS (not a CSS animation, unlike the plain brand
   logo strip above) so the arrow buttons can nudge it without any
   jump — auto-scroll just continues from wherever a manual click left
   it, rather than resetting to the start. */
.gss-marquee--cards .gss-marquee__track{ gap: 18px; animation: none; will-change: transform; }
.gss-marquee__arrow{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}
.gss-marquee__arrow--prev{ left: 8px; }
.gss-marquee__arrow--next{ right: 8px; }
@media (max-width: 720px){
	.gss-marquee__arrow{ width: 34px; height: 34px; font-size: 16px; }
}
.gss-marquee__card{
	flex: 0 0 auto;
	width: 200px;
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--white);
	box-shadow: 5px 5px 0 var(--ink);
	transition: transform .2s ease;
	display: block;
}
.gss-marquee__card:hover{ transform: translateY(-4px); }
.gss-marquee__card-imgwrap{ position: relative; display: block; }
.gss-marquee__card-img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: center;
	display: block;
	background: var(--paper);
}
.gss-marquee--square .gss-marquee__card-img{ height: 200px; }
.gss-marquee__card-brand{
	position: absolute;
	left: 8px;
	bottom: 8px;
	width: 34px;
	height: 34px;
	object-fit: contain;
	background: var(--white);
	border: 2px solid var(--ink);
	border-radius: 50%;
	padding: 3px;
	box-shadow: 2px 2px 0 var(--ink);
}
.gss-marquee__card-body{ padding: 8px 10px 10px; }
.gss-marquee__card-title{
	display: block;
	font-weight: 700;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gss-marquee__card-price{ display: block; font-family: var(--font-mono); font-size: 12px; color: var(--red-dark); margin-top: 2px; }

/* Manually-scrollable "Just Dropped" / "Instagram" strips */
.gss-scroller-wrap__inner{ position: relative; display: flex; align-items: center; gap: 8px; }
.gss-scroller{
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px 2px 14px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.gss-scroller::-webkit-scrollbar{ display: none; }
.gss-scroller__card{
	flex: 0 0 auto;
	width: 220px;
	scroll-snap-align: start;
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--white);
	box-shadow: 5px 5px 0 var(--ink);
	transition: transform .2s ease;
	display: flex;
	flex-direction: column;
}
.gss-scroller__card:hover{ transform: translateY(-4px); }
.gss-scroller__card img{ width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.gss-scroller__card--square img{ aspect-ratio: 1/1; }
.gss-scroller__noimg{ width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; background: var(--paper); color: var(--gray); font-family: var(--font-mono); font-size: 12px; }
.gss-scroller__title{ font-family: var(--font-body); font-weight: 700; font-size: 13px; padding: 8px 10px 0; }
.gss-scroller__price{ font-family: var(--font-mono); font-size: 12.5px; color: var(--red-dark); padding: 2px 10px 10px; }

.gss-scroller--sm{ gap: 12px; }
.gss-scroller__card--sm{ width: 130px; box-shadow: 3px 3px 0 var(--ink); }

.gss-scroll-arrow{
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--white);
	border: 3px solid var(--ink);
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.gss-scroll-arrow:hover{ background: var(--red); color: var(--white); border-color: var(--red); }

/* =========================================================================
   5b. OUR MISSION
   ========================================================================= */
.gss-mission{ background: var(--paper); padding: 48px 0; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.gss-mission h2{ font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 16px; }
.gss-mission__text{ max-width: 780px; color: var(--ink); font-size: 16px; line-height: 1.7; }
.gss-mission__text p{ margin: 0 0 14px; }

.gss-vendor-cta{ padding: 12px 0 56px; }
.gss-vendor-cta__box{
	background: var(--blue);
	color: var(--white);
	border: 4px solid var(--ink);
	border-radius: var(--radius);
	padding: 40px 32px;
	text-align: center;
	box-shadow: 8px 8px 0 var(--ink);
}
.gss-vendor-cta__box h2{ font-size: clamp(24px, 3.4vw, 36px); margin: 12px 0 10px; }
.gss-vendor-cta__box p{ max-width: 560px; margin: 0 auto 22px; opacity: .95; }

/* Blank Style color/size pickers on the single product page */
.gss-blank-options{ margin: 0 0 18px; display: flex; flex-direction: column; gap: 14px; max-width: 360px; }
.gss-blank-options__field{ margin: 0; display: flex; flex-direction: column; gap: 6px; }
.gss-blank-options__field label{ font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .03em; }
.gss-blank-options__field .required{ color: var(--red); }
.gss-blank-options__field select{
	padding: 12px 14px;
	border: 2px solid var(--ink);
	border-radius: var(--radius);
	background: var(--white);
	font-family: var(--font-body);
	font-size: 15px;
}

/* =========================================================================

   6. CTA BLOCKS (custom apparel / shop by brand)
   ========================================================================= */
.gss-cta-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gss-cta{
	border: 4px solid var(--ink);
	border-radius: 12px;
	padding: 40px;
	position: relative;
	overflow: hidden;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.gss-cta--red{ background: var(--red); color: var(--white); }
.gss-cta--blue{ background: var(--blue); color: var(--white); }
.gss-cta h3{ font-size: 32px; margin-bottom: 10px; }
.gss-cta p{ max-width: 380px; margin-bottom: 20px; opacity: .95; }
.gss-cta__icon{
	position: absolute;
	right: -10px;
	top: -10px;
	font-family: var(--font-display);
	font-size: 140px;
	opacity: .15;
	line-height: 1;
}

.gss-brand-strip{ display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.gss-brand-strip a{
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	padding: 10px 18px;
	font-family: var(--font-display);
	font-size: 13px;
	text-transform: uppercase;
	box-shadow: 3px 3px 0 var(--ink);
}
.gss-brand-strip a:hover{ background: var(--red); color: var(--white); }

/* =========================================================================
   7. PROMO POPUP
   ========================================================================= */
.gss-popup-overlay{
	position: fixed; inset: 0; background: rgba(20,19,26,.7);
	display: none; align-items: center; justify-content: center; z-index: 999; padding: 20px;
}
.gss-popup-overlay.is-open{ display: flex; }
.gss-popup{
	background: var(--white);
	border: 4px solid var(--ink);
	border-radius: 12px;
	max-width: 420px;
	width: 100%;
	padding: 36px 32px 32px;
	position: relative;
	box-shadow: 10px 10px 0 var(--red);
	text-align: center;
}
.gss-popup__close{
	position: absolute; top: 14px; right: 14px;
	width: 32px; height: 32px; border-radius: 50%;
	background: var(--ink); color: var(--white); border: none; font-size: 18px;
}
.gss-popup h3{ font-size: 30px; margin-bottom: 6px; }
.gss-popup p{ color: var(--gray); margin-bottom: 20px; }
.gss-popup form{ display: flex; flex-direction: column; gap: 12px; }
.gss-popup input[type=email]{
	padding: 12px 14px; border: 2px solid var(--ink); border-radius: var(--radius);
}
.gss-popup__code{
	font-family: var(--font-mono); font-weight: 700; font-size: 22px;
	background: var(--paper); border: 2px dashed var(--ink); border-radius: var(--radius);
	padding: 12px; letter-spacing: .1em;
}
.gss-popup__msg{ display: none; }
.gss-popup__msg.is-active{ display: block; }
.gss-popup__error{ color: var(--red-dark); font-size: 13px; min-height: 18px; }

/* =========================================================================
   8. WOOCOMMERCE — SHOP LOOP / PRODUCT CARDS
   ========================================================================= */
ul.products{ display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 0 0 40px !important; padding: 0 !important; }
ul.products li.product{
	list-style: none;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 5px 5px 0 var(--ink);
	transition: transform .2s ease;
	position: relative;
}
ul.products li.product:hover{ transform: translateY(-4px); }
ul.products li.product a{ display: block; padding: 0; }
ul.products li.product img{
	width: 100%; height: clamp(150px, 30vw, 240px); aspect-ratio: auto;
	object-fit: cover; object-position: center 18%;
	border-bottom: 3px solid var(--ink); transition: transform .35s ease;
}
ul.products li.product a:hover img{ transform: scale(1.04); }
ul.products li.product a{ overflow: hidden; }
ul.products li.product .gss-brand-badge{
	position: absolute; bottom: 8px; left: 8px; z-index: 3;
	width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
	background: var(--white); border: 2px solid var(--ink); border-radius: 50%;
	overflow: hidden; text-decoration: none;
}
ul.products li.product .gss-brand-badge img{ width: 100%; height: 100%; object-fit: contain; padding: 4px; }
ul.products li.product .gss-brand-badge span{ font-family: var(--font-display); font-size: 14px; color: var(--ink); }
.gss-brand-badge--text{
	position: static; display: inline-block; width: auto; height: auto; border-radius: 0;
	background: none; border: none; margin-bottom: 12px;
	font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em;
	color: var(--gray); text-decoration: underline;
}
.gss-wishlist-btn{
	position: absolute; bottom: 8px; right: 8px; z-index: 3;
	width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
	background: var(--white); border: 2px solid var(--ink); border-radius: 50%;
	font-size: 18px; line-height: 1; color: var(--ink); text-decoration: none;
}
.gss-wishlist-btn.is-saved{ background: var(--red); border-color: var(--red); color: var(--white); }
.gss-wishlist-btn.gss-pop .gss-wishlist-btn__icon{ animation: gss-wishlist-pop .4s ease; }
@keyframes gss-wishlist-pop{
	0%{ transform: scale(1); } 35%{ transform: scale(1.5); } 60%{ transform: scale(0.85); } 100%{ transform: scale(1); }
}
.single-product .gss-wishlist-btn{
	position: static; display: inline-flex; width: auto; height: auto; border-radius: 999px;
	padding: 8px 16px; gap: 6px; font-size: 15px; margin: 4px 0 16px;
}
.single-product .gss-wishlist-btn::after{ content: 'Save for later'; font-family: var(--font-body); font-size: 13px; font-weight: 700; margin-left: 4px; }
.single-product .gss-wishlist-btn.is-saved::after{ content: 'Saved'; }
ul.products li.product h2, ul.products li.product .woocommerce-loop-product__title{
	font-family: var(--font-body); font-weight: 700; text-transform: none;
	font-size: 15px; margin: 14px 14px 4px; letter-spacing: 0;
}
ul.products li.product .price{
	font-family: var(--font-mono); font-weight: 700; margin: 0 14px 14px; color: var(--red-dark); font-size: 15px;
}
ul.products li.product .price del{ color: var(--gray); opacity: .7; margin-right: 6px; }
ul.products li.product .button{
	display: block; margin: 0 14px 16px; text-align: center;
	background: var(--blue); color: var(--white); font-family: var(--font-display);
	text-transform: uppercase; font-size: 13px; padding: 10px; border-radius: var(--radius);
}
ul.products li.product .button:hover{ background: var(--blue-dark); }
ul.products li.product .onsale{
	position: absolute; top: 10px; right: 10px; z-index: 3;
	background: var(--red); color: var(--white); font-family: var(--font-display);
	font-size: 12px; padding: 5px 10px; border-radius: 20px; text-transform: uppercase;
}

.woocommerce-result-count, .woocommerce-ordering{ font-family: var(--font-mono); font-size: 13px; }
.woocommerce-pagination ul{ display: flex; gap: 8px; }
.woocommerce-pagination a, .woocommerce-pagination span{
	display: block; padding: 8px 14px; border: 2px solid var(--ink); border-radius: var(--radius); font-family: var(--font-mono);
}
.woocommerce-pagination .current{ background: var(--ink); color: var(--white); }

/* Brand page — colored banner band in that brand's own accent color */
.gss-brand-banner{
	border-bottom: 4px solid var(--ink);
	padding: 48px 0;
	position: relative;
	overflow: hidden;
	/* Full-bleed: escape the .gss-container max-width this section
	   otherwise inherits from the theme's woocommerce.php wrapper. */
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.gss-brand-banner__inner{
	display: flex; align-items: center; gap: 28px; flex-wrap: wrap; position: relative; z-index: 1;
	color: var(--white);
	justify-content: space-between;
}
.gss-brand-banner__inner.is-light{ color: var(--ink); }
.gss-brand-banner__main{ display: flex; align-items: center; gap: 28px; flex-wrap: wrap; flex: 1 1 420px; }
.gss-brand-banner__inner h1{ margin-bottom: 8px; font-size: clamp(30px,4vw,48px); }
.gss-brand-banner__inner p{ max-width: 640px; margin: 0; opacity: .92; }
.gss-brand-banner__tagline{
	font-family: var(--font-display);
	font-size: clamp(16px, 2.2vw, 22px);
	text-transform: none;
	letter-spacing: .01em;
	max-width: 640px;
	margin: 0 0 4px;
	opacity: .95;
}
/* Default: no logo uploaded yet — show a circle with the brand's initial. */
.gss-brand-banner__logo{
	width: 120px; height: 120px; border: 4px solid var(--white); border-radius: 50%;
	overflow: hidden; background: var(--white); flex-shrink: 0; box-shadow: 4px 4px 0 rgba(0,0,0,.25);
	display: flex; align-items: center; justify-content: center;
}
.gss-brand-banner__logo span{ font-family: var(--font-display); font-size: 32px; color: var(--ink); }
/* Logo uploaded: sit the image directly on the banner, no circle/frame,
   so a transparent-background logo file reads clean against the accent color. */
.gss-brand-banner__logo.has-logo{
	width: auto; height: 120px; border: 0; border-radius: 0; background: none;
	box-shadow: none; overflow: visible;
}
.gss-brand-banner__logo.has-logo img{
	width: auto; height: 100%; max-width: 260px; object-fit: contain;
	filter: drop-shadow(4px 4px 0 rgba(0,0,0,.2));
}
.gss-brand-banner__link{
	display: inline-block; margin-top: 12px; padding: 8px 18px; border-radius: var(--radius);
	background: rgba(255,255,255,.2); border: 2px solid currentColor; font-family: var(--font-display);
	text-transform: uppercase; font-size: 13px;
}
.gss-brand-banner__link:hover{ background: rgba(255,255,255,.35); }
/* Optional right-hand product/lifestyle image */
.gss-brand-banner__image{
	flex: 0 0 auto; max-width: 320px; margin-left: auto;
}
.gss-brand-banner__image img{
	max-height: 220px; width: auto; margin: 0 auto; border-radius: var(--radius);
	box-shadow: 6px 6px 0 rgba(0,0,0,.25);
}
@media (max-width: 720px){
	.gss-brand-banner__image{
		flex-basis: 100%; max-width: 100%; margin-left: 0; margin-top: 8px;
		display: flex; justify-content: center;
	}
	.gss-brand-banner__image img{ max-height: 160px; }
}

/* Filter chips: All / Men / Women / Kids / New Arrivals */
.gss-brand-filters{ display: flex; gap: 8px; flex-wrap: wrap; padding: 20px 0; }
.gss-brand-filters__chip{
	padding: 8px 16px; border: 2px solid var(--ink); border-radius: 20px;
	font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
	background: var(--white);
}
.gss-brand-filters__chip:hover{ background: var(--paper); }
.gss-brand-filters__chip.is-active{ background: var(--ink); color: var(--white); }

/* Giant faint logo watermark sitting behind the product grid */
.gss-brand-watermark{
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-position: center 40px;
	background-size: min(70%, 520px);
	opacity: .05;
	filter: grayscale(1);
	pointer-events: none;
	z-index: 0;
}

/* All brands index */
.gss-brand-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gss-brand-card{
	background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius);
	padding: 24px; text-align: center; box-shadow: 5px 5px 0 var(--ink); transition: transform .2s ease;
}
.gss-brand-card:hover{ transform: translateY(-4px); }
.gss-brand-card__logo{
	width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 50%; overflow: hidden;
	border: 3px solid var(--ink); background: var(--paper); display: flex; align-items: center; justify-content: center;
}
.gss-brand-card__logo img{ width: 100%; height: 100%; object-fit: contain; }
.gss-brand-card__logo--photo{
	width: 100%; height: 220px; border-radius: var(--radius); margin-bottom: 16px;
}
.gss-brand-card__logo--photo img{ object-fit: contain; padding: 8px; }
.gss-brand-card h3{ font-size: 18px; margin-bottom: 6px; }
.gss-brand-card p{ font-size: 13px; color: var(--gray); margin-bottom: 14px; }
.gss-brand-index-letter{
	font-family: var(--font-display); font-size: 20px; color: var(--red);
	margin: 40px 0 16px; padding-bottom: 6px; border-bottom: 3px solid var(--ink);
}

/* =========================================================================
   9. SINGLE PRODUCT
   ========================================================================= */
.gss-mockup{
	position: relative;
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--paper);
	aspect-ratio: 1/1;
}
.gss-mockup__canvas{ width: 100%; height: 100%; object-fit: cover; display: block; }
.gss-mockup__source{ display: none; }
.gss-mockup__overlay{
	position: absolute;
	transform: translate(-50%, -50%);
	pointer-events: none;
	max-width: 90%;
}
.gss-mockup__hint{ font-family: var(--font-mono); font-size: 12px; color: var(--gray); margin-top: 8px; text-align: center; }
.gss-mockup-extra-gallery{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.gss-mockup-extra-gallery__img{
	width: 84px; height: 84px; object-fit: cover;
	border: 2px solid var(--ink); border-radius: 8px; cursor: pointer;
}

.gss-blank-options{ margin: 16px 0; display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
.gss-blank-options__field label{ display: block; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.gss-blank-options__field select{ width: 100%; padding: 10px 12px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); }
.gss-blank-options__field .required{ color: var(--red); }
.single-product .product_title{ font-size: clamp(28px,4vw,40px); }
.single-product .price{ font-family: var(--font-mono); font-size: 24px; color: var(--red-dark); font-weight: 700; margin: 10px 0 20px; }
.single-product .variations{ margin: 20px 0; }
.single-product .variations td{ padding: 6px 0; }
.single-product .variations select{ padding: 10px; border: 2px solid var(--ink); border-radius: var(--radius); }
.single-product .single_add_to_cart_button{
	background: var(--red) !important; color: var(--white) !important; border: 3px solid var(--ink) !important;
	font-family: var(--font-display) !important; text-transform: uppercase; padding: 14px 30px !important;
	border-radius: var(--radius) !important; box-shadow: 4px 4px 0 var(--ink); font-size: 15px !important;
}
.single-product .single_add_to_cart_button:hover{ background: var(--red-dark) !important; }
.woocommerce-product-gallery{ border: 3px solid var(--ink); border-radius: var(--radius); overflow: hidden; }

/* =========================================================================
   10. CART / CHECKOUT
   ========================================================================= */
.gss-shipping-bar{ background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; }
.gss-shipping-bar__msg{ font-family: var(--font-mono); font-size: 13px; margin-bottom: 10px; text-transform: uppercase; }
.gss-shipping-bar__msg--unlocked{ color: var(--red-dark); }
.gss-shipping-bar__track{ height: 10px; background: var(--paper); border: 2px solid var(--ink); border-radius: 10px; overflow: hidden; }
.gss-shipping-bar__fill{ height: 100%; background: linear-gradient(90deg, var(--blue), var(--red)); transition: width .3s ease; }

table.shop_table{ border: 3px solid var(--ink); border-radius: var(--radius); border-collapse: separate; overflow: hidden; }
table.shop_table th{ background: var(--ink); color: var(--white); font-family: var(--font-mono); text-transform: uppercase; font-size: 12px; }
table.shop_table td, table.shop_table th{ padding: 14px; border-bottom: 1px solid var(--line); }
.checkout input[type=text], .checkout input[type=email], .checkout input[type=tel], .checkout select, .checkout textarea{
	border: 2px solid var(--ink) !important; border-radius: var(--radius) !important; padding: 10px !important;
}
#place_order{
	background: var(--red) !important; color: var(--white) !important; border: 3px solid var(--ink) !important;
	font-family: var(--font-display) !important; text-transform: uppercase; padding: 16px !important; border-radius: var(--radius) !important;
	box-shadow: 4px 4px 0 var(--ink); font-size: 16px !important;
}

/* =========================================================================
   11. CUSTOM REQUEST FORM PAGE + FAQ
   ========================================================================= */
.gss-request-hero{ background: var(--red); color: var(--white); padding: 56px 0 44px; }

/* Team Uniforms: quick links + sport picker */
.gss-team-links{ display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0; }
.gss-sport-picker{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.gss-sport-picker__option{
	border: 2px solid var(--ink); border-radius: var(--radius);
	padding: 10px 18px; cursor: pointer; font-weight: 700; font-size: 14px;
	background: var(--white); transition: background .15s ease, color .15s ease;
}
.gss-sport-picker__option input{ position: absolute; opacity: 0; width: 0; height: 0; }
.gss-sport-picker__option:has(input:checked){ background: var(--red); color: var(--white); border-color: var(--red); }

/* Team Roster table */
.gss-roster-top{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; margin-bottom: 10px; }
.gss-roster-table-wrap{ overflow-x: auto; border: 2px solid var(--ink); border-radius: var(--radius); margin: 20px 0; }
.gss-roster-table{ border-collapse: collapse; width: 100%; min-width: 760px; }
.gss-roster-table th{
	background: var(--ink); color: var(--white); font-family: var(--font-display);
	font-size: 12px; text-transform: uppercase; letter-spacing: .03em; padding: 10px 8px; text-align: left; white-space: nowrap;
}
.gss-roster-table td{ padding: 4px; border-top: 1px solid var(--line); }
.gss-roster-table td:first-child{ min-width: 160px; }
.gss-roster-table input{
	width: 100%; padding: 8px; border: 1px solid var(--line); border-radius: 6px; font-size: 13px; background: var(--paper);
}
.gss-roster-table input:focus{ outline: none; border-color: var(--blue); background: var(--white); }
.gss-roster-table tr:nth-child(even){ background: rgba(0,0,0,.015); }

/* Sizing Charts page */
.gss-size-nav{ display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 8px; }
.gss-size-nav a{
	display: inline-block; padding: 8px 16px; border: 2px solid var(--ink); border-radius: 999px;
	font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .02em;
	background: var(--paper); color: var(--ink); text-decoration: none;
}
.gss-size-nav a:hover{ background: var(--ink); color: var(--white); }
.gss-size-note{
	background: #FFF6DA; border: 2px solid var(--ink); border-radius: var(--radius);
	padding: 14px 18px; margin: 20px 0 32px; font-size: 14px;
}
.gss-size-note strong{ text-transform: uppercase; }
.gss-size-section{ margin: 48px 0; padding-top: 12px; }
.gss-size-section h2{ display: flex; align-items: center; gap: 10px; }
.gss-size-group{ margin: 24px 0; }
.gss-size-group h3{ font-family: var(--font-display); font-size: 16px; text-transform: uppercase; margin-bottom: 4px; }
.gss-size-group p.gss-size-key{ color: var(--gray); font-size: 13px; margin-bottom: 10px; }
.gss-size-table-wrap{ overflow-x: auto; border: 2px solid var(--ink); border-radius: var(--radius); }
.gss-size-table{ border-collapse: collapse; width: 100%; min-width: 420px; }
.gss-size-table th{
	background: var(--ink); color: var(--white); font-family: var(--font-display);
	font-size: 12px; text-transform: uppercase; letter-spacing: .03em; padding: 10px 12px; text-align: left; white-space: nowrap;
}
.gss-size-table td{ padding: 9px 12px; border-top: 1px solid var(--line); white-space: nowrap; }
.gss-size-table tr:nth-child(even){ background: rgba(0,0,0,.015); }
.gss-size-table td:first-child{ font-family: var(--font-display); }

/* Friendly empty states */
.gss-empty-state{ text-align: center; padding: 60px 24px; }
.gss-empty-state__icon{ font-size: 48px; margin-bottom: 6px; }
.gss-empty-state h2{ margin-bottom: 6px; }
.gss-empty-state p{ color: var(--gray); margin-bottom: 20px; }

/* Trust badges */
.gss-trust-badges{
	display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 16px 0;
	font-size: 13px; font-weight: 700; color: var(--gray);
}

/* Back-in-stock notify */
.gss-back-in-stock{
	background: #FFF6DA; border: 2px solid var(--ink); border-radius: var(--radius);
	padding: 14px 16px; margin: 16px 0;
}
.gss-back-in-stock label{ display: block; font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.gss-back-in-stock__row{ display: flex; gap: 8px; flex-wrap: wrap; }
.gss-back-in-stock__row input{ flex: 1; min-width: 180px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; }

/* Vendor onboarding checklist (Dokan dashboard) */
.gss-vendor-checklist{
	background: #FFF6DA; border: 3px solid var(--ink); border-radius: var(--radius);
	padding: 18px 20px; margin-bottom: 24px; box-shadow: 4px 4px 0 var(--ink);
}
.gss-vendor-checklist h3{ margin: 0 0 10px; }
.gss-vendor-checklist ul{ list-style: none; margin: 0; padding: 0; }
.gss-vendor-checklist li{ padding: 6px 0; font-size: 14px; }
.gss-vendor-checklist li.is-done{ color: var(--gray); }
.gss-vendor-checklist li a{ margin-left: 8px; font-weight: 700; color: var(--red-dark); text-decoration: underline; }

/* =========================================================================
   FINISHING TOUCHES — micro-interactions, focus states, small delights
   ========================================================================= */

html{ scroll-behavior: smooth; }
h1, h2, h3, [id]{ scroll-margin-top: 90px; } /* so anchor jumps clear the sticky header */

/* Visible keyboard focus, matching the site's bordered/shadowed look */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible,
.gss-btn:focus-visible, .gss-wishlist-btn:focus-visible{
	outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px;
}

/* Skeleton loader — add class="gss-skeleton" to an element while content loads */
.gss-skeleton{
	background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
	background-size: 400% 100%; animation: gss-skeleton-loading 1.4s ease infinite;
}
@keyframes gss-skeleton-loading{ 0%{ background-position: 100% 50%; } 100%{ background-position: 0 50%; } }

/* Page-load progress bar */
#gss-progress-bar{
	position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 9999;
	background: var(--red); transition: width .4s ease, opacity .3s ease .2s;
}

/* Add-to-cart confirmation + cart icon bump */
.gss-btn.is-added, button.is-added, .single_add_to_cart_button.is-added{
	background: #1E8A3D !important; color: var(--white) !important;
}
.gss-cart-link{ position: relative; }
.gss-cart-link.is-bumping{ animation: gss-cart-bump .5s ease; }
@keyframes gss-cart-bump{
	0%{ transform: scale(1); } 30%{ transform: scale(1.3) rotate(-8deg); }
	60%{ transform: scale(1.15) rotate(4deg); } 100%{ transform: scale(1); }
}

/* Sticky mobile Add to Cart bar */
.gss-sticky-atc{
	position: fixed; left: 0; right: 0; bottom: -80px; z-index: 500;
	background: var(--white); border-top: 3px solid var(--ink);
	padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
	box-shadow: 0 -4px 12px rgba(0,0,0,.1); transition: bottom .25s ease;
}
.gss-sticky-atc.is-visible{ bottom: 0; }
.gss-sticky-atc__info{ min-width: 0; }
.gss-sticky-atc__title{ font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gss-sticky-atc__price{ color: var(--red-dark); font-weight: 700; font-size: 13px; }
@media (min-width: 900px){ .gss-sticky-atc{ display: none; } }

/* Confetti burst (order-received page) */
#gss-confetti{ position: fixed; inset: 0; pointer-events: none; z-index: 9998; overflow: hidden; }
.gss-confetti-piece{
	position: absolute; top: -20px; width: 9px; height: 14px; opacity: .9;
	animation-name: gss-confetti-fall; animation-timing-function: ease-in; animation-fill-mode: forwards;
}
@keyframes gss-confetti-fall{
	0%{ transform: translateY(0) rotate(0deg); opacity: 1; }
	100%{ transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* Payment icons (footer) */
.gss-payment-icons{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.gss-payment-icons span{
	border: 1px solid var(--line); border-radius: 4px; padding: 3px 8px;
	font-family: var(--font-mono); font-size: 11px; letter-spacing: .02em; color: var(--gray);
}

/* Delivery estimate + trusted-by stat + seasonal banner */
.gss-delivery-estimate{ font-size: 13px; color: var(--gray); margin: 6px 0 0; }
.gss-trusted-by{ text-align: center; font-family: var(--font-display); font-size: 15px; padding: 10px; color: var(--gray); }
.gss-seasonal-banner{
	background: var(--blue); color: var(--white); text-align: center; font-weight: 700;
	padding: 8px 16px; font-size: 13px;
}

.gss-no-scroll{ overflow: hidden; }

/* Cart drawer */
.gss-cart-drawer-overlay{
	position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 900;
	opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.gss-cart-drawer-overlay.is-open{ opacity: 1; pointer-events: auto; }
.gss-cart-drawer{
	position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: 901;
	background: var(--paper); border-left: 3px solid var(--ink);
	transform: translateX(100%); transition: transform .3s ease;
	display: flex; flex-direction: column;
}
.gss-cart-drawer.is-open{ transform: translateX(0); }
.gss-cart-drawer__head{
	display: flex; align-items: center; justify-content: space-between;
	padding: 18px 20px; border-bottom: 3px solid var(--ink); background: var(--white);
}
.gss-cart-drawer__head h2{ margin: 0; font-size: 20px; }
.gss-cart-drawer__close{
	width: 34px; height: 34px; border: 2px solid var(--ink); border-radius: 50%; background: var(--white);
	font-size: 16px; cursor: pointer;
}
.gss-cart-drawer__body{ flex: 1; overflow-y: auto; padding: 16px 20px 24px; }
.gss-cart-drawer .widget_shopping_cart_content ul.cart_list{ list-style: none; margin: 0; padding: 0; }
.gss-cart-drawer .widget_shopping_cart_content ul.cart_list li{
	display: flex; gap: 10px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line);
}
.gss-cart-drawer .widget_shopping_cart_content ul.cart_list li img{ width: 56px; height: 56px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.gss-cart-drawer .widget_shopping_cart_content .quantity{ display: block; font-size: 12px; color: var(--gray); }
.gss-cart-drawer .widget_shopping_cart_content .remove{ color: var(--red); text-decoration: none; font-weight: 700; }
.gss-cart-drawer .widget_shopping_cart_content .total{ font-weight: 700; margin-top: 14px; padding-top: 12px; border-top: 2px solid var(--ink); }
.gss-cart-drawer .widget_shopping_cart_content .buttons{ display: flex; gap: 10px; margin-top: 14px; }
.gss-cart-drawer .widget_shopping_cart_content .buttons a{
	flex: 1; text-align: center; padding: 12px; border-radius: 999px; font-weight: 700; text-decoration: none;
	border: 2px solid var(--ink);
}
.gss-cart-drawer .widget_shopping_cart_content .buttons a.checkout{ background: var(--red); color: var(--white); border-color: var(--red); }
.gss-cart-drawer .widget_shopping_cart_content .buttons a:not(.checkout){ background: var(--white); color: var(--ink); }
.gss-cart-drawer .widget_shopping_cart_content p.woocommerce-mini-cart__empty-message{ color: var(--gray); text-align: center; padding: 40px 10px; }

/* Free shipping progress bar */
.gss-shipping-bar{ margin-bottom: 18px; }
.gss-shipping-bar p{ font-size: 13px; margin: 6px 0 0; }
.gss-shipping-bar__track{ height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.gss-shipping-bar__fill{ height: 100%; background: var(--blue); border-radius: 999px; transition: width .3s ease; }
.gss-shipping-bar--done .gss-shipping-bar__fill{ background: #1E8A3D; }

/* Toasts */
.gss-toast-host{
	position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 9997;
	display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none;
}
.gss-toast{
	background: var(--ink); color: var(--white); padding: 10px 20px; border-radius: 999px;
	font-weight: 700; font-size: 13px; opacity: 0; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease;
	box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.gss-toast.is-visible{ opacity: 1; transform: translateY(0); }

/* Order progress tracker */
.gss-order-tracker{ display: flex; align-items: flex-start; gap: 4px; margin: 20px 0 28px; }
.gss-order-tracker__step{ flex: 1; text-align: center; position: relative; }
.gss-order-tracker__step:not(:last-child)::after{
	content: ""; position: absolute; top: 14px; left: 55%; width: 90%; height: 3px; background: var(--line); z-index: 0;
}
.gss-order-tracker__step.is-done:not(:last-child)::after{ background: #1E8A3D; }
.gss-order-tracker__dot{
	position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
	width: 28px; height: 28px; border-radius: 50%; background: var(--white); border: 3px solid var(--line);
	font-weight: 700; font-size: 13px; color: var(--gray);
}
.gss-order-tracker__step.is-done .gss-order-tracker__dot{ background: #1E8A3D; border-color: #1E8A3D; color: var(--white); }
.gss-order-tracker__step.is-current .gss-order-tracker__dot{ border-color: var(--blue); color: var(--blue); }
.gss-order-tracker__label{ display: block; font-size: 12px; font-weight: 700; margin-top: 6px; color: var(--gray); }
.gss-order-tracker__step.is-done .gss-order-tracker__label,
.gss-order-tracker__step.is-current .gss-order-tracker__label{ color: var(--ink); }
.gss-order-problem{
	background: #FDECEC; border: 2px solid var(--red); color: var(--red-dark); border-radius: var(--radius);
	padding: 12px 16px; font-weight: 700; margin: 20px 0;
}

/* My Account orders table — color-coded status pills (existing WC markup, no template override) */
mark.order-status{ border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 700; background: var(--paper); }
mark.order-status.status-completed{ background: #E3F5E8; color: #1E8A3D; }
mark.order-status.status-processing{ background: #E7EEFD; color: var(--blue-dark); }
mark.order-status.status-on-hold, mark.order-status.status-pending{ background: #FFF6DA; color: #8A6D1E; }
mark.order-status.status-cancelled, mark.order-status.status-failed, mark.order-status.status-refunded{ background: #FDECEC; color: var(--red-dark); }

/* Recently viewed strip */
.gss-recently-viewed{ margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }

/* Vendor storefront polish */
.gss-vendor-polish{
	background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
	padding: 18px 20px; margin: 16px 0; box-shadow: 4px 4px 0 var(--ink);
}
.gss-vendor-polish__rating{ font-weight: 700; margin-bottom: 10px; }
.gss-vendor-polish__rating span{ font-weight: 400; color: var(--gray); font-size: 13px; margin-left: 6px; }
.gss-vendor-polish__bio h3{ font-size: 14px; text-transform: uppercase; margin: 10px 0 4px; }
.gss-vendor-polish__bio p{ color: var(--gray); font-size: 14px; }
.gss-vendor-polish__location{ font-size: 13px; color: var(--gray); margin-top: 8px; }

/* My Account: dashboard summary cards */
.gss-dashboard-summary{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 22px 0 32px; }
.gss-dashboard-summary__card{
	border: 2px solid var(--ink); border-radius: var(--radius); padding: 18px 20px; background: var(--paper);
}
.gss-dashboard-summary__card--accent{ background: var(--blue); color: var(--white); border-color: var(--ink); }
.gss-dashboard-summary__card--accent .gss-dashboard-summary__link{ color: var(--white); }
.gss-dashboard-summary__card h4{ font-family: var(--font-display); font-size: 14px; text-transform: uppercase; margin: 0 0 10px; }
.gss-dashboard-summary__card p{ margin: 0 0 10px; font-size: 14px; }
.gss-dashboard-summary__link{ font-weight: 700; font-size: 13px; color: var(--red-dark); }
.gss-dashboard-summary__link--accent{ text-decoration: underline; }
@media (max-width: 600px){ .gss-dashboard-summary{ grid-template-columns: 1fr; } .gss-roster-top{ grid-template-columns: 1fr; } }

/* My Account: Custom Orders tab */
.gss-custom-orders__list{ display: flex; flex-direction: column; gap: 14px; }
.gss-custom-orders__item{ border: 2px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.gss-custom-orders__item-head{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; flex-wrap: wrap; gap: 6px; }
.gss-custom-orders__badge{ font-size: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 3px 10px; }
.gss-custom-orders__item p{ margin: 0; color: var(--gray); font-size: 14px; }
.gss-request-hero h1{ font-size: clamp(32px,5vw,56px); margin-bottom: 10px; }
.gss-request-hero p{ max-width: 560px; font-size: 17px; opacity: .95; margin-bottom: 28px; }
.gss-request-hero__art{
	max-width: 560px;
	border: 4px solid var(--ink);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 8px 8px 0 var(--blue);
	background: #0a0a0a;
}
.gss-request-hero__art img{ width: 100%; display: block; }

.gss-form-wrap{ max-width: 680px; margin: -32px auto 0; background: var(--white); border: 4px solid var(--ink); border-radius: 12px; padding: 36px; box-shadow: 8px 8px 0 var(--blue); position: relative; z-index: 5; }
.gss-field{ margin-bottom: 18px; }
.gss-field label{ display: block; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.gss-field input[type=text], .gss-field input[type=email], .gss-field input[type=tel], .gss-field input[type=password], .gss-field input[type=url], .gss-field textarea{
	width: 100%; padding: 12px 14px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--paper);
}
.gss-field input:focus{ outline: none; border-color: var(--blue); background: var(--white); }
.gss-field .show-password-input,
.gss-field span.password-input{ position: relative; display: block; }
.gss-field button.show-password-input,
.gss-field .woocommerce-Input-wrapper button{
	position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
	width: 28px; height: 28px; border: none; background: none; cursor: pointer; opacity: .55;
}
.gss-field button.show-password-input:hover{ opacity: 1; }
.gss-field textarea{ min-height: 130px; resize: vertical; }
.gss-field--files{ border: 2px dashed var(--ink); border-radius: var(--radius); padding: 18px; text-align: center; background: var(--paper); }
.gss-field--files small{ display: block; color: var(--gray); margin-top: 6px; }
.gss-hp-field{ position: absolute; left: -9999px; }

.gss-notice{ padding: 14px 16px; border-radius: var(--radius); margin-bottom: 20px; font-weight: 600; font-size: 14px; }
.gss-notice--success{ background: #E6F6EA; border: 2px solid #1E8A3D; color: #1E8A3D; }
.gss-notice--error{ background: #FBE7E9; border: 2px solid var(--red-dark); color: var(--red-dark); }

.gss-faq{ max-width: 780px; margin: 72px auto 0; }
.gss-faq-item{ border: 3px solid var(--ink); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: var(--white); }
.gss-faq-item__q{
	width: 100%; text-align: left; padding: 18px 20px; background: var(--white); border: none;
	font-family: var(--font-display); font-size: 16px; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center;
}
.gss-faq-item__q::after{ content: "+"; font-size: 22px; }
.gss-faq-item.is-open .gss-faq-item__q::after{ content: "–"; }
.gss-faq-item__a{ display: none; padding: 0 20px 20px; color: var(--gray); }
.gss-faq-item.is-open .gss-faq-item__a{ display: block; }
.gss-faq-item__a img{ border-radius: var(--radius); margin-top: 12px; }

/* =========================================================================
   12. GENERIC PAGE (About Us etc.) — fully editable content area
   ========================================================================= */
.gss-page-hero{ background: var(--blue); color: var(--white); padding: 52px 0; }
.gss-page-hero h1{ font-size: clamp(32px,5vw,52px); }
.gss-page-content{ max-width: 760px; margin: 48px auto; }
.gss-page-content h2{ font-size: 26px; margin-top: 40px; text-transform: none; font-family: var(--font-body); font-weight: 800; }
.gss-page-content p{ font-size: 16px; }
.gss-page-content img{ border-radius: var(--radius); border: 3px solid var(--ink); margin: 20px 0; }

/* =========================================================================
   13. FOOTER
   ========================================================================= */
.gss-footer{ background: var(--ink); color: var(--white); padding: 0 0 24px; margin-top: 60px; }
.gss-footer .gss-mission{ background: transparent; color: var(--white); border-color: rgba(255,255,255,.15); }
.gss-footer .gss-mission__text{ color: rgba(255,255,255,.82); }
.gss-footer > .gss-container{ padding-top: 48px; }
.gss-footer__grid{ display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 32px; margin-bottom: 40px; }
.gss-footer h4.footer-widget-title{ font-family: var(--font-display); font-size: 15px; text-transform: uppercase; margin-bottom: 14px; }
.gss-footer a:hover{ color: var(--red); }
.gss-footer ul{ display: flex; flex-direction: column; gap: 8px; }
.gss-footer__address{ white-space: pre-line; color: rgba(255,255,255,.82); margin-bottom: 10px; }
.gss-footer__brand{ font-family: var(--font-display); font-size: 24px; margin-bottom: 10px; }
.gss-footer__brand span{ color: var(--red); }
.gss-footer__social{ display: flex; gap: 12px; margin-top: 16px; }
.gss-footer__social a{ width: 36px; height: 36px; border: 2px solid var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.gss-footer__social a svg{ width: 18px; height: 18px; }
.gss-footer__social a:hover{ background: var(--red); border-color: var(--red); color: var(--white); }
.gss-footer__newsletter p{ color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 14px; }
.gss-footer__newsletter form{ display: flex; flex-direction: column; gap: 10px; }
.gss-footer__newsletter input[type=email]{
	padding: 12px 14px;
	border: 2px solid rgba(255,255,255,.3);
	border-radius: var(--radius);
	background: rgba(255,255,255,.06);
	color: var(--white);
}
.gss-footer__newsletter input[type=email]::placeholder{ color: rgba(255,255,255,.5); }
.gss-newsletter__msg{ display: none; }
.gss-newsletter__msg.is-active{ display: block; }
.gss-newsletter__error{ color: #ff9b9b; font-size: 12.5px; min-height: 16px; }
.gss-footer__newsletter .gss-btn{ align-self: flex-start; }
.gss-footer__bottom{ border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; font-size: 13px; color: rgba(255,255,255,.6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* =========================================================================
   14b. POLISH PASS — notices, breadcrumbs, cart controls, empty states
   These are WooCommerce's own generated markup that had no styling at
   all until now, so they were falling back to plain unstyled HTML.
   ========================================================================= */

/* Notices: "Added to cart", validation errors, info banners */
.woocommerce-message, .woocommerce-error, .woocommerce-info{
	list-style: none;
	margin: 0 0 24px;
	padding: 16px 20px;
	border: 3px solid var(--ink);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.woocommerce-message{ background: #E6F6EA; border-color: #1E8A3D; color: #1E5A28; }
.woocommerce-error{ background: #FBE7E9; border-color: var(--red-dark); color: var(--red-dark); }
.woocommerce-error li{ list-style: none; }
.woocommerce-info{ background: #E9EEFC; border-color: var(--blue); color: var(--blue-dark); }
.woocommerce-message a.button, .woocommerce-error a.button, .woocommerce-info a.button{
	background: var(--ink); color: var(--white); font-family: var(--font-display);
	text-transform: uppercase; font-size: 12px; padding: 8px 16px; border-radius: var(--radius); white-space: nowrap;
}

/* Breadcrumbs */
.woocommerce-breadcrumb{
	font-family: var(--font-mono); font-size: 12px; color: var(--gray);
	text-transform: uppercase; letter-spacing: .04em; padding: 16px 0; margin: 0;
}
.woocommerce-breadcrumb a{ color: var(--gray); }
.woocommerce-breadcrumb a:hover{ color: var(--red); }

/* Quantity input */
.quantity .qty{
	width: 64px; padding: 10px; border: 2px solid var(--ink); border-radius: var(--radius);
	font-family: var(--font-mono); text-align: center; background: var(--white);
}

/* Cart page: coupon field + proceed-to-checkout button */
.woocommerce-cart-form .coupon{ display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.woocommerce-cart-form .coupon input#coupon_code{
	padding: 10px 14px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--white); min-width: 180px;
}
.woocommerce-cart-form .coupon button[name="apply_coupon"]{
	background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius);
	font-family: var(--font-display); text-transform: uppercase; font-size: 13px; padding: 10px 18px;
	box-shadow: 3px 3px 0 var(--ink);
}
button[name="update_cart"]{
	background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius);
	font-family: var(--font-display); text-transform: uppercase; font-size: 13px; padding: 10px 18px;
	box-shadow: 3px 3px 0 var(--ink); margin-top: 12px;
}
.wc-proceed-to-checkout .checkout-button{
	display: block; text-align: center; background: var(--red) !important; color: var(--white) !important;
	border: 3px solid var(--ink) !important; font-family: var(--font-display) !important; text-transform: uppercase;
	padding: 16px !important; border-radius: var(--radius) !important; box-shadow: 4px 4px 0 var(--ink); font-size: 16px !important;
}
.wc-proceed-to-checkout .checkout-button:hover{ background: var(--red-dark) !important; }

/* Empty cart / no-results states get a real call to action, not just text */
.cart-empty.woocommerce-info{ display: block; text-align: center; padding: 40px 20px; }
.return-to-shop .button{
	display: inline-block; margin-top: 16px; background: var(--red); color: var(--white) !important;
	border: 3px solid var(--ink); font-family: var(--font-display); text-transform: uppercase;
	padding: 12px 24px; border-radius: var(--radius); box-shadow: 4px 4px 0 var(--ink);
}

/* Product image placeholder (no photo set yet) — branded instead of the default gray box */
.woocommerce-product-gallery__image img[src*="woocommerce-placeholder"],
img.wp-post-image[src*="woocommerce-placeholder"]{
	background: var(--paper);
	border: 2px dashed var(--line);
}

/* Star ratings + review form, kept minimal and on-brand */
.star-rating{ color: var(--red); }
.comment-form input, .comment-form textarea{ border: 2px solid var(--ink); border-radius: var(--radius); padding: 10px; }
.comment-form .form-submit input{
	background: var(--red); color: var(--white); border: 3px solid var(--ink); font-family: var(--font-display);
	text-transform: uppercase; padding: 10px 22px; border-radius: var(--radius); box-shadow: 3px 3px 0 var(--ink);
}

/* Skip link — hidden until focused, standard accessibility pattern */
.gss-skip-link{
	position: absolute; left: -999px; top: 0; z-index: 999;
	background: var(--ink); color: var(--white); padding: 12px 20px;
	font-family: var(--font-mono); text-transform: uppercase; font-size: 13px; border-radius: 0 0 var(--radius) 0;
}
.gss-skip-link:focus{ left: 0; }

/* =========================================================================
   14. RESPONSIVE
   ========================================================================= */
@media (max-width: 960px){
	.gss-cta-grid{ grid-template-columns: 1fr; }
	.gss-brand-grid{ grid-template-columns: repeat(2, 1fr); }
	.gss-footer__grid{ grid-template-columns: 1fr 1fr; }
	ul.products{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px){
	ul.products{ grid-template-columns: repeat(2, 1fr); }
	.gss-brand-grid{ grid-template-columns: 1fr; }
	.gss-footer__grid{ grid-template-columns: 1fr; }
	.gss-header__inner{ padding: 12px 14px; }
	.gss-logo{ font-size: 19px; }
	.gss-scroller__card{ width: 180px; }
}

/* =========================================================================
   16. DOKAN MULTI-VENDOR MARKETPLACE
   Styled against Dokan's own documented, stable CSS classes — no
   template overrides. If a specific screen's class names have shifted
   in a Dokan update, these selectors are the first thing to check.
   ========================================================================= */

/* Buttons everywhere in Dokan — dashboard, forms, tables */
.dokan-btn, .dokan-btn-theme, .dokan-btn-primary, a.dokan-btn{
	background: var(--red) !important;
	color: var(--white) !important;
	border: 3px solid var(--ink) !important;
	border-radius: var(--radius) !important;
	font-family: var(--font-display) !important;
	text-transform: uppercase;
	letter-spacing: .02em;
	box-shadow: 3px 3px 0 var(--ink);
	padding: 10px 20px !important;
}
.dokan-btn:hover, .dokan-btn-theme:hover, .dokan-btn-primary:hover{ background: var(--red-dark) !important; }
.dokan-btn-danger{ background: var(--white) !important; color: var(--red-dark) !important; border-color: var(--red-dark) !important; }
.dokan-btn-success{ background: var(--blue) !important; border-color: var(--ink) !important; }

/* Vendor registration form */
#dokan-seller-registration-form, .dokan-seller-registration-form{
	max-width: 640px; margin: 40px auto; background: var(--white);
	border: 4px solid var(--ink); border-radius: 12px; padding: 32px;
	box-shadow: 8px 8px 0 var(--blue);
}
#dokan-seller-registration-form .dokan-form-control,
.dokan-form-control{
	border: 2px solid var(--ink) !important; border-radius: var(--radius) !important; padding: 10px 12px !important;
	background: var(--paper) !important; font-family: var(--font-body);
}
#dokan-seller-registration-form label, .dokan-form-group label{
	font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
}

/* Vendor dashboard shell */
.dokan-dashboard-wrap{ font-family: var(--font-body); max-width: var(--container); margin: 32px auto; padding: 0 24px; }
.dokan-dash-sidebar .dokan-panel, .dokan-dashboard-wrap .dokan-panel{
	border: 3px solid var(--ink) !important; border-radius: var(--radius) !important; box-shadow: 4px 4px 0 var(--ink);
}
.dokan-dashboard-wrap .dokan-panel-heading{
	background: var(--ink) !important; color: var(--white) !important; font-family: var(--font-display);
	text-transform: uppercase; letter-spacing: .02em;
}
.dokan-dashboard-content h1, .dokan-dashboard-content h2, .dokan-dashboard-content h3{
	font-family: var(--font-display); text-transform: uppercase;
}
.dokan-dash-sidebar ul.dokan-dashboard-menu li a{ font-family: var(--font-mono); font-size: 13px; }
.dokan-dash-sidebar ul.dokan-dashboard-menu li.active a{ background: var(--red) !important; color: var(--white) !important; }

/* Data tables (orders, products, withdrawals) */
.dokan-table{ border: 3px solid var(--ink) !important; border-radius: var(--radius); }
.dokan-table thead th{
	background: var(--ink) !important; color: var(--white) !important; font-family: var(--font-mono);
	text-transform: uppercase; font-size: 12px;
}

/* Vendor store page — the real-vendor equivalent of our brand banner */
.dokan-store-header, .dokan-single-store .store-header{
	background: var(--blue);
	border-bottom: 4px solid var(--ink);
	padding: 32px 0;
	color: var(--white);
}
.dokan-store-header .store-info, .dokan-store-top .store-info{ color: var(--white); }
.dokan-store-header .store-name, .store-info .store-title, .dokan-store-name{
	font-family: var(--font-display) !important; text-transform: uppercase; font-size: clamp(28px,4vw,44px) !important;
	color: var(--white) !important;
}
.dokan-store-header img.store-logo, .store-info img{
	border: 3px solid var(--white) !important; border-radius: var(--radius) !important; background: var(--white);
}
.dokan-store-header .store-follow, .dokan-store-header .dokan-btn{
	background: var(--white) !important; color: var(--ink) !important; border-color: var(--ink) !important;
}

/* Vendor "map" / contact widgets on store page */
.dokan-store-tabs, .dokan-store-menu{
	background: var(--paper); border-bottom: 3px solid var(--ink); font-family: var(--font-mono); text-transform: uppercase; font-size: 13px;
}
.dokan-store-tabs li.active a, .dokan-store-menu li.active a{ color: var(--red) !important; border-bottom-color: var(--red) !important; }


/* =========================================================================
   17. MY ACCOUNT / LOGIN / REGISTER (native WooCommerce + Dokan fields)
   ========================================================================= */

.gss-account-wrap{ padding: 32px 24px 64px; }

.gss-account-columns{
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 640px;
	margin: -32px auto 0;
}
.gss-account-col__title{
	font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em;
	font-size: 22px; margin: 0 0 20px;
}
.gss-account-wrap .gss-form-wrap{ margin: 0; }

/* "Create an account" starts collapsed — revealed by clicking either
   the "Create an account" link under Login, or the vendor CTA button.
   Both just scroll to + expand this same real Dokan/WooCommerce form;
   nothing about the form itself is duplicated or bypassed. */
.gss-account-col--register{
	display: none;
}
.gss-account-col--register.is-open{
	display: block;
}

.gss-vendor-signup-cta{
	background: var(--blue);
	color: var(--white);
	border: 4px solid var(--ink);
	border-radius: 12px;
	padding: 28px 30px;
	box-shadow: 8px 8px 0 var(--ink);
	text-align: center;
}
.gss-vendor-signup-cta h3{ font-size: clamp(20px, 3vw, 26px); margin: 10px 0 8px; }
.gss-vendor-signup-cta p{ max-width: 460px; margin: 0 auto 18px; opacity: .95; font-size: 15px; }

/* Plain WooCommerce dashboard nav (Dashboard / Orders / Addresses / etc.) */
.woocommerce-MyAccount-navigation{
	max-width: 320px; margin: -32px 0 24px; background: var(--white);
	border: 3px solid var(--ink); border-radius: 12px; box-shadow: 6px 6px 0 var(--blue);
	overflow: hidden; float: left;
}
.woocommerce-MyAccount-navigation ul{ list-style: none; margin: 0; padding: 8px; }
.woocommerce-MyAccount-navigation li{ margin: 0; }
.woocommerce-MyAccount-navigation li a{
	display: flex; align-items: center; gap: 10px;
	padding: 11px 14px; border-radius: 8px; margin-bottom: 2px;
	font-family: var(--font-body); font-weight: 700; font-size: 14px;
	color: var(--ink); text-decoration: none; border-left: 4px solid transparent;
	transition: background .12s, border-color .12s;
}
.woocommerce-MyAccount-navigation li a::before{ font-size: 16px; width: 20px; text-align: center; flex: 0 0 auto; }
.woocommerce-MyAccount-navigation-link--dashboard a::before{ content: "🏠"; }
.woocommerce-MyAccount-navigation-link--orders a::before{ content: "📦"; }
.woocommerce-MyAccount-navigation-link--custom-orders a::before{ content: "🎨"; }
.woocommerce-MyAccount-navigation-link--wishlist a::before{ content: "♡"; }
.woocommerce-MyAccount-navigation-link--downloads a::before{ content: "⬇️"; }
.woocommerce-MyAccount-navigation-link--edit-address a::before{ content: "📍"; }
.woocommerce-MyAccount-navigation-link--payment-methods a::before{ content: "💳"; }
.woocommerce-MyAccount-navigation-link--edit-account a::before{ content: "⚙️"; }
.woocommerce-MyAccount-navigation-link--customer-logout a::before{ content: "↪️"; }
.woocommerce-MyAccount-navigation-link--customer-logout{ border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
.woocommerce-MyAccount-navigation li a:hover{ background: var(--paper); }
.woocommerce-MyAccount-navigation li.is-active a{ background: #FDECEC; border-left-color: var(--red); color: var(--red-dark); }

.woocommerce-MyAccount-content{ max-width: 640px; margin: 0; float: left; padding-left: 24px; }
@media (max-width: 780px){
	.woocommerce-MyAccount-navigation{ float: none; max-width: none; margin: -32px 0 20px; }
	.woocommerce-MyAccount-navigation ul{ display: flex; flex-wrap: wrap; gap: 4px; }
	.woocommerce-MyAccount-navigation li{ flex: 1 1 auto; }
	.woocommerce-MyAccount-content{ float: none; padding-left: 0; max-width: none; }
}
.gss-account-wrap::after{ content: ""; display: table; clear: both; }
.woocommerce-MyAccount-content > p:first-child{ font-size: 16px; }

.gss-vendor-top-banner{
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
	background: var(--ink); color: var(--white); border-radius: 12px;
	padding: 16px 20px; margin: -32px 0 24px; float: none; clear: both;
	font-weight: 700;
}
.gss-vendor-top-banner .gss-btn{ flex: 0 0 auto; }
.woocommerce-MyAccount-content .addresses,
.woocommerce-MyAccount-content table.shop_table{
	border: 3px solid var(--ink); border-radius: var(--radius); overflow: hidden;
}
.woocommerce-MyAccount-content a.button,
.woocommerce-MyAccount-content .dokan-btn,
.woocommerce-MyAccount-content a.dokan-btn{
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--red) !important; color: var(--white) !important;
	border: 3px solid var(--ink) !important; border-radius: var(--radius) !important;
	font-family: var(--font-display) !important; text-transform: uppercase;
	padding: 10px 20px !important; box-shadow: 3px 3px 0 var(--ink);
	text-decoration: none;
}
.woocommerce-MyAccount-content a.button:hover,
.woocommerce-MyAccount-content .dokan-btn:hover{ background: var(--red-dark) !important; }

/* Any error/info banners WooCommerce prints on this page (wrong password, etc.) */
.woocommerce-error, .woocommerce-message, .woocommerce-info{
	max-width: 980px; margin: 0 auto 20px; padding: 14px 16px; border-radius: var(--radius);
	font-weight: 600; font-size: 14px; list-style: none;
}
.woocommerce-error{ background: #FBE7E9; border: 2px solid var(--red-dark); color: var(--red-dark); }
.woocommerce-message{ background: #E6F6EA; border: 2px solid #1E8A3D; color: #1E8A3D; }
.woocommerce-info{ background: #EAF0FF; border: 2px solid var(--blue); color: var(--blue-dark); }

/* ---------------------------------------------------------------------
   Customer / Vendor picker — turns whatever radio buttons Dokan
   injects via woocommerce_register_form into segmented pill buttons.
   inc/dokan.php adds a small script that tags the radios with
   .gss-role-radio and wraps them in .gss-toggle-group; this CSS only
   styles that wrapper, so it degrades gracefully to plain radios if
   Dokan ever changes its markup and the JS can't find them.
   ------------------------------------------------------------------ */
.gss-toggle-group{
	display: flex; gap: 10px; margin: 4px 0 18px; flex-wrap: wrap;
}
.gss-toggle-option{
	flex: 1 1 140px; position: relative;
}
.gss-toggle-option input[type="radio"].gss-role-radio{
	position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer;
}
.gss-toggle-option label{
	display: flex; align-items: center; justify-content: center; text-align: center;
	border: 3px solid var(--ink); border-radius: var(--radius); background: var(--paper);
	padding: 12px 14px; font-family: var(--font-mono); font-size: 13px; text-transform: uppercase;
	letter-spacing: .04em; cursor: pointer; transition: background .15s, color .15s, transform .1s;
}
.gss-toggle-option:hover label{ transform: translate(-1px,-1px); }
.gss-toggle-option.is-active label{
	background: var(--blue); color: var(--white); box-shadow: 3px 3px 0 var(--ink);
}

@media (max-width: 720px){
	/* nav mobile layout is now handled directly above */
}

/* =========================================================================
   18. LIVE SELLING — badge, embedded player, flash sale strip,
   homepage "Live Now" section, and the vendor dashboard page.
   ========================================================================= */

.gss-live-badge{
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--red); color: var(--white);
	font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
	padding: 5px 10px; border-radius: 999px; border: 2px solid var(--ink);
}
.gss-live-badge__dot{
	width: 8px; height: 8px; border-radius: 50%; background: var(--white);
	animation: gss-live-pulse 1.4s ease-in-out infinite;
}
@keyframes gss-live-pulse{
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: .4; transform: scale(.75); }
}

/* Embedded player on a vendor's brand/store page */
.gss-live-player{
	max-width: 720px; margin: 0 auto 20px; background: var(--ink); border: 4px solid var(--ink);
	border-radius: 12px; overflow: hidden; box-shadow: 8px 8px 0 var(--blue);
}
.gss-live-player__head{
	display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--ink);
}
.gss-live-player__title{ color: var(--white); font-family: var(--font-body); font-weight: 700; font-size: 14px; }
.gss-live-player__frame{ position: relative; width: 100%; padding-top: 56.25%; background: #000; }
.gss-live-player__frame iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gss-live-player__tiktok-btn{ display: flex; justify-content: center; margin: 14px; }

/* Flash sale strip (shown under the live player on the brand page) */
.gss-flash-sale{ max-width: 980px; margin: 0 auto 32px; padding: 0 24px; }
.gss-flash-sale__head{ margin-bottom: 14px; }
.gss-flash-sale__grid{
	display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px;
}
.gss-flash-sale__card{
	display: flex; flex-direction: column; gap: 6px; text-decoration: none; color: var(--ink);
	background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius); padding: 10px;
	position: relative; transition: transform .1s;
}
.gss-flash-sale__card:hover{ transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.gss-flash-sale__card img{ width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; }
.gss-flash-sale__countdown{
	position: absolute; top: 16px; right: 16px; background: var(--ink); color: var(--white);
	font-family: var(--font-mono); font-size: 11px; padding: 3px 8px; border-radius: 999px;
}
.gss-flash-sale__title{ font-weight: 700; font-size: 13px; line-height: 1.3; }
.gss-flash-sale__price{ font-family: var(--font-mono); font-size: 13px; color: var(--red-dark); }
.gss-flash-sale__card.is-expired{ opacity: .4; pointer-events: none; }

/* Homepage "Live Now" section — hidden entirely by PHP when nobody's live */
.gss-live-now__grid{
	display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px; margin-top: 20px;
}
.gss-live-now__card{ display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); }
.gss-live-now__thumb{
	position: relative; width: 110px; height: 110px; border-radius: 50%; overflow: hidden;
	border: 4px solid var(--red); display: flex; align-items: center; justify-content: center; background: var(--paper);
}
.gss-live-now__thumb img{ width: 100%; height: 100%; object-fit: cover; }
.gss-live-now__initial{ font-family: var(--font-display); font-size: 32px; }
.gss-live-now__thumb .gss-live-badge{
	position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); white-space: nowrap;
}
.gss-live-now__name{ font-weight: 700; font-size: 14px; text-align: center; }
.gss-live-now__title{ font-size: 12px; color: var(--gray); text-align: center; }

/* Vendor dashboard — Live Selling page */
.gss-live-dashboard .gss-dash-card{
	background: var(--white); border: 3px solid var(--ink); border-radius: 12px;
	padding: 20px; margin-bottom: 24px; box-shadow: 6px 6px 0 var(--blue);
}
.gss-dash-card__title{ font-family: var(--font-display); text-transform: uppercase; font-size: 20px; margin: 0 0 16px; }
.gss-dash-card__subtitle{ font-family: var(--font-body); font-weight: 700; font-size: 15px; margin: 20px 0 10px; }
.gss-field__hint{ font-size: 12px; color: var(--gray); margin: 4px 0 0; }

.gss-live-status{ display: flex; align-items: center; gap: 14px; }
.gss-live-status__details{ font-size: 14px; }
.gss-live-status__elapsed{ font-family: var(--font-mono); color: var(--gray); }

.gss-flash-manage-list{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.gss-flash-manage-row{
	display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 12px;
	padding: 10px 12px; border: 2px solid var(--line); border-radius: var(--radius); font-size: 13px;
}
.gss-flash-manage-row.is-expired{ opacity: .5; }

.gss-flash-pick-list{ display: flex; flex-direction: column; gap: 10px; }
.gss-flash-pick-row{
	display: grid; grid-template-columns: 1fr auto 120px 100px; align-items: center; gap: 12px;
	padding: 10px 12px; border: 2px solid var(--line); border-radius: var(--radius);
}
.gss-flash-pick-row__check{ display: flex; align-items: center; gap: 10px; font-size: 13px; cursor: pointer; }
.gss-flash-pick-row__check img{ width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }
.gss-flash-pick-row__regular{ font-size: 12px; color: var(--gray); }
.gss-flash-pick-row__price, .gss-flash-pick-row__duration{
	border: 2px solid var(--ink); border-radius: 6px; padding: 6px 8px; font-family: var(--font-body); font-size: 13px;
}

@media (max-width: 720px){
	.gss-flash-manage-row{ grid-template-columns: 1fr; text-align: left; }
	.gss-flash-pick-row{ grid-template-columns: 1fr; }
}

/* =========================================================================
   BREADCRUMBS — Home > Brands > Brand > Product, shown just under the
   header on shop/product/brand/category and standard pages.
   ========================================================================= */
.gss-breadcrumbs{
	padding: 14px 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}
.gss-breadcrumbs ol{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--gray);
}
.gss-breadcrumbs li{ display: flex; align-items: center; gap: 6px; }
.gss-breadcrumbs li:not(:last-child)::after{ content: "/"; color: var(--line); }
.gss-breadcrumbs a{ color: var(--gray); transition: color .15s ease; }
.gss-breadcrumbs a:hover{ color: var(--red); text-decoration: underline; }
.gss-breadcrumbs li:last-child span{ color: var(--ink); font-weight: 600; }
@media (max-width: 600px){
	.gss-breadcrumbs ol{ font-size: 11px; }
}

/* =========================================================================
   FADE-IN ON SCROLL — class is added by JS (js/main.js), never baked
   into markup, so content is always visible if JS doesn't run.
   ========================================================================= */
.gss-reveal{
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s ease;
	will-change: opacity, transform;
}
.gss-reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* =========================================================================
   FORM SUBMIT LOADING STATE — Custom Request / Team Uniforms / Team
   Roster forms all post straight to admin-post.php (real page
   navigation), so this is just a moment of feedback right at the tap.
   ========================================================================= */
.gss-btn.is-loading{
	opacity: .85;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: 2px 2px 0 var(--ink) !important;
}
.gss-btn__spinner{
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,.5);
	border-top-color: currentColor;
	animation: gss-spin .7s linear infinite;
}
@keyframes gss-spin{ to{ transform: rotate(360deg); } }

/* Extra gallery lightbox */
.gss-mockup-extra-gallery__img{ cursor: zoom-in; }
.gss-lightbox-overlay{
	position: fixed; inset: 0; background: rgba(0,0,0,.85); z-index: 9990;
	display: flex; align-items: center; justify-content: center; padding: 30px;
	opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.gss-lightbox-overlay.is-open{ opacity: 1; pointer-events: auto; }
.gss-lightbox-overlay__img{ max-width: 100%; max-height: 90vh; border-radius: 8px; }
.gss-lightbox-overlay__close{
	position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%;
	background: var(--white); border: none; font-size: 18px; cursor: pointer;
}

/* Sports We Cover showcase — same big, simple treatment as the Jiffy
   Jerseys ad: full-width images with just a border and shadow, no
   card boxes or duplicate titles underneath. */
.gss-sport-showcase{ display: flex; flex-direction: column; gap: 28px; }
.gss-sport-showcase__item img{
	display: block; width: 100%; height: auto;
	border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: 5px 5px 0 var(--ink);
}
