/* FONT IMPORT */

/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");

/* Local Font */

:root {
  --white: #fff;
  --black: #000;
  --primary: #ff0000;
  --secondary: #333333;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #f3f3f3;
  overflow-x: hidden;
  height: 100%;
  font-family: "Inter", sans-serif;
}

section {
  position: relative;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--black);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--black);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--white);
  display: inline-block;
  padding: 1rem 2.8em;
}

.themeBtn:hover {
  background: var(--white);
  color: var(--black);
}

/* !GLOBAL CSS */

/* NAV HEADER CSS */

header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  padding-top: 2.5rem;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 200px;
}

.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-nav {
  align-items: center;
  gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 0.875rem;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  letter-spacing: 1.82px;
  position: relative;
}

.navbar-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  background: var(--white);
  width: 0;
  height: 2px;
  bottom: -5px;
  transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover:before {
  width: 100%;
}

.form-inline {
  gap: 2rem;
}

.form-inline a {
  color: var(--black);
}

/* Mega Menu */
.mega-menu {
  width: 100%;
  background: var(--white);
  position: absolute;
  top: calc(100% + 2rem);
  left: 0;
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 300ms ease-in-out;
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__links h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mega-menu__links ul li a {
  font-size: 1rem;
  text-transform: capitalize;
  color: var(--black);
  display: block;
  margin-bottom: 0.25rem;
}

.mega-menu__links ul li a:hover {
  color: var(--primary);
}

.mega-menu__box {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.mega-menu__box :is(figure, figure img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease-in-out;
}

.mega-menu__boxContent {
  background: #00000050;
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
  padding: 3rem;
}

.mega-menu__boxContent .title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.mega-menu__boxContent p {
  color: var(--white);
}

.mega-menu__box:hover figure img {
  transform: scale(1.1);
}

.mega-menu__products figure {
  overflow: hidden;
}

.mega-menu__products figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease-in-out;
}

.mega-menu__productsContent {
  text-align: center;
}

.mega-menu__productsContent .title {
  font-size: 1.25rem;
  font-weight: 600;
}

.mega-menu__productsContent .price {
  font-size: 1.125rem;
  font-weight: 600;
}

.mega-menu__products:hover figure img {
  transform: scale(1.1);
}

/* Dropdown */
.navbar .nav-item.drop-down {
  position: relative;
  z-index: 1;
}

.navbar .drop-down>a:after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  padding-left: 5px;
  color: var(--white);
}

.navbar .drop-down ul {
  display: block;
  position: absolute;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  transition: 0.3s;
}

.navbar .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .drop-down li {
  min-width: 200px;
  position: relative;
  list-style: none;
}

.navbar .drop-down ul a {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  color: #151515;
  display: block;
}

.navbar .drop-down ul a:hover {
  background: var(--black);
  color: #fff;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 1000px;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 28%;
  width: fit-content;
  left: 19.75%;
}

.homeSlider .swiper-pagination-bullet {
  height: 1rem;
  width: 1rem;
  display: inline-block;
  margin: 0 0.4rem !important;
  opacity: 20%;
  border: 2px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  opacity: 100%;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.slideOne {
  margin-top: -10rem;
}

.slideOne span {
  color: var(--black);
  text-transform: uppercase;
  font-size: 1.375rem;
  font-family: "Marcellus", serif;
  letter-spacing: 18px;
}

.slideOne h1 {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 300;
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: 17px;
  margin: 1.5rem 0;
}

.slideOne p {
  color: var(--black);
  font-weight: 300;
  line-height: 1.875;
  width: 96%;
}

.scroll {
  position: absolute;
  bottom: 20%;
  left: 20%;
}

.scroll a {
  border: 1.8px solid rgb(255 255 255 / 20%);
  width: 24px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.625rem;
  animation: pulse 1.5s infinite ease-in-out alternate;
}

@keyframes pulse {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1.2);
  }
}

/* !MAIN HERO SLIDER CSS */

/* Marque Sec Css Start */

.marqueSec {
  background: var(--white);
  padding: 1.875rem 0;
}

.marqueListing {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}

