/*================== IMPORTS =================*/

@import url("https://fonts.googleapis.com/css2?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");
@import url("../fonts/stylesheet.css");

/*================== VARIABLES =================*/

:root {
  --clr-primary: #e61e25;
  --clr-black: #000000;
  --clr-black-600: #474747;
  --clr-black-400: #454545;
  --clr-black-500: #5c5c5c;
  --clr-grey: #f3f3f3;
  --clr-theme-text: #d9d9d9;
  --clr-text-400: #969696;
  --clr-cat-bg: #f1efe0;
  --clr-white: #fff;
  --clr-white-300: #fafafa;
  --clr-border: #e7e7e7;
  --clr-pink: #fff7f6;

  --ff-primary: "Chiaroscura TRIAL", sans-serif;
  --ff-body: "Poppins", sans-serif;

  --fs-xxl: 60px;
  --fs-xl: 58px;
  --fs-lg: 32px;
  --fs-md: 28px;
  --fs-sm: 24px;
  --fs-body: 20px;
  --fs-xs: 16px;

  --section-gap: 70px;
  --radius-sm: 16px;
  --transition: all 0.4s ease-in-out;
}

/*================== BROWSER RESET =================*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

::selection {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

body {
  font-family: var(--ff-body);
  text-rendering: optimizeSpeed;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--clr-theme-copy);
}

p {
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 20px;
  color: var(--clr-text-400);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 0;
  font-weight: 400;
}

img,
picture,
svg,
video {
  max-width: 100%;
  display: block;
}

/*================== UTILITY CLASSES =================*/

.container {
  max-width: 1620px;
}

.custom-pad {
  padding: var(--section-gap) 0;
}

.fant__overlay {
  position: relative;
  z-index: 1;
}

.fant__overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  top: 0;
  left: 0;
}

.fant__img-radius {
  border-radius: var(--radius-sm);
  display: block;
  overflow: hidden;
}

section[class^="fant__"] {
  position: relative;
  z-index: 1;
}

.fant__category-bg {
  background-color: var(--clr-cat-bg);
}

.fant__bg-dark {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

/*================== COMPONENTS =================*/

/**
* Headings
*/

h1 {
  font-size: var(--fs-xxl);
}

h2 {
  font-size: var(--fs-xl);
}

h3 {
  font-size: var(--fs-lg);
}

h4 {
  font-size: var(--fs-md);
}

h5 {
  font-size: var(--fs-sm);
}

h6 {
  font-size: var(--fs-xs);
}

.text-white {
  color: var(--clr-white);
}

.text-grey {
  color: var(--clr-text-400);
}

.text-black {
  color: var(--clr-black);
}

.fant__heading {
  padding-bottom: 15px;
}

.fant__content {
  padding-bottom: 15px;
}

.fant__heading-wrap {
  padding-bottom: 20px;
}

h1 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: var(--fs-xxl);
  line-height: 80px;
  text-transform: uppercase;
}

.fant__heading h2 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: var(--fs-xl);
  line-height: 70px;
  text-transform: unset;
}

.fanthead-highlight {
  font-weight: 300;
  text-transform: none;
  font-style: italic;
}

.bg-pink {
  background-color: var(--clr-pink);
}

/**
* Buttons
*/
.fant__btnwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.fant__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  padding: 0 35px;
  border-radius: 50px;
  position: relative;
  transition: all 0.4s ease-in-out;
  height: 50px;
  border: 1px solid var(--clr-primary);
}

.fant__btn:hover {
  background-color: transparent;
  border-color: var(--clr-primary);
  color: var(--clr-black);
  transition: all 0.4s ease-in-out;
}

.fant__btn.fant-btn-light {
  background-color: transparent;
  border-color: var(--clr-primary);
  color: var(--clr-black);
  transition: all 0.4s ease-in-out;
}

.fant__btn.fant-btn-light:hover {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
  transition: all 0.4s ease-in-out;
}

.fant__border-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 30px;
  color: var(--clr-black);
  border-bottom: 1px solid var(--clr-primary);
  padding-bottom: 6px;
  width: fit-content;
}

.fant__border-btn:hover {
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.fant__border-btn:hover span img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(97%) saturate(3601%) hue-rotate(348deg) brightness(93%) contrast(95%);
  transition: all 0.4s ease-in-out;
}

.fant__border-btn span {
  display: inline-flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
  margin-top: 4px;
}

.fant__border-btn span img {
  width: 20px;
}

/**
* Swiper 
*/

[class^="swiper-button-"] {
  position: absolute;
  background-color: var(--clr-white);
  z-index: 2;
  top: unset;
  left: unset;
  bottom: 15px;
  width: 55px;
  height: 55px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  border-radius: 50px;
  color: var(--clr-white);
  border: 2px solid var(--clr-white);
  transition: all 0.3s ease-in-out;
  z-index: 4;
  margin: 15px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/**
* Form
*/

.form-group:not(.form-button) {
  margin-bottom: 16px;
}

.form-control::placeholder {
  color: #969696;
}

textarea.form-control {
  height: 160px;
  resize: none;
}

.fant__media {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.fant__media .fant__img {
  width: 100%;
  height: 100%;
  scale: 1.02 !important;
}

.fant__media .fant__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*================== KEYFRAMES =================*/

/* ================== HEADER START ================== */
.fant-close {
  position: absolute;
  right: 15px;
  background: var(--clr-primary);
  width: 32px;
  height: 32px;
  border: 1px solid var(--clr-primary);
  border-radius: 5px;
  color: var(--clr-white);
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fant__header {
  position: relative;
  background: var(--clr-white);
}

.fant__headertop {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid #c0c0c0;
  padding: 20px 0 15px;
}

.fant__logo img {
  height: 55px;
  object-fit: contain;
  width: 100%;
}

.fant__header .navbar-nav {
  gap: 45px;
  align-items: center;
}

.fant__header-list {
  display: flex;
  gap: 10px;
  align-items: center;
}

.fant__head-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fant__head-social li span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--clr-theme-text);
  transition: all 0.4s ease-in-out;
}

.fant__head-social li span:hover {
  background-color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--clr-primary);
}

.fant__head-social li span:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(78%) saturate(235%) hue-rotate(175deg) brightness(114%) contrast(100%);
  transition: all 0.4s ease-in-out;
}

.fant__head-social li span img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.fant__header-search {
  position: relative;
  z-index: 99;
}

.fant__search-box {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 2px;
  background-color: var(--clr-grey);
}

.fant__header-search .form-control {
  border: none;
  background-color: var(--clr-grey);
  font-size: 15px;
  font-family: var(--ff-body);
  font-weight: 500;
  box-shadow: none;
  color: var(--clr-black-600);
  padding-left: 20px;
  min-height: 44px;
  border-radius: 50px;
}

.fantsearch-btn {
  background: transparent;
  border: none;
}

.fantsearch-btn span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: var(--clr-white);
  border-radius: 50%;
  color: var(--clr-primary);
}

.fantsearch-btn span img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.fant__header .navbar-expand-lg {
padding: 0;
  }
