/* ===========================================================================
   Epic Rust — store theme
   ---------------------------------------------------------------------------
   Built on the PayNow "Eclipse" template (github.com/paynow-gg/eclipse-template,
   theme by WhoisMikeJones). Restyled for Epic Rust; upstream section order is
   preserved so this stays diffable against new Eclipse releases.

   Rules for editing this file:

   - No literal colours. Every colour is a var() defined in style-imports.html,
     which sources them from BRAND.md (R5). A hex typed in here is a defect.
   - No external image hosts. Decorative fills are CSS gradients, not files on
     someone else's CDN (R1). Upstream referenced cdn.paynow.gg on 14 rules.
   =========================================================================== */

/* ===========================================================================
   STRUCTURE
   =========================================================================== */

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    position: relative;
    height: 100%;
}

@media only screen and (max-width: 768px) {
    .container {
        width: 100%;
    }
}

html {
    font: 15px / 1.5 sans-serif;
    font-weight: 400;
    color: var(--content-text-color);
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    background-color: var(--background-color);
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--background-color);
    color: var(--content-text-color);
}

header {
    background-color: var(--header-background-color);
}

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

.mainContainer {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-attachment: fixed;
    background-color: var(--background-color);
}

.pageContainer {
    max-width: 1280px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/* Accessibility: upstream removed every focus ring with `:focus-visible {
   outline: 0 }`, which leaves keyboard users with no visible position on a store
   that takes payment details. Replaced with a brand ring. */
:focus-visible {
    outline: 3px solid var(--brand-primary-light);
    outline-offset: 2px;
    border-radius: 3px;
}

input:focus-visible,
select:focus-visible {
    outline: 3px solid var(--brand-primary-light);
    outline-offset: 0;
}

.skipToContent {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: 12px 20px;
    background-color: var(--brand-primary);
    color: var(--button-text-color);
    font-weight: 700;
    text-transform: uppercase;
}

.skipToContent:focus {
    left: 0;
}

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

/* ===========================================================================
   PAGE LINKS
   =========================================================================== */

.pageLinksContainer {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.pageLinks {
    display: flex;
    gap: 3px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pageLinksLeft {
    padding-left: 10px;
}

.pageLinksRight {
    margin-left: auto;
    display: flex;
    padding-right: 10px;
}

.pageLinks li {
    display: inline-block;
}

.pageLinks li a {
    display: block;
    background-color: var(--content-tab-background-color);
    color: var(--content-tab-text-color);
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-image: var(--panel-texture);
    transition: background-color var(--transition), color var(--transition);
}

.pageLinks li a:hover {
    color: var(--content-text-color);
}

.pageLinks li a.selectedPageLink {
    color: var(--content-text-color);
    background-color: var(--content-border-color);
    background-image: none;
}

.pageLinks li a i {
    font-size: 15px;
    margin-right: 1px;
}

.pageLinks li a.selectedPageLink i {
    color: var(--content-icon);
}

.pageLinks li a.gobackPageLink {
    background-color: var(--button-background-color);
    color: var(--button-text-color);
}

.pageLinkMobileTitle,
.pageLinksOverlayClose {
    display: none !important;
}

.pageLinksDropdown {
    display: none;
}

a.pageLinksGoBackMobile {
    display: none;
    background-color: var(--button-background-color);
    color: var(--button-text-color);
    padding: 11px 15px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 18px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: 700;
    margin-left: 10px;
}

a.pageLinksGoBackMobile i {
    margin-right: 1px;
}

/* Mobile (add dropdown functionality) */
@media (max-width: 768px) {
    .pageLinksContainer {
        display: flex;
        flex-direction: inherit;
        position: relative;
    }

    .pageLinksDropdown {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--content-border-color);
        color: var(--content-text-color);
        padding: 11px 15px;
        text-transform: uppercase;
        font-size: 16px;
        line-height: 18px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        font-weight: 700;
        text-align: left;
        border: none;
        cursor: pointer;
        width: auto;
        max-width: 100%;
        white-space: nowrap;
        margin-left: 10px;
    }

    .pageLinksDropdown i {
        color: var(--content-icon);
        margin-right: 5px;
        font-size: 16px;
    }

    .pageLinksDropdownProduct {
        margin-right: 10px;
    }

    .pageLinksDropdown .dropdown-arrow {
        margin-left: 10px;
        font-size: 12px;
        color: var(--content-tab-text-color);
    }

    .pageLinkMobileTitle {
        background-color: var(--content-background-color);
        padding: 15px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 28px;
        line-height: 38px;
        letter-spacing: -1px;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .pageLinksOverlayClose {
        cursor: pointer;
        display: block !important;
    }

    a.pageLinksGoBackMobile {
        display: inline-flex;
    }

    .pageLinks {
        display: none; /* Hidden by default */
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        z-index: 3;
        border: 3px solid var(--content-border-color);
        border-radius: 10px;
        width: 100%;
        overflow: hidden;
    }

    .pageLinksOverlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--overlay-background-color);
        z-index: 2;
        backdrop-filter: blur(10px);
    }

    .pageLinks li {
        margin: 0;
    }

    .pageLinks li a {
        font-size: 18px;
        border-radius: 0;
        padding: 15px 30px;
        border-top: 2px solid var(--content-shadow-color);
        border-right: 2px solid var(--content-shadow-color);
        border-left: 2px solid var(--content-shadow-color);
    }

    .pageLinks li:last-child a {
        border-bottom: 2px solid var(--content-shadow-color);
    }

    .pageLinksDropdownMobileHidden {
        display: none !important;
    }

    .pageLinks li a.selectedPageLink {
        background: var(--content-tab-background-color);
        color: var(--content-tab-text-color);
    }

    .pageLinks li a.selectedPageLink i {
        color: var(--content-tab-text-color);
    }
}

.headerMobileMenu {
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 5;
    border: 3px solid var(--content-border-color);
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    max-width: calc(100% - 30px);
    top: 50%;
    transform: translateY(-50%);
}

.headerMobileMenuLinks li a {
    display: block;
    background-color: var(--content-tab-background-color);
    color: var(--content-tab-text-color);
    line-height: 18px;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    border: none;
    border-radius: 0;
    padding: 15px 30px;
    border-top: 2px solid var(--content-shadow-color);
    border-right: 2px solid var(--content-shadow-color);
    border-left: 2px solid var(--content-shadow-color);
    border-bottom: 2px solid var(--content-shadow-color);
}

.headerMobileMenuOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-background-color);
    z-index: 4;
    backdrop-filter: blur(10px);
}