.marqueListing li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.marqueListing li i {
  font-size: 0.625rem;
  color: var(--black);
}

.marqueListing li span {
  text-transform: uppercase;
  color: var(--black);
}

/* Marque Sec Css End */

/* Product Sec Css Start */

.productSec {
  padding: 8.125rem 0;
}

.smallHeading {
  text-transform: uppercase;
  font-size: 1.0625rem;
  color: var(--black);
  font-family: "Marcellus";
  letter-spacing: 13.6px;
  margin-bottom: 0.625rem;
  display: block;
}

.secHeading {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 2.25rem;
  color: var(--black);
  letter-spacing: 5.4px;
}

.productTabs ul {
  justify-content: center;
  gap: 3.75rem;
  margin: 2rem 0;
}

.productTabs .nav-pills .nav-link {
  background: transparent;
  border: unset;
  outline: unset;
  text-transform: uppercase;
  color: #616161;
  letter-spacing: 2.4px;
  padding: 0 0;
}

.productTabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--black);
}

.productWrap {
  position: relative;
}

.topIcon {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  position: absolute;
  top: -1.2rem;
  width: 100%;
}

.topIcon li span {
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: bold;
  background: var(--black);
  color: var(--white);
  padding: 7px 0.625rem;
}

.topIcon li:nth-child(2) span {
  background: #e4c1b1;
}

.productContent {
  background: var(--white);
  text-align: center;
  padding: 1.5625rem 0 2.1875rem 0;
}

.productContent h3 {
  text-transform: uppercase;
  font-family: "Marcellus";
  font-size: 1.25rem;
  color: var(--black);
  letter-spacing: 5px;
}

.productContent p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgb(0 0 0 / 62%);
  width: 74%;
  margin: auto;
  min-height: 42px;
}

.productContent ul {
  display: flex;
  justify-content: center;
  margin: 0.875rem 0 3rem 0;
}

.productContent ul li i {
  font-size: 0.625rem;
  color: #ffaa8f;
}

.productContent a {
  color: var(--black);
  font-weight: 500;
}

.productContent a del {
  margin-right: 8px;
  opacity: 50%;
}

.productSlider {
  padding-top: 1rem;
}

.productSec .swiper-button-next:after,
.productSec .swiper-button-prev:after {
  font-size: 1rem;
}

.productSec .swiper-button-next,
.productSec .swiper-button-prev {
  background: rgb(255 255 255 / 50%);
  width: 70px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50px;
  color: var(--black);
  font-weight: 700;
}

.productSec .swiper-button-prev {
  left: -6rem;
}

.productSec .swiper-button-next {
  right: -6rem;
}

.borderBtn {
  text-transform: uppercase;
  color: var(--lack);
  font-size: 0.75rem;
  letter-spacing: 3.18px;
  display: inline-block;
  border: 1px solid var(--black);
  padding: 0.9375rem 2em;
  width: fit-content;
}

.borderBtn:hover {
  background: var(--black);
  color: var(--white);
}

/* Product Sec Css End */

/* Skin Cara Sec Css Start */

.skinWraps {
  position: relative;
  overflow: hidden;
}

.skinContent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  right: 4.375rem;
  left: inherit;
}

.skinContent h2 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 3.625rem;
  color: var(--black);
  letter-spacing: 8.12px;
  margin: 0.75rem 0 3rem 0;
}

.makeupWrap {
  margin-top: 30px;
}

.makeupWrap .skinContent {
  right: inherit;
  left: 4.375rem;
}

.treeImg {
  position: absolute;
  bottom: -1rem;
  right: 18%;
}

/* Skin Cara Sec Css End */

/* Shipping Sec Css Start */

.shippingSec {
  padding: 7.5rem 0 5rem 0;
}

.shippingSec .row+.row {
  margin-top: 14.375rem;
}

.shippingHeading {
  margin-bottom: 6.875rem;
}

.shippingHeading h3 {
  text-transform: uppercase;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 3.08px;
  line-height: 1.4;
  margin: 0.75rem 0 1rem 0;
}

.shippingHeading p {
  color: #616161;
  font-weight: 300;
  margin: 0;
  line-height: 1.8;
}

