@import url("https://fonts.googleapis.com/css2?family=Aclonica&family=Outfit:wght@100..900&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&display=swap");

* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --clr-white: #fff;
  --clr-dark: #050708;
  --clr-primary: #f5ecdf;
  --clr-secondary: #656565;
  --clr-border: #acacac;
}

body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-dark);
  background-size: cover;
  position: relative;
  background-color: #F3EBDE;
}

body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--clr-primary) url(../img/back-bg.png) no-repeat center center; */
  background-size: cover;
  z-index: -1;
}

.custom-cursor {
  width: 30px;
  height: 30px;
  border: 1px solid #050708;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: scale(0);
  transition: transform 0.2s ease, background 0.2s ease;
}

p {
  font-size: 16px;
  margin: 0 0 15px;
}

p,
li,
span {
  font-family: "Outfit", sans-serif;
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: var(--clr-dark);
}

a:hover {
  text-decoration: none;
  color: var(--clr-dark);
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  max-width: 100%;
}

section {
  position: relative;
}

/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  will-change: transform;
  transition: all 0.3s ease-in-out;
}

.headroom--unpinned {
  transform: translateY(-100%);
}

.headroom--pinned {
  transform: translateY(0%);
}

header .navbar {
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 50px;
  min-width: 50px;
}


/* .navbar-brand img {
  width: 120px;
  min-width: 120px;
} */

.navigation-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.navbar-nav {
  flex-direction: column !important;
  text-align: right;
  align-items: flex-end;
  transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link {
  padding: 3px 0 !important;
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-dark);
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
}

.navbar-nav .nav-link::after {
  content: '';
  width: 0;
  height: 1px;
  background: var(--clr-dark);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.navbar-nav .nav-link:hover {
  opacity: 0.7;
}

.navbar-nav .nav-link.active:after,
.navbar-nav .nav-link:hover:after {
  width: 100%;
  opacity: 1;
}

.sticky-header {
  background: rgb(245 236 223 / 50%);
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  backdrop-filter: blur(10px);
}

.sticky-header .navbar {
  padding: 10px 0;
}

.sticky-header .navbar-nav {
  gap: 30px;
  flex-direction: row !important;
  text-align: left;
}

.sticky-header .navbar-nav .nav-link {
  margin: 0;
}


/* header end */

::-webkit-scrollbar-track {
  border-radius: 5px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #888;
}

/* Button */

.ThemeBtn {
  border: 0;
  padding: 5px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: fit-content;
  min-height: 44px;
  border-radius: 30px;
  background: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.5s ease-in-out;
  outline: none;
  text-transform: uppercase;
  border: 1px solid var(--clr-dark);
}

.ThemeBtn i,
.ThemeBtn span {
  font-size: 18px;
  color: var(--clr-dark);
  transition: transform 0.2s;
}

.ThemeBtn:hover i,
.ThemeBtn:hover .theme_btn_arrow {
  transform: translateX(4px);
}

.TextBtn {
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: fit-content;
  background: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.5s ease-in-out;
  outline: none;
  text-transform: uppercase;
}

.TextBtn i,
.TextBtn span {
  font-size: 18px;
  color: var(--clr-dark);
  transition: transform 0.2s;
}

.TextBtn:hover i,
.TextBtn:hover span {
  transform: translateX(4px);
}

/* Button end */

/* inputs group */

.form-control {
  font-size: 14px;
  min-height: 44px;
  padding: 5px 20px;
  border-radius: 40px;
  border: 1px solid var(--clr-border);
  /* background: transparent !important; */
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--clr-dark);
}

/* inputs group end */

.circle-tagline {
  padding: 15px 40px;
  position: relative;
}

.circle-tagline .circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--clr-dark);
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
}