.headerMobileMenuTitle {
    background-color: var(--content-background-color);
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -1px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.headerMobileMenuOverlayClose {
    cursor: pointer;
    display: block !important;
}

/* ===========================================================================
   BUTTONS
   =========================================================================== */

.btn {
    background-color: var(--button-background-color);
    color: var(--button-text-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -1px;
    padding: 10px 15px;
    border-bottom-color: var(--button-shadow-color);
    border-bottom-style: solid;
    border-bottom-width: 5px;
    display: inline-block;
    transition: margin-top var(--transition), border-bottom-width var(--transition),
        filter var(--transition);
    border-radius: var(--border-radius);
    background-image: var(--btn-sheen);
    cursor: pointer;
}

/* Upstream declared a transition on margin-top and border-bottom-width but never
   wrote the rule that changes them, so the button had no press state. This is
   that rule — the button sinks onto its own shadow. */
.btn:active,
.header-button:active:not(:disabled),
.serverSelectionButton:active,
.productSelectionButton:active {
    margin-top: 3px;
    border-bottom-width: 2px;
}

.btn-go-back {
    background-color: var(--button-background-color);
    color: var(--button-text-color);
    border-bottom-color: var(--button-shadow-color);
}

.btn-empty-cart {
    font-size: 14px;
    letter-spacing: 0;
    padding: 4px 10px;
}

.btn-gift {
    background: var(--button-background-color);
    border-color: var(--button);
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.btn:hover {
    background-color: var(--button-background-color);
    filter: brightness(1.12);
}

/* ===========================================================================
   CONNECT BAR (Epic Rust addition)
   ---------------------------------------------------------------------------
   Not in stock Eclipse. A Rust store's single most useful control is the one
   that puts the connect string on the player's clipboard; without it the store
   sells kits for a server the visitor cannot find.
   =========================================================================== */

.connectBar {
    background-color: var(--content-background-color);
    background-image: var(--panel-texture);
    border: 4px solid var(--content-border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--content-shadow-color) 0px 6px 0px;
    padding: 14px 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    margin-bottom: 28px;
}

.connectBarLabel {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.5px;
    color: var(--content-text-alt-color);
}

.connectBarAddress {
    font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
    font-size: 18px;
    line-height: 20px;
    color: var(--content-heading-alt-color);
    background-color: var(--content-lineitem-background);
    border: 2px solid var(--content-lineitem-border);
    border-radius: 6px;
    padding: 8px 12px;
    user-select: all;
    word-break: break-all;
}

.connectBarButton {
    background-color: var(--button-background-color);
    background-image: var(--btn-sheen);
    color: var(--button-text-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.5px;
    padding: 10px 16px;
    border: none;
    border-bottom: 5px solid var(--button-shadow-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: margin-top var(--transition), border-bottom-width var(--transition),
        filter var(--transition);
}

.connectBarButton:hover {
    filter: brightness(1.12);
}

.connectBarButton:active {
    margin-top: 3px;
    border-bottom-width: 2px;
}

.connectBarButton.isCopied {
    background-color: var(--button2-background-color);
    border-bottom-color: var(--button2-shadow-color);
    color: var(--button2-text-color);
}

.connectBarStatus {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    line-height: 15px;
    color: var(--server-selection-battlemetrics-text-color);
}

.connectBarStatus i {
    color: var(--server-selection-battlemetrics-icon-color);
    font-size: 11px;
}

.connectBarFacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.connectBarFact {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.4px;
    color: var(--content-text-alt-color);
    background-color: var(--content-background-color);
    border: 2px solid var(--content-border-color);
    border-radius: 999px;
    padding: 8px 14px;
}

.connectBarFact strong {
    color: var(--content-highlight-small);
    font-weight: 700;
}

/* ===========================================================================
   CART
   =========================================================================== */

#cartPopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-background-color);
    z-index: 2;
    backdrop-filter: blur(10px);
}

#cartPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

.popupTitle {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 25px;
    color: var(--content-heading-alt-color);
}

.popupDescription {
    font-size: 15px;
    color: var(--content-text-alt-color);
}

.popupIcon {
    font-size: 50px;
    color: var(--brand-primary);
    animation: pulse 0.8s infinite;
}

@keyframes pulse {
    0% {
        text-shadow: var(--brand-secondary) 0px 0px 5px;
        color: var(--brand-primary);
    }
    50% {
        text-shadow: var(--brand-secondary) 0px 0px 20px;
        color: var(--brand-primary-light);
    }
    100% {
        text-shadow: var(--brand-secondary) 0px 0px 5px;
        color: var(--brand-primary);
    }
}

.error-msg {
    background: var(--status-error-background);
    color: var(--status-error-text);
    margin: var(--spacing-s);
    margin-top: 0;
    padding: 10px 14px;
    border-radius: var(--border-radius);
}

.success-msg {
    background: var(--status-success-background);
    color: var(--status-success-text);
    margin: var(--spacing-s);
    margin-top: 0;
    padding: 10px 14px;
    border-radius: var(--border-radius);
}

.cartEmptyImage {
    max-width: 220px;
    height: auto;
    opacity: 0.85;
    margin-bottom: 10px;
}

.no-orders-message {
    text-align: center;
    width: 100%;
    padding: 30px 0;
}

.no-orders-message .nothingFound {
    color: var(--content-heading-alt-color);
}

/* ===========================================================================
   HEADER
   =========================================================================== */

.header-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    position: relative;
}

.header-button {
    background-color: var(--button-background-color);
    color: var(--button-text-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -1px;
    padding: 10px 15px;
    display: inline-block;
    border-radius: var(--border-radius);
    border-bottom-color: var(--button-shadow-color);
    border-bottom-style: solid;
    border-bottom-width: 5px;
    background-image: var(--btn-sheen);
    cursor: pointer;
    transition: margin-top var(--transition), border-bottom-width var(--transition),
        filter var(--transition);
}

.header-button:hover:not(:disabled) {
    filter: brightness(1.12);
}

.header-button-large {
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -1px;
    padding: 10px 15px;
}

/* Gift is a neutral secondary action, not a confirmation. Upstream painted it
   the same colour as Checkout, which put two loud "go" buttons side by side and
   diluted the one rule the accent green has: it means confirmation. */
.header-button-gift {
    border-radius: var(--border-radius);
    border-bottom-style: solid;
    border-bottom-width: 5px;
    border-bottom-color: var(--button3-shadow-color);
    background-color: var(--button3-background-color);
    color: var(--button3-text-color);
    background-image: var(--btn-sheen);
}

.header-button-addtocart {
    margin-right: 5px;
    background-color: var(--button3-background-color);
    border-bottom-color: var(--button3-shadow-color);
    color: var(--button3-text-color);
}

.header-button-transparent {
    background-color: transparent;
    border-color: transparent;
    color: var(--header-link-color);
    background-image: none;
}

.header-button-active {
    color: var(--header-link-color-active);
}

.storeName {
    font-size: 42px;
    line-height: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--page-title-text-color);
    margin: 10px 0;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    border-bottom: 5px solid var(--button3-shadow-color);
    font-weight: 700;
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    background-color: var(--button3-background-color);
    color: var(--button3-text-color);
    margin-right: -5px;
}

/* ===========================================================================
   PRODUCT
   =========================================================================== */

.productPriceContainer {
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 10px;
}

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

.productDivider,
.pageDivider {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: var(--content-border-color);
    border-top: 1px solid var(--content-shadow-color);
    height: 2px;
    display: block;
}

.productFloatingBottom {
    display: none;
}

#giftActions {
    background-color: var(--button3-background-color);
    border-bottom: 5px solid var(--button3-shadow-color);
    border-radius: var(--border-radius);
    color: var(--button3-text-color);
    padding: 10px 15px;
}

/* The confirm tick is the one green thing in this panel — it is the action that
   commits. */
#giftActions #purchaseFromGift i {
    font-size: 24px;
    line-height: 27px;
    color: var(--button2-background-color);
}

#giftActions #closeGift i {
    font-size: 24px;
    line-height: 27px;
    color: var(--content-lineitem-alt-highlight-text);
    margin-left: 10px;
}

