/* Garnet Gaming Store — purchase-first storefront */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--background-color);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 82% 3%, rgba(143, 27, 42, .12), transparent 32rem),
        radial-gradient(circle at 8% 32%, rgba(89, 18, 29, .08), transparent 28rem),
        var(--background-color);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
.btn {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

[x-cloak] {
    display: none !important;
}

.container {
    width: 100%;
    max-width: var(--content-width) !important;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.text-muted {
    color: var(--text-muted);
}

.text-primary {
    color: var(--primary-color);
}

.bg-content {
    background: var(--content-color);
}

.bg-content-light {
    background: var(--content-light-color);
}

.bg-primary {
    background: var(--primary-color);
}

.bg-secondary {
    background: var(--secondary-color);
}

.border-content-light {
    border-color: rgba(255, 255, 255, .08) !important;
}

#appBg {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 760px;
    overflow: hidden;
    opacity: var(--hero-opacity);
    pointer-events: none;
}

#appBg::after,
#appBg .fade {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(12, 12, 14, .96) 0%, rgba(12, 12, 14, .77) 47%, rgba(12, 12, 14, .48) 100%),
        linear-gradient(0deg, var(--background-color) 0%, transparent 45%);
}

#appBg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-position);
    filter: saturate(.72) contrast(1.12);
}

#storeApp {
    position: relative;
    z-index: 2;
}

#content {
    padding: 72px 0 104px;
}

.view--home #content {
    padding-top: 0;
}

.gg-page-stack {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.gg-kicker,
.gg-eyebrow {
    margin: 0 0 9px;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.gg-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.gg-section-heading h2,
.gg-path-intro h2,
.gg-support-banner h2,
.gg-section-heading-compact h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 760;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.gg-section-heading p:not(.gg-kicker),
.gg-path-intro > p:last-child,
.gg-support-banner > div > p:last-child {
    max-width: 620px;
    margin: 10px 0 0;
    color: var(--text-muted);
}

.gg-text-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: #d7d7da;
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease;
}

.gg-text-link i {
    color: var(--primary-color);
    transition: transform .2s ease;
}

.gg-text-link:hover {
    color: #fff;
}

.gg-text-link:hover i {
    transform: translateX(3px);
}

/* Announcement + navigation */

.gg-announcement {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    background: #09090a;
}

.gg-announcement .container {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.gg-announcement p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #c8c8cc;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.gg-announcement-note {
    color: #6f6f75 !important;
    font-weight: 600 !important;
    letter-spacing: .03em !important;
    text-transform: none !important;
}

.gg-live-dot,
.gg-status-pill > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #55d187;
    box-shadow: 0 0 0 4px rgba(85, 209, 135, .08), 0 0 12px rgba(85, 209, 135, .55);
}

.gg-sale-campaign[hidden] {
    display: none;
}

.gg-sale-campaign {
    position: relative;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    opacity: 0;
    background:
        linear-gradient(100deg, #4c0c16 0%, var(--primary-color) 48%, #6b101e 100%);
    color: #fff;
    transform: translateY(-12px);
    transition: max-height .48s cubic-bezier(.2, .8, .2, 1),
                opacity .25s ease,
                transform .48s cubic-bezier(.2, .8, .2, 1);
}

.gg-sale-campaign::before {
    position: absolute;
    inset: -70% -18%;
    content: "";
    background: repeating-linear-gradient(
        115deg,
        transparent 0 54px,
        rgba(255, 255, 255, .07) 54px 92px
    );
    animation: gg-sale-sweep 9s linear infinite;
    pointer-events: none;
}

.gg-sale-campaign.is-visible {
    max-height: 68px;
    opacity: 1;
    transform: translateY(0);
}

.gg-sale-campaign-main {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 64px;
    align-items: center;
    gap: 14px;
}

.gg-sale-signal {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(22, 5, 9, .55);
    color: #fff;
    box-shadow: 0 7px 18px rgba(23, 2, 7, .18);
}

.gg-sale-signal > span {
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: inherit;
    animation: gg-sale-pulse 1.75s ease-out infinite;
}

.gg-sale-signal i {
    position: relative;
    z-index: 1;
    font-size: 14px;
}

.gg-sale-message {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    line-height: 1.15;
}

.gg-sale-message > span {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .72);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.gg-sale-message strong {
    overflow: hidden;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: -.018em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gg-sale-cta {
    display: inline-flex;
    min-height: 38px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 4px;
    background: #fff;
    color: #5a0d18;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(23, 2, 7, .2);
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.gg-sale-cta:hover {
    border-color: #23070d;
    background: #23070d;
    color: #fff;
    transform: translateX(3px);
}

@keyframes gg-sale-sweep {
    from { transform: translateX(-12%); }
    to { transform: translateX(12%); }
}

@keyframes gg-sale-pulse {
    0% { opacity: .7; transform: scale(1); }
    70%, 100% { opacity: 0; transform: scale(1.42); }
}

.gg-site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: rgba(13, 13, 15, .88);
    backdrop-filter: blur(18px);
}

.gg-nav-shell {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 34px;
}

.gg-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
}

.gg-brand > img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.gg-brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #5c121c);
    color: #fff;
}

