html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    position: relative;
    height: 100%;

    @media only screen and (max-width: 768px) {
        padding-left: 15px;
        padding-right: 15px;
    }
}

html {
    font: 15px / 1.4 sans-serif;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    font-family: 'Roboto Flex', sans-serif;
    color: var(--text-color);
}

header.site-header {
    background: var(--header-bg);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.body {
    background-color: var(--bg-color);
    background-image:
        linear-gradient(180deg, rgba(6, 6, 8, 0.88) 0%, rgba(6, 6, 8, 0.97) 45%, rgba(6, 6, 8, 1) 100%),
        radial-gradient(ellipse 120% 70% at 50% -10%, color-mix(in srgb, var(--main-color) 14%, transparent), transparent 55%),
        url("https://cdn.paynow.gg/images/templates/gord/bg-blur.png");
    background-size: auto, auto, cover;
    background-position: center, center, center;
    background-attachment: scroll, scroll, fixed;
    background-repeat: no-repeat;
}

@supports not (background: color-mix(in srgb, red, blue)) {
    .body {
        background-image:
            linear-gradient(180deg, rgba(6, 6, 8, 0.88) 0%, rgba(6, 6, 8, 0.97) 45%, rgba(6, 6, 8, 1) 100%),
            url("https://cdn.paynow.gg/images/templates/gord/bg-blur.png");
        background-size: auto, cover;
    }
}

.index-section h1 {
    font-family: Rajdhani;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    color: #F4F4F5;
}

.social-media {
    flex-shrink: 0;
}

.header-account {
    flex-shrink: 0;
}

.social-media li a i {
    font-size: 20px;
    color: #fff;
}

.social-media li a i {
    padding: 10px 8px;
    background: var(--first-color);
    border-radius: var(--radius-sm);
    width: 40px;
    height: 40px;
    text-align: center;
    transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.social-media li a:hover i {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.social-media li a.twitch i {
    background: #9147FF;
}

.social-media-item.discord i {
    background: #5865F2;
}

.social-media-item.youtube i {
    background: #DC2626;
}

.social-media-item.twitter i {
    background: black;
}

.social-media-item.instagram i {
    background: #ff00a5;
}

.social-media-item.facebook i {
    background: #3146dd;
}

.topbar {
    background: rgba(20, 20, 24, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: var(--spacing-s);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-nav {
    position: relative;
}

.site-nav::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--main-color) 55%, transparent), transparent);
    opacity: 0.85;
    pointer-events: none;
}

li.nav-item a {
    font-family: 'Rajdhani';
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xs);
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

li.nav-item a:hover {
    color: var(--hover-color);
}

li.nav-item.active a {
    color: #fafafa;
    background: color-mix(in srgb, var(--main-color) 22%, rgba(255, 255, 255, 0.04));
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--main-color) 45%, transparent), 0 8px 28px rgba(0, 0, 0, 0.25);
}

@supports not (color: color-mix(in srgb, red, blue)) {
    li.nav-item.active a {
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 0 0 1px var(--main-color);
    }
}

li.nav-item.active a .nav-icon i {
    opacity: 1;
    color: var(--main-color);
}

li.nav-item a i {
    opacity: 0.4;
}

.module {
    background: linear-gradient(165deg, rgba(30, 30, 36, 0.95) 0%, rgba(18, 18, 22, 0.98) 100%);
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: var(--shadow), var(--shadow-glow);
    overflow: visible;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.module:hover {
    border-color: color-mix(in srgb, var(--main-color) 28%, var(--border-color));
}

.home-content,
.home-panel {
    background: linear-gradient(165deg, rgba(30, 30, 36, 0.95) 0%, rgba(18, 18, 22, 0.98) 100%);
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: var(--shadow), var(--shadow-glow);
    overflow: visible;
    position: relative;
}

.home-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
    opacity: 0.75;
    pointer-events: none;
}

.module-body {
    padding: var(--spacing-s);
}

h2.module-title {
    font-family: Rajdhani, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
    color: #F4F4F5;
    position: relative;
    margin: 0;
    padding: var(--spacing-s) var(--spacing-s) 0.35rem;
    z-index: 2;
}

.module-header {
    position: relative;
    z-index: 2;
}

