:root {
    --gs-bg: #0B0D0F;
    --gs-surface: #14171A;
    --gs-surface-2: #1B1F23;
    --gs-line: #2A2F34;
    --gs-bone: #E8E6E1;
    --gs-muted: #8B9198;
    --gs-amber: #F4B41A;
    --gs-police: #3B82F6;
    --gs-fire: #F4B41A;
    --gs-ems: #22C55E;
    --gs-k9: #A78BFA;
    --gs-tactical: #C8102E;
}

html, body {
    overflow-x: hidden !important;
}

body {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    background-color: var(--gs-bg);
    width: 100%;
    height:100%;
    margin: auto;
    padding: 0;
    color: var(--gs-bone);
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

/* GUARDIAN LIGHTBAR — signature animated strip pinned to the very top.
   Speed and colors default here, but both can be overridden per-site from
   Admin -> Site Settings, which sets --gs-sweep-duration / --gs-sweep-color-1
   / --gs-sweep-color-2 as inline :root vars in _header.ejs.
   Always animates, unconditionally, matching the reference Guardian Store
   site (it has no prefers-reduced-motion handling on this element either —
   we previously added a reduced-motion-static fallback here that Guardian
   Store doesn't have, which is why this bar wasn't sweeping on some
   browsers/OSes while the reference site's always did). */
.gs-lightbar {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--gs-sweep-color-1, var(--gs-tactical)) 0%, var(--gs-sweep-color-1, var(--gs-tactical)) 48%, var(--gs-bg) 48%, var(--gs-bg) 52%, var(--gs-sweep-color-2, var(--gs-amber)) 52%, var(--gs-sweep-color-2, var(--gs-amber)) 100%);
    background-size: 200% 100%;
    animation: gs-sweep var(--gs-sweep-duration, 2.4s) linear infinite;
    position: sticky;
    top: 0;
    z-index: 1050;
}
@keyframes gs-sweep {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Same sweeping line as .gs-lightbar, mirrored under the announcement bar
   instead of at the very top of the page - not sticky (it just sits in the
   normal page flow right under the announcement, not pinned like the top one). */
.gs-lightbar-bottom {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--gs-sweep-color-1, var(--gs-tactical)) 0%, var(--gs-sweep-color-1, var(--gs-tactical)) 48%, var(--gs-bg) 48%, var(--gs-bg) 52%, var(--gs-sweep-color-2, var(--gs-amber)) 52%, var(--gs-sweep-color-2, var(--gs-amber)) 100%);
    background-size: 200% 100%;
    animation: gs-sweep var(--gs-sweep-duration, 2.4s) linear infinite;
}

.mono, code, .productpricelist, .price, .unit-code, .gs-code {
    font-family: 'JetBrains Mono', monospace !important;
}

.gs-nav-tagline {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65em;
    color: var(--gs-amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.1em;
}

.authorsection {
    width: 17em;
    margin-bottom: 0.6em;
}

.answercomment {
    border-style: dashed;
    border-width: 3px;
    border-color: #00e070;
    border-radius: 0.3em;
}

.btn-themedark {
    color: white;
    background-color: #060707;
}
.btn-themedark:hover {
    color: white;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.3);
    border-color: #060707;
    background-color: #060707;
}

.commentmenu {
    border-radius: 1em;
    padding: 0.4em;
    width: 4em;
    text-align: center;
}

.form-check-input {
    margin-left: 0 !important;
    margin-right: 0.5em;
}

.commentimg {
    width: auto;
    height: 5em;
    border-radius: 50%;
}

.comment {
    padding: 1em;
}

.biggerfontsize {
    font-size: 1.2em;
}

.guardianwebstorepromo-mainimg {
    width: 50em;
    height: auto;
    border-width: 2px;
    border-radius: 0.4em;
    border-style: solid;
    border-color: var(--theme-color)
}

.usingcompanylogo {
    width: 8em;
    height: 8em;
    border-radius: 0.4em;
    transition: filter 300ms ease-in-out;
}

.usingcompanylogo:hover, .usingcompanylogo:focus {
    filter: grayscale(0) !important;
}

.navbarlogo {
    width: 5em !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0.3em;
}

.adminsidebarminiheader {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--gs-muted);
    font-size: 0.7em;
    letter-spacing: 0.1em;
    margin-top: 1em;
}

.accountpageparent {
    padding: 3rem !important;
}

.featprodimage {
    width: 100%;
    height: 12em;
    border-radius: 0.5em;
}

.recentPurchaseImage {
    width: 100%;
    height: 10em;
    border-radius: 0.4em;
}

.recentPurchaseUserLogo {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
}

.btn-adminchange {
    width: 100%;
    text-align: start;
    margin-top: 0.2em;
    font-size: smaller;
    color: var(--gs-muted);
    transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
    border-radius: 3px !important;
    padding: 9px 10px !important;
    border: 1px solid transparent !important;
}

.btn-adminchange:hover, .btn-adminchange:focus {
    color: var(--gs-bone) !important;
    background-color: var(--gs-surface-2);
    border-color: var(--gs-line) !important;
}

.offcanvas-header {
    background-color: var(--gs-bg);
    border-bottom: 1px solid var(--gs-line);
}

.offcanvas-body {
    background-color: var(--gs-bg);
}

#footer {
    bottom: 0;
    left: 1em;
    color: white;
}

.cloudauthmain {
    width: 40%;
    border-radius: 0.4em;
}

.cloudauthinner {
    width: 100%;
}

a {
    color: white;
    text-decoration: none;
    transition: color 1s
}

p {
    margin-bottom: 0;
}

.exo {
    font-family: 'Exo', sans-serif !important;
}

.montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

.sourcecodepro {
    font-family: 'Source Code Pro', monospace !important;
}

.worksans {
    font-family: 'Work Sans', sans-serif !important;
}

.inter {
    font-family: 'Inter', sans-serif !important;
}

.headertocontent {
    margin-bottom: 4em;
}

.headerbreak {
    margin-bottom: 1em;
}

