@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600;700&display=swap');
:root {
  --color-primary: #cb4a4a;
  --bg-image: url("https://webstore-template-assets.tebex.io/images/page-bg.jpg");
}
body {
    background: #0a0c12;
    font-family: "Montserrat", sans-serif;
}

.container {
    position: relative;
    min-height: 100%;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

svg path {
    fill: #fff;
}
svg {
    height: 22px;
}

.jhn-header-nav {
    display: flex
;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}
.jhn-header-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 1.5rem;
}
.jhn-header-logo a img {
    height: 100px;
}
ul.menu.navigation-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
}
.menu.navigation-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;               /* same height as Discord/Copy IP */
  padding: 0 16px;            /* same padding */
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary-color); /* 🔹 use your theme’s primary color */
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}
.menu.navigation-list li a:hover {
  background: var(--primary-color-dark, #bd3c3c); /* darker shade of primary */
  transform: translateY(-1px);
}
.menu.navigation-list li.active > a,
.menu.navigation-list li a.link-active {
  background: var(--primary-color-light, #cb4a4a); /* lighter shade for active */
}
.jhn-header-right {
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 1.5rem;
}
.jhn-header-right a {
    background: #4274e0;
    padding: 12px 15px;
    border-radius: 6px;
}
/* Shared button base */
.jhn-header-ip,
.jhn-header-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;            /* exact height */
  padding: 0 16px;          /* even horizontal padding */
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.jhn-header-ip svg {
    width: 16px;
    height: 16px;
    margin: 0; /* remove extra margin */
    flex-shrink: 0;
    fill: currentColor;
}

/* Copy IP specific */
.jhn-header-ip {
  background: #cb4a4afa;
}
.jhn-header-ip:hover {
  background: #a83838;
}

/* Discord specific */
.jhn-header-discord {
  background: #4274e0;
}
.jhn-header-discord:hover {
  background: #4752C4;
}
.jhn-header-discord svg {
  width: 16px;   /* same as text height */
  height: 16px;
  flex-shrink: 0; /* prevents squish */
  fill: currentColor;
}


.jhn-header-corp {
    height: 340px;
    position: relative;
    overflow: hidden;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background: #46a2ef;
    color: #fff;
    border-radius: 15px;
    padding: 50px;
    font-size: 18px;
    margin: 2.5rem 0;
}
.jhn-header-corp:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://i.postimg.cc/SNfxMhcv/idiots.jpg) center no-repeat;
    background-size: cover;
    z-index: 0;
    opacity: 0.8;
}
.jhn-header-name {
    position: relative;
    z-index: 1;
    text-align: center;
    text-align: -webkit-center;
}
.jhn-header-name p {
    text-shadow: 1px 2px 0px #00000073 !important;
    font-weight: 700;
    font-size: 40px;
}
.jhn-header-name span {
    color: #f1f1f1;
}


div#jhn-featured {
    display: grid
;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}




#particles-js {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -1;
}







.widget.widget-featured {
    border-radius: 12px;
    background: #1f2435;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    padding: 25px;
    border: 4px solid #ffffff0d;
    min-height: 380px;
    transition: all .15s linear;
}
.store-product .btn-primary svg path {
    fill: #ffffff;
}
.store-product .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border-radius: 10px;
    height: 55px;
    gap: 7px;
    background: #cb4a4a;
    color: #ffffff;
}
.store-product .price {
    font-size: 14px;
    font-weight: 600;
    color: #6dff68cf;
}











