/* =========================================================
   MAIN
   ========================================================= */
.main-content {
    flex: 1;
    padding-top: 100px !important;
}

@media (max-width: 991px) {
    .main-content {
        padding-top: 60px !important;
    }
}

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

/* =========================================================
   CUSTOM SCROLLBAR
========================================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.35);
}

::-webkit-scrollbar-thumb {
    background: rgba(79, 124, 0, 0.9);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 124, 0, 1);
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(79, 124, 0, 0.7) rgba(0, 0, 0, 0.35);
}

/* =========================================================
   HEADER
   ========================================================= */
.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
}

@media (max-width: 991px) {

    .header-container {
        min-height: 48px;
        padding: 2px 0;

        text-align: center;
    }

    .navbar-right {
        display: flex;
        align-items: center;
        justify-content: space-evenly;

        width: 100%;
    }

    .navbar-right > * {
        flex: 1 1 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

.navbar-left {
    flex-shrink: 0;
}

.navbar-logo {
    margin-right: 14px;
}

.navbar-logo .logo {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.navbar-pages {
    margin: 0;
    padding: 0;
    gap: 4px;
}

.navbar-spacer {
    flex: 1 1 auto;
}

.navbar-right {
    flex-shrink: 0;
}

.navigation {
    margin-left: 12px;
    flex-shrink: 0;
}
.navbar-pages {
    margin: 0;
    padding: 0;
    gap: 4px;
}

.header-background {
    background: rgba(8, 11, 8, 0.94) !important;
    border-bottom: 1px solid rgba(79, 124, 0, 0.22);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   PAGES
   ========================================================= */
.xk-pages {
    gap: 4px;
}

.xk-page-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 0.6rem 0.8rem;

    color: rgba(255, 255, 255, 0.88);

    background: transparent;
    border: 0;
    border-radius: 0;

    font-size: clamp(1rem, 0.85vw + 0.1rem, 1.15rem);
    font-weight: 600;
    line-height: 1;

    text-decoration: none;

    transition: color 200ms ease;
}

.xk-page-link:hover {
    color: #4F7C00;

    background: transparent;

    text-decoration: none;
}

.xk-page-link--active {
    color: #4F7C00;

    font-weight: 600;
}

.xk-page-link--active::after {
    content: "";

    position: absolute;

    left: 0.8rem;
    right: 0.8rem;
    bottom: -1px;

    height: 2px;

    background: #4F7C00;

    border-radius: 2px;
}

.xk-page-link--docs {
    gap: 0.35rem;
}

.xk-page-link--docs i {
    font-size: 0.8rem;
}

/* =========================================================
   SOCIAL LINKS
   ========================================================= */
.navbar-social-links {
    display: flex;
    align-items: center;

    gap: 4px;
}

/* Social icon */
.navbar-social-link {
    width: 30px;
    height: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: clamp(1rem, 0.85vw + 0.1rem, 1.15rem);

    border-radius: 5px;

    text-decoration: none !important;

    transition:
        color 200ms ease,
        background-color 200ms ease,
        filter 200ms ease;
}

/* Hover */
.navbar-social-link:hover {
    color: #4F7C00;

    filter: drop-shadow(0 0 5px rgba(79, 124, 0, 0.35));

    text-decoration: none;
}

/* =========================================================
   LINKS DIVIDER
   ========================================================= */
.navbar-divider {
    width: 1px;
    height: 24px;

    margin-left: 8px;
    margin-right: 16px;

    background-color: rgba(79, 124, 0, 0.25);
}

/* =========================================================
   BACKGROUND
   ========================================================= */
.body-mask {
    background-color: #000000;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0.7;
}

/* =========================================================
   XAKRA - NAVBAR ACTIONS CONTAINER
   ========================================================= */
.xk-navbar-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-left: 0;
    margin-right: 0;
}

/* Desktop */
@media (min-width: 992px) {
    .xk-navbar-actions {
        justify-content: flex-end;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .xk-navbar-actions {
        width: 100%;

        justify-content: center;

        gap: 40px;
    }
}

/* =========================================================
   XAKRA - NAVBAR ACTIONS
   Cart / Currency / Account
   ========================================================= */
.xk-nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.35rem 0.4rem;

    background: transparent;
    border: none;

    color: rgba(255, 255, 255, 0.88);

    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 0.85vw + 0.1rem, 1.15rem);
    font-weight: 600;
    line-height: 1.5;

    text-decoration: none !important;

    cursor: pointer;

    box-shadow: none;
    transform: none;

    transition: color 200ms ease;
}

/* Hover */
.xk-nav-action:hover,
.xk-nav-action:focus {
    color: #4F7C00;

    background: transparent;

    text-decoration: none !important;

    box-shadow: none;
    outline: none;
}

/* Open dropdown */
.xk-nav-action[aria-expanded="true"] {
    color: #4F7C00;
}

/* Icons */
.xk-nav-action > i {
    color: inherit;

    font-size: clamp(1rem, 0.85vw + 0.1rem, 1.15rem);
}

/* Dropdown arrow */
.xk-nav-action .ui-dropdown-icon {
    color: inherit;

    font-size: 0.7rem;

    transition: transform 200ms ease;
}

.xk-nav-action[aria-expanded="true"] .ui-dropdown-icon {
    transform: rotate(180deg);
}

.xk-currency-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*  LOGIN */
.cfx-login {
  text-transform: none !important;
}

.cfx-login-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cfx-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
}