.headerimage {
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    background-image: url('../../assets/headerimage.jpg');
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

.headerimagehome {
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    background-image: url('../../assets/headerimage.jpg');
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

.homepagereviews {
    background-image: url('../../assets/logo.png');
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    width: 100%;
    padding: 2em;
}

.footerimage {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.966) !important;
    background-image: url('../../assets/logo.png');
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    height: auto;
    padding-left: 10em;
    padding-right: 10em;
    padding-top: 2em;
    padding-bottom: 2em;
    position: relative;
    background-blend-mode: luminosity;
}

.navbarcontrollerwidth {
    width: 100% !important;
    padding-left: 8em !important;
    padding-right: 8em !important;
    margin-left: auto;
    margin-right: auto;
}

.carousel {
    width: 100% !important;
}

.homepagereviewsinnerp {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.homepagereviewlogo {
    width: auto;
    height: 5em;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    margin-bottom: 1em;
}

.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.navbar-item {
    color: white;
    font-size: 1em;
    margin: 1em;
}

a:hover {
    color: var(--theme-color);
  }
  .bg-theme {
      background-color: var(--theme-color) !important;
  }
  .bd-theme, .linkeditem {
      border-style: solid;
      border-color: var(--theme-color) !important;
  }
  .text-theme {
      color: var(--theme-color) !important;
  }
  .btn-theme {
    color: white;
    background-color: var(--theme-color);
  }
  .btn-theme:hover {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
  }
  .btn-outline-theme {
    border-color: var(--theme-color) !important;
  }
  .btn-outline-theme:hover, .btn-outline-theme:focus {
    background-color: var(--theme-color);
    border-color: var(--theme-color) !important;
  }
  .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
  }
  .productpagecontainer a, .convertli a, .convertPara a {
    color: var(--theme-color);
  }
  table th {
    background-color: transparent !important;
    color: var(--gs-muted) !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78em;
    font-weight: 600;
    border-bottom: 1px solid var(--gs-line) !important;
  }
  .btn {
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.9em;
  }
  h1, h2, h3, .bigfont, .navbar-brand {
    font-family: 'Oswald', sans-serif;
  }
  .bigfont {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600 !important;
  }
  /* Highlight Stuffs */
  ::selection {
      background: var(--theme-color); /* WebKit/Blink Browsers */
  }
  ::-moz-selection {
      background: var(--theme-color); /* Gecko Browsers */
  }

.customheader {
    z-index: 5 !important;
}

.nav-link {
    color: white !important;
}

.nav-link i {
    margin-top: 0.2em;
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.1em;
}

.headericonaccount {
    width: 3em;
    height: 3em;
    border-style: solid;
    border-radius: 50%;
    border-width: 2px;
    border-color: var(--theme-color);
}

.navbar-toggler {
    color: white;
    border-color: white;
}

.navbar-toggler-icon {
    width: 2.3em !important;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255,255,255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.bg-none {
    background-color: transparent !important;
}

table {
    background-color: var(--gs-surface);
    line-height: 1;
    width: 100% !important;
    overflow-x: auto;
    overflow-y: auto;
}

table td {
    border-bottom: 1px solid var(--gs-line) !important;
    vertical-align: middle;
}

table tr:last-child td {
    border-bottom: none !important;
}

.customDiv {
    width: 100%;
    max-height: 25em;
    overflow-y: auto;
    overflow-x: auto;
}

.customDiv2 {
    width: 100%;
    height: 50em;
    max-height: 50em;
    overflow-y: auto;
    overflow-x: auto;
}

.customDivNotifications {
    width: 100%;
    max-height: 38em;
    overflow-y: auto;
}

.notiparagraph {
    font-size: 0.8em;
    text-align: start;
    word-wrap: break-word;
}

.notidate {
    font-size: 0.6em;
    text-align: start;
    word-wrap: break-word;
}

.gallery {
    padding: 2em;
}

.gallery img {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 1em;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 0.2em;
    border-width: 2px;
    border-style: solid;
    transition: filter ease-in-out .15s;
}

.gallery img:hover, .gallery img:focus {
    filter: grayscale(50%);
}

.middlecontent {
    margin-top: 6em;
}

.bigfont {
    font-weight: 700;
}

*::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d6d6d6c9 !important;
    opacity: 1; /* Firefox */
  }
  
  *:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #d6d6d6c9 !important;
  }
  
  *::-ms-input-placeholder { /* Microsoft Edge */
    color: #d6d6d6c9 !important;
  }

.midtitle {
    font-weight: 700;
    font-size: 3.7em;
    line-height: 1.05em;
    padding-top: 1.2em;
    margin-bottom: 0.6em;
}

.homepagemiddle {
    padding-top: 5em;
    width: 80%;
    max-width: 130em;
    margin-left: auto;
    margin-right: auto;
}

.midpg {
    margin-top: 0.5em;
    width: 100%;
    margin-bottom: 3.5em;
    font-size: 1.4em;
    opacity: 0.8;
}

.dropdown-menu {
    --bs-dropdown-bg: #0a0b0d !important;
    --bs-dropdown-link-hover-color: var(--theme-color) !important;
    --bs-dropdown-link-color: #ffffff !important;
    --bs-dropdown-link-hover-bg: transparent !important;
    --bs-dropdown-min-width: 15rem !important;
    --bs-dropdown-link-active-bg: transparent !important;
}

.viewourchangesbutton {
    border-radius: 2em !important;
    width: 20em;
    font-weight: 900;
    color: #868686;
}

.dropdown-menu hr {
    color: white !important;
}

.dropdown-menu button {
    transition: color 350ms ease-in-out !important;
}

.midlogo {
    width: 35em;
    height: auto;
    margin-top: 1em;
    animation: pulse 2.5s linear infinite; /* referring directly to the animation's @keyframe declaration */
}

.midbutton {
    color: white;
    padding: 1em;
    border-radius: 2em;
    font-size: 1.4em;
    font-weight: 700;
    border-style: solid;
    border-width: 2px;
    transition: border-color ease-in-out .2s;
}

.midbutton:hover, .midbutton:focus {
    color: white;
    border-color: white !important;
}

.midarrow {
    margin-top: 3.8em;
    font-size: 4em;
    transition: color ease-in-out .2s;
}

.midarrow:hover, .midarrow:focus {
    color: white !important;
}

.mobile {
    display: none;
    visibility: hidden;
}

.tablet {
    display: none;
    visibility: hidden;
}

.desktop {
    visibility: visible;
}

.footerheader {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 0.8em;
}

.footeritem, .footeritemone {
    margin-top: 0.4em;
}

.nobullets {
    list-style: none !important;
}

.login-auth-main {
    width: 50%;
}

/* Tighter box specifically for the login card (not register) — caps the
   width so the card reads as one small, cohesive box instead of a wide,
   sparse one. */
.gs-login-box {
    max-width: 320px;
}

.piciconhome {
    font-size: 2.8em;
    padding: 0.4em;
    border-radius: 0.4em;
    margin-left: auto;
    margin-right: auto;
    width: 2em;
    margin-bottom: 0.2em;
}

.statdata h2 {
    font-weight: 700;
}

.underline-theme {
    border-bottom: solid 2px var(--theme-color)
}

.statdata p {
    margin-bottom: 1em;
}

.spacingstats {
    margin-left: 2em;
    margin-right: 2em;
}

.carousel {
    width: 50em;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.btnnostyle {
    margin-top: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    border-style: none;
    border-color: transparent;
}

.carticon, .notiicon {
    color: white;
}

.closebutton {
    color: white;
    font-size: 2em;
}

.accordion {
    --bs-accordion-bg: #0F1011 !important;
    --bs-accordion-color: var(--theme-color) !important;
}

.accordion-button, .accordion-button:hover, .accordion-button:focus, .accordion-button::after {
    color: white !important;
    border-radius: 0 !important;
}

.bg-main {
    background-color: #1a1a1a !important;
}

.homepagelogodisplay {
    width: 100%;
    height: auto;
}

.mtheader-1 {
    margin-top: 16em !important;
}

.mtheader-2 {
    margin-top: 11em !important;
}

.boxshadowlight {
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.4);
}

.boxshadowlol {
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
}

.noboxshadow {
    box-shadow: none;
}

.noborders {
    border: none;
}

.reviewbox {
    margin-left: 1em;
    margin-right: 1em;
    margin-bottom: 2em;
    padding: 1em;
    border-radius: 1em;
    border-style: solid;
    border-width: 3px;
    width: 30em;
}

.reviewlogo {
    width: 8em;
    height: auto;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
}

.reviewheader {
    margin-top: 0.2em;
    margin-bottom: 0.4em;
    font-weight: 700;
}

.reviewstars {
    margin-top: 0.8em;
}

.nohovereffecta:hover {
    color: white;
}

.docscatdiv {
    border-style: solid;
    border-width: 2px;
    border-color: transparent;
    transition: border-radius 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

.docscatdiv:hover {
    border-color: white;
    border-radius: 0.4em;
}

.docscatimg {
    width: 8em;
    height: auto;
}

.btn-outline-theme {
    color: white;
    background-color: transparent;
    border-width: 2px;
    border-style: solid;
    border-radius: 0.4em;
    transition: background-color ease-in-out .2s;
}

.btn-theme:hover {
    color: white;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.3);
}

