/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: 1rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html, body {
  margin: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

main {
  flex: 1;
  /* margin-top: var(--header-height); */
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  /*margin-top: 2%;*/
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

img{
  width: 100%;
  max-width: 100%;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.nav-container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/

.header-top {
  height: 20vh;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 48px;
  border: 10px solid #000;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.header-top .top-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex
;
  justify-content: center;
  align-items: center;
}

.header-top .warning {
  font-size: 2.5vw;
  line-height: 1.2;
  font-family: Arial, sans-serif;
  color: #fff;
  font-weight: bold;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

.fixed{
	position: fixed;
  z-index: 9999;
}

/*=============== NAV ===============*/
.nav-section {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

.verify-container{
  display: flex;
  align-items: center;
  width: 2rem;
}

.verify-link svg{
  max-width: 100%;
}

/** footer section **/
.footmenu-list{
  display: flex;
  width: 80%;
  margin: 0 auto;
}

.foot-menu{
  margin: 1rem auto;
}

.footmenu-title{
  font-size: 1rem;
}

/*.sub-footmenu-item{
  font-size: .85rem;
}*/

.foot-menu a,.social-links a{
  color: #fff;
}

.footmenu-item{
  width: 20%;
}

.sub-footmenu-list{
  margin: .55rem auto;
  padding: 0;
}

.sub-footmenu-item{
  margin: .25rem auto;
}

.subscription-container{
  margin: 1rem auto;
}

/*.subscription-title{
  font-size: 1.75rem;
}*/

.subscription-desc{
  margin: 1rem auto
}

.sign-up{
  font-size: 0;
}

.sign-up input,.sign-up button{
  padding: 9px;
  border-radius: 5px;
  border: none;
  font-size: .85rem;
}

.sign-up button{
  background: linear-gradient(135deg, #25D366, #128C7E);
  cursor: pointer;
  color: #fff;
}

.contact-container .sale-email{
  color: #fff;
}

.social-links{
  display: flex;
  flex-direction: row;
  margin: 2rem auto;
  justify-content: center;
  gap: 10px;
}

.link i{
  font-size: 2rem;
  color: #FFFFFF;
}

.link:hover i.ri-whatsapp-line{
  background: linear-gradient(135deg, #25D366, #128C7E);
  padding: 10px;
  border-radius: 10px;
}

.link:hover i.ri-discord-line{
  background: linear-gradient(135deg, #2C2F33, #23272A);
  padding: 10px;
  border-radius: 10px;
}

.link:hover i.ri-youtube-line{
  background: linear-gradient(135deg, #FF0000, #FF4D4D);
  padding: 10px;
  border-radius: 10px;
}

.link:hover i.ri-tiktok-line{
  background: linear-gradient(135deg, #000,#333 25%,#666 50%,#999 75%, #fff);
  padding: 10px;
  border-radius: 10px;
}

.link:hover i.ri-instagram-line{
  background: linear-gradient(135deg, #F56040, #FDA73B, #E1306C, #BD34FE);
  padding: 10px;
  border-radius: 10px;
}

/** footer section **/

.back-to-top{
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  /* background-color: #25D366; */
  /* width: 2rem;
  height: 2rem; */
  z-index: 999;
  background-color: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity .5s ease-in-out;
  opacity: 0;
}

.back-to-top-btn{
  cursor: pointer;
  border: none;
  outline: none;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background: transparent;
}

.back-to-top-btn i{
  background: linear-gradient(135deg, #25D366, #128C7E);
  font-size: 2rem;
  border-radius: 50%;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
  white-space: nowrap;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

.mobile-verify{
  display: none;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=================== Age Verification====================*/
.age-popup{
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  color: #fff;
}

.age-popup .age-box{
  position: absolute;
  max-width: 600px;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  text-align: center;
  font-size: 16px;
}

.age-box .title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin: 60px 0 24px;
}

.age-box .age-warning{
  line-height: 1.5;
}

.age-box .btn-box {
  margin-top: 40px;
  font-size: 0;
}

.age-box .btn-box button {
  width: calc(50% - 12px);
  max-width: 160px;
  height: 48px;
  font-size: 16px;
  border-radius: 0;
  cursor: pointer;
}

.btn {
  color: #fff;
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 38px;
  border: none;
  border-radius: 38px;
  overflow: hidden;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  background-color: #FD9251;
  -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),border 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  /* -webkit-tap-highlight-color:initial; */
}

.btn {
  background: #0017c1;
}

.age-box .btn-border {
  background: #000;
  border: 1px solid #FFFFFF;
  color: #fff;
  margin-right: 24px;
  font-weight: 600;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .nav-container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }

  .mobile-verify{
    display: block;
  }

  .verify-container{
    display: none;
  }
}

@media (max-width: 767px) {
  .header-top .warning {
      font-size: 4vw;
      line-height: 1.3;
  }

  .product-list-section .product-grid, .news-section .news-grid{
    padding: 0;
  }

  .footmenu-list{
    flex-wrap: wrap;
  }

  .footmenu-item{
    width: 50%;
  }

  .mobile-verify{
    display: block;
  }

  .verify-container{
    display: none;
  }

  .age-box {
    font-size: 14px;
    padding: 0 24px;
  }

  .age-box .title {
    font-size: 24px;
    margin: 40px 0 16px;
  }
  .age-box .btn-box button {
    max-width: 136px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .mobile-verify{
    display: block;
  }

  .verify-container{
    display: none;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  main {
    flex: 1;
    /* margin-top: calc(var(--header-height) + 1rem); */
  }

  .nav-container {
    margin-inline: auto;
  }

  .nav-section {
    height: calc(var(--header-height) + 1rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: calc(var(--header-height) + 1rem);
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

.f-title{
  font-size: 1.938rem;
  font-weight: bold;
}

.f-subtitle{
  font-size: 1.5rem;
}