.auth-wrapper {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top, #1c1f2b, #0f1117);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;

    background: rgba(8, 11, 8, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.auth-icon {
  font-size: 42px;
  margin-bottom: 15px;
  color: #4da3ff;
}

.auth-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.auth-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
}

.auth-note {
  display: block;
  margin-top: 20px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

/* DISCORD LOGIN */
.options-btn {
  gap: 4px;
}

.discord-login-card {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .5rem;
  background: rgba(255,255,255,.03);
}

/* =========================================================
   MOBILE NAV
   ========================================================= */
.xk-mobile-nav {
    position: fixed;
    inset: 0;

    z-index: 9999;

    visibility: hidden;
    pointer-events: none;
}

.xk-mobile-nav-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    opacity: 0;

    transition: opacity 220ms ease;
}

.xk-mobile-nav-panel {
    position: absolute;

    top: 0;
    right: 0;

    width: min(420px, 100%);
    height: 100%;

    padding: 1.25rem;

    background: rgba(8, 10, 7, 0.98);

    border-left: 1px solid rgba(255, 255, 255, 0.06);

    transform: translateX(100%);

    transition: transform 220ms ease;

    overflow-y: auto;
}

.xk-mobile-nav.show {
    visibility: visible;
    pointer-events: auto;
}

.xk-mobile-nav.show .xk-mobile-nav-overlay {
    opacity: 1;
}

.xk-mobile-nav.show .xk-mobile-nav-panel {
    transform: translateX(0);
}

.xk-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 44px;
    margin-bottom: 0.5rem;
}

.xk-mobile-nav-title {
    color: rgba(255, 255, 255, 0.9);

    font-size: 1rem;
    font-weight: 600;
}

.xk-mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-left: auto;
    padding: 0;

    border: 0;
    background: transparent;

    color: rgba(255, 255, 255, 0.55);

    font-size: 1.1rem;

    cursor: pointer;

    transition: color 180ms ease;
}

.xk-mobile-nav-close:hover,
.xk-mobile-nav-close:focus {
    color: #4F7C00;

    outline: none;
}

/* SOCIAL LINKS */
.xk-mobile-social-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 45px;

    padding: 16px 0;

    border-bottom: 1px solid rgba(79, 124, 0, 0.18);
}

.xk-mobile-social-link {
    color: rgba(255, 255, 255, 0.48);

    font-size: clamp(1rem, 0.85vw + 0.1rem, 1.15rem);

    text-decoration: none !important;

    transition: color 200ms ease;
}

.xk-mobile-social-link:hover {
    color: #4F7C00;
}

/* PAGES */
.xk-mobile-pages {
    display: flex;
    flex-direction: column;

    padding: 10px 0 16px;
}