.form-select option {
    background-color: #181818;
    color: white;
}

.reviewbottommargin {
    margin-bottom: 0.5em;
}

.textareareview, .textareareview:focus, .textareareview:hover {
    background-color: transparent;
    color: white;
}

.darkinputcolor, .darkinputcolor:focus, .darkinputcolor:hover {
    background-color: transparent;
    color: white;
}

.paymentbutton {
    width: 100%;
    margin-bottom: 0.6em;
}

.stripepayment {
    background-color: #5433FF;
    color: white;
}

.stripepayment:hover, .stripepayment:focus {
    background-color: #5433FF;
    color: white;
    border-color: white;
}

.paypalpayment {
    background-color: #003087;
    color: white;
}

.paypalpayment:hover, .paypalpayment:focus {
    background-color: #003087;
    color: white;
    border-color: white;
}

.keepshopping:hover, .keepshopping:focus {
    border-color: white;
}

.addproductselectgroup {
    width: 40em;
}

.filterblur {
    filter: blur(3px);
    transition: filter ease-in-out .15s;
}

.filterblurextra {
    filter: blur(5px);
    transition: filter ease-in-out .15s;
}

.filterblur:hover, .filterblur:focus, .filterblurextra:hover, .filterblurextra:focus {
    filter: blur(0px);
}

.productbox {
    padding: 1em;
    border-radius: 0.4em;
    margin-bottom: 1.4em;
    transition: transform .18s ease, border-color .18s ease;
}

.productbox:hover {
    transform: translateY(-4px);
    border-color: var(--gs-muted) !important;
}

.productimagelist {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    border-radius: 0.2em;
    margin-bottom: 0.6em;
    transition: border-radius ease-in-out .2s;
}

.gs-card-media {
    position: relative;
    display: block;
    height: 170px;
    overflow: hidden;
    border-radius: 0.2em;
    margin-bottom: 0.6em;
    background: linear-gradient(135deg, var(--gs-surface-2), var(--gs-bg));
}

.gs-card-media .productimagelist {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0;
    border-radius: 0;
    transition: transform 0.35s ease;
}

/* Hover the product picture on any listing (shop grid, category page,
   featured cards) and it zooms in slightly — .gs-card-media clips the
   overflow so the image grows inside its frame instead of spilling out. */
.gs-card-media:hover .productimagelist {
    transform: scale(1.08);
}
@media (prefers-reduced-motion: reduce) {
    .gs-card-media .productimagelist {
        transition: none;
    }
}

.gs-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 2px;
    color: #0B0D0F;
    font-weight: 700;
    z-index: 2;
}

.gs-code {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-size: 0.68em;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.5);
    padding: 2px 6px;
    border-radius: 2px;
    z-index: 2;
}

/* "Featured" ribbon on the home page's Featured Products cards — sits in the
   opposite corner from the tag badge so a product can carry both without
   overlap, and is styled gold/glowing so it clearly stands out from the
   tag-colored badge next to it. */
.gs-featured-ribbon {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65em;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
    color: #1A1400;
    background: linear-gradient(135deg, #FFE27A, var(--gs-amber));
    box-shadow: 0 0 0 1px rgba(255,255,255,0.3), 0 4px 12px -2px rgba(0,0,0,0.55), 0 0 18px -3px var(--gs-amber);
    z-index: 3;
}
.gs-featured-ribbon i {
    font-size: 0.85em;
}

/* "Sale" ribbon for cards whose product has a crossed-out price set. Sits in
   the top-right corner of the product image, opposite the tag badge
   (top-left) and above the unit code (bottom-left), so it never collides
   with either. On cards that also carry the featured ribbon (top-right),
   add .gs-sale-badge--stacked so it drops below the ribbon instead of
   overlapping it. */
.gs-sale-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 2px;
    color: #fff;
    background: var(--gs-tactical);
    box-shadow: 0 4px 12px -2px rgba(0,0,0,0.55);
    z-index: 3;
}
.gs-sale-badge i {
    font-size: 0.9em;
}
.gs-sale-badge--stacked {
    top: 42px;
}

/* Admin — Category Manager cards */
.gs-cat-card {
    background: var(--gs-surface);
    border: 1px solid var(--gs-line);
    border-radius: 0.6em;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 150ms ease-in-out, border-color 150ms ease-in-out;
}

.gs-cat-card:hover {
    transform: translateY(-2px);
    border-color: var(--gs-muted);
}

.gs-cat-thumb {
    height: 8em;
    background-size: cover;
    background-position: center;
    background-color: var(--gs-surface-2);
    position: relative;
}

.gs-cat-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 2.1em;
    height: 2.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.gs-cat-hidden-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    background: rgba(0,0,0,0.65);
    color: var(--gs-muted);
    font-size: 0.68em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 700;
}

.gs-cat-swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

.gs-cat-desc {
    min-height: 2.6em;
}

/* Product page — "What's Included" checklist */
.gs-whatsincluded {
    padding-top: 1.2em;
    border-top: 1px solid var(--gs-line);
}

.gs-whatsincluded-title {
    font-weight: 700;
    margin-bottom: 1em;
}

.gs-whatsincluded-item {
    font-size: 0.95em;
    color: var(--gs-bone);
}

.gs-whatsincluded-item i {
    color: var(--gs-amber);
    margin-right: 0.4em;
}

/* Product page — requirement / warning badge */
.gs-requirement-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    background: rgba(200, 16, 46, 0.12);
    border: 1px solid rgba(200, 16, 46, 0.5);
    color: #ff8080;
    padding: 0.7em 0.9em;
    border-radius: 0.5em;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 1em;
}

.gs-requirement-badge i {
    color: var(--gs-tactical);
    margin-top: 0.1em;
}

/* Product page — variant ("Style") picker */
.gs-variant-picker {
    margin-top: 0.6em;
}

.gs-variant-label {
    color: var(--gs-muted);
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gs-variant-label span {
    color: var(--gs-bone);
    text-transform: none;
    letter-spacing: normal;
}

.gs-variant-btnrow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.gs-variant-btn {
    background: var(--gs-surface-2);
    border: 1px solid var(--gs-line);
    color: var(--gs-bone);
    border-radius: 0.5em;
    padding: 0.5em 0.9em;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.gs-variant-btn:hover {
    border-color: var(--gs-amber);
}

.gs-variant-btn.active {
    background: var(--gs-amber);
    border-color: var(--gs-amber);
    color: #14171A;
}

/* Admin — variant rows on the product create/edit forms */
.gs-variant-row {
    border: 1px dashed var(--gs-line);
    border-radius: 0.5em;
    padding: 0.9em;
    margin-bottom: 0.75em;
    background: var(--gs-surface-2);
}

.gs-variant-row-current {
    font-size: 0.8em;
    color: var(--gs-muted);
    margin-top: 0.3em;
}

/* Admin — Style Group picker chips on the product create/edit forms */
.gs-stylelink-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.gs-stylelink-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    border: 1px solid var(--gs-line);
    border-radius: 2em;
    padding: 0.35em 0.5em 0.35em 0.9em;
    background: var(--gs-surface-2);
    font-size: 0.9em;
}

.gs-stylelink-chip button {
    font-size: 1.2em;
    line-height: 1;
    padding: 0 0.3em;
}

/* Admin — "Linked" column on the Products table (Round 8 item #15) */
.gs-linked-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35em;
}

