@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Special+Gothic+Condensed+One&display=swap');

:root {
  --color-primary: #ab7703eb;
  --main-color: #dd8c03;
  --bg-image: url("https://webstore-template-assets.tebex.io/images/page-bg.jpg");
}

body {
  font-family: Lato, sans-serif;
}
.container {
    position: relative;
    min-height:100%;
}
.container {
    position: relative;
    min-height: 100%;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
a {
    color: var(--text-color);
    text-decoration: none;
}
a:hover, a:focus {
    color: #fff;
    text-decoration: none;
}
::-webkit-scrollbar {
	width: 8px;
	height: 30px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 20px;
}

::-webkit-scrollbar-track {
	background-color: var(--first-color);
}

::-webkit-scrollbar-corner {
    background-color: var(--main-color);
}

.jhn-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(https://i.imgur.com/e5q2ZCk.jpg) center no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
    filter: blur(2px);
}
.jhn-header:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, black, transparent);
    z-index: -1;
}
.jhn-header {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.jhn-header-top-logo img {
    height: 80px;
}
.jhn-header-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.jhn-header-top-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
ul.menu.navigation-list {
    padding: 0;
    margin: 0;
    display: flex
;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
nav#site-navigation {
    display: flex;
    align-items: center;
}
ul.menu.navigation-list li a {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 10px 5px;
    color: #fff;
}
.jhn-header-top {
    padding-top: 12px;
}
ul.menu.navigation-list li a svg path {
    fill: #ffffffb5;
}
ul.menu.navigation-list li a {
    display: flex
;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
ul.menu.navigation-list li a svg {
    height: 16px;
}
ul.menu.navigation-list li a.link-active {
    border-bottom: 3px solid #fff;
}
.jhn-header-mid-img {
    background: url(https://i.imgur.com/IWOlzJI.png) center no-repeat;
    height: 500px;
    width: 500px;
    background-size: cover;
    transform: skewY(0) rotate(-15deg);
}
.jhn-header-mid {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.jhn-header-mid-left {
    width: 50%;
}
.jhn-header-mid-right {
    width: 50%;
    justify-items: center;
}

.jhn-header-mid-tit {
  position: relative;
  display: inline-block;
  font-size: 4rem;
  font-family: 'Luckiest Guy', cursive;
  text-transform: uppercase;
}

.graffiti-stroke {
    position: absolute;
    left: 0;
    top: 0;
    color: black;
    -webkit-text-stroke: 9px #ffffff;
    z-index: 1;
}

.graffiti-fill {
  background: linear-gradient(45deg, #f39c12, #e74c3c, #3498db, #8e44ad);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: graffitiGradient 5s infinite linear;
  position: relative;
  z-index: 2;
}

@keyframes graffitiGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.header-glow {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
  background: radial-gradient(circle at center, #f39c12, #e74c3c, #8e44ad, #3498db);
  background-size: 400% 400%;
  filter: blur(50px);
  animation: moveGlow 10s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.header-glow-left {
  left: -100px;
}

.header-glow-right {
  right: -100px;
}

@keyframes moveGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.jhn-header-mid-text {
    font-size: 18px;
    font-family: 'Poppins';
    letter-spacing: -0.5px;
    font-weight: 400;
    margin: 1rem 0;
}
.jhn-header-mid-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}
.jhn-header-mid-btns a {
    padding: 17px 40px;
    background: red;
    font-size: 26px;
    font-family: 'Luckiest Guy', cursive;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 8px;
    --😀: #644dff;
    --😀😀: #4836bb;
    --😀😀😀: #654dff63;
    cursor: pointer;
    width: 184px;
    /* height: 48px; */
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    /* font-size: 1.125em; */
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    background: var(--😀);
    border: 2px solid var(--😀😀);
    border-radius: .75rem;
    box-shadow: 0 8px 0 var(--😀😀);
    transform: skew(-10deg);
    transition: all .1s ease;
    filter: drop-shadow(0 15px 20px var(--😀😀😀));
}
.jhn-header-mid-btns a svg path {
    fill: #fff;
}
.jhn-header-mid-btns a svg {
    height: 22px;
}







.jhn-about-us {
    display: flex
;
    flex-direction: column;
    align-items: center;
}
.jhn-about-content {
    width: 100%;
}

.jhn-about-images {
    width: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.jhn-featureed-title p {
    display: none;
}
.jhn-home-features {
    display: grid
;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
    height: 275px;
    gap: 15px;
    margin-top: 2rem;
}
.jhn-home-feature {
    display: flex
;
    flex-direction: column;
    align-content: center;
    align-items: center;
    text-align: center;
    text-align: -webkit-center;
    padding: 20px;
    border: 1px solid rgb(255 255 255 / 8%);
    justify-content: center;
    background: #ffffff17;
    border-radius: 8px;
    position: relative;
}
.jhn-feature-icon {
    position: relative;
}
.jhn-feature-icon svg path {
    fill: #ffffffc7;
}
.jhn-feature-icon svg {
    height: 38px;
}
.jhn-feature-icon i {
    color: #2789ef;
    font-size: 45px;
    position: relative;
    margin-bottom: 15px;
}
.jhn-feature-title {
    margin-top: 15px;
    font-size: 22px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: bold;
}
.jhn-feature-text {
    font-family: 'Lato';
    color: #939191;
}
.jhn-about-us {
    display: flex
;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    margin-top: 7rem;
    gap: 2rem;
}
.jhn-about-content {
    width: 50%;
    position: relative;
}
.jhn-about-images {
    width: 50%;
    position: relative;
    display: flex
;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}
.jhn-about-image1 {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.jhn-about-image1:before {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 0;
    background: url(https://i.imgur.com/h58TP6n.png) center no-repeat;
    height: 400px;
    width: 100%;
    background-size: cover;
    margin-top: -100px;
    border-radius: 6px;
    filter: grayscale(0.5);
}
.jhn-about-image1 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
}
.jhn-about-btn a:first-child svg {
    height: 20px;
}

.jhn-about-title {
    font-size: 50px;
    font-family: 'Luckiest Guy';
    color: #fff;
    line-height: 48px;
    margin: 12px 0;
}
.jhn-about-subtitle {
    color: var(--main-color);
    font-family: 'Inter';
    font-weight: 500;
    font-size: 23px;
    /* font-style: italic; */
    text-transform: uppercase;
}
.jhn-about-text {
    color: rgba(186, 186, 186, 1);
    font-family: 'Poppins';
    max-width: 500px;
}
.jhn-about-btn {
    margin-top: 20px;
    display: flex
;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
.jhn-about-btn a {
    border: 1px solid #fff;
    padding: 12px 20px;
    display: flex
;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    height: 50px;
}
.jhn-about-btn svg path {
    fill: #fff;
}
.jhn-about-btn a:first-child {
    gap: 10px;
    border-color: #4da8f7;
    background: #4da8f7;
    color: #fff;
    font-family: 'Inter';
    font-weight: 500;
}
.jhn-about-btn a {
    border: 1px solid #fff;
    padding: 12px 20px;
    display: flex
;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    height: 50px;
}


.jhn-help-block {
    background: rgb(11 11 11 / 86%) !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    margin-top: 5rem;
    z-index: 0;
}

.jhn-help-block:after {
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgb(11 11 37 / 88%) 0%, #0B0B25 100%);
    background: url(https://i.imgur.com/UrEQ71A.png) no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* opacity: .1; */
    /* filter: grayscale(1); */
    z-index: -1;
}
.jhn-help {
    display: flex!important;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 500px;
    max-height: 500px;
}

.jhn-help:after {
    content: "";
    position: absolute;
    top: 108px;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--main-color);
    filter: blur(90px);
    opacity: 0.3;
    transform: translateX(-50%);
    z-index: -3;
}
.jhn-help h1 {
    color: #fff;
    font-weight: 700;
    font-size: 42px;
    line-height: 135%;
    font-family: 'Poppins';
    font-style: italic;
}
.jhn-help span {
    font-weight: 600;
    font-size: 21px;
    line-height: 50%;
    text-align: center;
    margin-bottom: 20px;
    color: var(--main-color);
    font-family: 'Inter';
    text-transform: uppercase;
}
.jhn-help p {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 175%;
    text-align: center;
    max-width: 700px;
    color: #cfcfcf;
    font-family: 'Inter';
}
a#jhn-help-btn {
    background: var(--main-color);
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
    gap: 10px;
    color: black;
    margin: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 135%;
    text-align: center;
}

.jhn-header-features {
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: -10rem;
    position: relative;
    z-index: 1;
}
img.jhn-img2 {
    height: 422px;
}
img.jhn-img3 {
    margin-left: 0;
    z-index: 1;
    height: 500px;
}
img.jhn-img1 {
    margin-right: -221px;
    z-index: 1;
}




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

@media (width > 600px) {
  .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;
}

.jhn-feat-obt {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgb(0 0 0 / 21%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 14px;
    font-size: 19px;
    font-weight: 400;
    color: #605f5f;
    font-family: 'Poppins', sans-serif;
    align-items: center;
    justify-content: center;
}


.jhn-beneficii-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.jhn-benefic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    text-align: -webkit-center;
    border: 1px solid #00000005;
    background: #d498e77d;
    filter: drop-shadow(0px 0px 56px var(--main-color));
}
.jhn-benef-icon {
    margin-top: -10px;
}
.jhn-benef-icon i {
    font-size: 65px;
    color: #c56fc7;
    text-shadow: 0 0 4px #e1a4e5;
}
.jhn-benef-title {
    font-size: 19px;
    color: #00000085;
    font-weight: 600;
    font-family: 'Poppins';
}
.jhn-benef-text {
    font-family: 'Poppins';
    color: #00000061;
    letter-spacing: -0.025rem;
    font-size: 16px;
}
.jhn-ind-benef {
    margin: 3rem 0;
}
.jhn-featureed-title {
    background: var(--main-color);
    font-size: 3rem;
    line-height: 1;
    width: 38.8125rem;
    height: 5.14231rem;
    color: rgb(30 30 30 / 1);
    font-weight: 900;
    text-align: center;
    text-align: -webkit-center;
    align-content: center;
    text-transform: uppercase;
    margin: auto;
    margin-bottom: 3rem;
    border-radius: 6px;
    z-index: 1;
    position: relative;
    letter-spacing: 0.1rem;
}
div#jhn-featured {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
}
.jhn-ind-fea {
    margin-bottom: 10rem;
}
.featured .widget.widget-featured {
    padding: 0;
    border-radius: 6px;
}
.container {
    position: relative;
    min-height: 100%;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.widget.widget-featured {
    background: transparent;
    filter: drop-shadow(0px 0px 6px #0000004d);
    border: 1px solid #ffffff0d;
    border-bottom: none;
}
.store-product .product-title a:hover {
    color: var(--hover);
}

article.store-product {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.store-product {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
}
.widget .store-product {
    text-align: center;
    background: #48484830;
    max-height: 360px;
    height: 360px;
}
a.add.btn-primary.wide svg path {
    fill: #9b9b9b;
}
a.add.btn-primary.wide svg {
    height: 20px;
}
a.add.btn-primary.wide {
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border-radius: 0px;
    background: transparent;
    color: #9b9b9b;
    font-family: 'Poppins';
    flex: none;
}
.store-product:not(.store-product-full) .price {
    width: auto;
    margin: 0;
    font-family: 'Poppins';
    color: #a7a4a4;
    font-weight: bold;
    display: flex
;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.actions.product-actions.jhn-pack-bot {
    padding: 0;
    margin-bottom: 0;
}
.store-product .actions {
    display: flex
;
    gap: 12px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}
.store-product .product-title {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    text-align: -webkit-center;
    padding: 0;
    font-family: 'Inter';
    color: #fff;
}
.store-product .image-link img.image {
    max-height: 181px;
    padding-top: 15px;
}
.jhn-pack-bot-sect {
    background: #ffffff1a;
    border-top: 1px solid #ffffff12;
}

.jhn-featureed-title p {
    color: transparent;
    filter: drop-shadow(3px -4px 6px var(--main-color));
    font-weight: 900;
    background: inherit;
    -webkit-background-clip: text;
    letter-spacing: 0.3rem;
    width: 100%;
    z-index: -1;
    font-family: 'Poppins';
    -webkit-text-stroke: 0;
    -webkit-text-stroke: 2px var(--main-color);
    opacity: 0.4;
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 98px;
}
a:hover {
    color: var(--main-color);
    text-decoration: none;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}
a.add.btn-primary:focus svg path,
a.add.btn-primary:active svg path {
    fill: #fff;
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem var(--main-color);
}

i.fas.fa-star {
    color: var(--main-color);
}

.jhn-header-bar-right button {
    padding: 12px 12px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    opacity: 0.7;
}
.jhn-header-bar-right button svg path {
    fill: var(--main-color);
}

a.log-in.btn-tertiary svg path {
    fill: #ffffff8a;
}
a.log-in.btn-tertiary {
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
    background: #ffffff17;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid #ffffff1f;
    color: #ffffffba;
    font-family: 'Poppins';
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.jhn-fot-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

#search-filter-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

#productSearch {
  padding: 8px;
  width: 100%;
  max-width: 300px;
}

#filters {
  display: flex;
  gap: 5px;
}

#filters button {
  padding: 5px 10px;
  cursor: pointer;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
}

#filters button:hover {
  background-color: #2980b9;
}
.store-products-images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.jhn-category-page article.store-product {
    padding: 0px;
    border-radius: 6px;
    background-color: rgb(255 255 255 / 6%);
    border: 1px solid #ffffff14;
    border-bottom: none;
}
.jhn-category-page h4.product-title {
    margin-top: 10px;
}
.store-product {
    position: relative;
}
.product-tags {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
    margin-left: 10px;
}
span.tag-button {
    background: var(--main-color);
    padding: 4px 8px;
    border-radius: 6px;
    color: #ffffffba;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Inter';
    font-size: 15px;
}

.jhn-cat-search i {
    font-size: 29px;
    color: var(--main-color);
}
.jhn-cat-search {
    background: #282828;
    border-radius: 6px;
    margin-bottom: 10px;
    height: 55px;
    color: #9b9b9b;
    border: 1px solid #ffffff1f;
    font-size: 16px;
    padding: 10px;
    display: flex
;
    align-items: center;
    width: 400px;
}
#filters button {
    padding: 10px 20px;
    cursor: pointer;
    color: #a1a1a1;
    border-radius: 6px;
    font-size: 17px;
    font-family: 'Poppins';
    background-color: #ffffff29;
    border: 1px solid #ffffff29;
}
#filters button:hover {
    background-color: #ffffff4d;
    border: 1px solid #ffffff2e;
}
#filters button.active {
    background-color: #ffffff70;
    border: 1px solid #ffffff47;
    color: #fff;
}
button:focus {
    outline: 0;
    outline: 0;
}
.jhn-category-name span {
    color: var(--main-color);
    font-size: 2.5rem;
    font-weight: bold;
}
.jhn-category-name {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}
.category-description.text-content {
    background: transparent;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    font-size: 20px;
    font-family: 'Poppins';
    color: #9b9b9b;
}
.store-products-images .store-product .image-link {
    position: relative;
    overflow: hidden;
}
.jhn-category-page article.store-product {
    overflow: hidden;
    position: relative;
}
.jhn-category-page article.store-product:hover img.image {
    transform: scale(1.1) translateZ(10px);
    transition-duration: .2s;
}
.jhn-category-page article.store-product img.image {
    transition-duration: .2s;
}
a.add.btn-primary:hover svg {
    transform: scale(1.2) rotate(17deg);
    transition-duration: .2s;
}
a.add.btn-primary svg {
    transition-duration: .2s;
}
a.add.btn-primary:hover,
a.add.btn-primary:focus,
a.add.btn-primary:active {
    color: var(--color-primary);
    transition-duration: .2s;
}
a.add.btn-primary:hover {
    transition-duration: .2s;
}
.store-product .image-link:hover ~ .product-title a {
    color: var(--color-primary);
}
.store-products-images .store-product:not(.store-product-full) .price {
    margin-bottom: inherit;
}
.popup-content {
    background: #333232;
    position: relative;
    overflow: hidden;
}
.popup-content:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://i.imgur.com/DnKkGsC.png) center no-repeat;
    opacity: 0.2;
    filter: grayscale(1) blur(1px);
    z-index: 0;
    background-size: cover;
}
.popup-close {
    background-color: red;
}
.popup-close:hover {
    opacity: 1;
    background-color: rgb(255 3 3 / 87%);
}
.popup-content h2 {
    font-family: 'Poppins';
    font-size: 27px;
    color: var(--main-color);
    position: relative;
}
.popup .store-form input[type=text] {
    background: #0000004d !important;
    position: relative;
    z-index: 1;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #d2cdcd;
    font-size: 15px;
}
.popup .btn-primary {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    position: relative;
    border-radius: 6px;
    /* padding: 8px 15px; */
    width: 100px;
    height: 50px;
    line-height: 50px;
    font-family: 'Poppins';
    font-size: 19px;
    margin-top: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.store-product .quantity-field {
    width: 60% !important;
    flex: none;
    background: #bd85c7;
    border-radius: 50px;
    color: #8e54a1;
    font-family: 'Poppins';
    font-weight: bold;
}
.quantity-field .adjust.decrease {
    width: 45px;
    background: #ffffff1c;
}
.quantity-field .adjust.increase {
    width: 45px;
    background: #ffffff1c;
}
.quantity-field .open-basket:focus, .quantity-field .open-basket:hover {
    color: var(--main-color);
}
.quantity-field .open-basket:focus ~ input[type=number], .quantity-field .open-basket:hover ~ input[type=number] {
    color: var(--main-color);
}
.user-actions.jhn-header-log-btns {
    display: flex;
    gap: 12px;
    align-items: center;
}
.btn-primary, .btn-secondary, .btn-tertiary {
    border-radius: 6px;
}
.btn-secondary {
    color: #fff;
    background-color: #ffffff17;
    border-color: #b7b9ba;
    border-radius: 6px;
}
a.btn-secondary.btn-glyph-text.user-name:hover .text-hover {
    display: block;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
}
a.btn-secondary.btn-glyph-text.user-name:hover .text-hover svg path {
    fill: var(--main-color);
}

span.text svg path {
    fill: var(--main-color);
}
span.text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
a.btn-secondary.user-name:hover .text-hover svg path {
    fill: #fb6161 !important;
}
a.btn-secondary.user-name:hover .text-hover span {
    color: #f86d6d;
    font-family: 'Poppins';
    font-weight: 500;
}
a.btn-secondary.user-name:hover {
    background: #ff68684a;
    box-shadow: none;
    color: #f44e4e;
}
span.text-hover {
    opacity: 0;
    display: none;
}
a.btn-secondary.btn-glyph-text.user-name:hover span.text {
    display: none;
}
.btn-glyph::before, .btn-glyph-text::before {
    display: none;
}
button.btn-primary.btn-glyph-text.open-basket {
    color: #ffffffbd;
    background-color: #ffffff24 !important;
    border-color: #ffffff;
    border-radius: 6px !important;
    border: 1px solid #ffffff1f !important;
    opacity: 1 !important;
    display: flex
;
    gap: 7px;
    font-family: 'Poppins';
    font-weight: 500;
}
.btn-primary:hover, .btn-primary:focus, .btn-secondary:hover, .btn-secondary:focus {
    box-shadow: 0 0 4px var(--main-color);
}

.popup-content.basket-popup-content.basket {
    background: black;
    background-image: linear-gradient(45deg, var(--main-color) 0%, transparent 100%);
}
.basket .basket-title {
    color: #fff;
}
.basket .basket-second-header .total {
    font-size: 14px;
    color: #191414;
    position: relative;
    font-family: 'Poppins';
}
.count {
    color: #b7b7b7;
    position: relative;
    font-family: 'Poppins';
    font-weight: 500;
}
.basket .basket-second-header .total {
    font-size: 14px;
    color: #b7b7b7;
    position: relative;
    font-family: 'Poppins';
    font-weight: 500;
}
.basket-popup-content .popup-close {
    opacity: 1;
}
.basket .basket-item {
    background: #0000003b;
    position: relative;
}
.basket .basket-item .title a {
    color: #fff;
}
.basket .basket-item .price {
    color: rgb(194 194 194);
    font-size: 14px;
    position: relative;
}
.basket .basket-item .quantity-field {
    background: #ffffff17;
    border: 1px solid #00000000;
}
.basket .basket-item .remove {
    display: flex;
    align-items: center;
    justify-content: center;
}
.basket .basket-item .remove svg path {
    fill: #ff4343;
}
.basket .basket-item .remove:hover svg path {
    fill: #982828;
}
.basket .basket-item .remove:hover {
    background: #cb4e4ea3;
    box-shadow: 0 0 6px #ff000091;
}
.basket .basket-second-header {
    background: #00000026;
    border-top: 1px solid #c9c9c957;
    border-bottom: 1px solid #fcfcfc6e;
}
.basket .basket-checkout h3 {
    color: #ffffff;
    font-family: 'Poppins';
    font-size: 18px;
}
.basket .basket-checkout .total {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}
header.basket-header {
    position: relative;
    background: #00000021 !important;
}
.basket-popup-content .popup-close {
    opacity: 1;
    z-index: 1;
    border-bottom-left-radius: 5px;
}
button.accordion.active {
    border: none;
}
.jhn-pack-top {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.jhn-pack-page {
    margin-top: -5rem;
    position: relative;
}
.jhn-pack-top-img {
    width: 50%;
}
.jhn-pack-top-img img.image {
    width: fit-content;
    width: 100%;
    border-radius: 5px;
}
.jhn-pack-top-data {
    width: 50%;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.jhn-pack-top-title {
    font-size: 32px;
    font-family: 'Poppins';
    color: var(--main-color);
    font-weight: bold;
    letter-spacing: 0.025rem;
}
div#packTags {
    display: flex
;
    flex-direction: row;
    gap: 12px;
}
div#packTags span.tag-button {
    border-radius: 50px;
    padding: 6px 18px;
}
.jhn-pack-top-info {
    display: flex
;
    justify-content: space-between;
    width: 100%;
    align-content: center;
    align-items: center;
    background: #ffffff1a;
    border-radius: 10px;
    border: 1px solid #ffffff17;
    padding: 15px;
}
.jhn-pack-top-price p.price {
    margin: 0;
    font-size: 23px;
    font-family: 'Poppins';
    font-weight: 500;
    color: #ffffffa8;
}
.jhn-pack-top-price span {
    font-size: 15px;
    font-family: 'Poppins';
    color: #ffffffa8;
}
.jhn-pack-top-price p.price {
    margin-top: -5px;
}
.jhn-pack-top-info .actions.product-actions {
    padding: 0;
    margin: 0;
    display: flex
;
    gap: 12px;
    justify-content: flex-end;
}
.btn-icon.gift {
    display: flex
;
    align-items: center;
    justify-content: center;
    background: #71b8e7;
    border-radius: 50px;
}
.btn-icon.gift svg path {
    fill: #ffffff;
}
.actions.product-actions.jhn-pack-bot a svg {
    overflow: visible;
}
.jhn-pack-top-info .actions.product-actions.jhn-pack-bot a.btn-primary {
    width: auto;
}
.jhn-pack-sect-descr {
    background: #ffffff1a;
    border-radius: 10px;
    border: 1px solid #ffffff1c;
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 30px;
}
.jhn-pack-page-obj svg {
    height: 16px;
}
span.jhn-pack-descr-title {
    font-size: 23px;
    font-family: 'Poppins';
    margin-bottom: 20px;
    position: relative;
    display: flex
;
}
.jhn-pack-feat-tit {
    font-size: 35px;
    font-family: 'Poppins';
    font-weight: 600;
    color: var(--main-color);
    text-shadow: 0px -2px 8px var(--main-color);
    margin-bottom: 20px;
}
.jhn-pack-feat-list {
    display: grid
;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.jhn-pack-page-feat {
    margin: 6rem 0;
}
.jhn-pack-feat-icon {
    margin-bottom: 12px;
}
.jhn-pack-feat-icon p {
    margin: 0;
}
.jhn-pack-feat-icon svg {
    height: 35px;
}
.jhn-pack-feat-icon svg path {
    fill: var(--main-color);
}
.jhn-pack-feat-icon {
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
    font-family: 'Poppins';
    text-align: center;
    text-align: -webkit-center;
}
.jhn-pack-feat-data {
    text-align: center;
    text-align: -webkit-center;
    font-size: 17px;
    font-family: 'Lato';
    padding: 0 10px;
    color: #5d5d5d;
    font-weight: 500;
}
.user-actions svg path {
    fill: #c1bdbd;
}
.user-actions svg {
    height: 20px;
}
.jhn-pack-page-title {
    display: flex
;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: 'Poppins';
    color: #3c3c3c;
    font-weight: 500;
}
.jhn-pack-page-obj {
    display: flex
;
    gap: 8px;
    align-items: center;
}
.jhn-pack-page-obj.actv {
    color: var(--main-color);
}
.jhn-pack-page-obj a {
    color: #929292;
}
.jhn-pack-bot .quantity-field.with-open-basket {
    background: #bfbfbf42;
    height: 48px;
    border-radius: 6px;
    width: auto;
    min-width: 200px;
    color: #ffffff;
    font-family: 'Lato';
    font-weight: bold;
    border-color: #ffffff17;
}
svg path {
    fill: #fff;
}
svg {
    height: 17px;
}
.btn-icon.gift svg path {
    fill: #fff;
}
.jhn-home-modules {
    display: flex
;
    width: 100%;
}
div#all-payments {
    width: 100%;
}
.jhn-payment .widget {
    background: transparent;
    color: #494848;
}
.pack-with-disc {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    margin-bottom: 0;
}
p.price del.discount {
    margin: 0;
    color: red;
    font-style: italic;
    font-family: 'Poppins';
    font-size: 18px;
}
.jhn-pack-top-price p.price del.discount {
    margin-right: 5px;
}
.purchases {
    display: grid
;
    gap: 15px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.jhn-purch-data img {
    border-radius: 50px;
}
.jhn-purch-data {
    display: flex
;
    gap: 12px;
}
.widget-recent .purchase {
    margin: 0;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    background: #66666636;
    border-radius: 6px;
    padding: 15px;
}
.purchases {
    display: grid
;
    gap: 15px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.widget-recent .username {
    font-family: 'Poppins';
    color: var(--main-color);
    margin: 0;
}
.jhn-putch-user span {
    color: #494949;
    font-family: 'Lato';
}
.jhn-purch-price {
    border: 1px solid #ffffff14;
    padding: 4px 6px;
    color: #818181;
    border-radius: 50px;
}

.jhn-footer {
    position: relative;
    border-top: 1px solid #ffffff1f;
    padding-top: 35px;
}
.jhn-fot-menu {
    display: flex!important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 30px;
    margin: 30px 0;
    z-index: 1;
    position: relative;
}
.jhn-fot-menu a {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #d5d5d5;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-family: 'Poppins';
}
.jhn-fot-menu a i {
    color: #959595;
    font-size: 20px;
    margin-bottom: 0;
}
.jhn-fot-menu a:hover i {
    color: #fff;
}
.jhn-fot-menu a:hover {
    color: #fff;
}

.jhn-footer-brand {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #a1a0a0;
    z-index: 1;
    position: relative;
    border-top: 1px solid #3e407b21;
    padding-top: 20px;
    display: flex
;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    font-family: 'Inter';
}
.jhn-fot-logo {
    text-align: center;
    text-align: -webkit-center;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jhn-fot-logo img {
    height: 170px;
    z-index: 1;
    position: relative;
    filter: opacity(0.9);
}
.jhn-footer-social a:hover {
    border-color: #ffffff66;
}
.jhn-footer-social a:hover svg path {
    fill: #fff;
}
.jhn-footer-social a {
    border: 1px solid #ffffff1a;
    padding: 10px 10px;
    border-radius: 50px;
}
.jhn-footer-social a svg path {
    fill: #817f7f;
}
.jhn-footer-social a svg {
    height: 20px;
}
.jhn-footer-social {
    display: flex
;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}
a#jhn-help-btn span {
    color: #fff;
    margin: 0;
    padding: 0;
    text-transform: none;
    font-size: 16px;
    line-height: normal;
    font-family: 'Poppins';
}
a#jhn-help-btn svg path {
    fill: #fff;
}
a#jhn-help-btn svg {
    transform: rotate(45deg);
    height: 21px;
}
.jhn-footer-copy a {
    color: #c1bdbd;
}
.jhn-footer-copy {
    text-align: start;
}
img.jhn-fot-logo-abs {
    position: absolute;
    transform: scale(1.3);
    opacity: 0.1;
    text-shadow: 0 0 4px var(--main-color);
    filter: blur(4px) drop-shadow(2px 4px 26px var(--main-color));
}
@media ( max-width: 768px ) {
    .jhn-header-bar-left {
    display: none;
}
.jhn-header-bar-cent a {
    padding: 10px;
}
.jhn-header-bar {
    height: auto;
    padding: 20px 0;
}
.jhn-header-bar .container {
    padding: 0;
    display: flex
;
    flex-direction: column-reverse;
    gap: 12px;
}
.jhn-feat-obt {
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    text-align: center;
    text-align: -webkit-center;
}
.jhn-header {
    height: auto;
}
.jhn-header-mid-btns {
    display: flex
;
    flex-direction: column;
    gap: 12px;
}
.jhn-beneficii-list {
    display: flex
;
    flex-direction: column;
}
div#jhn-featured {
    display: flex
;
    flex-direction: column;
}
.jhn-payment-mod-tit {
    margin-top: 4rem;
}
.purchases {
    display: flex
;
    flex-direction: column;
}
.jhn-index-sec-reviews {
    display: flex
;
    flex-direction: column;
}
.jhn-index-sec-reviews:before {
    background: none;
}
.jhn-footer-top {
    display: flex
;
    flex-direction: column;
    gap: 10px;
}
.jhn-footer-bot {
    display: flex
;
    flex-direction: column;
    gap: 10px;
}
.jhn-footer-water {
    text-align: center;
    text-align: -webkit-center;
}
.jhn-cat-search {
    width: auto;
}
div#filters {
    display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
}
.store-products-images {
    display: flex
;
    flex-direction: column;
}
.jhn-pack-page {
    margin-top: 2rem;
}
.jhn-pack-top {
    display: flex
;
    flex-direction: column;
    gap: 1rem;
}
.jhn-pack-top-img {
    width: 100%;
}
.jhn-pack-top-data {
    width: 100%;
}
.jhn-pack-top-info {
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.jhn-pack-feat-list {
    display: flex
;
    flex-direction: column;
    gap: 30px;
}


}


.jhn-ind-fea {
    margin-top: 8rem;
}
.jhn-featureed-title.jhn-payment-mod-tit {
    margin-top: 6rem;
}
.jhn-index-faq {
    margin-top: 6rem;
}
.jhn-header-mid-text h1 {
    text-shadow: 0 0 3px #a92782;
}
span.countdown {
    color: #dc4646;
}

.user-actions {
    display: flex
;
    gap: 15px;
}

.jhn-pack-bot-sect {
    width: 100%;
}
.store-products-images .store-product:not(.store-product-full) .actions {
    flex: none!important;
}
.btn-primary:hover, .btn-primary:focus, .btn-secondary:hover, .btn-secondary:focus {
    box-shadow: none;
}
a.add.btn-primary:hover svg path {
    fill: var(--main-color);
}
.btn-primary:hover, .btn-primary:focus, .btn-secondary:hover, .btn-secondary:focus {
    box-shadow: none!important;
}
.btn-primary:hover svg path, .btn-primary:focus svg path, .btn-secondary:hover svg path, .btn-secondary:focus svg path {
    fill: #ffffff;
}
.jhn-cat-page-sel {
    display: flex
;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-between;
    position: relative;
}
.jhn-cat-subcategories {
    width: auto;
}
.jhn-cat-subcategories ul {
    display: flex
;
    flex-direction: row;
    margin: 0;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.jhn-cat-subcategories ul li a {
    padding: 10px 20px;
    cursor: pointer;
    color: #cfcfcf;
    border-radius: 6px;
    font-size: 17px;
    font-family: 'Poppins';
    background-color: #2c2c2c29;
    border: 1px solid #817a7a29;
}
.jhn-cat-subcategories ul li a:hover {
    background-color: #87858529;
    border: 1px solid #8f8c8c29;
}
.store-products-list article.store-product {
    padding: 5px 15px;
}
.store-products-list article.store-product .actions.product-actions.jhn-pack-bot .jhn-pack-bot-sect {
    border-radius: 6px !important;
}
.jhn-pack-top-info .jhn-pack-bot-sect {
    display: flex
;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
}
.jhn-pack-top-info .jhn-pack-bot-sect a.add.btn-primary {
    background: #1dc367;
    color: #fff;
}
.jhn-pack-top-info .jhn-pack-bot-sect a.add.btn-primary svg path {
    fill: #fff;
}
span.jhn-pack-descr-title {
    color: #fff;
    font-weight: bold;
}
.jhn-pack-sect-descr {
    color: grey;
}
.jhn-pack-page-obj svg path {
    fill: #3c3c3c;
}
article.store-product .quantity-field.with-open-basket {
    width: 100% !important;
    border-radius: 6px;
    background: #ffffff1c;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    color: #9b9b9b;
    font-family: 'Lato';
    font-weight: bold;
}
@media (max-width: 768px) {
    .jhn-header-bar-left {
    display: none;
}
ul.navigation-list {
    display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
img.jhn-header-mid-img1 {
    display: none;
}
.jhn-header-intor-tit-abs {
    font-size: 60px;
    top: -50px;
}
.jhn-header-intro-tit span {
    line-height: 50px;
}
.jhn-header-intro-text {
    margin-top: 15px;
}
.jhn-header-intro {
    margin-top: -2rem;
}
.jhn-header-infor-btn {
    margin-bottom: 2rem;
}
.jhn-home-features {
    display: grid
;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    height: auto;
}
.jhn-about-us {
    display: flex
;
    flex-direction: column;
    align-items: center;
}
.jhn-about-content {
    width: 100%;
}
.jhn-about-image2 {
    display: none;
}
.jhn-about-images {
    width: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}
.jhn-featureed-title p {
    display: none;
}
.jhn-fot-menu {
    display: flex
;
    flex-wrap: wrap;
    flex-direction: row;
}
.jhn-footer-brand {
    display: flex
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    text-align: -webkit-center;
}
.jhn-cat-page-sel {
    display: flex
;
    flex-direction: column;
    margin: 2rem 0;
    gap: 2rem;
}
.jhn-home-features {
    display: flex
;
    flex-direction: column;
    gap: 20px;
}
.jhn-header-mid-tit {
    font-size: 2rem;
    text-align: center;
    text-align: -webkit-center;
}

.jhn-header-mid {
    display: flex
;
    flex-direction: column-reverse;
    align-items: center;
}
.jhn-header-mid-left {
    width: 100%;
    text-align: center;
    text-align: -webkit-center;
}
.jhn-header-mid-img {
    height: 200px;
    width: 200px;
}
.jhn-header-mid-btns {
    display: flex
;
    flex-direction: row;
    align-items: center;
}
.jhn-header-mid-btns a {
    padding: 10px 25px;
    width: 170px;
    font-size: 20px;
    height: auto;
}
.jhn-header-mid-text {
    font-size: 16px;
}
    .jhn-header {
        height: 700px;
    }
.jhn-featureed-title {
    width: 100%;
    height: 100%;
}
.jhn-index-sec-reviews {
    display: flex!important;
    flex-direction: column!important;
}

.jhn-header-top-right {
    display: flex
;
    gap: 12px;
    align-items: center;
}
button.btn-tertiary.btn-icon.toggle-navigation {
    line-height: 20px;
    color: #fff;
    font-size: 27px;
    background-color: #ffffff17;
    border-color: #b7b9ba;
    border-radius: 6px;
}
span.text {
    gap: 0;
}
button.btn-primary.btn-glyph-text.open-basket {
    gap: 0;
}
.site-navigation .menu {
        background: #262525;
}
ul.menu.navigation-list {
    padding: 10px 15px;
}
.site-navigation .close-navigation {
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    z-index: 1;
}

}

.jhn-pack-top-info .actions.product-actions.jhn-pack-bot a.btn-primary {
    width: auto;
    border-radius: 6px;
}


.accordion:after {
    content: '\02795';
    font-size: 15px;
    color: white;
    float: right;
    margin-left: 5px;
    filter: grayscale(1);
}

.accordion.active:after {
  content: "\2796"; 
}
.accordion {
    color: var(--text-color);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    border: none;
    border-radius: .5rem;
    transition: 0.4s;
    background: rgb(36 35 35);
}
button.accordion {
    position: relative;
    overflow: hidden;
}
.jhn-faq-block {
    margin-top: 1.5rem;
}
button.accordion svg {
    height: 75px;
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.1;
    filter: blur(1px);
    transform: rotate(30deg);
}
.accordion.active, .accordion:hover {
    background-color: rgb(36 35 35);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom: none;
}

.jhn-faq {
    background: rgb(36 35 35)!important;
    padding: 1.5rem 0.5rem;
    border-radius: 4px;
}
.jhn-faq-panel {
    padding: 0 18px;
    background-color: rgb(36 35 35) !important;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 10px;
    border: none;
    border-top: none;
    border-radius: .5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    font-style: normal;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-height: 0;
}
.jhn-index-sec-reviews {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: relative;
}
.jhn-index-reviews:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    /* background: url(https://i.imgur.com/HziAY8r.png) center no-repeat; */
    object-fit: cover;
    filter: grayscale(1);
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.15;
    background: url(https://i.imgur.com/eR59W4h.jpg) center no-repeat;
    z-index: -1;
}
.jhn-index-sec-reviews:after {
    background: -webkit-radial-gradient(circle, rgba(71, 74, 255, 0) 0%, var(--bg-color) 100%);
    background: radial-gradient(circle, rgb(0 0 0 / 31%) 0%, var(--bg-color) 100%);
    background: rgba(71, 74, 255, 0);
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.5);
    z-index: -1;
}
.jhn-index-reviews {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}
.jhn-index-reviews {
    margin-top: 6rem;
}
.jhn-index-sec-tit {
    font-size: 55px;
    font-family: 'Inter';
    letter-spacing: -0.025rem;
    font-weight: bold;
    color: var(--main-color);
    text-shadow: 4px 0px 4px var(--color-primary);
    TEXT-TRANSFORM: uppercase;
    text-align: center;
    text-align: -webkit-center;
}
.jhn-about-btn a svg {
    height: 18px;
}
.basket .basket-item .remove i {
    font-size: 17px;
    color: #ffffffb8;
}
.jhn-index-sec-subtit {
    font-family: 'Poppins';
    font-size: 18px;
    margin-bottom: 2rem;
    text-align: center;
    text-align: -webkit-center;
    color: #ffffff99;
}
.jhn-review-item {
    padding: 1.5rem;
    border-radius: 10px;
    gap: 1rem;
    display: grid;
    grid-template-rows: 0fr auto 1fr 0fr;
    align-items: start;
    background: rgb(0 0 0 / 25%);
    box-shadow: 0 8px 32px 0 rgb(0 0 0 / 14%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 7%);
}
.jhn-review-top {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.jhn-review-author-name {
    font-style: normal;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}
i.fas.fa-star {
    --tw-text-opacity: 1;
    color: rgba(255, 103, 0, var(--tw-text-opacity));
}
.jhn-review-content {
    font-style: normal;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
button.accordion svg path {
    fill: #ffffff52;
}
.jhn-review-author-img img {
    height: 3rem;
    border-radius: calc(.5rem* .85);
}
.popup-content.login-popup-content.store-form.text-content a.btn-primary {
    width: 100%;
}
.jhn-header-mid-btns a:hover {
    color: #fff;
    transform: skew(0deg);
    transition: all .1s ease;
}

a.btn-primary.subscribe.wide {
    width: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 0px;
    background: transparent;
    color: #9b9b9b;
    font-family: 'Poppins';
    flex: 0;
}
a.btn-primary.subscribe.wide:hover svg path {
    fill: var(--color-primary);
    transform: scale(1.2) rotate(17deg);
    transition-duration: .2s;
}
a.btn-primary.subscribe.wide:hover {
    color: var(--color-primary);
    transition-duration: .2s;
}
.store-products-list .jhn-pack-bot-sect {
    display: flex
;
    align-items: center;
    justify-content: center;
}



















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

.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-full {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}

.store-product .quantity-field {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}
.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;
}



.jhn-header-top-right {
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.jhn-header-top {
    z-index: 9;
}
.actions.actions-multiple a {
    margin: 0;
}
form.store-form.store-form-options .actions.actions-multiple {
    margin-top: 40px;
}

.actions.product-actions.jhn-pack-bot {
    display: flex
;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}







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