.aboutContent {
  text-align: center;
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4.375rem;
  position: relative;
}

.aboutContent p {
  color: #616161;
  font-weight: 300;
  line-height: 1.875;
  width: 81%;
  margin: 2rem auto 2rem;
}

.shippingSec .flex-row-reverse .aboutContent {
  margin: -4.375rem 0 0 0;
}

.treeTwo {
  position: absolute;
  bottom: 11%;
  left: 12%;
}

/* Shipping Sec Css End */

/* Review Sec Css Start */

.reviewSlider {
  background: url(../../upload/images/reviewBg.webp) no-repeat;
  padding: 9.0625rem 0 11.25rem 6.25rem;
  margin-top: 1.25rem;
  position: relative;
}

.reviewWrap p {
  color: var(--black);
  font-weight: 300;
  line-height: 1.875;
  width: 51%;
  margin: 2rem 0 1.5rem 0;
}

.uswrWrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.uswrWrap h5 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.uswrWrap h5 span {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  color: #616161;
}

.reviewSlider .swiper-pagination-bullet,
.newsSlider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--black);
  background: transparent;
  opacity: 50%;
}

.reviewSlider .swiper-pagination-bullet-active,
.newsSlider .swiper-pagination-bullet-active {
  opacity: 100%;
  background: var(--black);
}

.reviewSlider .swiper-pagination {
  display: flex;
  left: 6rem !important;
  bottom: 18% !important;
}

.treeThree {
  position: absolute;
  bottom: 26%;
  z-index: 1;
  left: 27%;
}

/* Review Sec Css End */

/* Quality Sec Css Start */

.qualitySec {
  padding: 7.5rem 0 6.25rem 0;
  background: var(--white);
  margin-top: -1rem;
}

.qualityWrap h3 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 3.08px;
  font-size: 1.375rem;
  color: var(--black);
  margin: 2rem 0 1rem 0;
}

.qualityWrap {
  text-align: center;
}

.qualityWrap p {
  color: #616161;
  font-weight: 300;
  line-height: 1.875;
  width: 84%;
  margin: auto;
}

/* Quality Sec Css End */

/* Hit Sec Css Start */

.hitSec {
  padding: 6.25rem 0 7.5rem 0;
}

.hitSec .row {
  gap: 3.125rem 0;
}

.hitHeading p {
  color: #616161;
  line-height: 1.875;
  font-weight: 300;
  margin: 2.5rem 0 3rem 0;
}

/* Hit Sec Css End */

/* Service Sec Css Start */

.serviceWraps {
  width: 100%;
  height: 330px;
  position: relative;
  transition: 0.8s ease;
  cursor: pointer;
}

.serviceWraps>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serviceWraps:hover {
  transform: translateY(1rem);
}

.serviceContent {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: #00000090;
}

.serviceContent h3 {
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 6.16px;
  margin: 0;
  line-height: 1.7;
}

/* Service Sec Css End */

/* News Sec Css Start */

.newsSec {
  padding: 7.5rem 0 5.625rem 0;
}

.newsContent {
  text-align: center;
  background: var(--white);
  padding: 0 3rem 4.5rem;
}

.newsDate {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.8px;
  background: var(--black);
  color: var(--white);
  width: fit-content;
  padding: 1rem 2em;
  margin: -1.75rem auto 1rem;
  z-index: 1;
  position: relative;
}