.gs-linked-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    border: 1px solid var(--gs-line);
    border-radius: 2em;
    padding: 0.2em 0.5em;
    background: var(--gs-surface-2);
    font-size: 0.8em;
    white-space: nowrap;
}

.gs-linked-badge a {
    line-height: 1;
}

/* Partners page — "Become a Partner" call-to-action */
.gs-become-partner {
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--gs-tactical), var(--gs-amber)) 1;
}

.gs-become-partner-copy {
    max-width: 40em;
}

/* Admin gate — "Admin Access" login screen */
.gs-gate-body {
    text-align: center;
}

.gs-gatewrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gs-gate-card {
    background: var(--gs-surface);
    border: 1px solid var(--gs-line);
    border-radius: 0.5em;
    padding: 2.5em;
    max-width: 380px;
    width: 100%;
    text-align: center;
    animation: gs-gate-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gs-gate-in {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.gs-gate-shield {
    margin-bottom: 1em;
    animation: gs-gate-shield-in 0.6s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes gs-gate-shield-in {
    from { opacity: 0; transform: scale(0.6) rotate(-8deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.gs-gate-copy {
    color: var(--gs-muted);
    font-size: 0.85em;
    line-height: 1.6;
    margin: 0 0 1.5em;
}

.gs-gate-error {
    color: var(--gs-tactical);
    font-size: 0.8em;
    margin-bottom: 1em;
}

.gs-gate-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.1em 0;
    color: var(--gs-muted);
    font-size: 0.7em;
    letter-spacing: 0.08em;
}

.gs-gate-divider::before, .gs-gate-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gs-line);
}

.gs-gate-label {
    display: block;
    font-size: 0.68em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gs-muted);
    margin-bottom: 0.3em;
    text-align: left;
}

.gs-gate-emergency-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    text-align: left;
    background: color-mix(in srgb, var(--gs-amber) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--gs-amber) 35%, transparent);
    color: var(--gs-amber);
    border-radius: 0.4em;
    padding: 0.6em 0.75em;
    font-size: 0.72em;
    line-height: 1.5;
    margin: 0 0 1em;
}

.gs-gate-emergency-note i {
    margin-top: 0.15em;
}

@media (prefers-reduced-motion: reduce) {
    .gs-gate-card, .gs-gate-shield { animation: none; }
}

.producttitlelist {
    font-weight: 700;
    font-size: 1em;
    margin-bottom: 0.2em;
}

.productpricelist {
    font-size: 1em;
}

.productbuttonlist {
    width: 100%;
    margin-bottom: 0.4em;
    border-radius: 0.2em;
}

pre.hljs div {
	position: relative;
	float: right;
	background: #2A2A2A;
	border-radius: 0.2em;
}

pre.hljs div svg {
	-moz-transition: fill 0.25s ease;
	-webkit-transition: fill 0.25s ease;
	-ms-transition: fill 0.25s ease;
	transition: fill 0.25s ease;
	vertical-align: middle;
	height: 1.5em;
  	width: 1.5em;
	fill: rgba(92, 95, 110, 0.884);
	margin: 0.5em;
}

pre.hljs div svg:hover {
	fill: rgba(163, 164, 172, 0.884);
	cursor: pointer;
}

.hljs {
	display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #ebebeb;
	font-family: 'Courier Prime', monospace;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #282d38;
    border: 1px solid #969696;
    border-radius: 4px;
    text-align: start;
}

.hljs-comment,
.hljs-quote {
	color: #998;
	font-style: italic
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-subst {
	color: #c36ec1;
	font-weight: bold
}

.hljs-number,
.hljs-literal,
.hljs-variable,
.hljs-template-variable,
.hljs-tag .hljs-attr {
	color: #cd9663
}

.hljs-string,
.hljs-doctag {
	color: #97c075
}

.hljs-property {
	color: #dc686d
}

.hljs-params {
	color: #dc686d
}

.hljs-title,
.hljs-section,
.hljs-selector-id {
	color: #61a7dc;
	font-weight: bold;
}

.hljs-subst {
	font-weight: normal
}

.hljs-type,
.hljs-class .hljs-title {
	color: #458;
	font-weight: bold
}

.hljs-tag,
.hljs-name,
.hljs-attribute {
	color: #005ec9;
	font-weight: normal
}

.hljs-regexp,
.hljs-link {
	color: #009926
}

.hljs-symbol,
.hljs-bullet {
	color: #990073
}

.hljs-built_in,
.hljs-builtin-name {
	color: #0086b3
}

.hljs-meta {
	color: rgb(165, 50, 180);
	font-weight: bold
}

.hljs-deletion {
	background: #fdd
}

.hljs-addition {
	background: #dfd
}

.hljs-emphasis {
	font-style: italic
}

.hljs-strong {
	font-weight: bold
}

code {
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-weight: normal;
    text-indent: 0;
    letter-spacing: 0;
    font-size: 0.9em;
    /* margin: 0 0.25em; */
    padding: 0.25em 0.5em;
    background-color: rgba(144,144,144,0.25);
    border-radius: 0.25em;
    color: rgb(243, 243, 243);
}

pre code {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #ebebeb;
    font-family: 'Courier Prime', monospace;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #4b4b4b;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.codeforced {
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-weight: normal;
    text-indent: 0;
    letter-spacing: 0;
    font-size: 0.9em;
    /* margin: 0 0.25em; */
    padding: 0.25em 0.5em;
    background-color: rgba(144,144,144,0.25);
    border-radius: 0.25em;
    color: rgb(243, 243, 243);
}

.convertQuote {
	background: #404040;
	border-left: 10px solid #616161;
  	margin: 1.5em 10px;
  	padding: 0.5em 10px;
	border-radius: 2px;
}

.convertinfo {
	background: #2ca7fa;
	border-radius: 2px;
	padding: 1em;
    margin-bottom: 0.6em;
}

.convertinfo .convertPara a {
	color: #FFFFFF !important;
	text-decoration: underline !important;
}

.convertinfo .convertPara a:hover {
	text-decoration: none !important;
}

.convertwarning {
	background: #ec832d;
	border-radius: 2px;
	padding: 1em;
    margin-bottom: 0.6em;
}

.convertdanger {
	background: #f15240;
	border-radius: 2px;
	padding: 1em;
    margin-bottom: 0.6em;
}

.convertsuccess {
	background: #00d684;
	border-radius: 2px;
	padding: 1em;
    margin-bottom: 0.6em;
}

.convertdanger .convertPara, .convertwarning .convertPara, .convertinfo .convertPara, .convertsuccess .convertPara, .convertquote .convertPara {
    margin-bottom: 0 !important;
}

.searchbox, .searchbox:hover, .searchbox:focus {
    background-color: var(--gs-surface-2);
    color: var(--gs-bone);
    border: 1px solid var(--gs-line);
    border-radius: 3px;
}

.bg-thatdark {
    background-color: var(--gs-surface) !important;
    color: var(--gs-bone);
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    border: 1px solid var(--gs-line);
}

/* Full-bleed header/footer strips only need one edge, not a full outline */
.navbarcontrollerwidth.bg-thatdark {
    border-left: none;
    border-right: none;
    border-top: none;
}
.footerimage.bg-thatdark {
    border-left: none;
    border-right: none;
    border-bottom: none;
}



.wowcoolboxlol {
    width: 20em;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    background-color: var(--gs-surface-2) !important;
    border: 1px solid var(--gs-line);
}

.wowcoolboxlol h3 {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gs-muted);
    font-size: 0.75em !important;
}