.gg-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.gg-brand-copy strong {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.gg-brand-copy small {
    margin-top: 5px;
    color: #77777d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.gg-desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0 auto;
}

.gg-desktop-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #98989e;
    font-size: 12px;
    font-weight: 650;
    transition: color .2s ease;
}

.gg-desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -28px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--primary-color);
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .2s ease, transform .2s ease;
}

.gg-desktop-nav a:hover,
.gg-desktop-nav a.is-active {
    color: #fff;
}

.gg-desktop-nav a:hover::after,
.gg-desktop-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.gg-desktop-nav i {
    font-size: 9px;
}

.gg-nav-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
}

.gg-account-link {
    display: flex;
    max-width: 150px;
    height: 42px;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 9px;
    color: #b5b5ba;
    font-size: 11px;
    font-weight: 650;
    white-space: nowrap;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.gg-account-link img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
}

.gg-account-link:hover {
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .04);
    color: #fff;
}

.gg-cart-button,
.gg-icon-button {
    display: inline-flex;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9px;
}

.gg-cart-button {
    gap: 9px;
    padding: 0 9px 0 15px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    box-shadow: 0 9px 25px rgba(126, 21, 34, .22);
    transition: filter .2s ease, transform .2s ease;
}

.gg-cart-button:hover,
.gg-button-primary:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.gg-cart-count {
    display: grid;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    place-items: center;
    border-radius: 6px;
    background: rgba(0, 0, 0, .2);
    font-size: 10px;
}

.gg-icon-button {
    width: 42px;
    border: 1px solid rgba(255, 255, 255, .09);
    background: var(--content-light-color);
    color: #d3d3d7;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.gg-icon-button:hover {
    border-color: rgba(255, 255, 255, .16);
    background: #242428;
    color: #fff;
}

.gg-mobile-menu {
    display: none;
}

/* Hero */

.gg-home-hero {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.gg-home-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(12, 12, 14, .38), transparent 68%),
        linear-gradient(0deg, rgba(12, 12, 14, .3), transparent 55%);
}

.gg-home-hero::after {
    display: none;
}

.gg-hero-glow {
    display: none;
}

.gg-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 550px;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    align-items: center;
    gap: clamp(50px, 8vw, 112px);
    padding-top: 54px;
    padding-bottom: 58px;
}

.gg-hero-copy {
    max-width: 690px;
}

.gg-eyebrow {
    margin-bottom: 18px;
}

.gg-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 5.2vw, 66px);
    font-weight: 760;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.gg-hero-copy h1 em {
    color: #b9b9be;
    font-style: normal;
}

.gg-hero-copy > p {
    max-width: 610px;
    margin: 25px 0 0;
    color: #9b9ba1;
    font-size: 15px;
    line-height: 1.7;
}

.gg-hero-actions,
.gg-complete-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.gg-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    transition: border-color .2s ease, background .2s ease, color .2s ease, filter .2s ease, transform .2s ease;
}

.gg-button-primary {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.gg-button-ghost {
    border-color: rgba(255, 255, 255, .11);
    background: rgba(255, 255, 255, .035);
    color: #d6d6da;
}

.gg-button-ghost:hover {
    border-color: rgba(255, 255, 255, .19);
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.gg-button .count:empty {
    display: none;
}

.gg-trust-row,
.gg-inline-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 34px;
}

.gg-trust-row span,
.gg-inline-assurances span {
    display: inline-flex;
    align-items: center;
    color: #77777d;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .01em;
}

.gg-trust-row span + span::before {
    margin: 0 13px;
    color: #3d3d42;
    content: "/";
}

.gg-trust-row i,
.gg-inline-assurances i {
    color: var(--primary-color);
}

.gg-hero-card {
    position: relative;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    background: rgba(18, 18, 20, .92);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .26);
    backdrop-filter: blur(12px);
}

.gg-hero-card::before {
    display: none;
}

.gg-hero-card-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.gg-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bfc0c3;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.gg-card-kicker {
    color: #626268;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.gg-network-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0 22px;
}

.gg-network-mark {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 5px;
    background: #0e0e10;
}

.gg-network-mark img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.gg-network-mark i {
    color: var(--primary-color);
    font-size: 20px;
}

.gg-network-heading small {
    color: #69696f;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gg-network-heading h2 {
    margin: 2px 0 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.025em;
}

.gg-network-links {
    display: flex;
    gap: 18px;
    margin-top: 17px;
}

.gg-network-links a {
    color: #77777d;
    font-size: 10px;
    font-weight: 650;
}

.gg-network-links a:hover {
    color: #fff;
}

.gg-network-links i {
    margin-left: 4px;
    font-size: 8px;
}

.gg-server-address {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px 13px 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 5px;
    background: #0f0f11;
    color: #fff;
    text-align: left;
    transition: border-color .2s ease, background .2s ease;
}

.gg-server-address:hover {
    border-color: rgba(255, 255, 255, .15);
    background: #121215;
}

.gg-server-address > span:first-child {
    display: flex;
    flex-direction: column;
}