.xk-mobile-page-link {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 10px 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 0.95rem;
    font-weight: 600;

    text-decoration: none !important;

    transition: color 200ms ease;
}

.xk-mobile-page-link:hover {
    color: #4F7C00;
}

/* Active page */
.xk-mobile-page-link--active {
    color: #4F7C00;
}

/* Category arrow */
.xk-mobile-page-link i {
    font-size: 0.7rem;

    transition: transform 200ms ease;
}

/*  SUBPAGES */

.xk-mobile-subpages {
    display: flex;
    flex-direction: column;

    align-items: center;

    padding-bottom: 4px;
}

.xk-mobile-subpage-link {
    padding: 7px 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.85rem;
    font-weight: 500;

    text-decoration: none !important;

    transition: color 200ms ease;
}

.xk-mobile-subpage-link:hover {
    color: #4F7C00;
}

/* =========================================================
   PACKAGE IMAGES
   ========================================================= */

.xk-home-package {
    display: block;

    width: 100%;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;

    background: rgba(8, 10, 7, 0.78);

    text-decoration: none;

    transition:
        border-color 180ms ease,
        background-color 180ms ease;
}

.xk-home-package img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}

.xk-home-package:hover {
    border-color: rgba(79, 124, 0, 0.55);

    background: rgba(8, 10, 7, 0.9);

    text-decoration: none;
}

.xk-featured-packages {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;

    align-items: start;
}

@media (max-width: 991px) {
    .xk-featured-packages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .xk-featured-packages {
        grid-template-columns: 1fr;
    }
}

.xk-recent-script {
    display: grid;

    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);

    gap: 32px;

    align-items: center;
}

.xk-recent-script-description {
    color: rgba(255, 255, 255, 0.72);

    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .xk-recent-script {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   CATEGORY
   ========================================================= */

.xk-category-header {
    margin-bottom: 2rem;
    text-align: center;
}

.xk-category-header .page-title {
    margin-bottom: 0.4rem;
}

.xk-category-description {
    max-width: 700px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.6;
}

.xk-category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin: 1.75rem 0 2rem;
}

@media (max-width: 575px) {
    .xk-category-toolbar {
        flex-direction: column;
        gap: 12px;
    }

    .xk-category-toolbar form {
        width: 100%;
        justify-content: center;
    }
}

.xk-category-divider {
    width: 100%;
    height: 1px;
    margin: 1.75rem 0;
    background: rgba(79, 124, 0, 0.18);
}

.xk-empty-category {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    font-weight: 500;
}

/*  FILTER PACKAGES */

.xk-filter-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 0.45rem 0.8rem;

    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    border: none;
    border-radius: 8px;

    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;

    cursor: pointer;
    text-decoration: none;

    transition: color 0.2s ease;
}

.xk-filter-button:hover,
.xk-filter-button:focus {
    color: #4f7c00;
    background: transparent;
    box-shadow: none;
    outline: none;
}

.xk-filter-button .ui-dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.xk-filter-button[aria-expanded="true"] {
    color: #4f7c00;
}

.xk-filter-button[aria-expanded="true"] .ui-dropdown-icon {
    transform: rotate(180deg);
}

/* SEARCH PACKAGES */

.search-container {
    height: 38px;
    min-width: 240px;

    display: flex;
    align-items: center;

    background: rgba(8, 12, 6, 0.55);
    border: 1px solid rgba(79, 124, 0, 0.25);
    border-radius: 10px;

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.search-container:hover {
    border-color: rgba(79, 124, 0, 0.5);
}

.search-container:focus-within {
    background: rgba(8, 12, 6, 0.72);
    border-color: rgba(79, 124, 0, 0.7);
    box-shadow: 0 0 0 2px rgba(79, 124, 0, 0.08);
}

/* Search icon */
.search-icon-wrapper {
    width: 42px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    flex-shrink: 0;
}

.search-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;

    transition: color 0.2s ease;
}

.search-container:hover .search-icon,
.search-container:focus-within .search-icon {
    color: #4f7c00;
}