#giftActions .giftActionInput {
    background-color: var(--content-lineitem-background);
    color: var(--content-text-color);
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 10px;
    border-radius: 25px !important;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid var(--content-lineitem-border);
}

#giftActions .giftActionInput::placeholder {
    color: var(--content-lineitem-alt-highlight-text);
    opacity: 1;
}

.giftActionsTitle {
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--button3-text-color);
    margin-right: 10px;
}

.subscriptionRenewal {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.subscriptionRenewal i {
    font-size: 15px;
    margin-right: 5px;
}

.productPriceContainer .productPrice {
    display: inline-block;
    line-height: 25px;
}

#gameServerDropdown,
.gameServerDropdown {
    width: 100%;
    background-color: transparent;
    color: var(--button3-text-color);
    appearance: none;
    font-size: 28px;
    text-transform: uppercase;
    padding: 3px 40px 3px 10px;
    max-width: 155px;
    border: none;
}

/* The dropdown paints its own popup list with the OS palette; without this the
   options render as dark text on a dark list in several browsers. */
#gameServerDropdown option,
.gameServerDropdown option {
    background-color: var(--content-background-color);
    color: var(--content-text-color);
}

.select-wrapper i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--button3-text-color);
    font-size: 20px;
}

.header-button-subscribe {
    margin-right: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.header-button-single-server {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.header-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===========================================================================
   SELECTION
   =========================================================================== */

.serverSelectionButton,
.productSelectionButton {
    background-color: var(--button-background-color);
    color: var(--button-text-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -1px;
    padding: 10px 15px;
    margin-top: 15px;
    border-bottom-color: var(--button-shadow-color);
    border-bottom-style: solid;
    border-bottom-width: 5px;
    display: inline-block;
    transition: margin-top var(--transition), border-bottom-width var(--transition),
        filter var(--transition);
    border-radius: var(--border-radius);
    background-image: var(--btn-sheen);
}

.serverSelectionButton:hover,
.productSelectionButton:hover {
    color: var(--button-text-color);
    filter: brightness(1.12);
}

/* ===========================================================================
   CONTENT
   =========================================================================== */

.page-heading {
    font-size: 80px;
    line-height: 80px;
    color: var(--page-title-text-color);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: var(--background-color) 0px 0px 20px;
}

.page-title-container {
    animation: 0.5s ease-in 0s 1 fadeIn;
}

.page-subheading {
    font-size: 20px;
    line-height: 24px;
    color: var(--page-subtitle-text-color);
    font-weight: 600;
    text-transform: uppercase;
}

/* ===========================================================================
   CONFIRMATION
   =========================================================================== */

.checkoutThankYouMessage {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.checkoutConfirmationMessage {
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.8px;
    color: var(--content-text-alt-color);
    margin-top: 10px;
}

.serverSelection,
.productSelection {
    position: relative;
    animation: 0.5s ease-out 0s 1 slideInFromBottom;
    padding: 50px 15px;
    background-color: var(--content-background-color);
    transition: border-color 0.4s ease, transform var(--transition);
    border-style: solid;
    border-width: 10px;
    border-color: var(--content-border-color);
    box-shadow: var(--content-shadow-color) 0px 8px 0px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
}

.serverSelection:hover,
.productSelection:hover {
    border-color: var(--brand-primary);
}

.pageSectionContainer {
    animation: 0.5s ease-out 0s 1 slideInFromBottom;
}

.pageSection {
    position: relative;
    padding: 30px 15px;
    background-color: var(--content-background-color);
    transition: border-color 0.4s ease;
    border-style: solid;
    border-width: 10px;
    border-color: var(--content-border-color);
    box-shadow: var(--content-shadow-color) 0px 8px 0px;
    align-items: center;
    display: flex;
    border-radius: 5px;
    margin-bottom: 100px;
}

.pageTitle {
    font-weight: 700;
    font-size: 80px;
    line-height: 70px;
    letter-spacing: -3px;
    color: var(--content-heading-alt-color);
    text-transform: uppercase;
}

.pageSubtitle {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -1px;
    color: var(--content-heading-color);
    text-transform: uppercase;
}

.nothingFound {
    font-weight: 700;
    font-size: 33px;
    line-height: 36px;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.productSection {
    position: relative;
    padding: 30px 15px;
    background-color: var(--content-background-color);
    transition: border-color 0.4s ease;
    border-style: solid;
    border-width: 10px;
    border-color: var(--content-border-color);
    box-shadow: var(--content-shadow-color) 0px 8px 0px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    margin-bottom: 100px;
}

.productPage {
    animation: 0.5s ease-out 0s 1 slideInFromBottom;
}

.productSectionHeading {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -1px;
    color: var(--content-heading-alt-color);
}

.productSectionHeading i {
    font-size: 28px;
    color: var(--content-icon);
}

.productHowToRedeem strong {
    color: var(--content-lineitem-text-strong);
}

.productHowToRedeem th {
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    line-height: 20px;
}

.productHowToRedeem td {
    vertical-align: top;
}

.productHowToRedeem td strong {
    color: var(--content-lineitem-text-strong);
    text-transform: uppercase;
}

.productSectionDescriptionContainer {
    margin-bottom: 30px;
    white-space: pre-line;
}

.productSectionItemsContainer {
    width: 100%;
    min-height: 85px;
    aspect-ratio: 1;
    padding: 10px;
    margin-top: 10px;
    border-radius: 15px;
    border: 3px solid var(--content-lineitem-border);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 2px 10px var(--content-shadow-color);
}

.productSectionItemsDisplay {
    position: relative;
    z-index: 1;
}

.productSectionItemsBackground,
.productSectionFeatureBackground,
.pageSectionFeatureBackground,
.productItemListBackground {
    background-color: var(--content-lineitem-background);
    background-image: var(--panel-texture);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.55;
}

.productSectionFeatureContainer {
    width: 100%;
    min-height: 66px;
    padding: 10px;
    margin-top: 10px;
    border: 3px solid var(--content-lineitem-border);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 2px 10px var(--content-shadow-color);
    margin-bottom: 30px;
}

.productSectionFeatureDisplay {
    position: relative;
    z-index: 1;
}

.pageLineTitles {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.pageSectionFeatureContainer {
    width: 100%;
    min-height: 66px;
    padding: 10px;
    margin-top: 10px;
    border: 3px solid var(--content-lineitem-border);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 2px 10px var(--content-shadow-color);
    margin-bottom: 10px;
}

.pageSectionFeatureDisplay {
    position: relative;
    z-index: 1;
}

.storeCurrency {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: -0.5px;
    background-color: var(--content-text-color);
    color: var(--content-background-color);
    padding: 4px 7px;
    margin-left: 5px;
    position: absolute;
    font-weight: 700;
}

.pageLineItemTitle {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--content-lineitem-text);
    font-size: 24px;
    line-height: 24px;
}

.pageLineItemType,
.pageLineItemSubtitle {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--content-lineitem-text);
    font-size: 16px;
    line-height: 16px;
}

.pageLineItemPrice {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--content-lineitem-highlight-text);
    font-size: 30px;
    line-height: 30px;
}

.pageLineItemPriceAlt {
    color: var(--content-lineitem-text);
}

.pageLineItemCurrency {
    background: transparent;
    color: var(--content-lineitem-text);
    padding: 0;
    margin-left: 2px;
    top: 11px;
    opacity: 0.5;
    text-shadow: none;
}

.pageLineItemStatusActive {
    color: var(--content-highlight-small);
}

.pageLineItemStatusInactive {
    color: var(--content-lineitem-alt-highlight-text);
}

.pageLineItemQuantity {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    color: var(--content-lineitem-text);
}

.pageLineItemInput {
    background-color: transparent;
    max-width: 40px;
}

.pageLineItemInputInline,
.pageLineItemInputPrepend {
    display: inline;
}

.pageLineItemQuantitySelectionDown,
.pageLineItemQuantitySelectionDown:hover {
    color: var(--content-lineitem-alt-highlight-text);
}

.pageLineItemQuantitySelectionUp,
.pageLineItemQuantitySelectionUp:hover {
    color: var(--content-lineitem-highlight-text);
}

.pageLineItemQuantitySelectionDisabled,
.pageLineItemQuantitySelectionDisabled:hover {
    color: var(--content-lineitem-alt-highlight-text);
    opacity: 0.3;
}

.pageLineItemQuantitySelectionDisabled:hover {
    cursor: not-allowed;
}

.newSubscriptionMessageIcon {
    font-size: 35px;
    line-height: 35px;
    color: var(--content-lineitem-highlight-text);
}

.newSubscriptionMessage,
.pageLineItemInterval,
.pageLineItemTransactionID {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--content-lineitem-alt-text);
    font-size: 16px;
    line-height: 16px;
}

.newSubscriptionMessage {
    padding-right: 10px;
}

.subscriptionCanceled {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--content-lineitem-alt-highlight-text);
    font-size: 30px;
    line-height: 30px;
}

.btn-viewSubscription,
.btn-checkout {
    background-color: var(--button2-background-color);
    color: var(--button2-text-color);
    border-bottom-color: var(--button2-shadow-color);
    background-image: var(--btn-sheen);
}

.btn-checkout {
    width: 100%;
    text-align: center;
    padding: 17px 11px;
}

.btn-cancelSubscription {
    background-color: var(--button3-background-color);
    color: var(--button3-text-color);
    border-bottom-color: var(--button3-shadow-color);
    font-size: 18px;
    line-height: 18px;
    padding: 8px 14px;
}

.icon-checkout {
    color: var(--button2-background-color) !important;
}

.paymentOptions {
    text-align: center;
    margin-top: 10px;
    font-size: 25px;
    color: var(--content-text-alt-color);
}

.paymentOptions li {
    display: inline;
    margin: 0 3px;
}

.btn-viewSubscription:hover,
.btn-checkout:hover {
    background-color: var(--button2-background-color);
}

.btn-viewTrash {
    font-size: 18px;
    line-height: 18px;
}

.pageLineItemDescription {
    color: var(--content-lineitem-alt-text);
    font-size: 14px;
    line-height: 17px;
}

.productFeaturesArrow {
    color: var(--content-lineitem-highlight-text);
    font-size: 18px;
    margin-left: 10px;
}

.productDetails {
    background-color: var(--content-lineitem-background);
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--content-lineitem-alt-text);
    border: 1px solid var(--content-lineitem-border);
}