.gg-server-address small {
    margin-bottom: 2px;
    color: #5f5f65;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gg-server-address strong {
    color: #d9d9dd;
    font-size: 12px;
}

.gg-copy-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7e7e84;
}

.gg-copy-icon .count:not(:empty)::after {
    content: " online";
}

.gg-copy-icon .count {
    color: #62ce8b;
    font-size: 9px;
    font-weight: 750;
}

/* Server storefronts */

.gg-server-store-section .gg-section-heading {
    max-width: 780px;
}

.gg-server-store-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gg-server-store-card {
    position: relative;
    display: flex;
    min-height: clamp(390px, 34vw, 470px);
    overflow: hidden;
    align-items: flex-end;
    padding: clamp(26px, 3vw, 38px);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px;
    background: #121214;
    isolation: isolate;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.gg-server-store-card:hover {
    border-color: rgba(255, 255, 255, .2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
    transform: translateY(-3px);
}

.gg-server-store-card:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.gg-server-store-media,
.gg-server-store-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.gg-server-store-media {
    overflow: hidden;
    background-color: #18181b;
    background-image:
        linear-gradient(135deg, rgba(36, 36, 41, .08), rgba(16, 16, 18, .2)),
        var(--gg-server-image, none);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(.72) contrast(1.04) brightness(.82);
    transition: filter .35s ease, transform .6s cubic-bezier(.2, .75, .2, 1);
}

.gg-server-store-card-darkrp .gg-server-store-media {
    background-position: center 42%;
}

.gg-server-store-card-militaryrp .gg-server-store-media {
    background-position: center 58%;
}

.gg-server-store-card:hover .gg-server-store-media {
    filter: saturate(.9) contrast(1.04) brightness(.88);
    transform: scale(1.035);
}

.gg-server-store-placeholder {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 68% 24%, rgba(217, 35, 46, .22), transparent 28%),
        linear-gradient(135deg, #242429, #101012 68%);
    color: rgba(255, 255, 255, .13);
    font-size: 78px;
}

.gg-server-store-placeholder i {
    position: absolute;
    top: 43%;
    right: 14%;
    transform: translateY(-50%);
}

.gg-server-store-card-militaryrp .gg-server-store-placeholder {
    background:
        radial-gradient(circle at 68% 24%, rgba(153, 31, 43, .18), transparent 30%),
        linear-gradient(135deg, #202126, #0f1012 68%);
}

.gg-server-store-shade {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(10, 10, 12, .18) 0%, rgba(10, 10, 12, .22) 32%, rgba(10, 10, 12, .94) 87%),
        linear-gradient(90deg, rgba(10, 10, 12, .35), transparent 62%);
}

.gg-server-store-content {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gg-server-store-name {
    overflow: hidden;
    color: #fff;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 780;
    letter-spacing: -.06em;
    line-height: 1;
    text-overflow: ellipsis;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
    white-space: nowrap;
}

.gg-server-store-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: rgba(13, 13, 15, .72);
    color: #fff;
    font-size: 11px;
    backdrop-filter: blur(10px);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.gg-server-store-card:hover .gg-server-store-arrow {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: translateX(3px);
}

.gg-support-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 5px;
    background: rgba(255, 255, 255, .035);
    color: var(--primary-color);
    font-size: 17px;
    transition: color .25s ease, background .25s ease;
}

/* Purchase steps + support */

.gg-purchase-path {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 9vw, 125px);
    padding: 46px;
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 7px;
    background: #111113;
}

.gg-path-intro {
    align-self: center;
}

.gg-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gg-steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 17px;
    padding: 21px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .065);
}

.gg-steps li:first-child {
    padding-top: 0;
}

.gg-steps li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.gg-steps li > span {
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.gg-steps strong {
    display: block;
    margin-bottom: 3px;
    color: #eeeef0;
    font-size: 14px;
}

.gg-steps p {
    margin: 0;
    color: #74747a;
    font-size: 12px;
}

.gg-support-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 7px;
    background: #141416;
}

.gg-support-icon {
    width: 56px;
    height: 56px;
}

.gg-support-banner h2 {
    font-size: 24px;
}

.gg-support-banner > div > p:last-child {
    display: -webkit-box;
    max-width: 670px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
}

.gg-support-actions {
    display: flex;
    gap: 9px;
}

/* Community modules */

.gg-community-section {
    min-width: 0;
}

.gg-section-heading-compact {
    margin-bottom: 22px;
}

.gg-community-modules {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gg-community-modules > * {
    min-width: 0;
    margin: 0 !important;
    padding: 24px !important;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px !important;
    background: var(--content-color) !important;
    box-shadow: none !important;
}

.gg-community-modules .text-2xl {
    font-size: 18px !important;
}

.gg-community-modules .w-10,
.gg-community-modules .w-12 {
    border-radius: 8px !important;
}

.gg-community-modules .recent-payments {
    grid-column: span 2;
}

.custom-avatar {
    overflow: hidden;
    border-radius: 8px;
}

/* Catalog */

.gg-catalog-page {
    gap: 30px;
}

.gg-catalog-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.gg-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: #65656b;
    font-size: 10px;
    font-weight: 650;
}