.index-section {
    background: linear-gradient(165deg, rgba(30, 30, 36, 0.95) 0%, rgba(18, 18, 22, 0.98) 100%);
    border-radius: var(--border-radius);
    border: var(--border);
    box-shadow: var(--shadow), var(--shadow-glow);
    overflow: visible;
    position: relative;
}

.index-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
    opacity: 0.65;
    pointer-events: none;
}

.home-panel-body {
    position: relative;
    z-index: 1;
}

.index-section>h1,
.index-section-heading {
    text-align: left;
    position: relative;
    margin: 0;
    padding: var(--spacing-s) var(--spacing-m) 0.35rem;
    z-index: 2;
}

.index-section-body {
    padding: var(--spacing-m) var(--spacing-s);
}

.index-section-body p {
    margin-bottom: var(--spacing-s);
}

.index-section-body a {
    padding: var(--spacing-xs) var(--spacing-s);
    background: var(--button);
    color: #fff;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-align: left;
    font-family: 'Rajdhani';
    text-transform: uppercase;
}

.home-content-sec {
    padding: var(--spacing-m) var(--spacing-s);
}

h1.home-content-tit {
    font-family: Rajdhani, sans-serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.05;
    text-align: left;
    color: #fafafa;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

.site-wordmark {
    text-shadow: 0 0 48px color-mix(in srgb, var(--main-color) 25%, transparent);
}

.progress-bar {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    height: 12px;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 0;
    }
}

@keyframes pulseOpacity {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

input {
    background: var(--input);
    border-color: var(--border-color) !important;
    border-radius: var(--border-radius) !important;
}

:focus-visible {
    outline: 0;
}

input:focus-visible {
    outline-offset: 0px;
}

.payment-goal {
    background: var(--first-color);
    border-radius: 50px;
    width: 100%;
    height: 12px;
    overflow: hidden;
}

.goal-current {
    font-family: Roboto Flex;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: var(--spacing-s);
}

.payment-goal-display {
    display: flex;
    justify-content: space-between;
}

.payment-goal-data {
    text-align: center;
    text-align: -webkit-center;
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: var(--text-color);
}

.payment-max {
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: var(--text-color);
}

.btn-gift {
    background: var(--button);
    border-color: var(--button);
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    transition: var(--transition);
}

.btn {
    font-weight: 700;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, color-mix(in srgb, var(--button) 108%, #fff) 0%, var(--button) 100%);
    border: 1px solid color-mix(in srgb, var(--button) 70%, #000);
    border-color: var(--button);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2), 0 8px 24px color-mix(in srgb, var(--button) 28%, transparent);
}

@supports not (color: color-mix(in srgb, red, blue)) {
    .btn {
        background: var(--button);
    }
}

.error-msg {
    background: #d75252;
    margin: var(--spacing-s);
    border-radius: var(--border-radius);
    color: #fff;
    font-family: 'Rajdhani';
    margin-top: 0;
}

.success-msg {
    background: #52d787;
    margin: var(--spacing-s);
    border-radius: var(--border-radius);
    color: #fff;
    font-family: 'Rajdhani';
    margin-top: 0;
}

.header-item svg {
    height: 24px;
}

.header-item {
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xs);
    background: rgba(31, 31, 35, 0.9);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(63, 63, 70, 0.45);
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.header-item:hover {
    border-color: color-mix(in srgb, var(--main-color) 40%, rgba(63, 63, 70, 0.45));
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--main-color) 20%, transparent);
}

.header-item:first-child {
    padding: 0;
}

span.cart-number {
    position: absolute;
    top: -11px;
    right: -11px;
    height: 22px;
    width: 22px;
    background: var(--main-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto Flex;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #fff;
}

.category-package {
    background: linear-gradient(165deg, rgba(30, 30, 36, 0.96) 0%, rgba(16, 16, 20, 0.99) 100%);
    border: var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-package:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow), 0 0 0 1px color-mix(in srgb, var(--main-color) 22%, transparent), 0 20px 50px rgba(0, 0, 0, 0.45);
    border-color: color-mix(in srgb, var(--main-color) 25%, var(--border-color));
}

span.category-package-name {
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    color: #fff;
}

.category-package-details {
    padding: var(--spacing-s);
}