.circle-tagline .social-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.circle-tagline h6 {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.circle-tagline .circle:last-child {
  width: 90%;
}

.circle-tagline .circle:nth-child(2) {
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
}

.titleCenter {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  line-height: 40px;
  /* font-family: "Aclonica", sans-serif; */
  font-family: "cartoonistkooky", sans-serif;
  margin: 0 0 10px;
  text-transform: capitalize;
}

.word-span {
  display: inline-block;
  transition: color 0.2s;
  font-family: "Aclonica", sans-serif;
}

.section-title .circle-tagline {
  margin-bottom: 20px;
}

.titleLeft {
  width: fit-content !important;
  text-align: left;
}

.titleLeft .circle-tagline {
  width: fit-content !important;
}

.custom-space {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* scroll top */

#scrollTotop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 25px;
  right: -50px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: var(--clr-dark);
  z-index: 99;
  box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
  transition: all 0.3s ease-in-out;
  border: 0;
  outline: none;
  animation: pulse-animation 2s infinite;
}

#scrollTotop:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 100%;
  background: var(--clr-dark);
  z-index: -1;
  opacity: 0.2;
}

#scrollTotop.showscroll {
  right: 25px;
}

.ScrollArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ScrollArrow i {
  font-size: 20px;
  color: var(--clr-white);
}

.footer-contact {
  text-align: center;
  margin-top: 20px;
  margin-top: 10px;
  font-size: 15px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

.footer-contact span {
  color: blue;
  font-weight: normal !important;
  /* font-weight: bold; */
  text-transform: none;
}


/* scroll top */

/* keyframe */

.rotate-animation {
  animation: rotate-animation 10s infinite linear;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

.shrink {
  animation: shrink 2s infinite;
}

@keyframes shrink {
  0% {
    background-size: 120% 120%;
  }

  100% {
    background-size: 100% 100%;
  }
}

.drift {
  animation: drift 2s linear infinite alternate forwards;
}

@keyframes drift {
  from {
    border-radius: 100px 100px 0px 100px;
  }

  to {
    border-radius: 0px 100px 100px 100px;
  }
}

.blink {
  animation: blink 2s infinite alternate;
}

@keyframes blink {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.7);
  }
}

.loading {
  animation: loading 2s linear infinite alternate forwards;
}

@keyframes loading {
  0% {
    left: -100%;
    right: 100%;
  }

  50% {
    left: 50%;
    right: 40%;
  }

  100% {
    left: 100%;
    right: -100%;
  }
}

/* keyframe end */

/* Footer */

footer {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer-bottom:after,
footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 100%);
}

.footer-content {
  text-align: center;
}

.footer-brandInfo {
  position: relative;
  margin-bottom: 40px;
}

.footer-brandInfo .footerLogo {
  width: 300px;
  /* filter: drop-shadow(0px 10px 30px rgb(0 0 0 / 40%)); */
}

.footer-brandInfo .footerStar {
  position: absolute;
  height: 30px;
  bottom: -10px;
  right: 20px;
  opacity: 0.2;
}

.newsletter {
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid;
  padding: 5px 16px;
  border-radius: 50px;
  width: 100%;
  max-width: 350px;
  margin: 40px auto 40px;
}

.newsletter input {
  padding: 0;
  background: transparent;
  border: 0;
  min-height: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px 30px;
  flex-wrap: wrap;
}