.gg-breadcrumbs a:hover {
    color: #fff;
}

.gg-breadcrumbs i {
    font-size: 7px;
}

.gg-breadcrumbs span {
    color: #a0a0a5;
}

.gg-catalog-header h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 790;
    letter-spacing: -.055em;
    line-height: 1;
}

.gg-catalog-header > div > p:last-child {
    margin: 15px 0 0;
    color: #85858b;
    font-size: 13px;
}

.gg-catalog-count {
    display: flex;
    min-width: 84px;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1;
}

.gg-catalog-count strong {
    color: #fff;
    font-size: 28px;
    letter-spacing: -.04em;
}

.gg-catalog-count span {
    margin-top: 7px;
    color: #68686e;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.gg-category-tabs {
    display: flex;
    gap: 7px;
    padding-bottom: 3px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gg-category-tabs::-webkit-scrollbar {
    display: none;
}

.gg-category-tabs a {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 4px;
    background: #121214;
    color: #85858b;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.gg-category-tabs a:hover {
    border-color: rgba(255, 255, 255, .14);
    color: #fff;
}

.gg-category-tabs a.is-active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.gg-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gg-product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 7px;
    background: #141416;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.gg-product-card.is-on-sale {
    scroll-margin-top: 180px;
}

.gg-sale-ribbon {
    position: absolute;
    top: 24px;
    right: -47px;
    z-index: 4;
    display: block;
    width: 176px;
    padding: 7px 0 6px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(39, 4, 10, .45);
    background: linear-gradient(90deg, #6c111e, var(--primary-color), #6c111e);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .2em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 5px 16px rgba(14, 2, 4, .32);
    transform: rotate(45deg);
    pointer-events: none;
}

.gg-product-card:hover {
    border-color: rgba(255, 255, 255, .14);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
}

.gg-product-image {
    position: relative;
    display: block;
    width: 100%;
    height: 205px;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #101012;
}

.gg-product-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.gg-product-card:hover .gg-product-image > img {
    transform: scale(1.025);
}

.gg-image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 15, 17, .72), transparent 60%);
    pointer-events: none;
}

.gg-product-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--primary-color);
    font-size: 40px;
}

.gg-stock-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    gap: 6px;
    padding: 0 9px;
    border-radius: 3px;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    background: rgba(10, 10, 11, .86);
    backdrop-filter: blur(8px);
}

.gg-product-card.is-on-sale .gg-stock-badge {
    top: 58px;
}

.gg-product-body {
    padding: 22px;
}

.gg-product-meta {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 15px;
    margin-bottom: 10px;
}

.gg-product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #67676d;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.gg-product-meta i {
    color: var(--primary-color);
}

.gg-product-title {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: #f1f1f3;
    font-size: 16px;
    font-weight: 730;
    letter-spacing: -.025em;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .2s ease;
}

.gg-product-title:hover {
    color: var(--primary-color);
}

.gg-product-label {
    display: -webkit-box;
    min-height: 38px;
    margin: 8px 0 20px;
    overflow: hidden;
    color: #74747a;
    font-size: 11px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gg-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, .065);
}

.gg-price {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

.gg-price span {
    color: #fff;
    font-size: 20px;
    font-weight: 780;
    letter-spacing: -.03em;
}

.gg-price em {
    color: #77777d;
    font-size: 9px;
    font-style: normal;
    letter-spacing: .04em;
}

.gg-price del {
    position: static;
    color: #6c6c72;
    font-size: 10px;
}

.gg-add-button,
.gg-purchase-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    border: 1px solid #318d5d;
    border-radius: 4px;
    background: #2d7f54;
    color: #fff;
    font-size: 10px;
    font-weight: 750;
    transition: border-color .2s ease, background .2s ease;
}

.gg-add-button i {
    font-size: 10px;
}

.gg-add-button:hover,
.gg-purchase-button:hover {
    border-color: #43a873;
    background: #359564;
}

.gg-add-button.is-disabled {
    cursor: not-allowed;
    opacity: .4;
}

.gg-empty-state {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 25px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 15px;
    background: var(--content-color);
    text-align: center;
}

.gg-empty-state > span {
    display: grid;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    color: var(--primary-color);
    font-size: 24px;
}

.gg-empty-state h2 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    letter-spacing: -.035em;
}

.gg-empty-state p {
    max-width: 430px;
    margin: 8px 0 23px;
    color: #77777d;
    font-size: 12px;
}

.gg-empty-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* Product detail */

.gg-product-page {
    gap: 34px;
}

.gg-product-page > .gg-breadcrumbs {
    margin-bottom: -4px;
}

.gg-product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: clamp(42px, 7vw, 86px);
    align-items: center;
}

.gg-product-detail-media {
    position: relative;
    display: grid;
    min-height: 500px;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 7px;
    background:
        radial-gradient(circle at 50% 45%, rgba(156, 29, 45, .16), transparent 42%),
        #111113;
}

.gg-product-detail-media > img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gg-product-detail-copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 790;
    letter-spacing: -.06em;
    line-height: 1.04;
}