.package-bott {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    padding: var(--spacing-s) var(--spacing-xs);
    border-top: var(--border);
    position: relative;
    overflow: hidden;
    background: var(--second-color);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.category-package-price-list {
    font-family: Roboto Flex;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    color: #fff;
}

.category-package-buttons {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: var(--spacing-xs);
}

.btn-svg span {
    color: #FAFAFA;
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
}

.btn-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.category-package-buttons a {
    border-radius: var(--radius-sm);
    height: 35px;
}

.category-package-price-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
}

.btn-modal svg {
    height: 36px;
}

.btn-modal {
    width: 40px;
    padding: 0;
    height: 35px;
}

.category-page {
    text-align: center;
    text-align: -webkit-center;
}

h2.category-title {
    font-family: Rajdhani, sans-serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    color: #F4F4F5;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.category-description {
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: var(--text-color);
}

span.category-package-price-disc {
    color: #d96969;
    font-size: 12px;
    text-decoration: line-through;
}




.footer-copyright {
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

footer.site-footer {
    background: var(--footer-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-links a {
    font-family: Rajdhani, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    color: #a1a1aa;
    letter-spacing: 0.06em;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--main-color);
}

a:hover {
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.footer-copyright span {
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #71717A;
    text-transform: uppercase;
}

.product-page,
.product-description {
    background: var(--panel-body);
    box-shadow: var(--shadow);
    border: var(--border);
    border-radius: var(--border-radius);
}

@media (min-width: 1536px) {
    .container {
        max-width: 1280px !important;
    }
}

.product-page-image {
    padding: var(--spacing-s);
    background: #27272A40;
}

img.product-img {
    max-height: 15rem;
    width: auto;
}

.product-page-details {
    padding: var(--spacing-m) var(--spacing-s);
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name {
    font-family: Rajdhani;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    color: #fff;
}

.product-price {
    font-family: Rajdhani;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: #F4F4F5;
}

.product-details-top span {
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: var(--text-color);
}

.small-title span {
    font-family: Rajdhani;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
}

.small-title svg path {
    fill: var(--main-color);
}

.small-title {
    display: flex;
    align-items: center;
}

span.product-det-border {
    width: 100%;
    background: #27272A;
    height: 2px;
    margin-left: var(--spacing-xs);
}

.product-description {
    padding: var(--spacing-m);
}

button.add-btn {
    background: var(--button);
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

button#giftButton {
    background: #3374ed;
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

button#purchaseFromGift {
    background: var(--button);
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

button#closeGift {
    background: #e36060;
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

span.cart-page-title {
    font-family: Rajdhani;
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    text-align: left;
    color: #F4F4F5;
    text-transform: uppercase;
}

.nr-item {
    font-family: Rajdhani;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    align-self: center;
    color: #F4F4F5;
}

hr {
    border-color: #27272A;
}

table {
    max-width: 100%;
    background-color: transparent;
    width: 100%;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    padding: 15px 8px;
    line-height: 1.42857143;
    vertical-align: top;
    text-align: left;
    align-content: center;
}

table tbody td {
    vertical-align: middle;
}

table>thead>tr>th {
    vertical-align: bottom;
}

table tbody .image {
    width: 10%;
    text-align: center;
    align-content: center;
}

table tbody .name {
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-left: var(--spacing-xs);
}

table tbody .options {
    width: 25%;
    text-align: center;
}

table tbody .price {
    width: 15%;
    text-align: center;
}

table tbody .quantity {
    width: 5%;
    text-align: center;
}

table tbody .total {
    width: 15%;
    text-align: center;
}

table tbody .close {
    width: 5%;
    text-align: center;
}

table input {
    width: 40px;
    text-align: center;
}

tbody tr {
    background: var(--panel-body);
    border-top: var(--spacing-xs) solid #1b1b1b;
}

tbody tr:first-child {
    border: none;
}

.table>thead>tr>th {
    text-transform: uppercase;
    font-family: Rajdhani;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-align: left;
    color: #fff;
}

td.image {
    background: var(--second-color);
    padding: var(--spacing-xs) !important;
}

td.image .product-img {
    height: 65px;
    width: auto;
}

td.name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: center;
    gap: var(--spacing-xs);
}

span.product-name {
    font-family: Rajdhani;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.name-sec {
    font-family: Roboto Flex;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #A1A1AA;
}

td.price span {
    font-family: Rajdhani;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #A1A1AA;
}

td.total span {
    font-family: Rajdhani;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #fff;
}

td.close {
    align-content: center;
}

table tbody .close a i {
    font-size: 20px;
    font-weight: 600;
}

.remove-btn {
    background: #E11D48;
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #ffffff3d;
}

a.add-btn {
    background: var(--button);
    padding: var(--spacing-xs) var(--spacing-s);
    border: var(--border);
    font-family: Rajdhani;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #FFFFFF66;
    width: 100%;
}

.subtotal span {
    font-family: Rajdhani;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #A1A1AA;
    text-transform: uppercase;
}

.subtotal p {
    font-family: Rajdhani;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: right;
    color: #fff;
}

::selection {
    background: color-mix(in srgb, var(--main-color) 40%, #27272a);
    color: #fafafa;
}

/* --- Store design system (game server storefront) --- */

.site-logo-tagline {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #71717a;
    margin: 0.35rem 0 0;
    text-align: center;
    max-width: 28rem;
}

.store-trust-strip span {
    color: #a1a1aa;
}

.store-trust-strip span strong {
    color: #e4e4e7;
}

.store-page-header {
    margin-bottom: var(--spacing-m);
}

.store-section-title {
    font-family: Rajdhani, sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fafafa;
    margin: 0;
}

.store-page-lead {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.store-card,
.store-product-shell {
    background: linear-gradient(165deg, rgba(30, 30, 36, 0.96) 0%, rgba(16, 16, 20, 0.99) 100%);
    border: var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: visible;
}

.store-card::before,
.store-product-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
    opacity: 0.65;
    pointer-events: none;
}

.store-account-card {
    background: linear-gradient(165deg, rgba(30, 30, 36, 0.96) 0%, rgba(16, 16, 20, 0.99) 100%);
    border: var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: var(--spacing-m);
    align-items: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.store-account-card:hover {
    border-color: color-mix(in srgb, var(--main-color) 22%, var(--border-color));
}

.store-btn-danger {
    background: rgba(225, 29, 72, 0.15);
    color: #fda4af;
    border: 1px solid rgba(225, 29, 72, 0.45);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.store-btn-danger:hover {
    background: rgba(225, 29, 72, 0.28);
    color: #fff;
}

.store-badge-sale {
    display: inline-block;
    font-family: Rajdhani, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: color-mix(in srgb, var(--main-color) 25%, #27272a);
    color: #fafafa;
    border: 1px solid color-mix(in srgb, var(--main-color) 50%, transparent);
}

.store-empty-state {
    border-radius: var(--border-radius);
}

.cart-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 1rem;
    border-radius: var(--border-radius);
    border: var(--border);
    background: rgba(20, 20, 24, 0.5);
}

.cart-table-wrap table.cart-table {
    margin-top: 0;
    min-width: 640px;
}

.cart-table-wrap thead tr {
    background: var(--second-color);
}

.cart-table-wrap thead th {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.site-nav ul {
    scrollbar-width: thin;
    scrollbar-color: var(--first-color) transparent;
}

.site-nav ul::-webkit-scrollbar {
    height: 6px;
}

.site-nav ul::-webkit-scrollbar-thumb {
    background: var(--first-color);
    border-radius: 6px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.header-item:focus-visible,
li.nav-item a:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--main-color) 80%, #fff);
    outline-offset: 2px;
}

@media (max-width: 1023px) {
    .category-package:hover {
        transform: none;
    }
}

.store-product-shell .product-page,
.store-product-shell .product-description {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.category-package-img {
    position: relative;
}

.store-module.module,
.store-module.card.module {
    transition: border-color var(--transition), box-shadow var(--transition);
}

.store-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e4e4e7;
    border: 1px solid rgba(63, 63, 70, 0.85);
    border-radius: var(--radius-sm);
    background: rgba(24, 24, 27, 0.6);
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.store-btn-ghost:hover {
    background: rgba(39, 39, 42, 0.9);
    border-color: color-mix(in srgb, var(--main-color) 35%, var(--border-color));
    color: #fff;
}