.fant__headerbottom {
  padding: 20px 0 20px;
}

.fant__header.fixed__header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 999;
  animation: menusticky 0.7s ease-in-out;
  background-color: var(--clr-white);
  box-shadow: 0px 11px 11px 0px rgba(201, 201, 201, 0.09);
}

.fant__header.fixed__header .fant__headertop {
  display: none;
}

@-webkit-keyframes menusticky {
  0% {
    margin-top: -120px;
    opacity: 0;
  }

  50% {
    margin-top: -64px;
    opacity: 0;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}

.fant__header .dropdown-toggle::after {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.fant__header .nav-item.active .dropdown-menu.sub-fant-menu .nav-link::after {
  width: 0;
}

.fant__header .nav-item.active .dropdown-menu.sub-fant-menu .nav-link:hover::after {
  width: 100%;
}

.fant__header .nav-link {
  padding: 0 !important;
  position: relative;
  transition: all 0.5s ease-in-out;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-black-600);
}

.fant__header .nav-item .nav-link::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background-color: var(--clr-primary);
  width: 0;
  height: 2px;
  transition: all 0.5s ease-in-out;
}

.fant__header .nav-item .active.nav-link::after {
  width: 100%;
}

.fant__header .nav-item .active.nav-link {
  color: var(--clr-primary);
}

.fant__header .nav-item:hover>.nav-link,
.fant__header .nav-item.active>.nav-link {
  color: var(--clr-primary);
  transition: all 0.5s ease-in-out;
}

.fant__header .nav-item .nav-link:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.fant__header .nav-item.active .nav-link::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.fant__header .navbar-nav .nav-item.dropdown a {
  position: relative;
  padding-right: 25px !important;
}

.fant__header .navbar-nav .nav-item.dropdown a:hover {
  color: var(--clr-primary);
  transition: all 0.5s ease-in-out;
}

.fant__header .navbar-nav .nav-item.dropdown a::before {
  position: absolute;
  content: "\f078";
  top: 1px;
  right: 0;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  color: var(--clr-primary);
}

.fant__header .navbar-nav .nav-item.dropdown ul li a::before {
  display: none;
}

/* .fant__header.fixed__header .fant__headerbottom {
display: flex;
justify-content: space-between;
align-items: center;
} */
.fant__header.fixed__header .fant__headerbottom .fant__logo {
  display: block;
}

.fant__headerbottom .fant__headbtn-wrap {
  display: none;
}

.fant__header.fixed__header .fant__headbtn-wrap {
  display: block;
}

/* ================== HEADER END ================== */

/* ================== BANNER START ================== */
.fant__banner-wrap {
  position: relative;
}

.fant__banner-main {
  overflow: hidden;
  border-radius: 16px;
}

.fant__banner-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

.fant__banner-bg.fant__mobile {
  display: none;
}

.fant__banner-bg::before {
position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient( to bottom, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100% );
}

.fant__banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fant__banner-content {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

.fant__banner-content .fant__btn:hover {
  color: var(--clr-white);
}

.fant__banner-content .fant__heading-wrap {
  width: 42%;
  margin-left: auto;
  margin-right: 55px;
}

.fant__banner-swipebtnwrap img {
  width: 30px;
  object-fit: contain;
}

.fant__banner-swipebtnwrap [class^="swiper-button-"] {
  top: 50%;
  transform: translateY(-50%);
}

/* ================== BANNNER END ================== */

/* ================== INNER BANNER START ================== */
.fant__inner-banner .fant__innerbanner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.fant__innerbanner-content .breadcrumb {
  text-align: center;
  justify-content: center;
}

.fant__hero-breadcrumb {
  padding-top: 12px;
}

.fant__innerbanner-content h1 {
  text-transform: uppercase;
  text-align: center;
}

.breadcrumb-item {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--clr-black-400);
}

.breadcrumb-item a {
  color: var(--clr-black-400);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "-";
}

/* ================== INNER BANNER END ================== */

/* ================== BADGE START ================== */
.fant__badge-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background-color: var(--clr-cat-bg);
  padding: 15px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 145px;
}

.fant__badge-cont {
  width: 45%;
  flex: 0 0 auto;
}

.fant__badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fant__badge-icon {
  width: 60px;
  height: 60px;
}

.fant__badge-cont p {
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  text-transform: capitalize;
  color: var(--clr-black-600);
}

/* ================== BADGE END ================== */

/* ================== CATEGORY START ================== */

.fant__category {
  overflow: hidden;
}

.fant__category [class^="swiper-button-"] {
  bottom: unset;
}

.fant__category-headwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.fant__category-headwrap .fant__heading-wrap {
  padding-bottom: 0;
}

.fant__category .fant__heading-wrap {
  width: 50%;
}

.fant__category .fant__swipebtnwrap {
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-bottom: 0;
  display: flex;
  gap: 6px;
  width: 48%;
  align-items: center;
  gap: 9px;
}

.fant__category .fant__swipebtnwrap>* {
  position: relative;
  display: flex;
  inset: 0;
  width: 70px;
  height: 35px;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-primary);
  border-radius: 35px;
  padding: 4px;
}

.fant__swipebtnwrap img {
  width: 25px;
}

