
@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: 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);
}

/* 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);
}