.gg-product-lead {
    margin: 16px 0 0;
    color: #85858b;
    font-size: 14px;
}

.gg-detail-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 27px 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.gg-detail-sale-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gg-detail-price del {
    margin-bottom: 2px;
    color: #737379;
    font-size: 11px;
}

.gg-detail-price strong {
    color: #fff;
    font-size: 30px;
    font-weight: 790;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.gg-product-page.is-on-sale {
    scroll-margin-top: 180px;
}

.gg-detail-price strong span {
    color: #79797f;
    font-size: 11px;
    letter-spacing: .04em;
}

.gg-detail-price small {
    margin-top: 7px;
    color: #636369;
    font-size: 9px;
}

.gg-product-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.gg-product-options label {
    margin-top: 7px;
    color: #b8b8bd;
    font-size: 10px;
    font-weight: 700;
}

.gg-product-options input,
.gg-product-options select,
.gg-gift-actions input {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px;
    outline: 0;
    background: #151518;
    color: #eeeef0;
    font-size: 12px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.gg-product-options input:focus,
.gg-product-options select:focus,
.gg-gift-actions input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 13%, transparent);
}

.gg-detail-actions {
    display: flex;
    gap: 9px;
}

.gg-detail-actions .gg-button-primary {
    flex: 1;
}

.gg-gift-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.gg-inline-assurances {
    margin-top: 24px;
    gap: 16px;
}

.gg-out-of-stock {
    padding: 14px 16px;
    border: 1px solid rgba(239, 68, 68, .18);
    border-radius: 9px;
    background: rgba(239, 68, 68, .07);
    color: #ef7777;
    font-size: 12px;
    font-weight: 650;
}

.gg-product-lower {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 20px;
    margin-top: 24px;
}

.gg-product-description,
.gg-purchase-note {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 7px;
    background: var(--content-color);
}

.gg-product-description h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 28px;
    letter-spacing: -.04em;
}

.gg-custom-page {
    gap: 22px;
}

.gg-custom-page .gg-breadcrumbs {
    margin-bottom: 0;
}

.gg-custom-page .gg-product-description {
    padding: clamp(28px, 5vw, 58px);
}

.gg-custom-page .gg-product-description h1 {
    margin: 0 0 28px;
    color: #fff !important;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 790;
    letter-spacing: -.055em;
    line-height: 1.05;
}

.gg-product-description :where(p, li) {
    color: #8a8a90 !important;
    font-size: 13px;
    line-height: 1.8;
}

.gg-product-description :where(h1, h2, h3, h4, strong) {
    color: #eeeef0 !important;
}

.gg-purchase-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
}

.gg-purchase-note > i {
    margin-top: 3px;
    color: var(--primary-color);
}

.gg-purchase-note strong {
    display: block;
    color: #eeeef0;
    font-size: 13px;
}

.gg-purchase-note p {
    margin: 6px 0 12px;
    color: #77777d;
    font-size: 11px;
    line-height: 1.7;
}

.gg-purchase-note a {
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
}

/* Cart + completion */

.gg-cart-page {
    gap: 34px;
}

.gg-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: start;
    gap: 22px;
}

.gg-cart-items {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
}

.gg-cart-line {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto auto 34px;
    align-items: center;
    gap: 19px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 7px;
    background: var(--content-color);
}

.gg-cart-line-image {
    display: grid;
    width: 80px;
    height: 80px;
    overflow: hidden;
    place-items: center;
    border-radius: 9px;
    background: var(--content-light-color);
    color: var(--primary-color);
    font-size: 21px;
}

.gg-cart-line-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gg-cart-line-copy {
    min-width: 0;
}

.gg-cart-line-copy small,
.gg-cart-line-total small,
.gg-quantity label {
    display: block;
    margin-bottom: 4px;
    color: #606066;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.gg-cart-line-copy h2 {
    margin: 0;
    overflow: hidden;
    color: #eeeef0;
    font-size: 15px;
    font-weight: 720;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gg-cart-line-copy p {
    margin: 3px 0 2px;
    color: #79797f;
    font-size: 9px;
}

.gg-cart-line-copy > strong {
    color: var(--primary-color);
    font-size: 11px;
}

.gg-quantity {
    width: 58px;
}

.gg-quantity input {
    width: 58px;
    height: 38px;
    padding: 0 7px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 7px;
    outline: 0;
    background: var(--content-light-color);
    color: #fff;
    font-size: 11px;
    text-align: center;
}

.gg-cart-line-total {
    min-width: 96px;
    text-align: right;
}

.gg-cart-line-total strong {
    color: #fff;
    font-size: 12px;
}

.gg-remove-line {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 7px;
    color: #67676d;
    font-size: 10px;
    transition: background .2s ease, color .2s ease;
}

.gg-remove-line:hover {
    background: rgba(239, 68, 68, .09);
    color: #ef6767;
}

.gg-cart-items > .gg-text-link {
    margin-top: 10px;
}

.gg-order-summary {
    position: sticky;
    top: 110px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 7px;
    background: var(--content-color);
}

.gg-order-summary h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 24px;
    letter-spacing: -.04em;
}