.fant__category-single {
  position: relative;
  background-color: var(--clr-cat-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.fant__category-single .fant__img img {
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.fant__category-single:hover .fant__img img {
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
}

.fant__sub-btnwrap {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px;
}

.fant__sub-btn {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: var(--clr-white);
  border-radius: 25px;
  padding: 8px 25px;
  transition: all 0.4s ease-in-out;
  background: rgba(0, 0, 0, 0.43);
  border: 1px solid rgb(153, 153, 153);
}

.fant__sub-btnwrap:hover .fant__sub-btn {
  background-color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  color: var(--clr-white);
  transition: all 0.4s ease-in-out;
}

/* ================== CATEGORY END ================== */

/* ================== CTA START ================== */
.fant__cta-main {
  position: relative;
}

.fant__cta-bg {
  width: 100%;
  height: 100%;
  position: relative;
}

.fant__cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fant__cta-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}

.fant__cta-mencollection .fant__cta-wrap .fant__heading-wrap {
  width: 55%;
  padding-left: 70px;
}

/*  CTA collection......  */
/* .fant__collection-wrap {
display: flex;
gap: 15px;
justify-content: space-between;
padding-top: 20px;
flex-wrap: wrap;
}

.fant__collection-wrap > * {
width: 19%;
}

.fant__collection-single {
transition: all 0.4s ease-in-out;
}

.fant__collection-wrap .fant__heading h5 {
line-height: 35px;
color: var(--clr-black-500);
transition: all 0.4s ease-in-out;
}

.fant__collection-wrap .fant__heading:hover h5 {
color: var(--clr-primary);
transition: all 0.4s ease-in-out;
}

.fant__collection-single .fant__img {
background-color: var(--clr-cat-bg);
margin-bottom: 15px;
transition: all 0.4s ease-in-out;
}

.fant__collection-single:hover .fant__img {
background-color: #d9d4b4;
transition: all 0.4s ease-in-out;
}

.fant__collection-single .fant__img img {
height: 350px;
width: 100%;
object-fit: contain;
} */

.fant__cta.fant__cta-womencollection .fant__heading-wrap {
  width: 50%;
  margin-left: auto;
  margin-right: 25px;
}

.fant__cta-rootcollection .fant__heading-wrap {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

.fant__cta-rootcollection .fant__btnwrap {
  justify-content: center;
}

/* ================== CTA END ================== */
/* ================== CONTACT START ================== */
.fant__contact .fanthead-highlight {
  font-style: normal;
}

.fant-contact-form .form-control,
.fant-contact-form .form-select {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: var(--fs-xs);
  line-height: 26px;
  padding: 12px 12px;
  color: #969696;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  background-color: var(--clr-white);
}

.wpcf7-not-valid-tip {
  font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--clr-primary);
  font-size: 16px;
  color: var(--clr-black-500);
  width: fit-content;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  font-size: 16px;
  width: fit-content;
  color: var(--clr-black-500);
}

.form-control:focus,
.form-select:focus {
  box-shadow: inherit;
}

.fant__contact-right {
  height: 100%;
  width: 100%;
}

.fant__contact-right .fant__media {
  height: 100%;
  width: 100%;
}

/* ================== CONTACT END ================== */

/* ================== FOOTER START ================== */

.fant__footer {
  background-color: #323131;
}

.fant__footer-heading {
  font-style: italic;
  border-bottom: 1px solid #fff;
  width: fit-content;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.fant__footer-list li {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-white);
  font-family: var(--ff-body);
  position: relative;
  transition: all 0.4s ease-in-out;
}

.fant__footer-list li a {
  color: var(--clr-white);
  transition: all 0.4s ease-in-out;
}

.fant__footer-list li:hover a {
  color: #f05b60;
  transition: all 0.4s ease-in-out;
}

.fant__footer-list li+li {
  padding-top: 18px;
}

.fant__footer-list.contact li {
  position: relative;
  padding-left: 35px;
}

.fant__footer-list.contact li span {
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: inline-flex;
  align-items: center;
}

.fant__footer-logo img {
  height: 90px;
  object-fit: contain;
}

.fant__footer-top {
  padding-bottom: 55px;
  border-bottom: 1px solid var(--clr-white);
}

.fant__footer-bottom {
  padding: 25px 0;
  text-align: center;
}

/* .fant__footer-copy p+p {
  border-left: 2px solid var(--clr-white);
  padding-left: 15px;
  margin-left: 15px;
} */

.fant__footer-copy p {
  line-height: 100%;
}

.fant__footer-copy p a {
  color: var(--clr-white);
  text-decoration: underline;
 text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  transition: all .4s ease-in-out;
}

.fant__footer-copy p a:hover {
  color: var(--clr-primary);
  transition: all .4s ease-in-out;

}

.fant__footer-col .fant__footer-text {
  padding-bottom: 30px;
  width: 95%;
}

.fant__footer-copy {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 10px 0;
  gap: 5px;
}

.fant__footer-col .fant__head-social {
  gap: 20px;
}

.fant__footer-col .fant__head-social li span img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(73%) saturate(0%) hue-rotate(3deg) brightness(109%) contrast(101%);
}

.fant__footer-logo {
  margin-bottom: 20px;
}

.fant__footer-list.categories {
  column-count: 2;
}

.fant__footer-list.categories li {
  padding-top: 0;
  padding-bottom: 18px;
}

/* ================== FOOTER END ================== */

/* ================== STOCK START ================== */

.fant__stock-imgwrap {
  display: flex;
  gap: 15px;
  padding-top: 35px;
}

.fant__stock-imgwrap .fant__media {
  margin-bottom: 0;
}

.fant__stock-right {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.fant__stock-right p {
  color: var(--clr-text-400);
}
.fant__stock-list {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 0;
  padding: 15px;
}

.fant__stockbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  padding: 0 25px;
  border-radius: 50px;
  position: relative;
  transition: all 0.4s ease-in-out;
  height: 50px;
  background: rgba(0, 0, 0, 0.43);
  border: 1px solid rgb(153, 153, 153);
  transition: all 0.4s ease-in-out;
}

.fant__stockbtn:hover {
  background-color: var(--clr-black);
  border: 1px solid var(--clr-black);
  transition: all 0.4s ease-in-out;
}

.fant__stock-list img {
  height: 70px;
  object-fit: contain;
}

.fant__stock-left {
  position: relative;
  height: 100%;
}

.fant__stock-left .fant__media {
  height: 100%;
}

/* ================== STOCK END ================== */

/* ================== JOURNAL START ================== */

.fant__journal-single:has(.fant__journal-cont) {
  background-color: var(--clr-white-300);
  overflow: hidden;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.fant__journal.fant__journal-home .row [class^="col-"]:last-child .fant__journal-single {
  flex-direction: column-reverse;
}

.fant__journal-single .fant__media {
  border-radius: 0;
  margin-bottom: 0;
}

.fant__journal-single .fant__media .fant__img {
  scale: unset;
}

.fant__journal-cont {
  padding: 30px 20px;
}

.fant__journal-cont h3 {
  color: var(--clr-black);
  transition: all 0.4s ease-in-out;
}

.fant__journal-cont p {
  color: var(--clr-text-400);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fant__journal-single p {
  color: var(--clr-text-400);
}
.fant__journal-cont .fant__heading h3:hover {
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

/* ================== JOURNAL START ================== */

.fant__facture-leftwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  height: 100%;
}

.fant__facture-leftcont {
  flex: 0 0 auto;
  width: 56%;
}

.fant__facture-leftwrap .fant__media {
  width: 40%;
  margin-bottom: 0;
}

.fant__facture-leftwrap .fant__img {
  scale: 1.2 !important;
  width: 100%;
  height: 100%;
}

.fant__facture-leftwrap .fant__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fant__facturlogo img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.fant__facture-leftcont p+p {
  padding-top: 8px;
}

.fant__facture-right {
  position: relative;
  height: 100%;
}

.fant__facture-right .fant__media {
  height: 100%;
  width: 100%;
}

.fant__facture-right .fant__img {
  width: 100%;
  height: 100%;
  scale: 1.2 !important;
}

.fant__facture-right .fant__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fant__facture-arrow {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
}

.fant__facture-arrow span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background-color: var(--clr-primary);
  border-radius: 100%;
}

.fant__facture-arrow span img {
  width: 20px;
  object-fit: contain;
}

/* ================== MANUFACTURES END ================== */

/* ================== WORN START ================== */

.fant__worn .fant__border-btn {
  margin: 0 auto;
}

.font__worn-single {
  position: relative;
}

.fant__worn-swiper .swiper-slide {
  overflow: hidden;
}

.fant__worn-swiper {
  padding: 60px 0;
}

.fant__worn-swiper .swiper-slide {
  transition: all 0.4s ease-in-out;
  transform: scale(0.9);
}

.fant__worn-swiper .swiper-slide-active {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}

.fant__worn-swiper .swiper-slide-prev,
.fant__worn-swiper .swiper-slide-next {
  transform: scale(0.95);
  transition: all 0.4s ease-in-out;
}

.font__worn-single {
  width: 100%;
  max-width: 100%;
}

.font__worn-single .fant__img {
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
}

.font__worn-single .fant__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  background-color: var(--clr-pink);
}

/* ================== WORN END ================== */

/* ================== MARQUEE Start ================== */
.fant__marquee {
  overflow: hidden;
}

.fant__marquee-wrap {
  background-color: var(--clr-primary);
  overflow: hidden;
  position: relative;
  transform: rotate(-2.32deg);
}

.fant__marquee-wrap ul {
  display: flex;
  gap: 15px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding: 15px 0;
}

.fant__marquee-wrap ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 600;
  color: var(--clr-white);
  font-size: 22px;
  font-family: var(--ff-body);
  font-weight: 600;
}