.jhn-footer-corp {
    position: relative;
    background: #b73e3e;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #ffffff63;
}
.jhn-footer-corp-top {
    background: #df5353;
    display: flex
;
    align-items: center;
    padding: 0 40px;
    padding-left: 240px;
    height: 80px;
    justify-content: space-between;
}
.jhn-footer-social {
    display: flex
;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.jhn-footer-corp-bot {
    padding-left: 240px;
    display: flex
;
    align-items: center;
    padding-right: 40px;
    position: relative;
    min-height: 140px;
}
.jhn-footer-logo {
    max-width: 165px;
    position: absolute;
    left: -81px;
    top: -80px;
}
.jhn-footer-logo img {
    height: 230px;
    width: 400px;
}
.jhn-footer-content p {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.jhn-footer-social a svg {
    height: 30px;
}
.jhn-footer-social a svg path {
    fill: #962828;
}
.jhn-footer-ip-corp {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat';
    background: #0000000a;
    padding: 13px 20px;
    border-radius: 10px;
    color: #fff;
}


.jhn-absol-btns {
    position: fixed;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    right: 0;
    top: 0;
    display: flex
;
    flex-direction: column;
    gap: 20px;
}
.btn-glyph::before, .btn-glyph-text::before {
    display: none;
}
.jhn-abs-btn {
    transition: all .25s linear;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--color-primary);
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
span.text-hover {
    display: none;
}
a.btn-secondary.btn-glyph-text.user-name.jhn-abs-btn:hover .text-hover {
    display: flex;
}
a.btn-secondary.btn-glyph-text.user-name.jhn-abs-btn:hover .text {
    display: none;
}
a.btn-secondary.btn-glyph-text.user-name.jhn-abs-btn {
    border-radius: 12px;
}
.btn-glyph-text.open-basket {
    transition: all .25s linear;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #ffcf53;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.user-actions {
    display: flex
;
    flex-direction: column;
    gap: 20px;
}
.jhn-abs-btn img {
    border-radius: 5px;
}
.jhn-abs-btn:hover, .btn-glyph-text.open-basket:hover {
    transform: scale(1.03);
}
.user-name.jhn-abs-btn:hover {
    box-shadow: 0 0 6px rgb(from #f65858 r g b / 0.6);
    background: #d35050;
}
a.log-in.btn-tertiary.jhn-abs-btn {
    border-radius: 12px !important;
}
a.log-in.btn-tertiary.jhn-abs-btn:hover {
    background: var(--color-primary);
}



















.category-description.text-content {
    border-radius: 12px;
    background: #1f2435;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    padding: 25px;
    border: 4px solid #ffffff0d;
    transition: all .15s linear;
}
.store-products-list .store-product, .store-products-images .store-product {
    border-radius: 12px!important;
    background: #1f2435!important;
}
article.store-product {
    border-radius: 12px;
    background: #1f2435;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    padding: 25px;
    border: 4px solid #ffffff0d;
    transition: all .15s linear;
}
.store-products-images {
    display: grid
;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 36px;
}



.store-product-full {
    background: #1f2435;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border: 4px solid #ffffff0d;
    transition: all .15s linear;
}
.store-product-full .actions {
    background-color: #ffffff0a;
}
.store-product .quantity-field {
    border-radius: 12px;
    background: #ffffff0f;
}
.store-product .quantity-field {
    height: 55px;
}
.quantity-field {
    display: flex
;
    align-items: stretch;
    justify-content: center;
    color: var(--color-text);
    background: #ffffff0f;
    height: 55px;
    border: 1px solid #cccccc2e;
}
button.btn-tertiary.adjust.increase:hover {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
button.btn-tertiary.adjust.decrease:hover {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
:root *[hidden] {
    display: none !important;
}
.widget.widget-featured article.store-product {
    border: none;
}


.popup-content {
    border-radius: 12px;
    background: #1f2435;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border: 4px solid #ffffff0d;
    transition: all .15s linear;
}

















.jhn-header-mid-img {
    display: flex
;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 35px;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}
.jhn-head-img img {
    height: 250px;
}

.jhn-head-join {
    padding: 8px 26px;
    background: rgb(255 255 255 / 8%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 20px;
    font-family: 'Montserrat';
    color: #ffffffb0;
}
.jhn-head-ip {
    display: flex
;
    gap: 10px;
    align-items: center;
    flex-direction: row;
}
.jhn-head-ip-name {
    height: 58px;
    background: rgb(127 219 255 / 8%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 6px;
    border: 1px solid var(--color-primary);
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 15px;
    font-size: 20px;
    text-transform: uppercase;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.jhn-head-ip-name i {
    font-size: 31px;
    color: var(--color-primary);
}
span.jhn-head-ip-abs {
    height: 58px;
    background: var(--color-primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 6px;
    border: 1px solid var(--color-primary);
    width: 58px;
    display: flex
;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}






.water-bubbles {
            position: relative;
            width: 100%;
            height: 100vh;
            background: linear-gradient(to bottom, #1a6fc9, #0d2c4a);
            overflow: hidden;
        }
        
        .water-bubbles .bubble {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.7);
            pointer-events: none;
            filter: blur(0.8px);
            transform: scale(1);
            animation: wobble 3s infinite ease-in-out;
        }
        
        @keyframes wobble {
            0%, 100% { transform: translateX(0px) scale(1); }
            50% { transform: translateX(2px) scale(1.02); }
        }






.header-separator {
    position: relative;
    margin-top: 0;
    bottom: 0;
}

.home-header .header-separator {
    margin-top: 30px;
    position: absolute;
    bottom: -10px;
}

.header-separator .svg-1 {
    height: 140px;
    position: absolute;
    bottom: 70px;
    z-index: 0;
    animation: wave 5s linear infinite;
    width: 140%;
    left: -21%;
}

.header-separator .svg-2 {
    height: 140px;
    position: relative;
    z-index: 15;
    animation: wave 8s linear infinite;
    width: 140%;
    left: -21%;
}

.header-separator .boat {
    width: 15%;
    position: absolute;
    bottom: 65%;
    z-index: 10;
    animation: boat 17s linear infinite;
}
/* Animations */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes wave {
    0% {
        transform: scaleX(1.7) translateX(0);
    }
    50% {
        transform: scaleX(1.7) translateX(1%) rotate(1deg);
    }
    100% {
        transform: scaleX(1.7) translateX(0);
    }
}

@keyframes boat {
    0% {
        left: -15%;
        transform: rotate(0);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    75% {
        transform: translateY(20px) rotate(0);
    }
    100% {
        left: 100%;
        transform: rotate(-10deg);
}}



.jhn-about-top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://i.postimg.cc/nLyJWRvS/forward.png) center no-repeat;
    background-size: cover;
    z-index: 1;
    border-radius: 16px;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.jhn-about-top {
    height: 350px;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: none;
    width: 50%;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.jhn-about {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
}
.jhn-about-tit {
    font-size: 35px;
    font-weight: 600;
    font-family: 'Montserrat';
    margin-bottom: 16px;
    color: #fff;
}
.jhn-about-tit span {
    color: var(--color-primary);
}
.jhn-about-text {
    font-size: 15px;
    letter-spacing: 0.7px;
    color: #ffffffb8;
}
.jhn-about-content {
    width: 50%;
}
.jhn-index-disc {
    position: relative;
    margin: 6rem 0;
    display: flex
;
    flex-direction: row;
    justify-content: center;
    gap: 5.5rem;
    padding: 3rem;
    background: #606be6;
    border-radius: 16px;
}

.jhn-index-disc-img svg {
    height: 150px;
    margin: 0 auto;
}
.jhn-index-disc-info-tit, .jhn-index-store-info-tit {
    font-size: 35px;
    font-weight: 600;
    font-family: 'Montserrat';
    margin-bottom: 16px;
    color: #fff;
}
.jhn-index-disc-info-text, .jhn-index-store-info-text {
    font-size: 15px;
    letter-spacing: 0.7px;
    color: #ffffffb8;
    max-width: 450px;
}
.jhn-index-disc-info-btn, .jhn-index-store-info-btn {
    display: flex
;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}
.jhn-index-disc-info-btn a {
    padding: 12px 20px;
    background: #ffffff26;
    font-size: 19px;
    font-family: 'Montserrat';
    border-radius: 16px;
    font-weight: 500;
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 7px;
}


.jhn-index-store {
    position: relative;
    margin: 6rem 0;
    display: flex
;
    flex-direction: row;
    justify-content: space-around;
    gap: 5.5rem;
    padding: 3rem;
    background: #2f3145;
    border-radius: 16px;
}
.jhn-index-store-img img {
    height: 150px;
}
.jhn-index-store-info-btn a {
    padding: 12px 20px;
    font-size: 19px;
    font-family: 'Montserrat';
    font-weight: 500;
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 7px;
    border-radius: 10px;
    gap: 7px;
    background: #59c6e5;
    color: #155a6d;
}



.jhn-index-store-img img {
    height: 379px;
    position: absolute;
    width: 676px;
    top: -35%;
    right: -14px;
    text-shadow: 0 0 3px #1e1f28;
    filter: drop-shadow(2px 4px 6px #1e1f28);
}
.jhn-index-store-img {
    height: 185px;
    width: 215px;
    /* position: relative; */
    /* overflow: hidden; */
}
.jhn-index-store:before {
    content: "";
    position: absolute;
    bottom: -32px;
    left: 69%;
    width: 189px;
    height: 179px;
    background: url(https://i.postimg.cc/vmVR5rpW/coins.png) center no-repeat;
    background-size: cover;
    z-index: 1;
    filter: brightness(0.8) drop-shadow(2px 4px 6px #1e1f28);
}








.jhn-footer-cols {
    display: grid
;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.jhn-footer-bot {
    margin-top: 35px;
    padding-bottom: 20px;
}
.jhn-footer-bot p {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}
.jhn-footer-bot span {
    opacity: 0.7;
}
.jhn-footer-col-tit {
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.jhn-footer-about-text, .jhn-footer-col-text {
    font-size: 15px;
    letter-spacing: 0.7px;
    color: #ffffffb8;
}
.jhn-footer-col .jhn-footer-ip {
    display: flex
;
    margin-top: 17px;
    padding: 11px 20px;
    background: #ffffff26;
    border: 1px solid #ffffff2e;
    border-radius: 6px;
    font-size: 17px;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    gap: 20px;
    font-style: italic;
}
.jhn-footer-col-img img {
    height: 160px;
    margin: 0 auto;
}


.swal-modal {
    background-color: #1f2435;
}
.swal-icon--success:after, .swal-icon--success:before {
    background: transparent;
}
.swal-icon--success__hide-corners {
    background-color: transparent;
}
.swal-title {
    color: #fff;
}
.swal-text {
    color: rgb(255 255 255 / 76%);
    text-align: center;
    text-align: -webkit-center;
}
.swal-button {
    background-color: #ffffff5e;
    color: #ffffff;
    border: none;
    box-shadow: none;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Montserrat';
    font-size: 14px;
    padding: 13px 26px;
    margin: 0;
    cursor: pointer;
}
.swal-footer {
    display: flex
;
    flex-direction: row;
    justify-content: center;
}

.jhn-index-disc:before {
    position: absolute;
    content: "";
    top: -50%;
    right: -4%;
    background: url(https://i.postimg.cc/KzDH5JQP/black.png) center no-repeat;
    width: 373px;
    height: 468px;
    background-size: cover;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.basket .basket-header {
    background: transparent;
}
.basket .basket-second-header {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px var(--content-padding);
    background: transparent;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    border: 4px solid #ffffff0d;
    border-left: none;
    border-right: none;
    color: #fff;
}
.basket .basket-item img {
    height: 35px;
}
.basket .basket-item {
    padding: 14px;
    background: #ffffff0d;
}
a.btn-secondary.btn-glyph.remove i {
    color: #fff;
    font-size: 20px;
}
a.btn-secondary.btn-glyph.remove {
    background: #f46060;
    border-radius: 6px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
button.btn-primary.checkout {
    border-radius: 10px;
    height: 55px;
    gap: 7px;
    background: #59c6e5;
    color: #155a6d;
}



button.btn-secondary.btn-icon.gift {
    background-color: #5656df;
    border-radius: 10px;
    height: 55px;
    width: 55px;
}

.jhn-log-form {
    background: var(--color-primary);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex
;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}
.jhn-log-form-sklin {
    max-height: 185px;
    overflow: hidden;
    max-width: 127px;
}
.jhn-log-form-sklin img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.jhn-log-title {
    opacity: 0.7;
}
.text-content h2 {
    color: #fff;
}

.login-popup-content {
    max-width: 640px;
    padding: 40px;
}
.popup .store-form input[type=text] {
    background: #0000003d;
    border-radius: 10px;
    height: 55px;
    color: #fff;
}
.jhn-log-form button.btn-primary {
    width: 100%;
    background: #ffffffd9;
    border-radius: 10px;
    height: 55px;
}
.jhn-log-text p {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.5;
    opacity: 0.85;
}
.basket .basket-title::before {
    display: none;
}
.basket .basket-title img {
    height: 35px;
    border-radius: 6px;
}


.btn-primary,
.btn-secondary,
.btn-tertiary {
  border-radius: 2px;
}

.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 6px rgb(from var(--btn-color-bg-hover) r g b/0.6);
}

.quantity-field {
  border-radius: 5px;
}

.site-header-inner .info .image {
  border-radius: 5px;
}
.site-header-inner .user-name ul li {
  overflow: hidden;
}
.site-header-inner .user-name ul li:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.site-header-inner .user-name ul li:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.site-sale-banner {
  border-radius: 5px;
}

.site-home-categories .category {
  border-radius: 5px;
  padding: 20px var(--widget-padding);
  background: var(--color-brighter-bg);
  transition: color 0.15s ease-in-out;
}
.site-home-categories .category:hover {
  color: var(--color-primary);
}

.category-description {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-text {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}
.store-text h1,
.store-text h2,
.store-text h3,
.store-text h4,
.store-text h5,
.store-text h6 {
  text-align: center;
}

.store-products-list .store-product,
.store-products-images .store-product {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-products-images .store-product {
  text-align: center;
}

.widget-title {
  text-align: center;
}

.widget .store-product {
  text-align: center;
}

.no-products {
  color: var(--color-text-secondary);
  background: var(--color-brighter-bg);
  border-radius: 5px;
}


.store-product .quantity-field input[type=number] {
  border: none;
}

@media (width > 960px) {
  .navigation-horizontal > ul {
    border-radius: 5px;
  }
}
.navigation-horizontal .has-children > ul {
  border-radius: 5px;
}

.widget {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}
@media (width <= 960px) {
  .widget.site-navigation {
    border-radius: 0;
    background: transparent;
  }
}

.widget-gift-card .gift-card-input {
  border-radius: 2px;
}

.widget-top-donator .avatar {
  border-radius: 50%;
}

.widget-community-goal .progress,
.widget-goal .progress {
  border-radius: 2px;
}
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  border-radius: 2px;
}

.popup-content {
  border-radius: 5px;
}

.popup-close {
  border-radius: 0 5px 0 5px;
}

.basket-popup-content,
.basket-popup-content .popup-close {
  border-radius: 0;
}

.basket-items {
  padding: var(--widget-padding) calc(var(--content-padding) - var(--widget-padding));
}

.basket-item {
  border-radius: 5px;
}
.basket-item .quantity {
  border-radius: 2px;
}

.toast {
  border-radius: 6px;
}

.toast-close {
  border-radius: 2px;
}

.store-category-tiered {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6 {
  text-align: center;
}

.store-product-tiered {
  border-radius: 5px;
  background: rgb(from var(--color-bg) r g b/0.5);
}

@media (max-width: 768px) {
.jhn-header-logo {
    display: none;
}
.jhn-header-right {
    display: none;
}
ul.menu.navigation-list {
    gap: 12px;
}
li.log-out.mobile-only {
    display: none;
}
.jhn-header-menu {
    margin-top: 15px;
}
.btn-glyph-text.open-basket i {
    color: black;
}
.jhn-about {
    display: flex
;
    flex-direction: column;
}
.jhn-about-top {
    width: 100%;
}
.jhn-about-content {
    width: 100%;
}
.jhn-index-disc {
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    text-align: -webkit-center;
}
.jhn-index-disc:before {
    display: none;
}
.jhn-index-disc-info-btn, .jhn-index-store-info-btn {
    display: flex
;
    align-items: center;
    justify-content: center;
}
.jhn-index-store-img {
    display: none;
}
.jhn-index-store-info {
    text-align: center;
    text-align: -webkit-center;
    padding-top: 8rem;
}
.jhn-index-store:before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(2px 4px 6px #1e1f28);
}
.jhn-footer-cols {
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-align: -webkit-center;
}
.jhn-footer-bot {
    text-align: center;
    text-align: -webkit-center;
}
.store-products-images {
    display: flex
;
    flex-direction: column;
}
.jhn-footer-logo {
    display: none;
    width: 0;
}
.jhn-footer-corp-top {
    padding-left: 20px;
    padding: 15px 20px;
    display: flex
;
    flex-direction: column;
    height: 110px;
    gap: 10px;
}
.jhn-footer-corp-bot {
    padding: 15px;
    text-align: center;
    text-align: -webkit-center;
}
.jhn-log-text h2 {
    color: #fff;
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 10px !important;
    margin-top: 10px !important;
}
.jhn-log-form {
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.jhn-log-form form.field {
    width: 100%;
}

}
.jhn-log-form form.field {
    width: 300px;
}
.jhn-index-disc-info-tit {
    display: flex
;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
span#jhn-discord {
    font-size: 20px;
    padding: 10px;
    background: #ffffff24;
    border-radius: 10px;
}
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  font-family: 'Poppins', sans-serif;
}

.modal-content {
    width: 100%;
    max-width: 600px;
    margin: 100px auto;
    color: #fff;
    border-radius: 20px !important;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1) !important;
    position: relative;
    border: 2px solid #242b34;
    background: #1e242c;
}

.modal-header {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 20px;
    border-bottom: 2px solid #2e3742 !important;
    color: #fff;
    font-family: 'Montserrat';
}

.close-btn {
  font-size: 26px;
  cursor: pointer;
}

.modal-tabs {
    display: flex
;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px 20px;
}

.tab-btn.active {
    background: var(--color-primary);
    color: white;
    border: 2px solid #ffffff4a !important;
}
.tab-btn {
    flex: 1;
    border-radius: 10px;
    background: #2b2d36;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 20px;
    font-size: 18px;
    font-family: 'Montserrat';
    text-align: center;
    text-align: -webkit-center;
}

.modal-body {
    background: #303740;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px;
    border: 2px solid #3f4750;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    color: #cdcdcd;
}

.tab-content {
  display: none;
  font-size: 15px;
  line-height: 1.6;
}

.tab-content.active {
  display: block;
}

.modal-body h4 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    border-bottom: 2px solid #ffffff1c !important;
    padding-bottom: 5px;
    color: #fff;
    font-family: 'Montserrat';
}

.modal-body strong {
  color: #fff;
}