.gg-summary-line,
.gg-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gg-summary-line {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .065);
    color: #77777d;
    font-size: 11px;
}

.gg-summary-line strong {
    color: #c7c7cb;
}

.gg-summary-total {
    padding: 19px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .065);
}

.gg-summary-total > span {
    color: #aaaab0;
    font-size: 12px;
    font-weight: 700;
}

.gg-summary-total strong {
    color: #fff;
    font-size: 25px;
    letter-spacing: -.04em;
}

.gg-summary-total em {
    color: #68686e;
    font-size: 9px;
    font-style: normal;
    letter-spacing: .04em;
}

.gg-checkout-button {
    width: 100%;
}

.gg-checkout-note {
    margin: 12px 0 13px;
    color: #65656b;
    font-size: 9px;
    text-align: center;
}

.gg-checkout-note i {
    margin-right: 4px;
    color: #63bd83;
}

.gg-payment-icons {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #67676d;
    font-size: 23px;
}

.gg-order-summary .gg-payment-icons {
    justify-content: center;
    padding: 11px 0 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .065);
}

.gg-empty-cart-link {
    display: block;
    margin-top: 16px;
    color: #69696f;
    font-size: 9px;
    font-weight: 650;
    text-align: center;
}

.gg-empty-cart-link:hover {
    color: #ee6b6b;
}

.gg-complete-card {
    display: flex;
    max-width: 720px;
    min-height: 500px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 55px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 17px;
    background:
        radial-gradient(circle at 50% 5%, rgba(52, 211, 153, .08), transparent 19rem),
        var(--content-color);
    text-align: center;
}

.gg-complete-icon {
    display: grid;
    width: 74px;
    height: 74px;
    margin-bottom: 25px;
    place-items: center;
    border: 1px solid rgba(52, 211, 153, .18);
    border-radius: 50%;
    background: rgba(52, 211, 153, .08);
    color: #65d7a4;
    font-size: 24px;
}

.gg-complete-card h1 {
    margin: 0;
    color: #fff;
    font-size: 46px;
    letter-spacing: -.055em;
}

.gg-complete-copy,
.gg-complete-note {
    max-width: 500px;
    color: #85858b;
    font-size: 13px;
}

.gg-complete-copy {
    margin-top: 14px;
}

.gg-complete-note {
    margin: 9px 0 0;
    color: #65656b;
    font-size: 10px;
}

/* Footer */

.gg-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, .065);
    background: #09090a;
}

.gg-footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.6fr) .7fr .7fr .9fr;
    gap: clamp(35px, 6vw, 80px);
    padding: 58px 0 46px;
}

.gg-footer-brand > p {
    max-width: 360px;
    margin: 18px 0 0;
    color: #66666c;
    font-size: 11px;
    line-height: 1.75;
}

.gg-footer-links,
.gg-footer-secure {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.gg-footer-links strong,
.gg-footer-secure > strong {
    margin-bottom: 6px;
    color: #d6d6da;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.gg-footer-links a,
.gg-footer-secure > span {
    color: #68686e;
    font-size: 10px;
    transition: color .2s ease;
}

.gg-footer-links a:hover {
    color: #fff;
}

.gg-footer-secure > span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.gg-footer-secure > span i {
    color: var(--primary-color);
}

.gg-footer-secure .gg-payment-icons {
    margin-top: 6px;
    font-size: 19px;
}

.gg-footer-bottom {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .055);
    color: #4e4e54;
    font-size: 9px;
}

.gg-footer-bottom p {
    margin: 0;
}

.gg-footer-bottom > div {
    display: flex;
    gap: 20px;
}

.gg-footer-bottom a:hover {
    color: #aaaab0;
}

/* Existing PayNow components */

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine:hover::before {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 10%;
    height: 300px;
    content: "";
    background: rgba(255, 255, 255, .1);
    transform: rotate(30deg);
    animation: shine .5s linear;
}

@keyframes shine {
    to { left: calc(100% + 100px); }
}

.card-loading {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 12, 14, .88);
}

.loader {
    display: inline-block;
    width: 42px;
    height: 42px;
    border: 4px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    to { transform: rotate(360deg); }
}

.modal-nav {
    padding-right: 8px !important;
    scrollbar-color: #45454b #1b1b1e;
    scrollbar-width: thin;
}

.modal-nav::-webkit-scrollbar {
    width: 6px;
}

.modal-nav::-webkit-scrollbar-track {
    border-radius: 20px;
    background: #1b1b1e;
}

.modal-nav::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: #45454b;
}

.fixed.inset-0.z-50 .bg-content {
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 7px !important;
    background: #151518;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
}

.fixed.inset-0.z-50 .bg-content-light {
    background: #1e1e22;
}

.fixed.inset-0.z-50 input,
.fixed.inset-0.z-50 select {
    outline: 0;
}

.fixed.inset-0.z-50 input:focus,
.fixed.inset-0.z-50 select:focus {
    border-color: var(--primary-color);
}

.gg-store-menu-modal > h2 {
    color: #fff;
    letter-spacing: -.04em;
}