.footer-links a {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  position: relative;
  margin-top: 40px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.newsletter button:hover,
.footer-links a:hover,
.footer-social a:hover {
  opacity: 0.7;
}

.footer-copyright {
  margin: 0;
  font-size: 14px;
}

.fooLineRight,
.fooLineleft {
  position: absolute;
  top: 80px;
  left: -100px;
  width: 250px;
}

.fooLineRight img {
  opacity: 0.1;
  width: 100%;
  transform: rotate(-45deg);
}

.fooLineleft img {
  opacity: 0.1;
  width: 100%;
  transform: rotate(45deg);
}

.fooLineRight {
  right: -100px;
  left: auto;
}

.sliderArrows {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.product-top-right .sliderArrows {
  top: 100px;
  left: -20%;
  justify-content: end;
}

.sliderArrows div {
  position: unset;
}

.sliderArrows div,
.swiperArrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sliderArrows div:after,
.swiperArrow:after {
  color: var(--clr-white);
  font-size: 12px;

}

.sliderArrows div.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.product-top-right .sliderArrows .swiper-button-next:after {
  content: "east";
  font-family: "Material Icons";
  font-size: 24px;
  color: var(--clr-dark);
}

.product-top-right .sliderArrows .swiper-button-prev:after {
  content: "west";
  font-family: "Material Icons";
  font-size: 24px;
  color: var(--clr-dark);
}






/* Age Verificaton Css Styles */

.age_Ver_sec .age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age_Ver_sec .age-box {
  background: url(../img/ageverify_bg_img.jpg);
  /* background: linear-gradient(#fffef9, #f8f3e8); */
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 100%;
  max-width: 504px;
}

.age_Ver_sec .age-box img {
  width: 141px;
  margin-bottom: 28px;
}

.age_Ver_sec .age-box h2 {
  font-weight: bolder;
  font-size: 36px;
  margin-bottom: 10px;
  font-family: "cartoonistkooky", sans-serif;
}

.age_Ver_sec .age-box p {
  font-size: 18px;
  margin-bottom: 30px;
}

.age_Ver_sec .age-box .btn {
  margin: 0 5px;
  width: 80px;
  font-weight: bold;
  border-radius: 8px;
}

.age_Ver_sec .age-box .access_div {
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 21px;
}


.age_Ver_sec .hidden-content {
  display: none;
}

@media screen and (max-width: 786px) {
  .age_Ver_sec .age-box {
    margin: 20px;
  }
}



.products {
  padding: 40px 20px;
  text-align: center;
  min-height: 100vh;
  margin-top: 150px;
}

.products h2 {
  font-size: 2rem;
  margin-bottom: 35px;
  text-transform: uppercase;
  font-family: "cartoonistkooky", sans-serif;
}

.product-filter {
  margin-bottom: 20px;
}

.product-filter button {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  margin: 0 5px;
  cursor: pointer;
}

.product-filter .active {
  background: red;
  border-color: red;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.category-column {
  border: 1px solid #333;
  padding: 30px 6px;
  max-width: 360px;
  height: 100%;
  border-radius: 30px;
}

.category-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 15px;
  font-family: "cartoonistkooky", sans-serif;
}

.product-box {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 5px;
}

.product-box img {
  width: 100%;
  display: block;
  padding-bottom: 10px;
}

a.coabtn {
  background: #ffac05;
  padding: 6px 16px;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }

  .products {
    margin-top: 80px;
  }
}

.ad_background_img {
  background-image: url(../img/Background_ad.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  justify-content: center;
}

.all_banner_assets {
  margin: 0 140px;
  width: 100%;
}


.top_info {
  display: flex;
  justify-content: center;
  gap: 90px;
  padding: 100px 0;
  /* flex-wrap: wrap; */
}

.plume_ad_logo {
  width: 600px;
  max-width: 100%;
  text-align: center;
  padding: inherit;
}

.plume_ad_logo img {
  width: 100%;
  height: auto;
}

.plume_ad_info {
  color: #f5ecdf;
  max-width: 890px;
  text-align: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.plume_ad_info h2 {
  font-size: 26px;
  margin-bottom: 0;
}

.plume_ad_info p {
  font-size: 1.3rem;
  margin-bottom: 0;
  text-align: end;
}






.bottom_device_info {
  text-align: center;
  position: relative;
}

.flavour_info_img img {
  width: 55%;
  max-width: 100%;
}

.flavour_info_img {
  padding-bottom: 80px;
}

.icons_img img {
  width: 70%;
}

.expe_img img {
  width: 60%;
}

.expe_img {
  padding: 2.4rem 0 6rem 0;
}

.icons_img img,
.flavour_device img {
  max-width: 100%;
  height: auto;
}

.three_flav {
  position: absolute;
  top: 2%;
  max-width: 160px;
  right: 8%;
}

@media (max-width: 1900px) {

  .plume_ad_info {
    text-align: center !important;
  }

  .plume_ad_info h2 {
    /* padding-bottom: 25px; */
    text-align: end;
  }

}

@media (max-width: 1560px) {


  .plume_ad_info {
    max-width: 680px;
  }

  .plume_ad_info h2 {
    font-size: 1.2rem;
  }

  .plume_ad_info p {
    font-size: 1.1rem;
  }

  .flavour_info_img {
    padding-bottom: 80px;
  }

  .three_flav {
    position: absolute;
    top: 0%;
    right: 0%;
    transform: translateX(-50%);
    max-width: 150px;
  }
}


@media (max-width: 1396px) {

  .plume_ad_logo {
    width: 400px;
    max-width: 100%;
  }

  .top_info {
    padding: 60px 0;
  }

  .plume_ad_info {
    max-width: 625px;
  }

  .plume_ad_info h2 {
    font-size: 1rem;
  }

  .plume_ad_info p {
    font-size: 0.9rem;
  }

  .top_info {
    gap: 60px;
  }



  .three_flav {
    max-width: 120px;
  }
}


@media (max-width: 1260px) {

  .plume_ad_info {
    max-width: 478px;
  }

  .three_flav {
    max-width: 95px;
    right: 1%;
  }

  .plume_ad_info h2 {
    font-size: 14px;
  }

  .plume_ad_info p {
    font-size: 13px;
  }

}


@media (max-width: 1024px) {


  .all_banner_assets {
    margin: 0 60px;
  }

  .top_info {
    gap: 50px;
    padding: 60px 0;
    flex-wrap: wrap;
  }

  .plume_ad_info {
    text-align: center !important;
    max-width: 100%;
  }

  .plume_ad_info h2 {
    font-size: 22px;
    text-align: center;
  }

  .plume_ad_info p {
    font-size: 20px;
    text-align: center;
  }

  .flavour_info_img img {
    width: 70%;
  }

  .flavour_info_img {
    padding-bottom: 220px;
  }

  .plume_ad_logo img {
    width: 65%;
    height: auto;
  }

  .three_flav {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 160px;
  }

}


@media (max-width: 768px) {
  .all_banner_assets {
    margin: 0 30px;
  }

  .top_info {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 40px 0;
  }

  .plume_ad_logo {
    width: 100%;
    text-align: center;
  }

  .plume_ad_logo img {
    width: 65%;
  }

  .plume_ad_info h2 {
    font-size: 20px;
  }

  .plume_ad_info p {
    font-size: 18px;
    text-align: justify !important;
  }

  .flavour_info_img img {
    width: 80%;
  }

  .three_flav {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 160px;
  }

}

@media (max-width: 480px) {
  .all_banner_assets {
    margin: 0 15px;
  }

  .plume_ad_info h2 {
    font-size: 18px;
  }

  .plume_ad_info p {
    font-size: 16px;
  }

  .flavour_info_img img {
    width: 100%;
  }

  .expe_img {
    padding: 1rem 0 3rem 0;
  }

  .three_flav {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 116px;
  }

  .flavour_info_img {
    padding-bottom: 160px;
  }
}






/* 
.dropend .dropdown-toggle {
  margin-left: 1em;
}

.dropdown-item:hover {
  color: #fff;
}

.dropdown .dropdown-menu {
  display: none;
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}

.dropdown-toggle::after {
  border-top: 0;
}

@media screen and (min-width: 769px) {
  .dropend:hover>.dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }

  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
} */


.dropdown-menu {
  background-color: #F3EBDE;
  border-bottom: 1px solid #d1c7b8;
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 10px;
  min-width: 160px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease-in-out;
  text-align: left;
  overflow: hidden;

}


.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  padding: 10px 16px;
  text-transform: uppercase;

}

.dropdown-item:last-child {
  border-bottom: none;
}


.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #000;
  text-decoration: none;
  transform: translateX(4px);
}


.dropdown-toggle::after {
  display: none !important;
}


.dropdown .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  /* prevents accidental clicks when hidden */
}

/* Show on hover (parent OR menu itself) */
.dropdown:hover>.dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



/* banner video css start */
.video-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
  /* minimum height for all screens */
  position: relative;
  overflow: hidden;
}

#videoFrame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 50px));
  border: 0;
  /* width: 1894.22px !important;
  height: 1053px !important; */
}


/* @media (max-width: 992px) and (min-width: 1700px) {
  #videoFrame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 50px));
    border: 0;
    height: 735.625px !important;
    width: 1303px !important;
  }
} */


@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    left: -60px;
    top: 100%;
  }
}