/* Upstream: `border-top:1px solid --content-lineitem-border` — the var() wrapper
   was missing, so the whole declaration was dropped and the divider never drew. */
.productFeatureCommandBordered {
    border-top: 1px solid var(--content-lineitem-border);
    padding-top: 5px;
    margin-top: 5px;
}

.productFeatureCommand {
    font-size: 14px;
    color: var(--content-lineitem-text);
    width: 100%;
}

.productFeatureCommandTitle {
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    100% {
        transform: translateY(100%);
        opacity: 1;
    }
}

.serverPopulation {
    position: absolute;
    right: 5px;
    top: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    color: var(--server-selection-battlemetrics-text-color);
}

.serverPopulation i {
    font-size: 12px;
    color: var(--server-selection-battlemetrics-icon-color);
}

.serverLocation {
    position: absolute;
    left: 5px;
    top: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 40px;
    border-radius: 100%;
    overflow: hidden;
    line-height: 40px;
    color: var(--server-selection-battlemetrics-text-color);
    border-color: var(--content-border-color);
    border-style: solid;
    border-width: 5px;
}

.serverLocation i {
    font-size: 12px;
    color: var(--server-selection-battlemetrics-icon-color);
}

.serverSubtitle {
    font-weight: 700;
    font-size: 60px;
    line-height: 55px;
    letter-spacing: -3px;
    color: var(--content-heading-color);
    text-transform: uppercase;
}