.fant__marquee-wrap ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================== MARQUEE END ================== */

/*  ==================  CONTACT PAGE INNER START ==================  */
.fant__contact-mapimg iframe {
  height: 500px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  object-fit: cover;
}

.contact__info-single {
  border: 1px solid var(--clr-border);
  background-color: var(--clr-white);
  height: 100%;
  border-radius: var(--radius-sm);
  padding: 25px 15px;
}

.contact__info-single .fant__icon img {
  height: 110px;
  object-fit: contain;
  margin: 0 auto 15px;
}

.contact__info-single .fant__content a {
  color: var(--clr-text-400);
}

/*  ==================  CONTACT PAGE INNER END ==================  */

/*  ==================  PRODUCTS PAGE INNER START ==================  */
.fant__inner-banner.fant__productbread .fant__innerbanner-content {
  position: unset;
  top: unset;
  left: unset;
  transform: unset;
}

.fant__product-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.fant__product-wrap>* {
  width: 32%;
}

.fant__product-single {
  position: relative;
  transition: all 0.4s ease-in-out;
}

.fant__product-single .fant__product-img img {
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.fant__product-single:hover .fant__product-img img {
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
}

.fant__procolor-list {
  display: flex;
  gap: 5px;
}

.fant__procolor-list .color-box {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #c0c0c0;
  border-color: rgb(0, 0, 0, 0.6);
}

.fant__product-img {
  background-color: var(--clr-cat-bg);
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
  position: relative;
  width: 100%;
}

.fant__product-single:hover .fant__product-img {
  background-color: #e3deb7;
  transition: all 0.4s ease-in-out;
}

.fant__product-img img {
  height: 450px;
  width: 100%;
  object-fit: contain;
}

.fant__product-tag span {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  background-color: var(--clr-primary);
  border-radius: 8px;
  padding: 0 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-white);
  height: 40px;
}

.fant__product-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--clr-white);
  border-radius: 8px;
  padding: 0 15px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  height: 45px;
  color: var(--clr-black);
  width: fit-content;
}

.fant__product-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
}

.fant__product-list {
  position: absolute;
  bottom: 20%;
  left: 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fant__product-list span {
  display: inline-flex;
  width: 25px;
  height: 25px;
}

.fant__product-list span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fant__product-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fant__product-list li p {
  font-size: 16px;
}

.fant__product-head h4 {
  font-family: var(--ff-primary);
  font-weight: 400;
  line-height: 100%;
  color: var(--clr-black-500);
  transition: all 0.4s ease-in-out;
}

.fant__product-single .fant__product-head:hover h4 {
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.fant__productarrow {
  background-color: transparent;
  border: 1px solid var(--clr-primary);
  width: 65px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  transition: all 0.4s ease-in-out;
}

.fant__productarrow:hover {
  background-color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.fant__productarrow:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7480%) hue-rotate(257deg) brightness(109%) contrast(105%);
  transition: all 0.4s ease-in-out;
}

.fant__product-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.fant__cta .fant__product-wrap {
  padding-top: 20px;
}

.fant__cta .fant__product-wrap>* {
  width: 24%;
}

.accordion-button.product__sidebar-button {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 25px;
  line-height: 35px;
  color: var(--clr-black);
}

.fant__product-sidebar {
  position: sticky;
  top: 30px;
}

.product__sidebar-accordion {
  background-color: #f8f8f8;
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  overflow: hidden;
}

.product__sidebar-accordion .accordion-body {
  padding: 15px;
}

.accordion-item.product__sidebar-item {
  border: none;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

.accordion-button.product__sidebar-button {
  padding: 15px 25px;
  background-color: transparent;
  border-radius: 0 !important;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: unset;
}

.accordion-button.product__sidebar-button:focus {
  background-color: transparent;
  box-shadow: unset;
}

.fant__collection-list li label {
  font-size: 20px;
  color: var(--clr-black);
  margin-left: 3px;
  position: relative;
  padding-left: 32px;
  font-weight: 400;
  font-family: var(--ff-body);
}

.fant__collection-sublist li label {
  color: #5c5c5c;
}

.fant__collection-sublist li:last-child .form-group {
  margin-bottom: 0;
}

.fant__collection-list li input[type="checkbox"] {
  appearance: none;
}

.fant__collection-list li label::before {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #4a4a4a;
  content: "";
  background-color: transparent;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
}

.fant__collection-list li input[type="checkbox"]:checked+label::before {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  border-radius: 2px;
}

.fant__collection-list li label::after {
  left: 7px;
  top: 8px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  content: "";
  opacity: 0;
}

.fant__collection-list li input[type="checkbox"]:checked+label::after {
  opacity: 1;
}

.fant__product-sidehead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.fant__product-sidehead h5 {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 10px;
  cursor: pointer;
}

.fant__product-sidehead span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
}

.fant__productdel-recommend {
  overflow: hidden;
  background-color: #fdf3f2;
  width: 100%;
  height: 100%;
}

.fant__productdel-recommend .fant__swipebtnwrap>* {
  position: relative;
  display: flex;
  inset: 0;
  width: 70px;
  height: 35px;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-primary);
  border-radius: 35px;
  padding: 4px;
}

.fant__productdel-recommend .fant__swipebtnwrap {
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-bottom: 0;
  display: flex;
  gap: 6px;
  width: 48%;
  align-items: center;
  gap: 9px;
}

.fant__product-details-featured {
  gap: 20px;
  display: flex;
}

.fant__procuct-thumb {
  height: 100vh;
  flex: 0 0 auto;
  width: 100px;
}

.fant__procuct-thumb .swiper-slide {
  height: auto !important;
}

.fant__procuct-feat-swiper .swiper-slide img {
  height: 100%;
  object-fit: cover;
}

.fant__procuct-thumb .swiper-slide img {
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  cursor: pointer;
}

.fant__product-details.custom-pad {
  padding-top: 35px;
}

.fant__prodel-qualist {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
}

.fant__prodel-qualist li {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 15px 20px;
}