.wowcoolboxlol h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8em !important;
    color: var(--gs-amber) !important;
}

.footeradvertisement {
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: 40%;
    border-style: solid;
    border-radius: 0.2em;
    transition: filter ease-in-out .2s;
}

.footeradvertisement:hover, .footeradvertisement:focus {
    filter: brightness(0.95);
}

.productfeat {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.2em;
    border-style: none;
}

.productfeat::after {
    box-shadow: inset 0 0 100px black !important;
}

.productdesc {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    opacity: .9;
}

.productpagecontainer .convertImage {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: auto;
}

.convertImage {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: auto;
}

.docspaddinglarge {
    padding: 3rem !important;
}

.docspaddinginner {
    padding: 3rem !important;
}

.crossout {
    text-decoration: line-through !important;
}

.productimagecarousel {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.catimg {
    width: auto;
    height: 12em;
    border-radius: 0.4em;
}

.productSlideshowImage {
    display: block;
    width: 100%;
    height: 40em;
}

.productSlideshowImage2 {
    display: block;
    width: 100%;
    height: 15em;
}

.productimagecarouselmodal {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 36em;
}

.productSlideshowImageModal {
    display: block;
    width: 100%;
    height: 36em;
}

.shopitempricemain {
    font-size: 2.6em;
    font-weight: 700;
}

.shopitempaybutton {
    margin-top: 0.4em;
    width: 100%;
}

.shopitempaybuttontop {
    width: 100%;
    margin-left: 0.4em;
    margin-right: 0.4em;
}

.breadcrumb-item {
    font-weight: 700;
}

.shopitemheader {
    margin-top: 0.2em;
    font-weight: 700;
}

.notificationbuttons {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 5em;
}

.mobilenavbarlogo {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: 0;
    margin-bottom: 1em;
    left: 0;
    right: 0;
    max-width: 10em;
}

.convertPara {
    margin-bottom: 0.6em;
    word-break: break-word;
}

.receiptlogo {
    width: 8em;
    height: auto;
    margin-right: 0;
    margin-left: auto;
}

.receiptbox {
    padding: 4em;
}

.receiptbox {
    padding: 4em;
}

.receiptheader {
    font-size: 3em;
    font-weight: 700;
}

.statsbox {
    border-radius: 4px;
    background-color: var(--gs-surface-2);
    border: 1px solid var(--gs-line);
}

.psiconadmin {
    width: 8em;
    height: auto;
    border-radius: 0.4em;
    margin-bottom: 0.4em;
    margin-top: 1em;
}

.psbuttonadmin {
    width: 100%;
    margin-bottom: 0.4em;
}

.psbuttonadmina {
    width: 70%;
}

.adminnavbutton {
    margin-top: 0.2em;
    margin-bottom: 0.2em;
}

.adminnavbutton p a {
    width: 100%;
}

.censored {
    filter: blur(5px);
    transition: filter ease-in-out .1s;
}

.censored:hover, .censored:focus {
    filter: blur(0px);
}

.migrationProdImage {
    width: 100%;
    height: auto;
    border-radius: 0.2em;
    margin-bottom: 0.6em;
}

.migrationColumnLol {
    margin: 0.4em;
    border-radius: 0.4em;
    padding: 1.5rem !important;
}

form {
    margin-block-end: 0em;
}

.table>:not(caption)>*>* {
    background-color: transparent;
    color: white;
}

table tr:nth-child(odd) {
    background-color: transparent !important;
}

table tr:nth-child(even) {
    background-color: transparent !important;
}

.sortingbuttonsshop {
    margin-bottom: 0.2em;
    margin-left: 0.2em;
    margin-right: 0.2em;
}

.shoptagswrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.sortingtagpill {
    border-radius: 50px !important;
    padding: 0.35em 1.1em !important;
    font-size: 0.78em;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 !important;
    white-space: nowrap;
}

.featprodimagemainsmall {
    width: 6em;
    height: auto;
    border-radius: 0.3em;
}

.newlolsticky {
    position: fixed;
    bottom: 0;
    width: 60%;
    left: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

input:required, input:required:hover, input:required:focus {
    background-color: #111111;
    color: white !important;
}

textarea:required, textarea:required:hover, textarea:required:focus {
    background-color: #111111 !important;
    color: white !important;
}

.form-select, .form-select:hover, .form-select:focus {
    background-color: #111111 !important;
    color: white !important;
}

.form-control, .form-control:hover, .form-control:focus {
    background-color: #111111 !important;
    color: white !important;
}

.carttable td, .carttable {
    border-style: none !important;
    padding: 1em;
}

#gallery {
    -moz-column-count:    5;
    -webkit-column-count: 5;
    column-count:         5;
}

.nohoverbuttonchange {
    background-color: transparent !important;;
}

.footerlogoone {
    width: 8em;
    height: auto;
}

.footerdescone {
    width: 80%;
    color: #adadad;
    word-wrap: break-word;
    opacity: 0.9;
}

.footerheaderone {
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 0.8em;
    margin-top: 1.8em;
}

.homelogo {
    width: auto;
    height: 15em;
    border-radius: 0.4em;
}

.statistic {
    text-align: center;
    padding: 2em;
    background-color: var(--theme-color);
    border-radius: 1em;
}

.featprodbutton {
    border-radius: 0;
    width: 100%;
    margin-bottom: 0.4em;
}

.revheadhome {
    margin-top: 0.2em;
    font-size: 1.5em !important;
    word-break: break-word;
}

.homebutton {
    padding: 1.2em !important;
    font-size: 1em;
}

.morrisbutton {
    font-size: 1em;
    padding-left: 2.2em !important;
    padding-right: 2.2em !important;
    padding-top: 0.7em !important;
    padding-bottom: 0.7em !important;
    border-radius: 0.3em !important;
    font-weight: 700 !important;
}

.cartbuttonnavbar {
    font-size: 0.9em;
    padding-left: 2em;
    padding-right: 2em;
}

.cartpagefeatprod {
    width: 7em;
    height: auto;
    max-height: 4em;
}

.cartpageitemname {
    font-size: 1.5em;
    margin-left: 1em;
    word-wrap: break-word;
    margin-top: 0.6em;
}

.cartpageremove {
    margin-right: 0.7em;
    word-wrap: break-word;
    margin-top: 0.4em;
}

.cartpageapplydiscountbutton::after {
    content: ' Discount';
}

.adminfixedheight {
    width: 100%;
    height: 94%;
    max-height: 50em;
    overflow-y: auto;
    overflow-x: hidden;
}

.cartpagefixedheight {
    width: 100%;
    height: 13em;
    max-height: 50em;
    overflow-y: auto;
    overflow-x: hidden;
}

.homepagereviewblock {
    border-radius: 1em;
    height: 27em;
}

.teampagelogo {
    width: 8em;
    height: auto;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
}

.partnerpagelogo {
    width: 14em;
    height: auto;
    border-radius: 50%;
}

/* Team / Partners social row — a compact row of circular icon-only buttons
   instead of the old full-width text buttons, so a member/partner card with
   all five links doesn't turn into a stack of oversized buttons. */
.gs-social-links {
    gap: 10px !important;
}
.gs-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gs-surface-2);
    border: 1px solid var(--gs-line);
    color: var(--gs-muted);
    font-size: 1.05em;
    transition: transform 180ms ease-in-out, background-color 180ms ease-in-out, color 180ms ease-in-out, box-shadow 180ms ease-in-out, border-color 180ms ease-in-out;
}
.gs-social-links a:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: white;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--theme-color) 75%, transparent), 0 0 0 4px color-mix(in srgb, var(--theme-color) 16%, transparent);
}