.newsContent h3 {
  text-transform: uppercase;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 3.08px;
  font-family: "Marcellus";
  margin-top: 2.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.newsContent p {
  color: #616161;
  font-weight: 300;
  line-height: 1.875;
  /* width: 80%; */
  margin: 2rem auto 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.newsContent ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.newsContent ul li span {
  color: #616161;
  font-size: 0.8125rem;
  font-weight: 300;
}

.newsContent .borderBtn {
  padding: 0.9375rem 3em;
}

.newsSlider {
  padding: 2rem 0 4rem 0;
}

/* News Sec Css End */

/* Subscribe Sec Css Start */

.subscribeContent {
  background: var(--white);
  padding: 6.9rem 0 6.8rem 6.25rem;
}

.subscribeContent figure {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
}

.subscribeContent figure h4 {
  text-transform: uppercase;
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
}

.subscribeContent p {
  color: #616161;
  font-weight: 300;
  font-size: 0.875rem;
  margin: 1.5rem 0 0.625rem 0;
}

.subscribeForm input {
  outline: unset;
  background: unset;
  border: unset;
  box-shadow: unset;
  padding-left: 1.5625rem;
  font-size: 0.8125rem;
  font-weight: 300;
  color: #616161;
}

.subscribeForm {
  background: #f3f3f3;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subscribeForm input::placeholder {
  color: #616161;
}

.subscribeForm button {
  outline: unset;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3.18px;
  background: var(--white);
  border: 1px solid var(--black);
  padding: 0.9375rem 2.62em;
}

/* Subscribe Sec Css End */

/* Brand Sec Css Start */

.brandSec {
  padding: 2.8125rem 0;
}

.brandWrap {
  text-align: center;
}

.brandSlider .swiper-wrapper {
  align-items: center;
}

/* Brand Sec Css End */

/* Insta Sec Css Start */

.instaSec {
  padding: 4.375rem 6.875rem 4.375rem 6.875rem;
}

.instaSlider .swiper-slide:nth-child(odd) {
  margin-top: 6.25rem;
}

.instaSlider .swiper-wrapper {
  transition-timing-function: linear;
}

/* Insta Sec Css End */

/* Footer Css Start */

footer {
  background: url(../../upload/images/footerBg.webp) center/cover;
  padding-top: 1.875rem;
}

.links {
  display: flex;
  justify-content: center;
  gap: 3.75rem;
  margin-bottom: 6.25rem;
}

.links li a {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1.56px;
  font-size: 0.75rem;
}

.callLinks li a {
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.callLinks--right li a {
  justify-content: end;
}

.callLinks li a span {
  font-size: 0.75rem;
}

.callLinks li+li {
  margin-top: 0.5rem;
}

.footLogo a img {
  filter: brightness(0) invert(1);
}

.footLogo ul {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.footLogo ul li a {
  color: #e4c1b1;
  font-size: 1.125rem;
}

.footLogo {
  text-align: center;
}

.footText {
  text-align: right;
}

.footText p {
  color: #868686;
  font-size: 0.75rem;
  margin: 0.625rem 0;
}

.footText a {
  text-transform: uppercase;
  color: var(--white);
  font-size: 0.625rem;
  letter-spacing: 2.5px;
}

.copyRight p {
  color: var(--white);
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.28px;
}

.copyRight ul {
  display: flex;
  gap: 2rem;
  justify-content: end;
}

.copyRight ul li a {
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 1.8px;
}

.copyRight {
  margin-top: 4.375rem;
  padding-bottom: 2.5rem;
}

/* Footer Css End */

/* SEARCH BAR CSS */

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 10000;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #fff !important;
  background: rgba(0, 0, 0, 0);
  font-size: 55px;
  line-height: 65px;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-family: arial;
}

#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
  background-color: limegreen;
  border: black;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  padding: 10px 17px;
  font-size: 27px;
}

.srch-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.srch-btn .themeBtn {
  padding: 15px 120px;
  font-size: 20px;
}

/* !SEARCH BAR CSS */

/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 88px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 300;
}

.innerBan {
  position: relative;
}

.about-page-content p {
  font-size: 1rem;
  color: #616161;
  line-height: 1.8;
}

.about-page {
  padding: 6rem 0;
}

.product-page .productWrap {
  margin-bottom: 50px;
}

.product-page {
  padding-bottom: 4rem;
}

.shop-page .productWrap {
  margin-bottom: 2rem;
}

.shop-page .borderBtn {
  margin-bottom: 4rem;
}

.blog-page .newsWraps {
  margin-bottom: 80px;
}

.blog-page {
  padding-bottom: 2rem;
}

.blog-detail-cntnt h2 {
  font-size: 2.5rem;
  font-weight: 400;
}

.blog-detail-cntnt p {
  font-size: 1.125rem;
  line-height: 1.8;
}

section.blog-detail-page {
  padding: 5rem 0;
  background: #fff;
}

.blog-detail-cntnt h4 {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 1rem 0;
}

.blog-detail-cntnt h3 {
  font-size: 1.25rem;
  margin: 1rem 0;
}

ul.blg-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

ul.blg-list li a {
  color: #000;
}

.productWrap figure img {
  width: 100%;
  height: 231px;
  object-fit: cover;
}

/* Inner Pages Css Start */
.privacy {
  padding: 116px 0;
}

p.main-para {
  font-size: 14px;
  font-weight: 400;
}

h2.mainheading {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  line-height: 1.08;
}

.privacy-content p {
  margin-top: 30px;
}

.terms {
  padding: 170px 0;
}

ul.helpLinks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

ul.helpLinks li a img {
  background-color: #fe9995;
}

.help {
  padding: 10rem 0;
}

ul.helpLinks li a span {
  color: #262626;
  margin-left: 1rem;
  font-size: 18px;
}

.kaleim {
  padding: 6rem 0;
}

.kaleim h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  margin: 3.7rem 0 2.5rem 0;
}