/* Input */
#searchInput {
    flex: 1;

    height: 100%;
    padding: 0 12px 0 0;

    border: none;
    outline: none;

    color: rgba(255, 255, 255, 0.9);
    background: transparent;

    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
}

#searchInput::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

#searchInput:focus {
    outline: none;
}

/* No results */
#noResultsContainer {
    width: 85%;
    padding: 2%;

    font-size: 1.2rem;
    gap: 10px;

    flex-direction: column;
}

/* Mobile */
@media (max-width: 575px) {
    .search-container {
        width: 100%;
        min-width: 0;
    }
}

/* =========================================================
   CATEGORY PACKAGE GRID
========================================================= */

.xk-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
    justify-content: center;
    gap: 24px;
}

/*  GRID PACKAGE CARD */
.xk-grid-package-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;
    height: 100%;

    box-sizing: border-box;

    overflow: hidden;

    background: rgba(8, 11, 8, 0.82);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);

    transition:
        transform 200ms ease,
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.xk-grid-package-card:hover {
    transform: translateY(-3px);

    border-color: rgba(79, 124, 0, 0.45);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.45),
        0 0 18px rgba(79, 124, 0, 0.12);
}

/* GRID PACKAGE IMAGE */
.xk-grid-package-image-link {
    display: block;

    width: 100%;

    text-decoration: none;
}

.xk-grid-package-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 220px;

    overflow: hidden;

    background: rgba(0, 0, 0, 0.25);
}

.xk-grid-package-image img {
    display: block;

    width: 100%;
    height: 100%;

    padding: 15px;

    box-sizing: border-box;

    object-fit: contain;

    transition: transform 250ms ease;
}

.xk-grid-package-card:hover
.xk-grid-package-image img {
    transform: scale(1.02);
}

/* IMAGE PLACEHOLDER */
.xk-grid-package-image-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: rgba(255, 255, 255, 0.25);

    font-size: 2rem;
}

/* BADGE */
.xk-grid-package-badge {
    position: absolute;

    top: 12px;
    right: 12px;

    padding: 5px 10px;

    border-radius: 6px;

    background: rgba(220, 53, 69, 0.9);

    color: #fff;

    font-size: 0.75rem;
    font-weight: 700;
}

/* CONTENT */
.xk-grid-package-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    flex: 1;

    width: 100%;

    box-sizing: border-box;

    padding: 18px 20px 14px;

    text-align: center;
}

.xk-grid-package-title {
    width: 100%;

    margin: 0;

    color: #fff;

    font-size: clamp(0.95rem, 1vw, 1.15rem);
    font-weight: 600;

    line-height: 1.35;
}

.xk-grid-package-price {
    display: flex;

    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px;

    width: 100%;

    margin-top: 10px;

    text-align: center;
}

/* ACTION */
.xk-grid-package-action {
    width: 100%;
    box-sizing: border-box;
    padding: 0 14px 14px;
}

.xk-grid-package-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 46px;

    box-sizing: border-box;

    padding: 0.65rem 1rem;

    border: 1px solid rgba(79, 124, 0, 0.7);
    border-radius: 6px;

    background: transparent;
    color: #fff;

    font-size: 0.9rem;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.xk-grid-package-button i {
    margin-right: 0.55rem;
}

.xk-grid-package-button:hover,
.xk-grid-package-button:focus {
    color: #4f7c00;

    background: rgba(79, 124, 0, 0.06);

    border-color: #4f7c00;

    transform: translateY(-1px);

    text-decoration: none !important;
}

/* MOBILE */
@media (max-width: 767px) {

    .xk-package-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .xk-grid-package-image {
        height: 200px;
    }

}

/* =========================================================
   PACKAGE
   ========================================================= */
.xk-package-card {
    display: grid;

    grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);

    column-gap: 3rem;
    row-gap: 2rem;

    width: 100%;
    box-sizing: border-box;

    padding: 2rem;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.02);
}

/* LEFT SIDEBAR */
.xk-package-sidebar {
    min-width: 0;
}

.xk-package-sidebar-inner {
    position: sticky;
    top: 80px;

    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* IMAGE */
.xk-package-image {
    width: 100%;
}

.xk-package-image img {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 8px;

    object-fit: contain;
}

.xk-package-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 262px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;

    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
}