.serverDescription {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -1px;
    color: var(--content-heading-alt-color);
    text-transform: uppercase;
    margin-top: 5px;
}

.serverTitle,
.productTitle {
    font-weight: 700;
    font-size: 70px;
    line-height: 65px;
    letter-spacing: -4px;
    color: var(--content-heading-alt-color);
    text-transform: uppercase;
}

.productSubtitle {
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -3px;
    color: var(--content-heading-color);
    text-transform: uppercase;
}

.productDescription {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -1px;
    color: var(--content-heading-alt-color);
    text-transform: uppercase;
    margin-top: 5px;
}

.productTag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--button-background-color);
    color: var(--button-text-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    padding: 10px 10px 10px 5px;
    border-bottom-right-radius: 10px;
    border-bottom: solid 2px var(--button-shadow-color);
    border-right: solid 2px var(--button-shadow-color);
    background-image: var(--btn-sheen);
}

.productPageTagContainer {
    width: 100%;
    margin-top: 5px;
}

.productPageTag {
    color: var(--content-highlight-small);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
}

.productTagPopular {
    background-color: var(--tag-background-color-mostpopular);
    color: var(--tag-text-color-mostpopular);
    border-color: var(--tag-shadow-color-mostpopular);
}

.productTagNew {
    background-color: var(--tag-background-color-new);
    color: var(--tag-text-color-new);
    border-color: var(--tag-shadow-color-new);
}