.fant__prodel-qualist li span {
  display: inline-flex;
  align-items: center;
  width: 28px;
  height: 28px;
}

.fant__prodel-qualist li p {
  color: var(--clr-black);
  font-size: 16px;
  font-weight: 400;
}

.fant__product-details-main .fant__hero-breadcrumb {
  padding-top: 0;
}

.fant__product-details-main .fant__hero-breadcrumb .breadcrumb {
  padding: 0;
  margin: 0;
}

.fant__product-details-main>* {
  margin-bottom: 20px;
}

.fant__product-details-main h5 {
  color: var(--clr-black);
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
  font-family: var(--ff-body);
  font-weight: 500;
}

.fant__product-details-main p {
  color: var(--clr-text-400);
}

.made-btn span {
  display: inline-flex;
  height: 18px;
  width: 32px;
}

.made-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  color: var(--clr-text-400);
  border: 1px solid var(--clr-black);
  border-radius: 30px;
  padding: 5px 30px;
}

.fant__product-details-main .form-check-wrap {
  display: flex;
  gap: 0;
  align-items: center;
}

.fant__product-details-main h6 {
  font-size: 22px;
  color: var(--clr-black);
  font-weight: 500;
  font-family: var(--ff-body);
  line-height: 32px;
  text-transform: uppercase;
}

.fant__procolors-list {
  display: flex;
  gap: 15px;
}

.fant__procolors-list img {
  height: 100px;
  object-fit: cover;
  width: 100%;
}

/* .......................... form ........................ */