.refund {
  padding: 110px 0;
}

.refund h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  color: #000;
}

.refund-content h3 {
  font-size: 24px;
  font-weight: 400;
  color: #262626;
  line-height: 1.08;
}

.refund-content p {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.57;
}

.refund-content {
  margin: 3rem 0;
}

ul.checkbox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

ul.checkbox li label {
  margin-left: 1rem;
}

.contact {
  padding: 160px 0;
}

input.form-control {
  height: 52px;
  width: 370px;
  border: unset;
  outline: unset;
}

textarea.form-control {
  height: 140px;
  width: 760px;
  border: unset;
  outline: unset;
  box-shadow: unset;
}

textarea.form-control button {
  background-color: #383838;
}

.form-group button {
  background-color: #383838;
  color: #fff;
  margin-top: 2.5rem;
  height: 44px;
  width: 180px;
  border: unset;
  outline: unset;
  box-shadow: unset;
  text-transform: uppercase;
}

.contact h2 {
  font-size: 1.5rem;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-content a {
  display: block;
  font-size: 1rem;
  color: var(--black);
}

.contact-content a:not(:last-child) {
  margin-bottom: 1rem;
}

.contact-map {
  margin-top: 2.125rem;
}

.padd-y {
  padding: 5rem 0;
}

/* order-status */
.order-status {
  background: var(--white);
}

.order-status-title .secHeading {
  font-size: 2.5rem;
  font-family: "Marcellus", serif;
  text-transform: capitalize;
  letter-spacing: unset;
}

.order-status-nav {
  gap: 0.75rem;
}

.order-status-nav .nav-link {
  font-size: 1rem;
  font-weight: 600;
  font-family: "Marcellus", serif;
  text-transform: capitalize;
  color: var(--black);
  background: transparent;
  border: 1px solid #EBEBEB;
  border-radius: 0.25rem;
  outline: none;
  text-align: left;
  padding: 1em 1.25rem;
}

.order-status-nav .nav-link:hover,
.order-status-nav .nav-link.active {
  background: #F2F2F2;
  color: #DB1215;
}

.order-status-table .table thead {
  background: #F2F2F2;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  border-color: #EBEBEB;
}

.order-status-table .table thead tr th {
  border: none;
  padding: 1em 1.875em;
  font-size: 1rem;
  font-family: "Marcellus", serif;
  color: var(--black);
}

.order-status-table .table tbody tr {
  border: 1px solid #EBEBEB;
}

.order-status-table .table tbody tr :is(th, td) {
  vertical-align: middle;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  padding: 1.25em 1.75em;
}

.order-status-table .themeBtn {
  outline: none !important;
  padding: .9rem 1.6em;
}

.order-status {
  border: 1px solid #EBEBEB;
  padding: 2rem;
  border-radius: 0.625rem;
}

.order-product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dotted #EBEBEB;
}

.order-product__img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border: 1px solid #EBEBEB;
  border-radius: 0.25rem;
  display: grid;
  place-items: center;
}