/* Give each platform icon its own brand color by default, instead of the
   flat muted gray, so the row reads as colorful even before you hover it. */
.gs-social-links a .fa-globe { color: var(--theme-color); }
.gs-social-links a .fa-discord { color: #5865F2; }
.gs-social-links a .fa-tiktok { color: #FE2C55; }
.gs-social-links a .fa-youtube { color: #FF0000; }
.gs-social-links a .fa-x-twitter { color: #1D9BF0; }

.gs-social-links a:has(.fa-globe) { background: color-mix(in srgb, var(--theme-color) 14%, var(--gs-surface-2)); border-color: color-mix(in srgb, var(--theme-color) 35%, var(--gs-line)); }
.gs-social-links a:has(.fa-discord) { background: color-mix(in srgb, #5865F2 14%, var(--gs-surface-2)); border-color: color-mix(in srgb, #5865F2 35%, var(--gs-line)); }
.gs-social-links a:has(.fa-tiktok) { background: color-mix(in srgb, #FE2C55 14%, var(--gs-surface-2)); border-color: color-mix(in srgb, #FE2C55 35%, var(--gs-line)); }
.gs-social-links a:has(.fa-youtube) { background: color-mix(in srgb, #FF0000 14%, var(--gs-surface-2)); border-color: color-mix(in srgb, #FF0000 35%, var(--gs-line)); }
.gs-social-links a:has(.fa-x-twitter) { background: color-mix(in srgb, #1D9BF0 14%, var(--gs-surface-2)); border-color: color-mix(in srgb, #1D9BF0 35%, var(--gs-line)); }

/* On hover, keep the existing lift/theme-color takeover — the icon itself
   goes white so it stays readable against the theme-color fill. */
.gs-social-links a:hover .fa-globe,
.gs-social-links a:hover .fa-discord,
.gs-social-links a:hover .fa-tiktok,
.gs-social-links a:hover .fa-youtube,
.gs-social-links a:hover .fa-x-twitter {
    color: white;
}

.bg-discord {
    background-color: #5865F2 !important;
}

.bd-discord {
    border-color: #5865F2 !important;
}

.socialicon {
    font-size: 1.4em;
    margin-left: 0.2em;
    margin-right: 0.2em;
    opacity: 0.9;
}

.linkeditem {
    padding: 0.4em;
    border-radius: 0.6em;
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
    background-color: #1a1a1a;
    border: solid 2px;
}

.linkeditemimage {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.2em;
}

.linkeditemheader {
    font-weight: 700;
    margin-top: 0.6em;
}

.linkeditemprice {
    margin-bottom: 0.5em;
}

.linkeditemcartbutton {
    font-size: 1.5em
}

.cookieicon {
    font-size: 2.5em !important;
}

.cookiething {
    z-index: 4;
    position: fixed;
    bottom: 0;
    background-color: #0F1011;
    padding-left: 7em;
    padding-right: 7em;
    padding-top: 2.8em;
    padding-bottom: 2.8em;
    text-align: center;
    color: white;
    width: 100%;
    opacity: 0;
    display: none;
    visibility: hidden;
}

.cookiething p {
    font-size: 1.3em;
    line-height: 1.25em;
}

.cookieshow {
    opacity: 1;
    display: block;
    visibility: visible;
}

/* Scrollbar */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    background: rgba(255, 0, 0, 0);
    /* background-color: transparent; */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(136, 136, 136, 0.075);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(136, 136, 136, 0.445);
}

::-webkit-scrollbar-corner {
    background: rgba(136, 136, 136, 0.445);
}

@media only screen and (max-width: 1700px) {
    .mobile {
        display: none;
        visibility: hidden;
    }
    .tablet {
        display: block;
        visibility: visible;
    }
    .desktop {
        display: none;
        visibility: hidden;
    }
    .midtitle {
        font-weight: 700;
        font-size: 5em;
        word-wrap: break-word;
    }
    .midpg {
        margin-top: 0.5em;
        width: 90%;
    }
    .footerheader {
        margin-top: 0.6em;
    }
    .customDivNotifications {
        max-height: 20em;
    }
    .mtheader-1 {
        margin-top: 11em !important;
    }
    .mtheader-2 {
        margin-top: 7em !important;
    }    
}

@media only screen and (max-width: 540px) {
    /* For mobile view */
    .guardianwebstorepromo-mainimg {
        width: 100%;
        height: auto;
        border-width: 2px;
        border-radius: 0.4em;
        border-style: solid;
        border-color: var(--theme-color)
    }
    .accountpageparent {
        padding: 0rem !important;
    }
    .navbarcontrollerwidth {
        padding-left: 0.2em !important;
        padding-right: 0.2em !important;
    }
    .aligncentermobile {
        text-align: center !important;
        justify-content: center !important;
    }
    .mobile {
        display: block;
        visibility: visible;
    }
    .tablet {
        display: none;
        visibility: hidden;
    }
    .desktop {
        display: none;
        visibility: hidden;
    }
    #gallery {
        -moz-column-count:    2;
        -webkit-column-count: 2;
        column-count:         2;
    }
    .gallery img {
        margin-bottom: 1em; /* to match column gap */
    }
    .middlecontent {
        margin-top: 3em;
    }
    .midtitle {
        font-weight: 700;
        font-size: 1.9em;
        word-wrap: break-word;
    }
    .midpg {
        margin-top: 0.5em;
        width: 100%;
        font-size: 1em;
    }
    .homepagemiddle {
        padding-top: 3em;
        width: 94%;
        margin-left: auto;
        margin-right: auto;
    }
    .footerimage {
        padding: 0.4em !important;
    }
    .reviewbox {
        width: 20em;
    }
    .addproductselectgroup {
        width: 20em;
    }
    .footerheader {
        margin-top: 0.6em;
    }
    .productdesc {
        width: 100%;
    }
    .productdesc iframe {
        width: 100%;
        height: auto;
    }
    .productSlideshowImage {
        display: block;
        width: 100%;
        height: 11em;
    }
    .productimagecarouselmodal {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        height: 15em;
    }
    .productSlideshowImageModal {
        display: block;
        width: 100%;
        height: 15em;
    }
    .productfeat {
        width: 100%;
    }
    .shopitempaybuttontop {
        width: 100%;
    }
    .customDivNotifications {
        max-height: 20em;
    }
    .mobilenavbarlogo {
        width: 10em;
        height: auto;
    }
    .navbarlogo {
        width: 5em !important;
        height: auto !important;
    }
    .cookiething {
        padding-top: 2em;
        padding-bottom: 2em;
        padding-left: 1em;
        padding-right: 1em;
    }
    .receiptbox {
        padding: 2em;
    }
    .receiptbox h3 {
        font-size: 1.2em;
    }
    .receiptbox h4 {
        font-size: 1em;
    }
    .receiptheader {
        font-size: 1.5em;
    }
    .mtheader-1 {
        margin-top: 11em !important;
    }
    .mtheader-2 {
        margin-top: 7em !important;
    }
    .footeritem {
        font-size: 0.7em;
    }
    .footeritemone {
        font-size: 1em;
    }
    .footerdescone {
        width: 100%;
    }
    .iconadminfooterone {
        font-size: 1.2em;
    }
    .footercolumnscentermobile {
        text-align: center !important;
    }
    .cartpageitemname {
        font-size: 1em;
        margin-left: 0.8em;
        margin-top: 0.26em;
    }
    .cartpageremove {
        margin-right: 0.7em;
        margin-top: 0.7em;
    }
    .cartpageapplydiscountbutton::after {
        content: '';
    }
    .footeradvertisement {
        width: 80%;
    }
    .linkeditem {
        padding: 0;
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
        background-color: transparent;
        border: none 0px transparent;
    }
    .linkeditemheader, .linkeditemprice {
        text-align: center !important;
    }
    .linkeditembutton {
        width: 100%;
    }
    .linkeditemcartbutton {
        font-size: 1em;
    }
    .linkeditemcartbutton::after {
        content: "Add to cart"
    }
    .docspaddinglarge {
        padding: 0.4rem !important;
    }
    .docspaddinginner {
        padding: 1.5rem !important;
    }
    .fixedheightarticles {
        height: 12em;
        max-height: 12em;
        overflow-y: auto;
    }
    .docscatimg {
        width: 4em;
        height: auto;
    }
    .cloudauthmain {
        width: 85%;
    }
    .cloudauthinner {
        width: 100%;
    }
    .login-auth-main {
        width: 100% !important;
    }
    .homelogo {
        display: none;
    }
}

/* ============================================================
   Guardian Webstore — unified pill button styling
   Every button across the admin panel and the storefront now
   shares the same fully-rounded "pill" shape as the POLICE /
   GW-001 tag badges on product cards. On square icon buttons
   this same radius renders as a perfect circle.
   ============================================================ */
:root {
    --gs-pill-radius: 999px;
}

.btn,
.btn-theme,
.btn-outline-theme,
.btn-themedark,
.btn-adminchange,
.btn-danger,
.btn-secondary,
.btn-primary,
.btn-success,
.btn-warning,
.btn-info,
.btnnostyle,
.productbuttonlist,
.sortingbuttonsshop,
.sortingtagpill,
.adminnavbutton,
.cartbuttonnavbar,
.cartpageapplydiscountbutton,
.featprodbutton,
.homebutton,
.linkeditembutton,
.linkeditemcartbutton,
.midbutton,
.morrisbutton,
.nohoverbuttonchange,
.notificationbuttons,
.paymentbutton,
.psbuttonadmin,
.psbuttonadmina,
.shopitempaybutton,
.shopitempaybuttontop,
.viewourchangesbutton,
.gs-badge,
.gs-code,
button,
input[type="submit"],
input[type="button"] {
    border-radius: var(--gs-pill-radius) !important;
}
/* ============================================================
   HOMEPAGE REDESIGN — hero, stats strip, why-us, how-it-works
   Matches the dark "duty-ready" look used across the rest of
   the gs-* design system. Scoped to its own gs-* classes so it
   doesn't touch any class other pages already rely on.
   ============================================================ */

.gs-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.gs-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75em;
    letter-spacing: 0.2em;
    color: var(--gs-amber);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}
.gs-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gs-tactical);
    display: inline-block;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.2);
    flex-shrink: 0;
}
.gs-hero-title {
    font-size: clamp(2.2em, 5vw, 3.6em);
    line-height: 1.02;
    margin: 0 0 20px;
    font-weight: 700;
    text-align: left;
}
.gs-hero-desc {
    color: var(--gs-muted);
    font-size: 1.05em;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 0 28px;
    text-align: left;
}
.gs-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 1.5em;
}
.gs-hero-panel {
    background: var(--gs-surface);
    border: 1px solid var(--gs-line);
    border-radius: 0.4em;
    padding: 24px;
    position: relative;
    overflow: hidden;
}
/* Always animates, unconditionally - same reasoning as .gs-lightbar above.
   The reference Guardian Store site's .hero-panel::before (the accent line
   over "FEATURED IN THE ARMORY"/"FEATURED IN THE SHOP") has no
   prefers-reduced-motion handling either, so this used to sit frozen on
   webstore for any visitor/browser with reduced motion on while the
   reference kept sweeping regardless. */
.gs-hero-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--gs-sweep-color-1, var(--gs-tactical)) 0 20px, var(--gs-sweep-color-2, var(--gs-amber)) 20px 40px);
    background-size: 80px 100%;
    animation: gs-sweep var(--gs-sweep-duration, 2.4s) linear infinite;
}
.gs-hero-panel-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7em;
    letter-spacing: 0.12em;
    color: var(--gs-muted);
    margin-bottom: 14px;
    text-transform: uppercase;
    text-align: left;
}
.gs-unit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px dashed var(--gs-line);
    font-size: 0.85em;
    gap: 12px;
}
.gs-unit-row:last-child { border-bottom: none; }
.gs-unit-name {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    text-align: left;
    color: var(--gs-bone);
    text-decoration: none;
}
.gs-unit-name span.n {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.gs-unit-code {
    font-family: 'JetBrains Mono', monospace;
    color: var(--gs-amber);
    flex-shrink: 0;
}
.gs-unit-price {
    font-family: 'JetBrains Mono', monospace;
    color: var(--gs-bone);
    flex-shrink: 0;
}
.gs-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gs-ems);
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.gs-stats-strip {
    border-top: 1px solid var(--gs-line);
    border-bottom: 1px solid var(--gs-line);
    background: var(--gs-surface);
}
.gs-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    text-align: center;
}
.gs-stats-inner div b {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.7em;
    color: var(--gs-amber);
}
.gs-stats-inner div span {
    font-size: 0.75em;
    color: var(--gs-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gs-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}
.gs-section-head {
    margin-bottom: 32px;
    text-align: left;
}
.gs-section-head h2 {
    font-size: 1.9em;
    margin: 0 0 6px;
}
.gs-section-head p {
    color: var(--gs-muted);
    margin: 0;
    font-size: 0.9em;
    max-width: 460px;
}

.gs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}
.gs-card {
    background: var(--gs-surface);
    border: 1px solid var(--gs-line);
    border-radius: 0.4em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, border-color 0.18s;
    text-align: left;
}
.gs-card:hover {
    transform: translateY(-4px);
    border-color: var(--gs-muted);
}
.gs-card .gs-card-media { margin-bottom: 0; }
.gs-card-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.gs-card-body h3 {
    font-size: 1.05em;
    margin: 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}