.gg-store-server-link {
    display: grid;
    min-height: 62px;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    background: #1a1a1d;
    transition: border-color .2s ease, background .2s ease;
}

.gg-store-server-link:hover {
    border-color: rgba(255, 255, 255, .16);
    background: #1e1e21;
}

.gg-store-server-link > span {
    display: flex;
    flex-direction: column;
}

.gg-store-server-link small {
    color: #64646a;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gg-store-server-link strong {
    color: #eeeef0;
    font-size: 13px;
}

.gg-store-server-link em {
    color: #65656b;
    font-size: 9px;
    font-style: normal;
}

.gg-store-server-link > i {
    color: #6d6d73;
    font-size: 9px;
}

.gg-modal-product-image {
    position: relative;
    display: grid;
    width: 112px;
    height: 112px;
    overflow: visible;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background:
        radial-gradient(circle, rgba(153, 27, 44, .14), transparent 65%),
        #111113;
}

.gg-modal-product-image > img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.gg-product-modal .prose {
    max-height: 230px;
    overflow-y: auto;
}

.gg-product-modal .prose :where(p, li) {
    color: #909096;
    font-size: 12px;
    line-height: 1.7;
}

#notification-alert .font-medium {
    text-transform: none;
}

.gg-gift-entry {
    display: grid;
    width: 100%;
    min-height: 64px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    margin: -2px 0 18px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 5px;
    background: #1a1a1d;
    color: #fff;
    text-align: left;
    transition: border-color .2s ease, background .2s ease;
}

.gg-gift-entry:hover {
    border-color: rgba(255, 255, 255, .17);
    background: #1e1e21;
}

.gg-gift-entry-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 4px;
    background: rgba(217, 35, 46, .12);
    color: var(--primary-color);
}

.gg-gift-entry > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.gg-gift-entry strong {
    color: #eeeef0;
    font-size: 11px;
}

.gg-gift-entry small {
    margin-top: 2px;
    color: #74747a;
    font-size: 9px;
    line-height: 1.45;
}

.gg-gift-entry > i {
    color: #6e6e74;
    font-size: 9px;
}

.gg-gift-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 6px;
    background: #1a1a1d;
}

.gg-gift-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
}

.gg-gift-heading > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 4px;
    background: rgba(217, 35, 46, .12);
    color: var(--primary-color);
}

.gg-gift-heading h3 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.gg-gift-heading p {
    margin: 3px 0 0;
    color: #85858b;
    font-size: 10px;
    line-height: 1.55;
}

.gg-gift-panel label {
    margin-top: 3px;
    color: #bdbdc2;
    font-size: 10px;
    font-weight: 650;
}

.gg-gift-panel input {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    outline: 0;
    background: #111113;
    color: #fff;
    font-size: 12px;
}

.gg-gift-panel input:focus {
    border-color: var(--primary-color);
}

.gg-gift-help {
    margin: 0;
    color: #77777d;
    font-size: 9px;
    line-height: 1.55;
}

.gg-gift-help i {
    margin-right: 4px;
    color: var(--primary-color);
}

.gg-gift-actions {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
}

.gg-gift-back,
.gg-gift-continue {
    min-height: 43px;
    padding: 0 14px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.gg-gift-back {
    border: 1px solid rgba(255, 255, 255, .1);
    background: #222226;
}

.gg-gift-continue {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}

#paynow {
    max-width: 38px;
    margin: 0 auto;
    padding-top: 5px;
}

#paynow path {
    fill: #fff;
}

/* Older account, sign-in and custom page views */

.inner-content {
    min-width: 0;
}

.inner-content > .bg-content,
.page-body,
.content-field {
    border: 1px solid rgba(255, 255, 255, .07);
    background: var(--content-color);
    box-shadow: none !important;
}

.sidebar > .bg-content {
    border: 1px solid rgba(255, 255, 255, .07);
    box-shadow: none !important;
}

.sidebar .top-customer { order: 2; }
.sidebar .recent-payments { order: 3; }
.sidebar .giftcards { order: 10; }
.sidebar .text-block { order: 15; }

/* Responsive */