.order-product__img img {
  width: 54px;
}

.order-product__status {
  padding: 0.375em .5em;
  background: #DB1215;
  border-radius: 0.25rem;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--white);
}

.order-product__id {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Marcellus", serif;
  margin: 0.5em 0 0;
}

.order-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.875rem 0;
}

.order-detail li span {
  display: block;
}

.order-detail li span:nth-of-type(1) {
  font-size: 1rem;
  color: #545454;
}

.order-detail li span:nth-of-type(2) {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Marcellus", serif;
  color: var(--black);
}

.order-status__nav .nav-pills {
  border-bottom: 1px solid #EBEBEB;
}

.order-status__nav .nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Marcellus", serif;
  color: var(--black);
  background: transparent;
  border-width: 0 0 2px 0;
  border-style: solid;
  border-color: transparent;
  border-radius: 0;
}

.order-status__nav .nav-link:hover,
.order-status__nav .nav-link.active {
  color: #DB1215;
  border-color: #DB1215;
  background: transparent;
}

.order-list {
  margin-top: 2rem;
}

.order-list__items:not(:last-child) {
  margin-bottom: 1.625rem;
}

.order-list__items h5 {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Marcellus", serif;
  color: var(--black);
  margin-bottom: .375em;
}

.order-list__items h5:nth-of-type(2) {
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--black);
}

.order-list__items p {
  font-size: 14px;
  font-family: "Marcellus", serif;
  color: var(--black);
  margin: 0;
}

/* Inner Pages Css End */

/* product-detail */
.product-detail-title h5 {
  font-size: 1.25rem;
  font-family: 'Ink Free';
  font-weight: bold;
  color: #000A12;
  margin-bottom: 3.125rem;
}