/* PRICE */
.xk-package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 0.35rem;

    text-align: center;
}

.xk-package-price-current {
    color: #4f7c00;

    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;

    line-height: 1.1;
}

.xk-package-price-custom {
    color: #fff;

    font-size: 1rem;
    font-weight: 600;
}

.xk-package-price-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.xk-package-price-old {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.xk-package-discount {
    padding: 0.2rem 0.45rem;

    border-radius: 4px;

    background: rgba(79, 124, 0, 0.12);
    color: #4f7c00;

    font-size: 0.75rem;
    font-weight: 700;
}

/* BUTTONS */
.xk-package-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.xk-package-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 46px;

    padding: 0.65rem 1rem;

    border: 1px solid rgba(79, 124, 0, 0.7);
    border-radius: 6px;

    background: transparent;
    color: #fff;

    font-size: 0.9rem;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.xk-package-button i {
    margin-right: 0.55rem;
}

.xk-package-button:hover {
    color: #4f7c00;

    background: rgba(79, 124, 0, 0.06);
    border-color: #4f7c00;

    transform: translateY(-1px);
}

.xk-package-button-secondary {
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
}


/* RIGHT */
.xk-package-details {
    min-width: 0;
}

.xk-package-title {
    margin: 0 0 1.75rem;

    color: #fff;

    font-size: clamp(1.7rem, 2.5vw, 2.5rem);
    font-weight: 700;

    line-height: 1.15;
}

.xk-package-description {
    color: rgba(255, 255, 255, 0.72);

    font-size: 0.98rem;
    line-height: 1.7;
}

/* GIFT FORM SPANS BOTH COLUMNS */
.xk-package-card .gift-fields {
    grid-column: 1 / -1;
}


/* MOBILE */
@media (max-width: 991px) {

    .xk-package-card {
        grid-template-columns: 1fr;

        column-gap: 0;
    }

    .xk-package-sidebar-inner {
        position: static;
    }

    .xk-package-details {
        padding-top: 1rem;
    }

    .xk-package-card .gift-fields {
        grid-column: auto;
    }

}


@media (max-width: 575px) {

    .xk-package-card {
        padding: 1rem;
    }

    .xk-package-title {
        font-size: 1.5rem;
    }

    .xk-package-description {
        font-size: 0.95rem;
    }

}

/* =========================================================
   PACKAGE OPTIONS
   ========================================================= */
.xk-options-page {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.xk-options-header {
    padding-bottom: 24px;
    margin-bottom: 28px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.xk-options-description {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.92rem;
}


/* Option groups */
.xk-option-group {
    margin-bottom: 28px;
}

.xk-option-group:last-child {
    margin-bottom: 0;
}

.xk-option-group label {
    display: block;

    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.9rem;
    font-weight: 600;
}

/* Inputs */
.xk-option-input {
    min-height: 44px;

    padding: 10px 14px;

    color: #fff !important;

    background: rgba(0, 0, 0, 0.22) !important;

    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 8px !important;

    box-shadow: none !important;
}

.xk-option-input:focus {
    border-color: rgba(79, 124, 0, 0.55) !important;

    background: rgba(0, 0, 0, 0.3) !important;

    box-shadow: 0 0 0 2px rgba(79, 124, 0, 0.08) !important;
}

.xk-option-currency {
    color: rgba(255, 255, 255, 0.55);

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.09);
}

/* Help text */
.xk-option-help {
    max-width: 700px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 0.88rem;
    line-height: 1.6;
}

/* Discord */
.xk-discord-card {
    margin-top: 16px;

    padding: 18px 20px;

    background: rgba(0, 0, 0, 0.20);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.xk-discord-account {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.xk-discord-status {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.xk-discord-label {
    color: rgba(255, 255, 255, 0.42);

    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.xk-discord-connected {
    color: rgba(255, 255, 255, 0.9);

    font-size: 0.92rem;
    font-weight: 600;
}

.xk-discord-connected i {
    margin-right: 6px;

    color: #4f7c00;
}

.xk-discord-not-connected {
    color: rgba(255, 255, 255, 0.5);

    font-size: 0.92rem;
}

/* Discord button */
.xk-discord-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 8px 15px;

    color: rgba(255, 255, 255, 0.82);

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;

    font-size: 0.85rem;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        color 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.xk-discord-button i {
    margin-left: 8px;

    color: #7289da;
}

.xk-discord-button:hover {
    color: #fff;

    background: rgba(114, 137, 218, 0.08);

    border-color: rgba(114, 137, 218, 0.4);
}

/* Footer actions */
.xk-options-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 36px;
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.xk-options-back,
.xk-options-continue {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 9px 20px;

    border-radius: 7px;

    font-size: 0.9rem;
    font-weight: 600;

    text-decoration: none !important;

    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

/* Back */
.xk-options-back {
    color: rgba(255, 255, 255, 0.58);

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.10);
}

.xk-options-back:hover {
    color: #fff;

    background: rgba(255, 255, 255, 0.04);

    border-color: rgba(255, 255, 255, 0.18);
}

/* Continue */
.xk-options-continue {
    color: #fff;

    background: rgba(79, 124, 0, 0.20);

    border: 1px solid rgba(79, 124, 0, 0.55);

    cursor: pointer;
}

.xk-options-continue:hover {
    background: rgba(79, 124, 0, 0.30);

    border-color: rgba(79, 124, 0, 0.75);
}

/* Mobile */
@media (max-width: 575px) {

    .xk-options-page {
        padding: 5%;
    }

    .xk-discord-account {
        align-items: stretch;

        flex-direction: column;
    }

    .xk-discord-button {
        width: 100%;
    }

    .xk-options-footer {
        flex-direction: column-reverse;

        align-items: stretch;
    }

    .xk-options-back,
    .xk-options-continue {
        width: 100%;
    }

}

/* =========================================================
   BASKET / CHECKOUT
   ========================================================= */
.xk-basket {
    width: 100%;
    color: #fff;
}

/*  HEADER */
.xk-basket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1.2rem 1.5rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.xk-basket-title {
    margin: 0;

    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;

    color: #fff;
}

.xk-basket-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 32px;
    padding: 0.3rem 0.65rem;

    border: 1px solid rgba(79, 124, 0, 0.35);
    border-radius: 20px;

    background: rgba(79, 124, 0, 0.08);

    color: #90E300;

    font-size: 0.78rem;
    font-weight: 600;
}

/*  BODY */
.xk-basket-body {
    padding: 1.25rem 1.5rem;
}

/* ITEM */
.xk-basket-item {
    display: flex;
    align-items: center;

    gap: 1.25rem;

    padding: 1rem;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.025);
}

.xk-basket-item + .xk-basket-item {
    margin-top: 0.75rem;
}

/*  IMAGE */
.xk-basket-image {
    flex: 0 0 auto;

    height: 70px;
    width: auto;

    display: block;

    border-radius: 8px;

    object-fit: contain;
}

.xk-basket-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* ITEM INFO */
.xk-basket-info {
    flex: 1;
    min-width: 0;
}

.xk-basket-name {
    display: inline-block;

    margin-bottom: 0.3rem;

    color: #fff;

    font-size: 0.95rem;
    font-weight: 600;

    text-decoration: none;
}

.xk-basket-name:hover {
    color: #90E300;
    text-decoration: none;
}

.xk-basket-options {
    color: rgba(255, 255, 255, 0.48);

    font-size: 0.78rem;
    line-height: 1.5;
}

.xk-basket-options i {
    margin-right: 0.3rem;
}


/* QUANTITY LABEL */
.xk-basket-quantity {
    margin-top: 0.35rem;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.75rem;
}

/*  PRICE */
.xk-basket-price {
    flex: 0 0 auto;

    text-align: right;

    color: #fff;

    font-size: 0.95rem;
    font-weight: 600;
}

.xk-basket-price small {
    margin-left: 0.2rem;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.7rem;
    font-weight: 500;
}

/*  REMOVE */
.xk-basket-remove {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;

    background: transparent;

    color: rgba(255, 255, 255, 0.4);

    text-decoration: none;

    transition:
        color 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.xk-basket-remove:hover {
    color: #fff;

    border-color: rgba(220, 53, 69, 0.45);

    background: rgba(220, 53, 69, 0.08);

    text-decoration: none;
}

/*  FOOTER */
.xk-basket-footer {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    gap: 2rem;

    margin-top: 0.75rem;
    padding: 1.5rem 1.5rem 0;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* TOTAL */
.xk-basket-total {
    text-align: left;
}

.xk-basket-total-label {
    display: block;

    margin-bottom: 0.15rem;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.75rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.xk-basket-total-value {
    color: #fff;

    font-size: 1.45rem;
    font-weight: 600;
}

.xk-basket-total-value small {
    margin-left: 0.2rem;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.75rem;
    font-weight: 500;
}


/* =========================================================
   COUPONS
   ========================================================= */

.xk-basket-coupon {
    width: 100%;
    max-width: 260px;

    margin: 0 auto;
}

.xk-basket-coupon-form {
    display: flex;
    width: 100%;
}

.xk-basket-coupon-input {
    flex: 1;

    min-width: 0;
    height: 40px;

    padding: 0 0.8rem;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-right: 0;
    border-radius: 7px 0 0 7px;

    background: rgba(255, 255, 255, 0.035);

    color: #fff;

    font-size: 0.82rem;

    outline: none;
}

.xk-basket-coupon-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.xk-basket-coupon-input:focus {
    border-color: rgba(79, 124, 0, 0.5);

    background: rgba(255, 255, 255, 0.045);
}

.xk-basket-coupon-button {
    flex: 0 0 42px;

    height: 40px;

    border: 1px solid rgba(79, 124, 0, 0.45);
    border-radius: 0 7px 7px 0;

    background: rgba(79, 124, 0, 0.12);

    color: #fff;

    cursor: pointer;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.xk-basket-coupon-button:hover,
.xk-basket-coupon-button:focus {
    background: rgba(79, 124, 0, 0.2);

    border-color: rgba(79, 124, 0, 0.8);

    color: #4F7C00;

    outline: none;
}

/* =========================================================
   CHECKOUT BUTTON
   ========================================================= */

.xk-basket-checkout {
    display: flex;

    justify-content: flex-end;
}

.xk-basket-checkout form {
    margin: 0;
}

.xk-basket-checkout-button {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0.65rem 1.2rem;

    border: 1px solid rgba(79, 124, 0, 0.65);
    border-radius: 7px;

    background: rgba(79, 124, 0, 0.12);

    color: #fff;

    font-size: 0.9rem;
    font-weight: 600;

    cursor: pointer;
    text-decoration: none;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.xk-basket-checkout-button i {
    margin-left: 0.6rem;
}

.xk-basket-checkout-button:hover,
.xk-basket-checkout-button:focus {
    border-color: rgba(79, 124, 0, 0.9);

    background: rgba(79, 124, 0, 0.2);

    color: #4F7C00;

    outline: none;
}

/* =========================================================
   EMPTY BASKET
   ========================================================= */

.xk-basket-empty {
    padding: 3rem 1rem;

    text-align: center;

    color: rgba(255, 255, 255, 0.45);
}

.xk-basket-empty i {
    margin-bottom: 0.75rem;

    color: rgba(79, 124, 0, 0.65);

    font-size: 1.8rem;
}

/* =========================================================
   APPLIED COUPONS
   ========================================================= */

.xk-basket-coupons {
    display: flex;
    flex-direction: column;

    gap: 0.5rem;

    margin-top: 0.75rem;
}

.xk-basket-coupon-tag {
    display: flex;
    align-items: center;

    min-height: 34px;

    padding: 0.4rem 0.5rem 0.4rem 0.75rem;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;

    background: rgba(255, 255, 255, 0.035);

    font-size: 0.75rem;
}

.xk-basket-coupon-code {
    color: #fff;

    font-weight: 600;
    letter-spacing: 0.02em;
}

.xk-basket-coupon-description {
    margin-left: 0.5rem;

    color: rgba(255, 255, 255, 0.4);
}

.xk-basket-coupon-remove {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    margin-left: auto;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;

    background: rgba(255, 255, 255, 0.04);

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.65rem;

    text-decoration: none;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.xk-basket-coupon-remove:hover,
.xk-basket-coupon-remove:focus {
    border-color: rgba(220, 53, 69, 0.5);

    background: rgba(220, 53, 69, 0.12);

    color: #fff;

    text-decoration: none;
}

/*  MOBILE */
@media (max-width: 767px) {

    .xk-basket-header {
        padding: 1rem;
    }

    .xk-basket-body {
        padding: 1rem;
    }

    .xk-basket-item {
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .xk-basket-image {
        flex-basis: 70px;

        width: 70px;
        height: 58px;
    }

    .xk-basket-price {
        font-size: 0.85rem;
    }

    .xk-basket-footer {
        grid-template-columns: 1fr;

        gap: 1.25rem;

        padding: 1.25rem 1rem 0;
    }

    .xk-basket-total {
        text-align: center;
    }

    .xk-basket-coupon {
        max-width: 320px;
    }

    .xk-basket-checkout {
        justify-content: center;
    }

    .xk-basket-checkout-button {
        width: 100%;
    }
}

/* =========================================================
   NOTIFICATIONS
   ========================================================= */

/* NOTIFICATION */
.xk-notification {
    position: fixed;

    top: 85px;
    right: 24px;

    z-index: 99999;

    display: flex;
    align-items: center;

    width: min(420px, calc(100vw - 32px));
    min-height: 58px;

    padding: 12px 14px;

    box-sizing: border-box;

    background: rgba(8, 11, 8, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);

    color: rgba(255, 255, 255, 0.9);

    overflow: hidden;

    animation: xk-notification-in 250ms ease-out;
}

/* ICON */
.xk-notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 32px;
    height: 32px;

    margin-right: 12px;

    border-radius: 50%;

    font-size: 0.8rem;
}

.xk-notification--success .xk-notification-icon {
    background: rgba(79, 124, 0, 0.16);
    color: #90E300;
}

.xk-notification--danger .xk-notification-icon,
.xk-notification--error .xk-notification-icon {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
}

.xk-notification--warning .xk-notification-icon {
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
}

.xk-notification--info .xk-notification-icon {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
}


/* CONTENT */
.xk-notification-content {
    flex: 1 1 auto;
    min-width: 0;
}

.xk-notification-message {
    color: rgba(255, 255, 255, 0.88);

    font-size: 0.9rem;
    line-height: 1.45;
}

/* CLOSE BUTTON */
.xk-notification-close {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 30px;
    height: 30px;

    margin-left: 10px;
    padding: 0;

    border: 0;

    background: transparent;

    color: rgba(255, 255, 255, 0.35);

    cursor: pointer;

    transition:
        color 160ms ease,
        background-color 160ms ease;
}

.xk-notification-close:hover,
.xk-notification-close:focus {
    color: rgba(255, 255, 255, 0.8);

    background: rgba(255, 255, 255, 0.05);

    outline: none;
}

/* PROGRESS BAR */
.xk-notification-progress {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: rgba(79, 124, 0, 0.65);

    transform-origin: left;

    animation: xk-notification-progress 5s linear forwards;
}

.xk-notification--danger .xk-notification-progress,
.xk-notification--error .xk-notification-progress {
    background: rgba(220, 53, 69, 0.7);
}

.xk-notification--warning .xk-notification-progress {
    background: rgba(255, 193, 7, 0.7);
}

/* ANIMATIONS */
@keyframes xk-notification-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes xk-notification-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}

@keyframes xk-notification-progress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

.xk-notification.is-closing {
    animation: xk-notification-out 250ms ease-in forwards;
}

/* MOBILE */
@media (max-width: 575px) {
    .xk-notification {
        top: 70px;
        right: 16px;
        left: 16px;

        width: auto;
        min-height: 54px;

        padding: 10px 12px;
    }

    .xk-notification-message {
        font-size: 0.85rem;
    }
}