.form-check-input[type="radio"],
.form-check-input[type="checkbox"] {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.form-check-input[type="radio"]:checked+.form-check-label,
.form-check-input[type="checkbox"]:checked+.form-check-label {
  color: #fff;
  font-weight: 500;
  background-color: var(--clr-primary);
  border: none;
}

.form-check-wrap label {
  background-color: transparent;
  position: relative;
  color: #6d6d6d;
  background-color: var(--clr-white);
  border-radius: 5px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d2d2d2;
  cursor: pointer;
  width: 55px;
  height: 50px;
  font-size: 20px;
  line-height: 32px;
  color: #565656;
  text-transform: uppercase;
  font-weight: 300;
}

.form-check-wrap input {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.form-check-wrap label:has([type="radio"]:checked),
.form-check-wrap label:has([type="checkbox"]:checked) {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border: 1px solid var(--clr-primary);
}

/* product details acoordion.............. */

.accordion-item.prodel-item {
  border: none;
  border-radius: 0 !important;
}

.accordion.prodel-accordion .accordion-item.prodel-item:not(:last-child) {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0;
}

.accordion-button.prodel-button {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  border: none !important;
  border-radius: 0 !important;
  padding: 25px 0;
}

.prodel-accordion .accordion-button::after {
  background: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\2b";
  position: absolute !important;
  right: 0 !important;
  z-index: 9 !important;
  top: 40% !important;
  color: var(--clr-black);
  font-size: 18px;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 100%;
  border: 1px solid var(--clr-black);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.prodel-accordion .accordion-button:not(.collapsed)::after {
  background: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f068";
  position: absolute !important;
  right: 0 !important;
  z-index: 9 !important;
  top: 40% !important;
  font-size: 20px;
  color: var(--clr-black);
}

.accordion-button.prodel-button.collapsed:focus {
  box-shadow: unset;
}

.accordion-button.prodel-button:focus {
  box-shadow: unset;
  background: transparent;
}

.prodel-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: unset;
}

.accordion-body.prodel-body {
  padding: 0 0 10px;
}

/*  ======================  PRODUCTS PAGE INNER END ======================  */

/* ======================  FAQ PAGE INNER START ==========================  */
.accordion-item.fant_faq-item {
  padding: 0;
  margin: 0;
  border-radius: 0 !important;
}

.accordion-button.fant_faq-button {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: var(--clr-black);
  padding: 12px 15px;
}

/* ======================  FAQ PAGE INNER END =============================  */

/* ======================  Become a distributor PAGE INNER Start =============================  */

.fant__ditributor-left {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.fant__ditributor-left>* {
  width: 49%;
  text-align: center;
  border-radius: 16px;
  background-color: var(--clr-pink);
  padding: 25px;
}

.fant__ditributor-left .fant__ditributor-box:nth-child(2),
.fant__ditributor-left .fant__ditributor-box:nth-child(3) {
  background-color: var(--clr-white-300);
}

.fant__ditributor-right {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.fant__ditributor-right .fant__media {
  height: 100%;  width: 100%;

}

.fant__dist-icon img {
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.fant__dist-termright {
  height: 100%;
}

.fant__dist-termright .fant__media {
  height: 100%;
}

.fant__list-main li {
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-text-400);
  font-weight: 400;
  font-family: var(--ff-body);
  position: relative;
  padding-left: 30px;
}

.fant__list-main li::before {
  content: "";
  background-image: url("../images/fant-dist-list.png");
  width: 22px;
  height: 22px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 3px;
}

.fant__list-main li+li {
  margin-top: 12px;
}

.dist-term-listwrap>* {
  width: 49%;
}

.dist-term-listwrap {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ======================  Become a distributor PAGE INNER END =============================  */

/* ======================  ABOUT PAGE INNER START =============================  */

.fant__about-story .fant__content p+p {
  padding-top: 10px;
}

.fant__about-storyright {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.fant__about-storyright .fant__media {
  height: 100%;
   width: 100%;
  overflow: hidden;
}

.about__counter-box h3 {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
  text-align: center;
  text-transform: unset;
  border-bottom: 1px solid rgb(226, 226, 226);
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 15px;
}

.about__counter-box .fant__content {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}

.fant__about-purposewrap .row [class^="col"]:nth-child(1) .about__purpose-single {
  background-color: var(--clr-white);
}

.fant__about-purposewrap .row [class^="col"]:nth-child(2) .about__purpose-single {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 0;
}

.about__purpose-icon {
  width: 55px;
  height: 55px;
}

.about__purpose-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__purpose-contwrap p+p {
  padding-top: 12px;
}

.about__purpose-contwrap p {
  font-size: 18px;
  line-height: 30px;
}

.about__purpose-single .fant__list-main {
  padding-top: 15px;
}

.about__purpose-single .fant__list-main li span {
  color: var(--clr-black);
  font-weight: 500;
}

.about__purpose-single .fant__list-main li {
  font-size: 18px;
  line-height: 30px;
}

.about__purpose-single .fant__list-main li+li {
  margin-top: 20px;
}

.about__purpose-single {
  border-radius: 16px;
  overflow: hidden;
  padding: 15px;
  height: 100%;
  width: 100%;
}

.about__purpose-single:has(.fant__img) {
  padding: 0;
}

.about__purpose-single .fant__img {
  height: 100%;
  width: 100%;
}

.about__purpose-single .fant__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.fant__about-craftwrap {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 15px;
}

.fant__about-craftwrap>* {
  width: 19%;
}

.fant__about-craftbox>* {
  height: 265px;
}

.fant__about-craftcont {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fant__about-craftcont h5 {
  font-family: var(--ff-body);
  font-size: 22px;
  line-height: 34px;
}

.fant__about-craftcont p {
  font-size: 18px;
  line-height: 28px;
}

.fant__about-craftbox .fant_img,
.fant__about-craftbox .fant__media {
  position: relative;
}

.fant__about-craftbox .fant_img img {
  height: 100%;
  object-fit: cover;
}

.fant__about-craftbox .fant_img {
  height: 100%;
}

.fant__about-craftbtn {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px;
}

.fant__about-craftbtn span {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: #727272;
  background-color: var(--clr-white);
  border-radius: 16px;
  display: inline-flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
}

.fant__about-craftbox {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  justify-content: space-between;
}

.fant__about-craftwrap .fant__about-craftbox:nth-child(2),
.fant__about-craftwrap .fant__about-craftbox:nth-child(4) {
  flex-direction: column-reverse;
}

.fant__about-standwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.fant__about-standwrap>* {
  width: 19%;
  border-radius: 16px;
  background-color: var(--clr-pink);
  padding: 15px 15px;
  height: 100%;
}

.fant__about-standbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fant__about-standcont {
  padding-top: 50px;
}

.fant__about-standicon {
  width: 85px;
  height: 85px;
}

.fant__about-standicon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fant__about-standwrap .fant__about-standbox:nth-child(2),
.fant__about-standwrap .fant__about-standbox:nth-child(4) {
  background-color: var(--clr-white-300);
  margin-top: 50px;
}

.fant__about-standcont p {
  font-size: 18px;
  line-height: 28px;
}

.about-teamtop-contentwrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  width: 85%;
  padding-left: 15px;
}

.about-teamtop-logo {
  width: 85px;
  height: 85px;
}

.fant__about-teamtop {
  position: relative;
  background-color: var(--clr-white);
  border-radius: 16px;
  padding: 25px;
  overflow: hidden;
}

.fant__about-teamtop .fant__media {
  height: 100%;
}

.fant__about-teamtop::before {
  position: absolute;
  content: "the founder";
  right: -150px;
  rotate: 90deg;
  top: 45%;
  transform: translateY(-50%);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 67px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.1);
  width: 500px;
}

.fant__about-teambottom {
  padding-top: 25px;
}

.about-teambottom-single {
  position: relative;
  perspective: 1000px;
}

.fabout__team-front {
  transform: rotateY(0deg);
  transition: transform 0.5s ease-in-out;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.fabout__team-back {
  transform: rotateY(180deg);
  transition: transform 0.5s ease-in-out;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  padding: 25px 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-white-300);
}

.about-teambottom-single:hover .fabout__team-front {
  transform: rotateY(-180deg);
  transition: transform 0.5s ease-in-out;
}

.about-teambottom-single:hover .fabout__team-back {
  transform: rotateY(0deg);
  transition: transform 0.5s ease-in-out;
}

.about-teambottom-name {
  background-color: var(--clr-white);
  border-radius: 16px;
  text-align: center;
  padding: 15px;
}

.fabout__team-front .about-teambottom-name {
  position: absolute;
  bottom: 15px;
  padding: 15px;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  z-index: 1;
}

.about-teambottom-single .fant__media {
  position: relative;
  overflow: unset;
  border-radius: 0;
  height: 100%;
  margin-bottom: 0;
}

.about-teambottom-single .fant__media .fant__img {
  scale: unset !important;
}

.about-teambottom-icon {
  margin-bottom: 15px;
}

/* ======================  ABOUT PAGE INNER END =============================  */

/* ======================  BLOG PAGE INNER START =============================  */
.fant__blog-catwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  justify-content: center;
}

.fant__blog-catwrap>* {
  width: 19%;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.fant__blog-catbox:hover .fant__img img {
  transform: scale(1.05);
  transition: all 0.4s ease-in-out;
}

.fant__blog-catbox .fant__img img {
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.fant__blog-catwrap .fant__sub-btnwrap {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  text-align: center;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.fant__blog-cta {
  position: relative;
}

.fant__blog-cta .fant__img {
  position: relative;
}

.fant__blog-ctacont {
  position: absolute;
  bottom: 25px;
  left: 25px;
  width: 100%;
}

.fant__blog-ctacont .fant__btnwrap {
  margin-top: 0;
}

.fant__blog-ctacont .fant__heading {
  width: 90%;
}

.fant__blog-cta .fant__btn:hover {
  color: var(--clr-white);
}

.fant__blog-journal.fant__journal .fant__journal-wrap .row [class^="col-"]:nth-child(even) .fant__journal-single {
  flex-direction: column-reverse;
}

.fant__blog-journal.fant__journal .fant__journal-single .fant__media .fant__img img {
  height: 135px;
}

.fant__blog-banner .fant__banner-content .fant__heading-wrap {
  margin-left: 75px;
  margin-right: auto;
}

.fant__blog-banner .fant__innerbanner-content .breadcrumb {
  text-align: left;
  justify-content: flex-start;
}

.blog .fant__header {
  box-shadow: 0px 11px 11px 0px rgba(201, 201, 201, 0.09);
}

/* .fant__banner.fant__blog-banner {
padding: 20px 0;
} */

.fant__pagination-nav ul {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: center;
  margin-top: 40px;
}

.fant__pagination-nav ul li a,
.fant__pagination-nav ul li>* {
  display: inline-flex;
  border: 1px solid #cfcfcf;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: var(--clr-black);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.fant__pagination-nav ul li .current {
  background-color: var(--clr-black);
  color: var(--clr-white);
  border: 1px solid var(--clr-black);
  transition: all 0.4s ease-in-out;
}

.fant__pagination-nav ul li a:hover {
  background-color: var(--clr-black);
  color: var(--clr-white);
  border: 1px solid var(--clr-black);
  transition: all 0.4s ease-in-out;
}

.fant__blog-categorycta {
  overflow: hidden;
}

/* ======================  BLOG PAGE INNER END =============================  */
/* ======================  BLOG Details INNNER PAGE INNER START =============================  */
.fant__sidebar-widget {
  margin-bottom: 35px;
}

.fant__widget-heading {
  padding-bottom: 25px;
}

.fant__blog-featured-image {
  padding-bottom: 10px;
  width: 100%;
  height: 100%;
}

.fant__blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fant__widget-heading h4 {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: var(--clr-black);
}

.fant__sidebar-widget.fant__sidebar-category ul li p {
  color: #818181;
  transition: all 0.4s ease-in-out;
}

.fant__sidebar-widget.fant__sidebar-category ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(228, 228, 228);
  padding-bottom: 15px;
  margin-bottom: 15px;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.fant__sidebar-widget.fant__sidebar-category ul li a:hover p {
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.fant__sidebar-widget.fant__sidebar-category ul li a span {
  color: var(--clr-black);
}

.fant__sidebar-category ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.fant__sidebar-widget.fant__sidebar-form {
  background-color: var(--clr-white-300);
  border-radius: 16px;
  padding: 15px;
}

.fant__sidebar-widget.fant__sidebar-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.fant__sidebar-widget.fant__sidebar-tags ul li a {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-text-400);
  border: 1px solid #4b4b4b;
  border-radius: 8px;
  padding: 0 25px;
  height: 50px;
  transition: all 0.4s ease-in-out;
}

.fant__sidebar-widget.fant__sidebar-tags ul li a:hover {
  background-color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  color: var(--clr-theme-text);
  transition: all 0.4s ease-in-out;
}

.fant__generic> :not(:last-child) {
  margin-bottom: 12px;
}

.fant__generic p {
  color: var(--clr-text-400);
}

.fant__generic ul li {
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-text-400);
  font-weight: 400;
  font-family: var(--ff-body);
  position: relative;
  padding-left: 30px;
}

.fant__generic ul li::before {
  content: "";
  background-image: url("../images/fant-dist-list.png");
  width: 22px;
  height: 22px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 3px;
}

.fant__generic ul li+li {
  margin-top: 8px;
}

.fant__generic ul {
  padding-top: 10px;
}

.fant_search-box {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  border-radius: 50px;
  padding-right: 20px;
  background-color: var(--clr-white);
  overflow: hidden;
  border: 10px solid var(--clr-white-300);
}

.fant_search-box .form-control {
  border: none;
  background-color: var(--clr-white);
  font-size: 20px;
  font-family: var(--ff-body);
  font-weight: 500;
  box-shadow: none;
  color: var(--clr-white);
  padding-left: 20px;
  min-height: 55px;
}

.search-btn {
  background: transparent;
  border: none;
  color: var(--clr-black);
}

.fant_search-box .form-control::placeholder {
  color: #818181;
  text-transform: capitalize;
}

.fant__sidebar {
  position: sticky;
  top: 30px;
  border-left: 1px solid #cacaca;
  padding-left: 30px;
  margin-left: 30px;
}

.fant__blog-meta {
  display: flex;
  justify-content: flex-end;
  color: var(--clr-text-400);
  font-size: 16px;
  padding: 16px 0;
}

.fant__blog-meta li+li::before {
  content: "-";
  margin: 0 12px;
}

/* ======================  BLOG Details INNNER PAGE INNER END =============================  */

/* ======================  cart =============================  */
.woocommerce-no-products-found {
  width: 100%;
}

.woocommerce-info {
  font-size: 16px;
  border-top-color: var(--clr-primary);
}

.woocommerce-info::before {
  color: var(--clr-primary);
}

/* ======================  Thank you =============================  */
.fant__thankbox {
  padding: 45px 0;
}

.fant__thankbox svg {
  margin: 0 auto;
  color: var(--clr-primary) !important;
}

.fant__thankbox .border-primary {
  border-color: var(--clr-primary) !important;
}

.fant__error .fant__btnwrap {
  text-align: center;
  justify-content: center;
}

.fant__error img {
  width: 100%;
  height: 350px;
  object-fit: contain;
}

/* ======================  Shop  =============================  */
.prod_tag {
  justify-content: flex-start;
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0 15px;
}

.prod_tag li.active a {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border: 1px solid var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.prod_tag li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: transparent;
  color: var(--clr-black-500);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  padding: 0 25px;
  border-radius: 25px;
  position: relative;
  transition: all 0.4s ease-in-out;
  height: 45px;
  border: 1px solid #dadada;
}

.prod_tag li:hover a {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border: 1px solid var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.fant__collection-sublist {
  border: 1px solid #e0e0e0;
  border-left: none;
  border-right: none;
  padding: 12px 0 12px 10px;
  margin: 12px 0;
}

.fant__collection-listwrap .fant__collection-list:last-child .fant__collection-sublist {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.fant__collection-list li a {
  font-size: 20px;
  color: var(--clr-black);
  position: relative;
  padding-left: 15px;
  font-weight: 400;
  font-family: var(--ff-body);
}

.fant__collection-list li a span {
  display: inline-flex;
  align-items: center;
}

.fant__collection-list li a:has(span img) {
  padding-left: 0;
  display: flex;
  align-items: center;
}

.fant__collection-list li a span img {
  height: 40px;
  width: 100%;
  object-fit: contain;
}

.fant__collection-sublist li a {
  font-size: 18px;
  line-height: 28px;
  padding-left: 12px;
  transition: all 0.4s ease-in-out;
  width: 100%;
  display: inline-block;
  padding: 12px 16px;
}

.fant__collection-sublist li.active a {
  background-color: var(--clr-white);
  color: var(--clr-primary);
  border-radius: 5px;
  width: 100%;
  display: inline-block;
  padding: 12px 16px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.06);
}

.fant__collection-sublist li:hover a {
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.fant__collection-sublist li.active a {
  background-color: var(--clr-white);
  color: var(--clr-primary);
  border-radius: 5px;
  width: 100%;
  display: inline-block;
  padding: 12px 16px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.06);
}

.fant__collection-sublist li a::before {
  content: "";
  width: 0px;
  height: 2px;
  display: inline-block;
  background-color: var(--clr-primary);
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  transition: all 0.5s ease-in-out;
}

.fant__collection-sublist li.active a,
.fant__collection-sublist li:hover a {
  padding-left: 24px;
}

.fant__collection-sublist li.active a::before,
.fant__collection-sublist li:hover a::before {
  width: 16px;
  transition: all 0.5s ease-in-out;
}

.fant__collection-sublist li.active {
  margin-bottom: 6px;
}


.fant__collection-list li.active a:has(span) {
  color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.fant__collection-list li.active>a span img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(46%) saturate(5669%) hue-rotate(345deg) brightness(88%) contrast(105%);
}

.fant__collection-list li>a span {
  background-color: var(--clr-white);
  height: 42px;
  width: 42px;
  padding: 4px;
  border-radius: 6px;
  margin-right: 10px;
}

.woocommerce-no-products-found {
  width: 100% !important;
}

.woocommerce-shop .fant__header,
.tax-product_cat .fant__header,
.single .fant__header {
  box-shadow: 0px 11px 11px 0px rgba(201, 201, 201, 0.09);
}

/* cross header */

.icon-cross {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}

.icon-cross span {
  position: absolute;
  display: block;
  background: #fff;
  transition: all 0.75s cubic-bezier(0.3, 0.1, 0.3, 1);
}

.icon-cross span:nth-child(1) {
  width: 2px;
  height: 0;
  top: 25%;
  left: calc(50% - 1px);
  transition-delay: 0s;
}

.icon-cross span:nth-child(2) {
  width: 0;
  height: 2px;
  left: 25%;
  top: calc(50% - 1px);
  transition-delay: 0.25s;
}

.show .icon-cross span:nth-child(1),
#mobileFilter.active .icon-cross span:nth-child(1),
.fantproduct__modal.show .icon-cross span:nth-child(1) {
  height: 50%;
  transition-delay: 0.325s;
}

.show .icon-cross span:nth-child(2),
#mobileFilter.active .icon-cross span:nth-child(2),
.fantproduct__modal.show .icon-cross span:nth-child(2) {
  width: 50%;
  transition-delay: 0.025s;
}

.fant__scrollTop {
  color: var(--clr-primary);
  font-size: 18px;
  background-color: transparent;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid var(--clr-primary);
  width: 50px;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 9999;
}

.fant__scrollTop img {
  height: 22px;
  margin: 0 auto;
}

.whats-app-icon {
  color: #fff;
  background-color: #25d366;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #25d366;
  width: 50px;
  position: fixed;
  bottom: 115px;
  right: 30px;
  z-index: 990;
  animation: pulse 2s infinite;
  cursor: pointer;
  font-size: 25px;
}

.whats-app-icon a {
  color: #fff;
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #659978;
  }

  70% {
    box-shadow: 0 0 0 10px rgba(176, 202, 180, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(214, 216, 213, 0);
  }
}

.accordion-button.product__sidebar-button span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  gap: 5px;
  padding-right: 5px;
}

.form-check-wrap.fant__sizechart li p {
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--clr-black);
}

.form-check-wrap.fant__sizechart li+li {
  border-left: 1px solid #c7c7c7;
  padding-left: 12px;
  margin-left: 12px;
}

.fant__procolors-list .color-select {
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
}

.fant__procolors-list .color-name {
  font-size: 15px;
  line-height: 25px;
  color: var(--clr-black-400);
  font-weight: 500;
}

.fant_size-wrap {
  display: flex;
  gap: 25px;
  align-items: center;
}

.size-btn span img {
  height: 18px;
  object-fit: contain;
}

.size-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.open-popup-link.button_sg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #d8d8d8;
  color: var(--clr-black);
  font-family: var(--ff-body);
  font-weight: 400;
  border-radius: 50px;
  position: relative;
  transition: all 0.4s ease-in-out;
  padding: 0 16px;
  height: 32px;
  font-size: 12px;
  line-height: 26px;
}

.size-btn p {
  font-size: 14px;
  line-height: 24px;
  display: flex;
  gap: 7px;
  align-items: center;
}

/* product size guide */

.bwdpsgx-size-guide {
  padding: 40px;
  background: #fff;
  /* max-width: 90%;
margin: 50px auto; */
  max-width: 100%;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  border-radius: 16px;
}

.bwdpsgx-size-guide .sg_title {
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  font-size: 22px;
  color: #000;
  font-weight: 600;
  width: 100%;
  border-bottom: 1px solid var(--clr-border);
}

.bwdpsgx-size-guide.sg .sg_content {
  width: 35%;
}

.bwdpsgx-size-guide.sg .sizeGuideTabContents {
  width: 58%;
}

.bwdpsgx_table_container {
  margin-bottom: 0;
  margin-top: 0;
}

.bwdpsgx_table_container .bwdpsgx-size-guide--Responsive {
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
  padding: 10px;
}

.bwdpsgx_table_container table tr:first-child {
  background-color: #f7f7f7;
}

.bwdpsgx_table_container table tr:first-child th {
  border-right: none !important;
  border-bottom: none !important;
}

.bwdpsgx_table_container table tr:first-child th {
  background-color: #f7f7f7;
  font-weight: 800;
  font-size: 15px;
}

.bwdpsgx-size-guide table tr:nth-child(n + 1) {
  color: #000;
}

div.sg table tr td,
div.sg table tr th {
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  text-align: center;
}

.bwdpsgx_table_container table tr th {
  padding: 15px 12px;
  border-bottom: none;
  color: #050505;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  border-right: none !important;
}

.bwdpsgx_table_container table tr td {
  padding: 15px 12px;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid rgb(0 0 0 / 0.105);
  border-right: none !important;
}

.bwdpsgx-size-guide table td {
  color: #000;
}

.bwdpsgx-size-guide.sg .sg_content p {
  width: 100%;
}

.bwdpsgx-size-guide.sg .sg_content p img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.sg .bwdpsgx_table_title {
  font-weight: bold;
  font-size: 20px;
  text-transform: capitalize;
  padding-bottom: 15px;
}

.mfp-content {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
  background-color: #fff !important;
  background: #fff !important;
}

.bwdpsgx-size-guide.sg .mfp-close {
  color: #fff !important;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 99999;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: var(--clr-primary) !important;
  opacity: 1;
  transition:
    all 0.25s ease,
    opacity 0.3s ease 0.35s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.mfp-wrap.mfp-close-btn-in.mfp-auto-cursor.mfp-ready {
  transform: translateY(0%);
}

.mfp-wrap {
  transition: var(--transition);
  z-index: 999999;
  height: 100vh;
  width: 100%;
  background-color: #fff !important;
  background: #fff !important;
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow-y: auto;
  border-radius: 0;
  transform: translateY(110%);
}

.fant__btnwrap:has(.made-btn) .fant__btn {
  display: none;
}

.fant__pro-colorwrap h6 {
  padding-bottom: 15px;
}

.fantdist__modal.fantproduct__modal {
  z-index: 99999;
}

.fant__prodel-form .form-group.form-button.text-center {
  text-align: left !important;
}

.accordion-body.prodel-body p a {
  color: var(--clr-black-500);
  font-weight: 600;
}

.accordion-body.prodel-body ul li {
  font-size: 20px;
  line-height: 30px;
  color: var(--clr-text-400);
  font-weight: 400;
  font-family: var(--ff-body);
  position: relative;
  padding-left: 30px;
}

.accordion-body.prodel-body ul li::before {
  content: "";
  background-image: url("../images/fant-dist-list.png");
  width: 22px;
  height: 22px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 3px;
}

.accordion-body.prodel-body li+li {
  margin-top: 8px;
}

.accordion-body.prodel-body ul {
  padding-top: 10px;
}

.single .fant__productdel-recommend {
  background-color: #fff;
  /* padding-top: 0; */
}

.fant__prodel-feturedwrap {
  top: 30px;
  position: sticky;
}

.woocommerce div.product .fant__product-details div.summary {
  margin-bottom: 0 !important;
}

#fant__stop {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

#fant__stop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.catwrapbtn {
  display: none;
}




.woocommerce-pagination ul.page-numbers {
  display: flex !important;
  text-align: center;
  justify-content: center;
  gap: 8px;
}

.woocommerce-pagination ul li:hover .page-numbers {
  background-color: var(--clr-primary) !important;
  border-color: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  transition: all .3s ease-in-out;
}

.woocommerce-pagination {
  padding-top: 15px;
  display: flex;
  justify-content: center;
}

.page-numbers li {
  border: none !important;
  margin-bottom: 8px !important;
}

.woocommerce-pagination ul.page-numbers {
  border: none !important;
}

.woocommerce-pagination ul li .page-numbers.current {
  background-color: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  border-color: var(--clr-primary) !important;
}

.woocommerce-pagination ul li .page-numbers {
  padding: 8px 15px !important;
  color: var(--clr-black) !important;
  font-weight: 550 !important;
  display: inline-block !important;
  font-size: 15px !important;
  border: 1px solid var(--clr-border);
  margin: 0 5px;
}