@media (max-width: 1100px) {
    .gg-desktop-nav {
        gap: 18px;
    }

    .gg-desktop-nav a:nth-child(n+5) {
        display: none;
    }

    .gg-hero-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
        gap: 48px;
    }

    .gg-server-store-grid,
    .gg-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gg-community-modules {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gg-footer-main {
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 900px) {
    #content {
        padding: 54px 0 82px;
    }

    .gg-desktop-nav {
        display: none;
    }

    .gg-nav-actions {
        margin-left: auto;
    }

    .gg-mobile-menu {
        display: inline-flex;
    }

    .gg-home-hero,
    .gg-hero-grid {
        min-height: auto;
    }

    .gg-hero-grid {
        grid-template-columns: 1fr;
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .gg-hero-copy {
        max-width: 700px;
    }

    .gg-hero-card {
        display: block;
    }

    .gg-purchase-path {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .gg-support-banner {
        grid-template-columns: auto 1fr;
    }

    .gg-support-actions {
        grid-column: 2;
    }

    .gg-product-detail {
        grid-template-columns: 1fr;
    }

    .gg-product-detail-media,
    .gg-product-detail-media > img {
        min-height: 420px;
        height: 420px;
    }

    .gg-product-lower {
        grid-template-columns: 1fr;
    }

    .gg-cart-layout {
        grid-template-columns: 1fr;
    }

    .gg-order-summary {
        position: static;
    }

    .gg-footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .gg-footer-secure {
        grid-column: 1 / -1;
        flex-flow: row wrap;
        align-items: center;
    }

    .gg-footer-secure > strong {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .gg-announcement-note,
    .gg-account-link span,
    .gg-cart-label {
        display: none;
    }

    .gg-announcement .container {
        justify-content: flex-start;
    }

    .gg-sale-campaign.is-visible {
        max-height: 78px;
    }

    .gg-sale-campaign-main {
        min-height: 72px;
        gap: 10px;
    }

    .gg-sale-signal {
        width: 34px;
        height: 34px;
    }

    .gg-sale-message > span {
        font-size: 7px;
    }

    .gg-sale-message strong {
        display: -webkit-box;
        overflow: hidden;
        font-size: 11px;
        line-height: 1.25;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .gg-sale-cta {
        min-height: 36px;
        gap: 7px;
        padding: 0 11px;
        font-size: 8px;
    }

    .gg-sale-cta span {
        max-width: 48px;
        line-height: 1.15;
        text-align: center;
    }

    .gg-nav-shell {
        min-height: 68px;
        gap: 12px;
    }

    .gg-brand > img {
        width: 40px;
        height: 40px;
    }

    .gg-brand-copy strong {
        font-size: 14px;
    }

    .gg-brand-copy small {
        font-size: 8px;
    }

    .gg-account-link {
        width: 40px;
        height: 40px;
        justify-content: center;
        padding: 0;
    }

    .gg-account-link img {
        width: 26px;
        height: 26px;
    }

    .gg-cart-button {
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .gg-cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        min-width: 18px;
        height: 18px;
        border: 2px solid #111113;
        border-radius: 50%;
        background: #fff;
        color: #171719;
        font-size: 8px;
    }

    .gg-cart-button {
        position: relative;
    }

    .gg-home-hero::after {
        display: none;
    }

    .gg-hero-grid {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .gg-hero-copy h1 {
        font-size: clamp(40px, 11vw, 48px);
    }

    .gg-hero-copy > p {
        font-size: 14px;
    }

    .gg-hero-actions {
        flex-direction: column;
    }

    .gg-hero-actions .gg-button {
        width: 100%;
    }

    .gg-trust-row {
        gap: 10px 18px;
    }

    .gg-hero-card {
        display: block;
        padding: 23px;
    }

    .gg-network-heading h2 {
        text-align: left;
    }

    .gg-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .gg-server-store-grid,
    .gg-product-grid,
    .gg-community-modules {
        grid-template-columns: 1fr;
    }

    .gg-community-modules .recent-payments {
        grid-column: auto;
    }

    .gg-server-store-card {
        min-height: 400px;
        padding: 24px;
    }

    .gg-purchase-path {
        padding: 30px 23px;
    }

    .gg-support-banner {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }

    .gg-support-actions {
        grid-column: 1;
        flex-direction: column;
    }

    .gg-support-actions .gg-button {
        width: 100%;
    }

    .gg-catalog-header {
        align-items: flex-start;
    }

    .gg-catalog-count {
        align-items: flex-end;
    }

    .gg-product-image {
        height: 235px;
    }

    .gg-product-detail-media,
    .gg-product-detail-media > img {
        min-height: 330px;
        height: 330px;
    }

    .gg-product-detail-copy h1 {
        font-size: 40px;
    }

    .gg-detail-actions,
    .gg-gift-actions {
        flex-wrap: wrap;
    }

    .gg-detail-actions .gg-button-primary {
        flex-basis: calc(100% - 51px);
    }

    .gg-detail-actions .gg-button-ghost {
        order: 3;
        width: 100%;
    }

    .gg-product-description,
    .gg-purchase-note {
        padding: 24px;
    }

    .gg-cart-line {
        grid-template-columns: 66px minmax(0, 1fr) 34px;
        gap: 14px;
    }

    .gg-cart-line-image {
        width: 66px;
        height: 66px;
    }

    .gg-quantity {
        grid-column: 2;
        width: auto;
    }

    .gg-quantity label {
        display: inline;
        margin-right: 7px;
    }

    .gg-quantity input {
        width: 50px;
        height: 34px;
    }

    .gg-cart-line-total {
        grid-column: 2 / -1;
        grid-row: 2;
        justify-self: end;
        align-self: end;
    }

    .gg-remove-line {
        grid-column: 3;
        grid-row: 1;
    }

    .gg-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .gg-footer-brand,
    .gg-footer-secure {
        grid-column: 1 / -1;
    }

    .gg-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }

    .gg-footer-bottom > div {
        flex-wrap: wrap;
        gap: 9px 17px;
    }

    .gg-complete-card {
        min-height: 430px;
        padding: 36px 24px;
    }

    .gg-complete-card h1 {
        font-size: 38px;
    }
}

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