.productTagSale {
    background-color: var(--tag-background-color-sale);
    color: var(--tag-text-color-sale);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom: solid 2px var(--tag-shadow-color-sale);
    border-left: solid 2px var(--tag-shadow-color-sale);
    border-right: 0;
    top: 0;
    left: inherit;
    right: 0;
    padding: 10px;
}

.productItemListContainer {
    width: 100%;
    min-height: 66px;
    padding: 10px;
    margin-top: 10px;
    border: 3px solid var(--content-lineitem-border);
    text-align: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 2px 10px var(--content-shadow-color);
}

.productHowToRedeemContainer,
.cartCheckoutLineContainer {
    border: 3px solid var(--content-lineitem-border);
    width: 100%;
    min-height: 66px;
    color: var(--content-lineitem-text);
    margin-top: 10px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 2px 10px var(--content-shadow-color);
    margin-bottom: 15px;
}

.productItemDisplay {
    position: relative;
    z-index: 1;
}

.productItemAmount {
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--content-lineitem-text);
    text-transform: uppercase;
}

.productPrice {
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -2px;
    color: var(--content-price-color);
    position: relative;
}

.productPriceDiscounted {
    color: var(--content-price-alt-color);
    margin-right: 10px;
    position: relative;
}

.productPriceDiscountedCross {
    position: absolute;
    top: calc(50% - 5px);
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--content-price-color);
}

.productRecurringPeriod {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 19px;
    line-height: 19px;
    letter-spacing: 1px;
    color: var(--content-text-alt-color);
}

.productFeatureName {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--content-lineitem-text);
    font-size: 16px;
    line-height: 16px;
}