.gs-card-body h3 a {
    color: var(--gs-bone);
    text-decoration: none;
}
.gs-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
}

/* "Take a look at our best selling collections!" — homepage carousel of
   admin-picked storecategories (Admin -> Configuration -> Best Selling
   Collections). Cards sit in a horizontally-scrolling track; the prev/next
   buttons and the autoplay JS in index.ejs both just call track.scrollBy(),
   so this stays a plain native-scroll strip rather than a JS-positioned one. */
.gs-bsc-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}
.gs-bsc-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    flex: 1;
    padding-bottom: 4px;
    /* Scrollable by touch/trackpad/arrow buttons, but the scrollbar itself
       is hidden since the arrows already communicate "more content". */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.gs-bsc-track::-webkit-scrollbar {
    display: none;
}
.gs-bsc-card {
    position: relative;
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    display: block;
    height: 260px;
    border-radius: 0.6em;
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gs-surface-2), var(--gs-bg));
    border: 1px solid var(--gs-line);
}
.gs-bsc-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.gs-bsc-card:hover img {
    transform: scale(1.08);
}
.gs-bsc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}
.gs-bsc-label {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 1.15em;
    letter-spacing: 0.02em;
}
.gs-bsc-label i {
    font-size: 0.8em;
    transition: transform 0.2s ease;
}
.gs-bsc-card:hover .gs-bsc-label i {
    transform: translateX(4px);
}
.gs-bsc-arrow {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    background: var(--gs-surface-2);
    box-shadow: 0 4px 14px -2px rgba(0,0,0,0.5);
    transition: transform 0.15s ease, background 0.15s ease;
}
.gs-bsc-arrow:hover {
    transform: scale(1.08);
}
.gs-bsc-arrow-next {
    color: #1A1400;
    background: linear-gradient(135deg, #FFE27A, var(--gs-amber));
}
@media (max-width: 900px) {
    .gs-bsc-card { flex-basis: calc(50% - 10px); height: 220px; }
}
@media (max-width: 560px) {
    .gs-bsc-card { flex-basis: 82%; height: 200px; }
    .gs-bsc-arrow { width: 36px; height: 36px; }
}
@media (prefers-reduced-motion: reduce) {
    .gs-bsc-track { scroll-behavior: auto; }
    .gs-bsc-card img { transition: none; }
}

.gs-why-us {
    background: var(--gs-bg);
    border-top: 1px solid var(--gs-line);
}
.gs-why-us-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 0;
}
.gs-eyebrow-center {
    text-align: center;
    color: var(--gs-bone);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 36px;
}
.gs-why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--gs-line);
    border-radius: 0.4em;
    overflow: hidden;
}
.gs-why-card {
    padding: 28px 24px;
    border-right: 1px solid var(--gs-line);
    text-align: left;
    transition: background-color 200ms ease-in-out;
}
.gs-why-card:last-child { border-right: none; }
.gs-why-card:hover {
    background: var(--gs-surface-2);
}
.gs-why-icon {
    font-size: 2.4em;
    line-height: 1;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, color-mix(in srgb, var(--theme-color) 35%, transparent), var(--gs-surface-2) 70%);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--theme-color) 45%, var(--gs-line)), 0 8px 24px -8px color-mix(in srgb, var(--theme-color) 65%, transparent);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}