.productSliderpage figure {
  background: #CAC8E4;
  height: 800px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.productSliderpage figure img,
.productSlideThumb figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productSliderpage,
.productSlideThumb {
  padding: 0 0.25rem;
}

.productSlideThumb {
  margin-top: 1rem;
}


.productSlideThumb figure {
  background: var(--white);
  border: 1px solid transparent;
  padding: 0.5rem;
  height: 380px;
}

.productSlideThumb .swiper-slide-thumb-active figure {
  border-color: #000A12;
}

.productSlideThumb figure img {
  background: #CAC8E4;
}


.detail__title h4 {
  font-size: 1.5rem;
  font-family: "Ink Free";
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 1.125rem;
}

.detail__title p {
  font-weight: 500;
  margin: 0;
  color: #666666;
}

.detail__review,
.review-stars,
.detail__discount,
.detail__quantity__wrap,
.detail__quantity .number,
.detail__delivery h5,
.detail__sku,
.detail__weight__radio,
.product__desimg,
.cart__wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail__review {
  margin-bottom: 1.5rem;
}

.review-stars {
  gap: 0.25rem;
}

.review-stars li a {
  color: #ffd700;
}

.detail__review p {
  margin: 0;
  color: #6B6B6B;
  text-transform: capitalize;
}

.detail__price {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #000A12;
  margin-bottom: 1.125rem;
}

.detail__weight {
  margin-bottom: 1.5rem;
}

.detail__weight h5 {
  font-size: 1.125rem;
  color: #000A12;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail__weight h5 span {
  font-size: 15px;
  color: #666666;
}

.detail__weight__radio {
  gap: 0.75rem;
}

.detail__weight__radio label {
  position: relative;
  cursor: pointer;
}

.detail__weight__radio label input {
  position: absolute;
  inset: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  cursor: pointer;
}

.detail__weight__radio label span {
  background: var(--white);
  border: 2px solid #D9D9D9;
  width: fit-content;
  height: 44px;
  padding: .5em .625em;
  display: grid;
  place-items: center;
  position: relative;
  user-select: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
  text-transform: capitalize;
}

.detail__weight__radio label input:checked+span {
  border-color: #6B6B6B;
}

.detail__weight a {
  font-size: 1rem;
  font-weight: 500;
  color: #000A12;
}

.detail__discount {
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.detail__discount h4 {
  font-size: 1.125rem;
  color: #000A12;
  margin: 0;
}

.detail__discount h3 {
  font-size: 1.375rem;
  font-weight: 600;
  font-family: "Jost";
  color: #000A12;
  margin: 0;
}

.detail__discount span {
  font-size: 1.125rem;
  font-weight: 600;
  color: #309013;
  border-left: 1px solid #D7D7D7;
  padding-left: 0.5rem;
}

.detail__quantity h5 {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Ink Free";
  color: #000A12;
  margin-bottom: 0.75rem;
}

.detail__quantity__wrap {
  align-items: stretch;
  margin-bottom: 1.375rem;
}

.detail__quantity .number {
  max-width: 120px;
  justify-content: space-between;
  gap: 0;
  border: 2px solid #D0D0D0;
  padding: 0.75em;
}

.detail__quantity .number :is(.minus, .plus) {
  font-size: 15px;
  color: #666666;
  cursor: pointer;
}

.detail__quantity .number input {
  display: block;
  width: 100%;
  border: none;
  font-weight: 600;
  color: #000A12;
  text-align: center;
  outline: none !important;
  user-select: none;
  background: transparent;
}

.detail__quantity .cart__btn {
  display: block;
  width: 100%;
  border: 2px solid #000A12;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #000A12;
  background: var(--white);
  padding: 0.7em;
  outline: none;
}

.detail__quantity .themeBtn {
  outline: none;
  text-transform: capitalize;
  padding: 0.5em 2.25em;
  border-radius: 3.125rem;
  margin-bottom: 2.5rem;
}

.detail__delivery {
  margin-bottom: 2.5rem;
}

.detail__delivery h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000A12;
}

.detail__delivery h5 span {
  font-weight: 400;
  color: #666666;
}

.detail__sku,
.cart__wrap {
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.detail__sku h6 {
  font-size: 1rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  color: #000A12;
  margin: 0;
  text-transform: uppercase;
}

.detail__sku__categories h6 {
  text-transform: capitalize;
}

.detail__sku__categories h6 span {
  font-weight: 500;
  color: #565656;
}

.detail__paymentoption {
  background: #EFEFEF;
  padding: 1.875rem;
  text-align: center;
}


.detail__paymentoption p {
  margin-bottom: 0.375rem;
  font-weight: 500;
  color: #000A12;
}

.product-info__tabs .nav-pills {
  border-bottom: 1px solid #CDCDCD;
}

.product-info__tabs .nav-pills .nav-item .nav-link {
  border-radius: 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: #515151;
  padding: 1em 1.75em;
  background: transparent;
}

.product-info__tabs .nav-pills .nav-item .nav-link:hover,
.product-info__tabs .nav-pills .nav-item .nav-link.active {
  background: var(--black);
  color: var(--white);
}

.product__descontent h4,
.related-products-title h4 {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Ink Free';
  color: #000A12;
  text-transform: capitalize;
}

.product__descontent p {
  font-size: 1.125rem;
}

.cart__title h3 {
  font-size: 3.125rem;
  font-family: "Jost", sans-serif;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 3.125rem;
}

.cart__title h3 i {
  color: var(--theme-color);
}

.cart__wrap {
  margin-bottom: 1.75rem;
}

.cart__img {
  width: 150px;
  aspect-ratio: 1;
  background: rgb(255, 0, 0, 10%);
  display: grid;
  place-items: center;
  border-radius: 0.625rem;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 10%);
}

.cart__img img {
  width: 100px;
  aspect-ratio: 1;
  object-fit: contain;
}

.cart__detail {
  width: 100%;
  max-width: 280px;
}

.cart__detail h4 {
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "Ink Free";
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: capitalize;
}

.cart__detail .price {
  margin: 0;
}

.cart__detail .price span {
  font-size: 14px;
  color: rgb(0, 0, 0, 50%);
  text-transform: uppercase;
}

.cart__quantity .number {
  display: flex;
  align-items: center;
  max-width: 100px;
}

.cart__quantity .number :is(.minus, .plus) {
  width: 22px;
  height: 22px;
  aspect-ratio: 1;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  cursor: pointer;
}

.cart__quantity .number input {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
  user-select: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  background: transparent;
}


.cart__delete .themeBtn,
.cart__checkout .themeBtn {
  outline: none;
  text-transform: capitalize;
  padding: .5em 2em;
  border-radius: 3.125rem;
}

.cart__subtotal {
  margin-top: 5rem;
}

.cart__subtotal h6 {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: var(--black);
}

.cart__subtotal h6 span {
  font-weight: 500;
}

.cart__subtotal h6:not(:last-child) {
  margin-bottom: 2.125rem;
}

.cart__checkout {
  margin-top: 3rem;
}

.cart-banner>img {
  object-position: center 25%;
}

/* checkout */
.checkout-form-box,
.checkout-item {
  background: #FBFBFB;
  border-radius: 1.5rem;
  padding: 1rem 1.5rem 1.875rem;
  margin: 0 0 2.8125rem;
}

.checkout-form-box h3,
.checkout-item h3 {
  font-size: 1.875rem;
  font-family: var(--font-lexend);
  color: var(--black);
  border-bottom: 1px solid var(--white);
  padding-bottom: 1rem;
  margin: 0;
}

.checkout-form-box input {
  display: block;
  width: 100%;
  background: #EFF3FA;
  border-radius: 1.875rem;
  border: none;
  outline: none !important;
  font-size: 1.25rem;
  /* color: #8E8D8C; */
  padding: .6em 1.5em;
  margin-top: 1.625rem;
}

.checkout-form-box input::placeholder {
  color: #8E8D8C;
}

.input-radio {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.input-radio label {
  margin: 0;
  cursor: pointer;
}

.input-radio input[type="radio"] {
  display: inline-block;
  width: fit-content;
  margin: 0;
  cursor: pointer;
}

.input-radio span {
  font-size: 1.25rem;
  color: var(--black);
}

.checkout-item {
  background: #FBFBFB;
  position: sticky;
  top: 2%;
}

.checkout-item h3 {
  color: var(--black);
  border-color: var(--black);
  margin-bottom: 1.625rem;
}

.item-box-card,
.item-subtotal ul,
.item-total ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.checkout-item .item-box-card:nth-of-type(1) {
  margin-bottom: 2.5rem;
}

.product-add {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.product-add figure {
  position: relative;
}

.product-add figure img {
  border-radius: 1.25rem;
  width: 96.49px;
  max-width: 110px;
  /* height: 100%; */
  aspect-ratio: 1;
  object-fit: scale-down;
  background: #Fbe2e2;
}

.product-add figure span {
  position: absolute;
  width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #404040;
  color: var(--white);
  font-size: 15px;
  top: -12px;
  right: 0;
  display: grid;
  place-items: center;
}

.product-add-content h5 {
  font-size: 1.125rem;
}

.product-add-content a {
  font-size: 15px;
  color: #404040;
}

.item-box-card h4 {
  font-size: 1.25rem;
  font-family: var(--font-lexend);
  font-weight: 500;
  color: var(--black);
  margin: 0;
}

.item-box-card:nth-of-type(2) {
  margin-bottom: 1.625rem;
}

.item-subtotal {
  border-block: 1px solid var(--black);
  padding: 1.625rem 0;
}

.item-subtotal ul:not(:last-child) {
  margin-bottom: 1rem;
}

.item-subtotal ul li {
  font-size: 1.25rem;
  color: #404040;
}

.item-subtotal ul:nth-of-type(1) li:last-child {
  font-weight: 600;
  color: var(--black);
}

.item-total {
  padding: 1.625rem 0;
}

.item-total ul li {
  font-size: 1.5rem;
  font-weight: 700;
  color: #404040;
}

.checkout-item-btn .themeBtn {
  width: 100%;
  text-align: center;
  border-radius: 1.875rem;
  background: var(--black);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

/* Product Section Start */

.related-product-img {
  margin: 0;
  text-align: center;
}

.related-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-product {
  margin-bottom: 109.98px;
}

.related-product-img h3 {
  margin-top: 1rem;
  text-align: center;
}


/* Product Section End */