.productFeatureDescription {
    color: var(--content-lineitem-alt-text);
    font-size: 14px;
    line-height: 17px;
}

.productFeatureImage {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
    border: 3px solid var(--content-lineitem-border);
}

/* ===========================================================================
   TOP BAR / FOOTER
   =========================================================================== */

.topbar-account {
    background-color: var(--topbar-background-color);
    color: var(--topbar-text-color);
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 24px;
    font-size: 16px;
    border-bottom: 2px solid var(--topbar-border-color);
    text-transform: uppercase;
    font-weight: 700;
}

.topbar-account a {
    color: var(--topbar-link-color);
}

.topbar-account a i {
    color: var(--topbar-link-icon-color);
}

.topbar-account a:hover i {
    color: var(--topbar-link-icon-hover-color);
}

.topbar-account a:hover {
    color: var(--topbar-link-hover-color);
}

.header-alt-button {
    color: var(--header-button-alt-text-color);
}

.header-button-cart {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* The count reads as the darker half of the cart control, not as a second
   button. Upstream made it accent green, so a red Cart button sat directly
   against a bright green chip. */
span.cart-number {
    background-color: var(--button-shadow-color);
    color: var(--button-text-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -1px;
    padding: 10px 15px;
    display: inline-block;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    border-bottom-color: var(--button-shadow-color);
    border-bottom-style: solid;
    border-bottom-width: 5px;
    border-left: 1px solid var(--button-shadow-color);
    background-image: var(--btn-sheen);
}

footer {
    background-color: var(--footer-background-color);
    padding: 15px 0px 60px 0px;
    color: var(--footer-text-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-links a {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    color: var(--footer-link-color);
}

a.social-media-item {
    font-size: 20px;
}

.footer-links a i {
    color: var(--footer-link-icon-color);
}

.footer-links a:hover i {
    color: var(--footer-link-icon-hover-color);
}

.disclaimer-information {
    font-size: 1rem;
    line-height: 1.3rem;
    letter-spacing: 0.05rem;
    color: var(--footer-disclaimer-text-color);
}

.disclaimer-information i {
    color: var(--footer-disclaimer-icon-color);
}

.disclaimerTitle {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.02rem;
}

/* PayNow's own merchant-of-record bar. Upstream painted it in the Eclipse purple
   regardless of the store's palette; toned to the brand's deep surface so it
   reads as part of the page rather than a stripe from another site. */
#paynowBottomContainer {
    border-top: solid var(--brand-surface-light) 1px;
    background: var(--brand-navy-deep);
    width: 100%;
    position: absolute;
    padding-bottom: 15px;
}

.paynow-disclaimer {
    font-size: 0.8rem;
    line-height: 1rem;
    letter-spacing: 0.02rem;
    color: var(--brand-text-muted);
    text-align: left;
}

.paynow-logo {
    max-width: 100px;
    fill: var(--brand-text-bright);
    min-height: 50px;
}

.footer-links a:hover {
    color: var(--footer-link-hover-color);
}

.bottombar {
    background-color: var(--footer-bottombar-background-color);
    color: var(--topbar-text-color);
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 2px solid var(--footer-bottombar-border-color);
    text-transform: uppercase;
    font-weight: 700;
}

.footer-copyright span {
    font-size: 1rem;
    line-height: 1rem;
    letter-spacing: 0.03rem;
    color: var(--footer-copyright-text-color);
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.footerLogo {
    max-height: 46px;
    width: auto;
    opacity: 0.9;
}

.product-page,
.product-description {
    background: var(--panel-body);
    box-shadow: var(--shadow);
    border: var(--border);
    border-radius: var(--border-radius);
}

.currenciesList {
    position: absolute;
    left: 5px;
    top: 35px;
    background-color: var(--topbar-border-color);
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    min-width: 100px;
    box-shadow: 0px 3px 3px var(--brand-navy-deep);
    z-index: 1;
}

.currenciesList i {
    color: var(--topbar-link-color) !important;
    opacity: 0.2;
}

.currenciesList .active,
.currencySelectionOpen {
    color: var(--topbar-link-hover-color) !important;
}

.currenciesList .active i,
.currencySelectionOpen i {
    color: var(--topbar-link-icon-hover-color) !important;
    opacity: 1;
}

/* ===========================================================================
   MODULES (text box, payment goal)
   ---------------------------------------------------------------------------
   Upstream shipped module markup with no matching CSS at all — .card, .module,
   .module-header, .payment-goal and friends were unstyled, so an enabled module
   rendered as loose unformatted text in the footer.
   =========================================================================== */

.card.module {
    background-color: var(--content-background-color);
    background-image: var(--panel-texture);
    border: 4px solid var(--content-border-color);
    border-radius: 10px;
    box-shadow: var(--content-shadow-color) 0px 5px 0px;
    padding: 16px 18px;
    margin-bottom: 16px;
    width: 100%;
    max-width: 520px;
    position: relative;
    overflow: hidden;
}

.module-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.module-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: -0.5px;
    color: var(--content-heading-alt-color);
    margin: 0;
}

.module-body {
    color: var(--content-text-color);
    font-size: 15px;
    line-height: 1.5;
}

.module-body a {
    color: var(--content-lineitem-highlight-text);
    text-decoration: underline;
}

.goal-current {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -1px;
    color: var(--content-lineitem-highlight-text);
    margin-bottom: 8px;
}

.payment-goal {
    width: 100%;
    height: 14px;
    background-color: var(--content-lineitem-background);
    border: 2px solid var(--content-lineitem-border);
    border-radius: 999px;
    overflow: hidden;
}

.payment-goal .progress-bar {
    height: 100%;
    background-color: var(--button-background-color);
    transition: width 0.6s ease-out;
}

.payment-goal-data {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    color: var(--content-text-alt-color);
}

.payment-goal-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-percentage,
.goal-complete {
    color: var(--content-highlight-small);
}

/* The recent-purchases toast draws its own progress bar; keep it off the
   payment-goal rules above. */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: var(--content-shadow-color);
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.progress-bar-container .progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--button-background-color);
}

/* ===========================================================================
   FORMS (sign-in / username capture)
   =========================================================================== */

.add-btn,
button.add-btn,
.add-gift-btn,
.close-gift {
    background-color: var(--button-background-color);
    background-image: var(--btn-sheen);
    color: var(--button-text-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    padding: 10px 18px;
    border: none;
    border-bottom: 5px solid var(--button-shadow-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: filter var(--transition);
}

.add-gift-btn,
.close-gift {
    background-color: transparent;
    background-image: none;
    border-bottom: none;
    padding: 0 4px;
}

.add-btn:hover {
    filter: brightness(1.12);
}

input[type="text"],
input[type="email"],
input[type="number"] {
    background-color: var(--input);
    color: var(--content-text-color);
    border: 2px solid var(--content-border-color);
    border-radius: var(--border-radius);
}

input::placeholder {
    color: var(--content-lineitem-alt-highlight-text);
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */

@media (min-width: 1536px) {
    .container {
        max-width: 1280px !important;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 100% !important;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .pageTitle {
        font-size: 48px;
        line-height: 48px;
    }

    .pageSubtitle {
        font-size: 18px;
        line-height: 18px;
    }

    .pageDivider {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .pageLineTitles {
        font-size: 16px;
        line-height: 16px;
    }

    .pageSection {
        padding: 0;
    }

    .page-heading {
        font-size: 60px;
        line-height: 55px;
        letter-spacing: -2px;
    }

    .page-subheading {
        font-size: 16px;
        line-height: 20px;
    }

    .newSubscriptionMessageIcon {
        font-size: 22px;
    }

    .subscriptionCanceled {
        display: none;
    }

    .btn {
        font-size: 22px;
        line-height: 22px;
    }

    .btn-empty-cart {
        font-size: 13px;
        line-height: 23px;
    }

    .btn-viewTrash {
        font-size: 13px;
        line-height: 23px;
        letter-spacing: 0;
        padding: 5px 10px;
    }

    .disclaimer-information {
        text-align: center;
    }

    .pageLineItemCurrency {
        position: relative;
        top: 0;
    }

    .productSectionHeading {
        font-size: 28px;
        line-height: 28px;
        letter-spacing: -1.5px;
    }

    .productSectionHeading i {
        font-size: 23px;
    }

    .btn-checkout {
        font-size: 28px;
        line-height: 28px;
    }

    .footer-links a {
        font-size: 14px;
    }

    a.social-media-item {
        font-size: 20px;
    }

    .footer-copyright span {
        font-size: 12px;
    }

    .header-button-large {
        width: 100%;
        margin-bottom: 5px;
    }

    #mainActions,
    #giftActions {
        width: 100%;
        justify-content: center;
    }

    .productDescription {
        font-size: 18px;
        line-height: 20px;
    }

    .giftActionsTitle {
        display: none;
    }

    .connectBar {
        flex-direction: column;
        gap: 10px;
    }

    .connectBarAddress {
        font-size: 16px;
    }

    .productFloatingBottomGiftLink {
        display: block;
        text-transform: uppercase;
        font-weight: 700;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .productFloatingBottomGiftLink i {
        color: var(--button2-background-color);
    }

    .productFloatingBottom {
        display: block;
        position: fixed;
        bottom: -100px;
        transition: transform 0.3s ease-in-out, bottom 0.3s ease-in-out;
        transform: translateY(100%);
        width: 100%;
        z-index: 2;
        left: 0;
        padding: 15px;
        background-color: var(--content-background-color);
        border-top: 5px solid var(--content-border-color);
        box-shadow: 0px 0px 30px var(--brand-navy-deep);
    }

    .productFloatingBottom.visible {
        transform: translateY(0);
        bottom: 0;
    }
}

@media (max-width: 639px) {
    .currenciesList {
        left: 50%;
        transform: translateX(-50%);
        top: 67px;
        min-width: calc(100% - 30px);
    }
}