.gs-why-card:hover .gs-why-icon {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--theme-color) 65%, var(--gs-line)), 0 12px 28px -8px color-mix(in srgb, var(--theme-color) 80%, transparent);
}
.gs-why-card h3 {
    font-size: 1.1em;
    margin: 0 0 8px;
    color: var(--gs-bone);
    text-transform: none;
    letter-spacing: 0;
}
.gs-why-card p {
    color: var(--gs-muted);
    font-size: 0.85em;
    line-height: 1.7;
    margin: 0;
}

.gs-features {
    background: var(--gs-surface);
    border-top: 1px solid var(--gs-line);
    border-bottom: 1px solid var(--gs-line);
}
.gs-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}
.gs-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Homepage — big YouTube video spot near the bottom of the page. Wider than
   .gs-section on purpose (this is meant to read as a large, deliberate
   feature spot, not another text section), with a soft shadow so it lifts
   off the page the way a hero banner does. */
.gs-video-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 24px 90px;
}
.gs-video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 0.8em;
    overflow: hidden;
    background: var(--gs-surface);
    border: 1px solid var(--gs-line);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.gs-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.gs-feature { text-align: left; }
.gs-feature h3 {
    font-size: 1.1em;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gs-bone);
    text-transform: none;
    letter-spacing: 0;
}
.gs-feature .gs-num {
    font-family: 'JetBrains Mono', monospace;
    color: var(--gs-tactical);
    font-size: 0.85em;
}
.gs-feature p {
    color: var(--gs-muted);
    font-size: 0.85em;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .gs-hero { grid-template-columns: 1fr; padding-top: 40px; }
    .gs-why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .gs-why-card { border-bottom: 1px solid var(--gs-line); }
    .gs-why-card:nth-child(2n) { border-right: none; }
    .gs-features-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}
@media (max-width: 520px) {
    .gs-why-us-grid { grid-template-columns: 1fr; }
    .gs-why-card { border-right: none; }
    .gs-features-grid { grid-template-columns: 1fr; }
    .gs-hero-title, .gs-hero-desc, .gs-hero-ctas { text-align: center; margin-left: auto; margin-right: auto; }
    .gs-hero-ctas { justify-content: center; }
}

/* ============================================================
   ADMIN DASHBOARD POLISH — brand mark, section-switch fade,
   subtle hover-lift on panels/stat cards to match the rest of
   the gs-* design system.
   ============================================================ */

.gs-admin-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.4em 0;
}
.gs-admin-brand svg {
    flex-shrink: 0;
    animation: gs-gate-shield-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.gs-admin-brand h3 {
    margin: 0;
}
@media (prefers-reduced-motion: reduce) {
    .gs-admin-brand svg { animation: none; }
}

@keyframes gs-panel-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.gs-panel-fade {
    animation: gs-panel-fade-in 0.28s ease both;
}
@media (prefers-reduced-motion: reduce) {
    .gs-panel-fade { animation: none; }
}

.typicalbox, .spacingstats, .wowcoolboxlol {
    transition: transform 0.18s ease, border-color 0.18s ease;
}
.spacingstats:hover, .wowcoolboxlol:hover {
    transform: translateY(-3px);
}

/* ============================================================
   Admin Dashboard (the /admin "main" landing view) — matches the
   Guardian Store admin console's dashboard look: a row of quick
   stat cards up top, then card-style panels underneath, instead
   of plain text/buttons floating on the dark background.
   ============================================================ */
.gs-dash-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1em;
    margin-bottom: 1.5em;
}
.gs-dash-panel {
    background: var(--gs-surface);
    border: 1px solid var(--gs-line);
    border-radius: 4px;
    padding: 1.6em 1.2em;
    height: 100%;
}
@media (max-width: 991px) {
    .gs-dash-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* "Saved!" confirmation toast — shown after any admin Save button actually
   commits (routes append ?saved=1 to their success redirect, read by the
   script in admin.ejs). Fixed bottom-right, fades/slides in and back out. */
.gs-save-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    background: var(--gs-surface, #14171A);
    border: 1px solid var(--theme-color, var(--gs-tactical));
    color: var(--gs-bone, #E8E6E1);
    padding: 0.8em 1.3em;
    border-radius: 0.4em;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.6em;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}
.gs-save-toast i {
    color: #2ECC71;
}
.gs-save-toast-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Login page buttons — scoped so it doesn't touch btn-sm anywhere else on
   the site. Needed because the global ".btn { font-size: 0.9em }" rule above
   loads after Bootstrap's own .btn-sm rule and was winning the cascade (same
   specificity, later wins), so btn-sm alone wasn't actually shrinking these -
   they still rendered close to full-size, just with slightly less padding. */
.gs-login-btn {
    font-size: 0.85em !important;
    padding: 0.5em 1.1em !important;
}

/* Divider under "Our Partners" on the Partners page — color set inline per-
   request (from sitesettings.partnerslinecolor, admin-editable in the
   Partners section). Bootstrap's default <hr> opacity (~0.25) would wash out
   a custom color, so this raises it and gives the line some real weight. */
.gs-partners-divider {
    opacity: 1;
    border: 0;
    border-top: 3px solid;
    border-radius: 2px;
}

/* Same treatment as .gs-partners-divider above, reused for the Team,
   Commissions, Gallery, and Reviews page headers (colors set inline from
   sitesettings.teamlinecolor/commissionslinecolor/gallerylinecolor/
   reviewslinecolor, admin-editable under Website Styling -> Page Divider
   Colors). Kept as its own class rather than reusing .gs-partners-divider
   so the Partners page divider stays independently tweakable later. */
.gs-page-divider {
    opacity: 1;
    border: 0;
    border-top: 3px solid;
    border-radius: 2px;
}
