@charset "utf-8";


/* ~-~-~-~-~ Embeded Font ~-~-~-~-~ */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Light.eot');
  src: url('../fonts/DMSans-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DMSans-Light.woff2') format('woff2'),
    url('../fonts/DMSans-Light.woff') format('woff'),
    url('../fonts/DMSans-Light.ttf') format('truetype'),
    url('../fonts/DMSans-Light.svg#DMSans-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.eot');
  src: url('../fonts/DMSans-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DMSans-Medium.woff2') format('woff2'),
    url('../fonts/DMSans-Medium.woff') format('woff'),
    url('../fonts/DMSans-Medium.ttf') format('truetype'),
    url('../fonts/DMSans-Medium.svg#DMSans-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.eot');
  src: url('../fonts/DMSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DMSans-Regular.woff2') format('woff2'),
    url('../fonts/DMSans-Regular.woff') format('woff'),
    url('../fonts/DMSans-Regular.ttf') format('truetype'),
    url('../fonts/DMSans-Regular.svg#DMSans-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-SemiBold.eot');
  src: url('../fonts/DMSans-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DMSans-SemiBold.woff2') format('woff2'),
    url('../fonts/DMSans-SemiBold.woff') format('woff'),
    url('../fonts/DMSans-SemiBold.ttf') format('truetype'),
    url('../fonts/DMSans-SemiBold.svg#DMSans-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/');
  src: url('../fonts/?#iefix') format('embedded-opentype'),
    url('../fonts/DMSans-Black.woff2') format('woff2'),
    url('../fonts/DMSans-Black.woff') format('woff'),
    url('../fonts/DMSans-Black.ttf') format('truetype'),
    url('../fonts/DMSans-Black.svg#DMSans-Black') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Bold.eot');
  src: url('../fonts/DMSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DMSans-Bold.woff2') format('woff2'),
    url('../fonts/DMSans-Bold.woff') format('woff'),
    url('../fonts/DMSans-Bold.ttf') format('truetype'),
    url('../fonts/DMSans-Bold.svg#DMSans-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-ExtraBold.eot');
  src: url('../fonts/DMSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DMSans-ExtraBold.woff2') format('woff2'),
    url('../fonts/DMSans-ExtraBold.woff') format('woff'),
    url('../fonts/DMSans-ExtraBold.ttf') format('truetype'),
    url('../fonts/DMSans-ExtraBold.svg#DMSans-ExtraBold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}




/* ~-~-~-~-~ Embeded Font ~-~-~-~-~ */


:root {

  /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */
  --head-fonts: "DM Sans", sans-serif;
  --body-fonts: "DM Sans", sans-serif;
  --mono-fonts: "DM Mono", monospace;
  /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */

  /* ~-~-~-~-~ declare font size ~-~-~-~-~ */
  --f-size-XXXL: 70px;
  --f-size-XXL: 70px;
  --f-size-XL: 50px;
  --f-size-L: 30px;
  --f-size-M: 24px;
  --f-size-S: 20px;
  --f-size-SM: 16px;
  --f-size-Body: 24px;
  /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

  /* ~-~-~-~-~ common transition ~-~-~-~-~ */
  --common-transition: all 0.5s ease;
  /* ~-~-~-~-~ common transition ~-~-~-~-~ */

  /* ~-~-~-~-~ colors ~-~-~-~-~ */
  --primary: #4B854C;
  --dark: #222222;
  --gray: #777777;
  --dark-gray: #444444;
  --white: #ffffff;
  --black: #000000;
  --common-border: #EEEEEE;
  /* ~-~-~-~-~ colors ~-~-~-~-~ */
  --padding-height: 130px;
}

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

html {
  scroll-padding: top;
}

body {
  font-size: var(--f-size-Body);
  background-color: #FFFEF8;
  margin: 0;
  padding: 0;
  font-family: var(--body-fonts);
  color: var(--gray);
  line-height: 1.2;
  font-weight: 500;
  transition: var(--common-transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--head-fonts);
  margin: 0 0 0px;
  padding: 0;
  line-height: 1.1;
  font-weight: 400;
  color: var(--dark);
}

h1 {
  font-size: var(--f-size-XXXL);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 25px;
}

h2,
.h2 {
  font-size: var(--f-size-XXL);
  color: var(--dark);
  font-weight: 400;
  line-height: 1.1;
}

h3,
.h3 {
  font-size: var(--f-size-L);
  font-weight: 400;
}

h4,
.h4 {
  font-size: var(--f-size-M);
  font-family: var(--body-fonts);
  margin: 0 0 15px;
  font-weight: 400;
}

h5 {
  font-size: var(--f-size-S);
  font-weight: 400;
}

h6 {
  font-size: var(--f-size-Body);
  font-weight: 400;
}

.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1.1;
}

p {
  margin: 0 0 30px;
  padding: 0;
  line-height: 1.3;
  color: var(--gray);
  font-size: var(--f-size-Body);
  font-weight: 500;
}

p:last-child {
  margin: 0;
}

.mb-60 {
  margin-bottom: 60px;
}


/* ~-~-~-~-~ form adjustments ~-~-~-~-~ */

@media only screen and (max-width: 1799px) {

  :root {

    --f-size-XXXL: 60px;
    --f-size-XXL: 50px;

  }

}

@media only screen and (max-width: 1399px) {

  :root {

    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

    --f-size-XXXL: 55px;
    --f-size-XXL: 45px;
    --f-size-XL: 20px;
    --f-size-L: 18px;
    --f-size-M: 16px;

    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

    --gap-60: 40px;

    --padding-height: 80px;

  }

}

@media only screen and (max-width: 1199px) {

  :root {

    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

    --f-size-XXXL: 55px;
    --f-size-XXL: 40px;
    --f-size-XL: 18px;
    --f-size-L: 16px;
    --f-size-M: 15px;
    --f-size-S: 15px;

  }

}



@media only screen and (max-width: 767px) {

  :root {

    --f-size-XXXL: 28px;
    --f-size-XXL: 28px;
    --f-size-XL: 16px;
    --f-size-M: 14px;
    --padding-height: 60px;
  }

}




img {
  max-width: 100%;
}

a,
img {
  border: 0;
  text-decoration: none;
  outline: none;
}

a,
a:link,
a:visited,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
  transition: var(--common-transition);
  color: var(--dark);
  font-family: "DM Mono", monospace;
  font-weight: 400;
}

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

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

textarea,
select,
.form-control,
input {
  font-size: 16px;
  padding: 13px 0px;
  background-color: var(--clr-white);
  width: 100%;
  border-radius: 0px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(229, 229, 229, 0.5);
  outline: none !important;
  box-shadow: none !important;
  color: var(--dark);
  height: 55px;
  margin: 0;
}

textarea {
  padding: 18.5px 0px;
  min-height: 100px !important;
  resize: none;
  border-radius: 0px !important;
}

input[type="submit"] {
  font-weight: 700;
  transition: all 0.3s ease 0s;
  outline: none;
  letter-spacing: normal;
}

textarea:focus,
select:focus,
.form-control:focus,
.form-select:focus {
  outline: none !important;
  box-shadow: inherit !important;
  background: transparent;
  /* color: var(--gray); */
}

.form-group {
  margin-bottom: 60px;
  position: relative;
}

select,
.form-select {
  font-size: 16px;
  padding: 17px 20px;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid #999999;
  background-image: url(../images/select-arrow-1.svg);
  background-repeat: no-repeat;
  background-position: 95% center;
  color: var(--white);
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  height: auto !important;
}

input:focus,
input:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--primary-brown);
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: inherit;
}

.field-group {
  margin-bottom: 30px;
}

input.wpcf7-not-valid {
  border-bottom: 1px solid #dc3232;
}

.form-check-input[type=radio] {
  width: 24px;
  height: 24px;
}

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

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 14px;
}

input.mailpoet_text.parsley-error {
  border: 1px solid #900 !important;
}

.parsley-required,
.parsley-custom-error-message {
  font-size: 0;
}

/* --- for placeholder color --- */
input::-moz-placeholder,
.form-control::-moz-placeholder {
  color: #AAAAAA;
  opacity: 1;
  font-weight: 400;
  /* font-size: 16px; */
}

input:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: #AAAAAA;
  font-weight: 400;
  /* font-size: 16px; */
}

input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #AAAAAA;
  font-weight: 400;
  /* font-size: 16px; */
}

::-webkit-input-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  /* font-size: 16px; */
}

:-moz-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  /* font-size: 16px; */
}

::-moz-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  /* font-size: 16px; */
}

:-ms-input-placeholder {
  text-transform: capitalize;
  font-weight: 400;
  /* font-size: 16px; */
}

textarea::placeholder {
  color: #AAAAAA;
  opacity: 1;
}

/* --- for placeholder color --- */

label,
.maxchar {
  margin-bottom: 11px;
  color: var(--dark);
  font-weight: 600;
  font-size: 18px;
}

/* desktop size 18 and mobile size 15 */

.common-padding {
  padding-top: var(--padding-height);
  padding-bottom: var(--padding-height);
}

.common-padding-top {
  padding-top: var(--padding-height);
}

.common-padding-bottom {
  padding-bottom: var(--padding-height);
}





.btn,
a.btn {
  line-height: 1;
  color: var(--white);
  display: inline-block;
  border-radius: 0;
  padding: 16px 20px;
  transition: var(--common-transition);
  font-family: "DM Mono", monospace;
  font-weight: 400;
  border: 1px solid var(--primary);
  background: var(--primary);
  position: relative;
  background-clip: padding-box;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* word-spacing: 8px; */
  position: relative;
}

.btn::after,
a.btn::after {
  content: "\f061";
  /* Font Awesome arrow-right icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 70px;
  display: inline-block;
}

.btn.btn_border,
a.btn.btn_border {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white) !important;
}

.btn:hover,
a.btn:hover {
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn.border:hover,
a.btn.border:hover {
  background: var(--secondary);
  color: var(--white) !important;
}

.btn.btn_white {
  background: var(--white);
  color: #242424;
  border: 1px solid var(--white);
}

.btn.btn_white:after {
  margin-left: 40px;
}

.btn.btn_white:hover {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}



.sky-bg {
  background-color: #E6F0FA;
}


/* ~-~-~-~-~-~-~-~-~-~ global adjustments ~-~-~-~-~-~-~-~-~-~ */

/* -- Header -- */
/* .main-header {
  @media screen and (min-width: 1399px) {
    .container {
      max-width: 1240px;
    }
  }
} */

.hdr-wrap {
  display: flex;
  align-items: center;
}

.main-header {
  padding: 0px 0 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
}

.main-header .main-menu {
  flex: 1;
}


.hdr-wrap {
  background: #0000003f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.hdr-wrap .logo {
  background: #242424;
  /* width: 100%; */
  transition: var(--common-transition);
}

.hdr-wrap .logo a {
  max-width: 290px;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0px 25px;
}

.hdr-wrap ul.nav_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  list-style: none;
  margin: 0;
}

.cart_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.cart_list li {
  position: relative;
}

.cart_list li .cart-counter,
.cart_list li .wishlist-count {
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 2px;
  font-size: 8px;
  top: -5px;
  right: -8px;
}

.main-menu ul li:not(:last-child) {
  margin-right: 30px;
}

.nav-wrap-main {
  flex: 1;
  display: flex;
  gap: 50px;
  padding: 0px 30px;
  align-items: center;
  justify-content: center;
}

/* .main-menu ul li.current-menu-item a::after,
.main-menu ul li:hover a:after {
  width: 100%;
  transition: var(--common-transition);
}

.main-menu ul li>a:after {
  content: '';
  background: var(--white);
  position: absolute;
  left: 0;
  width: 0;
  bottom: 0;
  height: 1px;
} */

.main-menu ul li a {
  font-family: var(--body-fonts);
  color: var(--white);
  font-size: 16px;
  padding: 0;
  position: relative;
  /* padding-bottom: 12px; */
  transition: var(--common-transition);
}

.main-menu .hdr-btn {
  display: none;
}

.main-menu ul li.menu-item-has-children ul.sub-menu li:hover {
  color: #00F5F5;
}

.main-header.no-banner {
  background: var(--clr-light-blue);
  position: relative;
}

.header-sticky .header-container,
.header-sticky .no-banner {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  animation: slide-down 0.5s;
  -ms-animation: slide-down 0.5s;
  -webkit-animation: slide-down 0.5s;
  z-index: 99;
  /* box-shadow: 0 0px 10px rgb(226 185 124 / 30%);
  background-color: #00000087;
  backdrop-filter: blur(29px); */
  padding: 10px 0;
}

.header-container {
  transition: 0.3s ease-in-out;
}

.header-sticky .main-header .header-container {
  padding: 15px 0;
  background-color: #ffffff24;
  backdrop-filter: blur(12px);
}

.hdr-wrap .hdr-btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.hdr-wrap .hdr-btn .btn {
  height: 72px;
  min-width: 144px;
  justify-content: center;
  display: flex;
  align-items: center;

  &::after {
    display: none;
  }
}


.nav_btn {
  display: none;
}

.hdr-wrap .mobileview {
  display: none;
}

.modile-menu_custom {
  display: none;
}


/* dropdown */

li.menu-item-has-children {
  position: relative;
  display: inline-block;
}

/* .main-menu ul li.menu-item-has-children a {
  padding-right: 20px;
} */

li.menu-item-has-children::after {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 15px;
  color: var(--white);
  transition: 0.3s ease-in;
  top: 5px;
  display: none;
  right: 0px;
}

.hdr-menu .main-menu ul li.menu-item-has-children a:hover::after {
  display: none;
}

li.menu-item-has-children>ul.sub-menu {
  display: none;
  position: absolute;
  min-width: 227px;
  margin-top: 0px;
  top: 37px;
  border-radius: 0;
  background: var(--body-back);
  color: #fff;
  padding: 10px;
}

li.menu-item-has-children>ul.sub-menu li {
  transition: var(--common-transition);
  width: 100%;
  padding: 0;
  margin: 0;
}

li.menu-item-has-children>ul.sub-menu li:last-child {
  border-bottom: none;
}

li.menu-item-has-children>ul.sub-menu li:hover {
  transition: var(--common-transition);
  background: var(--white);
}

li.menu-item-has-children>ul.sub-menu li:hover a {
  color: var(--body-back);
}

li.menu-item-has-children ul.sub-menu li a {
  display: block;
  color: #535353;
  margin-right: 0;
  padding: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--common-transition);
}

/* li.menu-item-has-children:hover ul.sub-menu {
  display: block;
} */

li.menu-item-has-children:hover::after {
  transform: rotate(180deg);
  color: var(--white);
}

li.menu-item-has-children ul.sub-menu li:last-child {
  border: 0;
  margin: 0;
}

.minus,
.plus {
  display: none;
}

/* dropdown */

/* home page start */

.top-marquee-slider {
  background: #1b1b1b;
  padding: 14px 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.top-marquee-slider .splide__slide {
  width: auto !important;
  position: relative;
}

.top-marquee-slider .splide__slide a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 35px;
  display: flex;
  align-items: center;
  font-weight: 400;
  justify-content: center;
  white-space: nowrap;
  position: relative;
}

.top-marquee-slider .splide__slide a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

/* -- Banner Section -- */
.banner-main {
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  padding-top: 300px;
  padding-bottom: 60px;
  color: var(--white);
  min-height: calc(100vh - 100px);
}

.banner-main .bnr-text {
  padding-right: 30px;

  h1 {
    color: var(--white);
  }
}

.banner-main .bnr-text p {
  font-size: var(--f-size-M);
  min-width: 850px;
  margin-bottom: 30px;
  color: var(--white);
}

.banner-btn-box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.banner-btn-box .btn,
.banner-btn-box a.btn {
  padding: 16px 14px;
  font-size: 16px;

  &::after {
    margin-left: 30px;

    @media (max-width:1799px) {
      margin-left: 30px;
    }
  }

  @media (max-width:1799px) {
    font-size: 14px;
  }
}

.bnr-item-card {
  background: #0000003f;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  margin-top: 16px;
  margin-right: 22px;
  margin-left: 20px;
}

.bnr-item-card h2 {
  color: var(--white) !important;
}

.pdl_mane h3,
.pdl_mane .h3,
.pdl_mane h3 a,
.pdl_mane .h3 a {
  font-family: var(--body-fonts);
  color: #444444;
  font-size: var(--f-size-L);
  margin-bottom: 0px;
  text-transform: uppercase;
  height: 66px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pdl_mane>span {
  font-size: 12px;
  display: block;
  margin-bottom: 20px;
  font-family: "DM Mono", monospace;
  font-weight: 400;
  text-transform: uppercase;
}

.pdl_mane hr {
  opacity: 1;
  color: var(--gray);
  margin: 18px 0px 22px;
  position: relative;
  z-index: 3;
}

.bnr-item-card figure {
  margin: 0;
  min-width: 242px;
  padding-bottom: 48%;
  position: relative;
}

.bnr-item-card .pd-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bnr-item-card .pd-tag span {
  background: var(--primary);
  color: var(--white);
  padding: 6px 10px;
  font-size: 12px;
  text-transform: uppercase;
  z-index: 1;
  letter-spacing: 1px;
}

.bnr-item-card figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* banner  */
.content_box {
  h2 {
    padding-bottom: 45px;
    color: var(--dark);
    border-bottom: 1px solid #DDDDDD;
    margin: 0 0 45px;
  }

  p {
    color: var(--gray);
  }

  .btn {
    margin-top: 20px;
  }
}

/* beauty section  */
.beauty-sec {
  background: url(../images/bg-repeat-img.png);
  background-size: 100% 100%;
  background-position: top center;
  overflow: hidden;
}

.beauty-sec-content {
  padding: 50px 30px 0 50px;
}

.beauty-sec .content_box {
  h2 {
    color: var(--white);
    border-bottom: 1px solid var(--white);
  }

  p {
    color: var(--white);
  }
}

.beu_img {
  margin-left: -50%;
  position: relative;
  padding-bottom: 125%;
}

.beu_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.beu_img::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 45%);
  transform: scale(1.2);
}

/* beauty section  */
.section-title h2 {
  margin-bottom: 50px;
}

.section-title.text-white h2 {
  color: var(--white);
}

/* why choose section */
.w-choose-box {
  /* padding-top: 30px;
  border-top: 1px solid #AAAAAA; */
  padding: 2rem 2rem;
  background-color: #f8f4eb;
  height: 100%;
}

.w-choose-box img {
  margin-bottom: 20px;
  min-height: 45px;
  max-height: 45px;
}

.w-choose-box h3 {
  margin-bottom: 20px;
}

/* why choose section */
.splide__arrow {
  width: 50px;
  height: 50px;

  svg {
    display: none;
  }
}

.splide__arrow--prev::after {
  content: "\f060";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--black);
  font-size: 20px;
}

.splide__arrow--next::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--black);
  font-size: 20px;
}

.splide__arrow:hover {
  background: var(--primary);

  &::after {
    color: var(--white);
  }
}

.splide__arrow--prev {
  left: -4vw;
}

.splide__arrow--next {
  right: -4vw;
}

.splide__pagination {
  position: static;
  margin-top: 20px;
}

.splide__arrow:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.splide__arrow:disabled:hover {
  background: var(--white);

  &::after {
    color: var(--black);
  }
}

.splide__pagination__page.is-active {
  background: var(--primary);
}

/* trusted section  */
.trusted-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.trusted-content {
  margin-bottom: 25px;
}

.trusted-item {
  padding: 25px;
  background: #FFFEF8;
  height: 100%;
}

.trusted-item p {
  color: var(--dark);
  font-family: var(--mono-fonts);
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 400;
}

.trusted-item h3 {
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}

.trust_cont_bx .content_box h2 {
  border-color: var(--gray);
}

.trusted-slider {
  width: 58vw;
  padding-bottom: 110px;
}

.trusted-slider figure {
  text-align: center;
}

.trusted-item figure {
  padding-bottom: 50%;
  position: relative;
  margin-bottom: 10px;
}

.trusted-item figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.trusted-slider .splide__arrow {
  bottom: 0;
  top: auto;
  transform: none;
}

.trusted-slider .splide__arrow--prev {
  left: 0;
}

.trusted-slider .splide__arrow--next {
  left: 65px;
}

/* trusted section  */


.btn-heading {
  margin-bottom: 50px;
}

/* product section */
.product-card {
  position: relative;
  background: #f8f4eb;
  border-right: 0.4px solid #fff;
  border-left: 0.4px solid #fff;
}

.product-card .product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card .pdl_mane {
  padding: 0px 30px 70px;
  margin-top: auto;
}

.product-card .pdl_mane h3 {
  position: relative;
  z-index: 3;
}

.product-card .pdl_mane>span {
  color: #444444;
  font-size: 16px;
  position: relative;
  z-index: 3;
}

.product-slider-wrap .product-card {
  height: 100%;
}

.product-slider-wrap .product-card .product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card span.product_price {
  color: var(--primary);
  display: block;
  margin-top: 15px;
  font-size: 20px;
  font-family: var(--mono-fonts);
  font-weight: 500;
  position: relative;
  z-index: 3;
}

span.product_price .woocommerce-Price-amount.amount {
  font-family: var(--mono-fonts);
  font-weight: 500;
  font-size: var(--f-size-S) !important;
  color: var(--primary) !important;
}

span.product_price .woocommerce-Price-currencySymbol {
  font-family: var(--mono-fonts);
  font-weight: 500;
  font-size: 20px !important;
}

.pd-btn-box {
  display: flex;
  gap: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  padding: 0px 30px 0px;
  z-index: 3;
}

.pd-btn-box a.btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wish-list-btn {
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--primary);
  padding: 10px;

  i {
    font-size: 30px;
    color: #AAAAAA;
  }
}

.pd-btn-box a.btn.buy_now_btn {
  flex: none;
}

.buy_now_btn::after {
  display: none !important;
}

a.add_to_cart_button::after {
  content: "\f07a";
  font-family: "Font Awesome 6 Free";
}

.wrap_control.grid-4 .add_to_cart_button .btn-text {
  display: none;
}

a.custom-add-cart-btn,
a.btn.custom-add-cart-btn {
  &::after {
    margin-left: auto;
  }
}

.wrap_control.grid-4 .add_to_cart_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 70px;
  max-width: 70px;
}

.wrap_control.grid-4 .add_to_cart_button::after {
  margin-left: 0px;
}

.wrap_control.grid-4 a.btn.buy_now_btn {
  flex: 1;
  justify-content: center;
}

/* .wish-list-btn:hover{
  background: var(--primary);
  border: 1px solid var(--primary);
  i{
    color: var(--white);
  }
}
.wish-list-btn:hover img{
  filter: invert(1);
} */
.pd-thum-img {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  /* margin-bottom: -20px; */
  z-index: 1;
  transition: var(--common-transition);
}

.pd-thum-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: var(--common-transition);
  visibility: hidden;
  opacity: 0;
  margin: 0px;
}

.pd-overlay-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card:hover .pd-overlay-img {
  visibility: visible;
  opacity: 1;
}

.product-card:hover .pd-thum-img {
  opacity: 0;
  visibility: hidden;
}

.product-card:hover a.btn {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.product-card:hover a.wish-list-btn i {
  color: var(--primary);
}

.product-card:hover .pd-overlay-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF6D7;
  background: linear-gradient(0deg, rgba(255, 246, 215, 0.87) 0%, rgba(255, 246, 215, 0.06) 100%);
}




/* .custom-slider-scroll{
    margin-top: 40px;
    width: 100%;
}

.scroll-track{
    width: 100%;
    height: 6px;
    background: #d9d9d9;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.scroll-thumb{
    width: 120px;
    height: 100%;
    background: #000;
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.2s;
} */

.product_Range {
  width: 270px;
  margin-top: 45px;
  margin-inline: auto;
  cursor: pointer;
  appearance: none;
  height: 5px;
  padding: 0;
  border-radius: 50px;
  background: #d9d9d9;
}

/* Thumb */
.product_Range::-webkit-slider-thumb {
  appearance: none;
  width: 160px;
  height: 5px;
  border-radius: 50px;
  background: var(--primary);
  cursor: pointer;
}

.product_Range::-moz-range-thumb {
  width: 120px;
  height: 5px;
  border: none;
  border-radius: 50px;
  background: #000;
  cursor: pointer;
}

/* user section  */
.user_section {
  background-color: #DBE6D5;
  overflow: hidden;
}

.strock-text {
  font-size: 160px;
  color: #DBE6D5;
  white-space: nowrap;
  font-family: var(--mono-fonts);
  font-weight: 400;
  text-stroke: 1px #4B854C;
  -webkit-text-stroke: 1px #4B854C;
  word-spacing: -55px;
  letter-spacing: -13px;
}

.afterbeore-slider {
  margin-top: 40px;
}

.afterbeore-item-card {
  padding: 5px 5px 10px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-bottom: 25px;
}

.af_wrap {
  position: relative;
}

.afterbeore-item-card figure {
  margin: 0;
  padding-bottom: 188%;
  position: relative;
}

.afterbeore-item-card figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.afterbeore-item-card span {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: var(--black);
  font-weight: 700;
  background: var(--white);
  min-width: 80px;
  text-align: center;
  padding: 4px 0;
}

/* user section  */

/* shop by section  */
.shop-by-item {
  position: relative;
}

.shop-by-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000085;
  z-index: 2;
}

.shop-by-item figure {
  margin: 0;
  padding-bottom: 142%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--common-transition)
}

.shop-by-item figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--common-transition);
}

.shop-by-item:hover figure img {
  transform: scale(1.1);
}

.sb_content {
  position: absolute;
  inset: 0;
  color: var(--white);
  padding: 30px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
}

.sb_content h3 {
  color: var(--white);
  font-size: var(--f-size-L);
  margin: 16px 0px;
  /* margin-bottom: 30px;
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.sb_content p {
  color: var(--white);
  font-size: var(--f-size-SM);
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.shop-by-slider {
  width: 74vw;
}

.shop_range::-webkit-slider-thumb {
  width: 65%;
}

.product_Range::-webkit-slider-thumb:hover {
  height: 8px;
}

.shop-by-sec {
  overflow: hidden;
}

/* shop by section  */

/* trust section */
.trustby-section {
  overflow: hidden;
  position: relative;
}

.founder_info {
  padding-top: 16px;
}

.founder_info img {
  height: 100px;
  margin-bottom: 20px;
  margin-top: -10px;
}

.founder_info span {
  font-family: var(--mono-fonts);
  font-weight: 400;
  display: inline-block;
  margin-top: 10px;
  text-transform: uppercase;
}

.tb_content {
  padding: 50px 70px;
}

.timg_bx {
  /* width: 50vw; */
  margin-left: -42%;
}

.trust_img {
  position: relative;
  padding-bottom: 100%;
  margin: 0;
}

.trust_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: left;
  object-fit: cover;
}

.trustby-section .tb_content strong {
  color: var(--black);
}

/* trust section */

/* community section */
.community-section {
  background-color: #FDF6E1;
}

.community-slider {
  margin-bottom: 70px;
}

.community-item {
  padding: 40px;
  height: 100%;
  background: var(--white);
}

.community-item h3 {
  margin-bottom: 40px;
}

.community-item h4 {
  margin-bottom: 10px;
}

.community-item p {
  margin-bottom: 40px;
}

.comm_user_tesi span {
  text-transform: uppercase;
  font-size: 16px;
}

.community-item ul {
  margin-bottom: 40px;
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.community-item ul li {
  font-size: 35px;

  i {
    color: var(--primary);
  }
}

.instagram-sec {
  border-top: 1px solid #AAAAAA;
  padding-top: 70px;
}

.inst-hdn {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 50px;
}

.inst-hdn h6 {
  margin-bottom: 0px;
  color: var(--black);
  /* font-style: italic; */
}

.inst-hdn span {
  color: var(--black);
  font-size: 18px;
}

.insta-img-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.insta-img-box figure {
  position: relative;
  padding-bottom: 100%;
  margin: 0;
  overflow: hidden;
}

.insta-img-box figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--common-transition);
}

.insta-img-box figure:hover img {
  transform: scale(1.1);
}

.btn-top-space {
  margin-top: 50px;
}

/* community section */

/* landing page blog */
.line-container {
  border-top: 2px solid #EEEEEE;
  position: relative;
  /* border-bottom: 2px solid #EEEEEE; */
}

.line-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #EEEEEE;
  bottom: 0;
}

.blog-item {
  padding: 25px;
  border-right: 0.5px solid #EEEEEE;
  border-left: 0.5px solid #EEEEEE;
  position: relative;
  height: 100%;
}

.blog-item figure {
  position: relative;
  padding-bottom: 100%;
  margin-bottom: 50px;
  overflow: hidden;
}

.blog-item figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--common-transition);
}

.blog-item:hover figure img {
  transform: scale(1.1);
}

.blog-item .blogsub_hdn {
  font-family: var(--mono-fonts);
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 20px;
}

.blog-item .blog_link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blog-item .date {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 10px;
  display: block;
}

.arrow_yellow .splide__arrow {
  background: #FDF6E1;
}

.arrow_yellow .splide__arrow:hover {
  background: var(--primary);
}

.blog-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #EEEEEE;
}

.blog-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #EEEEEE;
}

.blog-item:hover h3 {
  color: var(--primary);
}

/* landing page blog */

/* footer  */
footer {
  background: #F6F3EA;
  overflow: hidden;
}

.footer-content {
  display: flex;
}

.newsletter_box {
  max-width: 500px;
  /* width: 450px; */
  padding: 50px 40px 80px 0px;
}

.newsletter_box h2 {
  margin-bottom: 20px;
}

.nl_form {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  padding-bottom: 10px;
  border-bottom: 1px solid #AAAAAA;
}

.nl_form button.btn,
.nl_form input.btn {
  width: auto;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  /* Arrow Icon */
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
  background-size: 22px;
  font-size: 0px;
}

.nl_form button.btn:hover,
.nl_form input.btn:hover {
  opacity: 0.9;
}

.nl_form button.btn::after {
  margin: 0px;
}

.nl_form input[type="email"] {
  border: transparent;
  border: none !important;
}

/* .nl_form input::placeholder{
} */
.nl_form input::placeholder {
  font-size: 16px;
  text-transform: none;
  /* text-transform: uppercase; */
}

.footer_right {
  padding: 60px 50px 50px;
  background: var(--primary);
  position: relative;
}

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

.footer_right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: var(--primary);
}

.ftop_cont {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
}

.ftop_cont figure {
  min-width: 270px;
}

.ftop_cont p {
  color: var(--white);
  font-size: 18px;
}

.footer-menu .fmnu-hdn {
  margin-bottom: 20px;
  color: #F2CB5E;
  font-family: var(--mono-fonts);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-menu ul li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-menu ul li a {
  font-family: var(--body-fonts);
  font-size: 16px;
  color: var(--white);
}

footer ul li a:hover {
  color: #F2CB5E;
}

.payment-card {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.payment-card img {
  max-height: 41px;
}

.copyright-part {
  margin-top: 30px;
}

.copyright-part ul {
  display: flex;
  gap: 20px;
  margin: 0;
}

.copyright-part ul li a {
  font-size: 14px;
  color: var(--white);
}

.copyright-part ul li a {
  display: flex;
  gap: 10px;
}

.copyright-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-part p {
  color: var(--white);
  font-size: 14px;
  margin: 0px;
}

/* about us html */
.inner-banner.banner-main {
  padding-top: 240px;
  min-height: auto;
}

/* mv-section */
.mv-section h2 {
  border-color: #AAAAAA;
}

.mv-section h2 span {
  display: block;
  max-width: 45%;
}

.mv-card h3 {
  margin-bottom: 20px;
}

.mv-card figure {
  padding-bottom: 46.5%;
  position: relative;
  margin-bottom: 45px;
}

.mv-card figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--common-transition);
  z-index: 1;
}

.mv-card figure h3 {
  font-size: 120px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  z-index: 2;
  margin: 0;
  color: var(--white);
  transform: translate(-50%);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  white-space: nowrap;
  text-transform: capitalize;
}

.mv-card div {
  padding: 0px 40px 10px;
  text-align: center;
}

/* mv-section */
/* purpose section  */
.purpose-section {
  position: relative;
  /* background gradient */
  background: linear-gradient(180deg, #f0fdd261 0%, #F0FDD2 100%);
  background-size: cover;
}

.Pur_img {
  width: 50%;
  position: absolute;
  padding-bottom: 44.5%;
  margin-bottom: 0;
  bottom: 0;
  left: 0;
}

.Pur_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purpose-section .content_box h2 {
  border-color: #DDDDDD;
}

/* purpose section  */
/* why section  */
.wy_card {
  border-top: 1px solid #DDDDDD;
  padding-bottom: 30px;
}

.wy_card span {
  font-size: 20px;
  color: var(--primary);
  display: block;
  margin: 40px 0px;
  font-weight: 700;
}

.wy_content h3 {
  margin: 0 0 30px;
}

.wy_wrap {
  position: relative;
}

.wy_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 300px;
  /* gradiant  */
  background: linear-gradient(180deg, rgb(255 255 255 / 25%) 0%, rgb(255 255 255) 100% 100%);
  opacity: 0.8;
  z-index: 1;
}

.why-section .content_box {
  position: sticky;
  top: 100px;
}

.single_product_why_section {
  max-height: 470px;
  overflow: hidden;

}

/* why section  */

/* formula section  */
.fourmula-section {
  background-attachment: fixed !important;
  background-size: cover !important;
}

.formular-hdn {
  display: flex;
  align-items: center;
  gap: 210px;
  padding-bottom: 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid #AAAAAA;

  h2 {
    color: var(--white);
  }
}

.formular-hdn p {
  max-width: 550px;
  margin-bottom: 0;
  color: var(--white);
}

.fourmula-slider {
  width: 100% !important;
  padding-bottom: 90px;
}

.fourmula-slider .splide__arrows {
  width: fit-content;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;

  .splide__arrow {
    position: static;
  }
}

/* formula section  */

/* expertise_section */
.expertise_section {
  overflow: hidden;
  position: relative;
}

.expertise_section ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px 0;
  margin: 0px;
  margin-bottom: 30px;
}

.expertise_section ul li {
  position: relative;
  color: #000;
  display: flex;
  align-items: center;
  gap: 16px;
}

.expertise_section ul li::before {
  content: "";
  width: 28px;
  height: 28px;
  background: url(../images/check.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.expertise_img {
  position: relative;
  width: 60vw;
  padding-bottom: 90%;
}

.expertise_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.behind-section {
  background-color: #FDF6E1;
  overflow: hidden;
  position: relative;
}

.behind_card {
  padding: 43px 35px 50px;
  background: #fff;
  text-align: center;
  height: 100%;
}

.behind_card figure {
  margin-bottom: 40px;
}

.behind_card h3 {
  margin-bottom: 30px;
}

.behind-section hr {
  border-color: #AAAAAA;
  margin: 70px 0px;
}

.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.view_st_cont {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.view_st_cont a.btn_border {
  color: #090909;
  border: 1px solid #090909 !important;
}

.view_st_cont p {
  margin-bottom: 40px;
}

.view_st_cont a.btn_border:hover {
  color: var(--primary);
  border: 1px solid var(--primary) !important;
}

.view_st_cont a {
  display: flex;
  justify-content: space-between;
}

.view_st_cont .btn::after {
  margin-left: 10px;
}

.view-story_container {
  padding-bottom: 240px;
}

.view-story_container {
  position: relative;
  z-index: 2;
}

.behind-section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -150px;
  width: 100%;
  height: 350px;
  background: url(../images/white-ingredients.png);
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}

/* expertise_section */

/* blog page  */
.bog_list .blog-item {
  border-bottom: 2px solid #EEEEEE;
}

/* blog page  */
/* blog details page  */
.no-banner main {
  padding-top: 200px;
}

.blog-details-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 30%);
  background: #FDF8E2;
  z-index: -1;
}

.blogsub_hdn {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: var(--mono-fonts);
  font-weight: 400;
  text-transform: uppercase;
}

.bd-headding h1 {
  font-weight: 400;
}

.bd-date {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 40px;
}

.bd-img {
  position: relative;
  padding-bottom: 30%;
  margin-bottom: 0px;
  overflow: hidden;
}

.bd-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user_informaion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  margin-bottom: 45px;
  border-bottom: 1px solid #EEEEEE;
}

.user_informaion .share_on span {
  font-size: var(--f-size-S);
}

.blog_user_info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog_user_info p {
  font-style: italic;
  font-size: var(--f-size-S);
  color: #CCCCCC;
}

.blog_user_info p span {
  font-weight: 700;
  font-style: normal;
  color: var(--gray);
}

.blog_user_info i {
  font-size: 20px;
  color: #CCCCCC;
}

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

.share_on span {
  font-weight: 600;
}

.share_on ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}

.share_on ul li a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E4E4E4;
  border-radius: 50%;
  transition: var(--common-transition);
}

.share_on ul li a:hover {
  border-color: #FDF6E1;
  background-color: #FDF6E1;
}

/* blog details page  */

.blog_details_content h2 {
  font-size: var(--f-size-L);
  margin-bottom: 50px;
}

.blog_details_content {
  padding-bottom: 50px;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 70px;
}

.comments_box_hdn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.comments_box_hdn h3 {
  font-size: var(--f-size-XXL);
  word-spacing: -18px;
}

.comments_box_hdn h3 span {
  color: var(--primary);
  font-size: 40px;
  font-weight: 600;
}

.comm_user {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.comm_user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.comm_user span {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.comments_box {
  padding-top: 12px;
  border-top: 1px solid #EEEEEE;
  padding-bottom: 25px;
}

.reply-date {
  display: block;
  color: var(--primary);
  font-family: var(--mono-fonts);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 15px;
}

.comm-sub {
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0px;
}

.comm-descp {
  font-size: 14px;
  color: var(--black);
}

.blog_categories {
  padding: 100px 20px 20px;
  position: sticky;
  top: 10px;
}

.blog_categories ul {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.blog_categories ul li a {
  display: block;
  padding: 16px 0px;
  font-family: var(--body-fonts);
  text-transform: capitalize;
  color: var(--gray);
  border-bottom: 1px solid #EEEEEE;
  transition: var(--common-transition);
}

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

/* blog end  */
.community-item .comm_user {
  flex-direction: column;
  gap: 0px;
}

.community-item .comm_user h4 {
  color: var(--black);
}

.community-item .comm_user p {
  text-transform: uppercase;
  font-family: var(--mono-fonts);
  color: var(--gray);
}

/* shop cart  */
.shop-sec .line-container {
  border-color: #AAAAAA;
}

.wrap_control {
  display: grid;
}

.products_cat_box .product-card,
.wrap_control .product-card {
  border-bottom: 2px solid var(--white);
}

.tab_wrap {
  padding: 0px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #AAAAAA;
  border-bottom: 1px solid #AAAAAA;
}

.shop_menus button.nav-link {
  padding: 25px;
  border-top: 0px;
  border-bottom: 0px;
  border-left: 0px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-gray);
  font-family: var(--mono-fonts);
  border-radius: 0px !important;
  border-right: 1px solid #AAAAAA !important;
  transition: var(--common-transition);
  text-transform: uppercase;
}

.shop_menus li:first-child button.nav-link {
  border-left: 1px solid #AAAAAA !important;
}

.shop_menus button.nav-link:hover,
.shop_menus .nav-link.active {
  color: var(--white);
  background-color: var(--primary);
}

.wrap_control.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.wrap_control.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.wrap_control.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-controler {
  display: flex;
  gap: 30px;
}

.grid-controler a {
  font-family: var(--body-fonts);
  font-size: 11px;
  font-weight: 700;
  color: #000;
}

.grid-controler a>span {
  display: block;
  text-align: end;
  margin-bottom: 5px;
}

.pdg-view span {
  display: block;
  width: 11px;
  margin: 0;
  height: 11px;
  background-color: #D9D9D9;
}

.grid-control.active .pdg-view span {
  background-color: var(--primary);
}

.pdg-view {
  display: grid;
  gap: 2px;
}

.pdg-view.pdv-2 {
  grid-template-columns: repeat(2, 1fr);
}

.pdg-view.pdv-3 {
  grid-template-columns: repeat(3, 1fr);
}

.pdg-view.pdv-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-controler img {
  height: 28px;
}

.product_select {
  border: 1px solid #AAAAAA;
  border-top: 0px;
  border-bottom: 0px;
  border-radius: 0px;
  max-width: max-content;
  padding: 25px;
  padding-right: 40px;
  height: auto;
  font-size: 18px;
  font-family: var(--mono-fonts);
  text-transform: uppercase;
  color: var(--dark-gray);
  cursor: pointer;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat right 20px center !important;
  appearance: none;
  -webkit-appearance: none;
}

.prod_cat_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 5H21M6 12H18M10 19H14' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 20px center !important;

  color: var(--white);
  border: 0;
}

/* Dropdown options */
.prod_cat_select option {
  background: #fff;
  color: #222;
}

/* .prod_cat_select{
  background: url("");
} */
/* .pd_galary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
} */

/* .view_thumb {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  margin: 0;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
} */

/* .view_thumb img,
.view_thumb video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* .view_thumb .play-btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(10px);
  align-items: center;
  border-radius: 100px;
  background-color: #0e5c4b4d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--white);
} */

/* .pd_galary .view_thumb:first-child {
  grid-column: span 2;
} */
.pd_galary_slider .view_thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}

.pd_galary_slider .view_thumb img,
.pd_galary_slider .view_thumb video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5fddf;
}

.pd_galary_slider .hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 46, 22, 0.541);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;

  i {
    line-height: normal;
  }
}

.pd_galary_slider .view_thumb:hover .hover-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.pd-thumb-slider .splide__slide {
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  border-radius: 0px;
  overflow: hidden;
  padding-bottom: 20%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-thumb-slider .splide__slide.video-thumb i {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(10px);
  align-items: center;
  border-radius: 100px;
  background-color: #0e5c4b4d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--white);
}

.pd-thumb-slider .splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumb-slider .splide__slide img,
.pd-thumb-slider .splide__slide.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumb-slider .splide__slide.is-active {
  opacity: 1;
  border-color: var(--primary) !important;
}

.pd-thumb-slider .video-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-size: 20px;
}

.pd_galary_slider .pd-thumb-slider .splide__arrow {
  visibility: hidden;
  opacity: 0;
  background-color: #f0fdd2;
  transition: 0.3s ease-in-out;
}

.pd_galary_slider .pd-thumb-slider .splide__arrow:hover {
  background-color: var(--primary);
}

.pd_galary_slider .pd-thumb-slider:hover .splide__arrow {
  visibility: visible;
  opacity: 1;
}

.pd_galary_slider .pd-thumb-slider:hover .splide__arrow.splide__arrow--next {
  right: 1em;
}

.pd_galary_slider .pd-thumb-slider:hover .splide__arrow.splide__arrow--prev {
  left: 1em;
}

/* .view_thumb .play-btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(10px);
  align-items: center;
  border-radius: 100px;
  background-color: #0e5c4b4d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--white);
} */
/* product details galary */

.details-tag {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 1rem;
}

.details-tag>span {
  text-transform: uppercase;
  font-size: 18px;
}

.stock {
  padding: 5px;
  font-weight: 700;
  color: var(--primary);
  background: #FAFDEA;
  font-size: 12px;
  text-transform: capitalize;
}

.details_product_price {
  display: inline-block;
  padding: 15px;
  background: #FAFDEA;
  font-size: 25px;
  color: var(--primary);
  font-weight: 700;
  margin: 30px 0px;

  bdi {
    font-size: 25px;
    color: var(--primary);
    font-weight: 700;
  }
}

.qnt_bx_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.quantity-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 19px 19px;
  border: 1px solid #aaaaaa;
}

.pd_content_box h2 {
  color: var(--dark-gray);
}

.qty-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  line-height: 0;
}

.qty-btn i {
  font-size: 16px;
  color: #444444;
}

.qty-input {
  width: 30px;
  padding: 0;
  height: auto;
  border: 0;
  text-align: center;
  font-size: 16px;
  font-family: var(--mono-fonts);
  color: #444444;
  background: transparent;
}

.qty-input:focus {
  outline: none;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--common-border);
  border-radius: 0;
  background: transparent;
}

.product-accordion .accordion-item:first-child {
  border-top: 1px solid var(--common-border);
}

.details_descp {
  padding-top: 35px;
  border-top: 1px solid #AAAAAA;
  padding-bottom: 30px;
  margin-top: 30px;
}

.details_descp strong {
  color: #444444;
}

.details_descp ul li {
  margin-bottom: 6px;
  font-size: var(--f-size-S);
}

.product-accordion .accordion-body ul,
.product-accordion .accordion-body ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-accordion .accordion-body ul li,
.product-accordion .accordion-body ol li {
  list-style: none;
  padding-left: 0;
  margin-bottom: 6px;
  line-height: 1.3;
  font-size: var(--f-size-SM);
  color: var(--gray);
}

.product-accordion .accordion-button {
  padding: 35px 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  color: #444444;
  font-size: var(--f-size-Body);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--dark);
  box-shadow: none;
}

.product-accordion .accordion-button::after {
  display: none;
}

.product-accordion .accordion-button i {
  margin-left: auto;
  /* font-size: 16px; */
  transition: transform 0.3s ease;
}

.product-accordion .accordion-button:not(.collapsed) i {
  transform: rotate(180deg);
}

.product-accordion .accordion-body {
  padding: 0 0 20px;
  line-height: 1.7;
}

.product-accordion .accordion-collapse {
  border: 0;
}

.details-btn-box {
  display: flex;
  gap: 14px;
}

.details-btn-box .btn {
  flex: 1;
}

.details-btn-box a.wish-list-btn,
.details-btn-box .btn.btn_border {
  color: var(--dark);
  border-color: var(--gray) !important;
}

.btn_border {
  color: var(--primary);
  border-color: var(--primary);
}

.why-choose-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.why-choose-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
}

.why-choose-section .why_stp_bx {
  position: relative;
  z-index: 2;
}

.why-choose-section .wy_card {
  border-color: var(--common-border);

  p {
    color: #AAAAAA;
  }

  h3,
  span {
    color: var(--white);
  }
}

.why-choose-section .wy_wrap::after {
  display: none;
}

.loved-community-sec {
  background: linear-gradient(180deg, #f0fdd261 0%, #F0FDD2 100%);
  position: relative;
}

.releated-slider .splide__arrows {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: absolute;
  transform: none;
  width: fit-content;
  bottom: auto;
  right: 10%;
  top: -12%;
}

.releated-slider .splide__arrows .splide__arrow {
  position: static;
}

.faq_row {
  display: flex;
  justify-content: space-between;
}

.faq_row .faq_hdn {
  width: 540px;
}

.faq_row .faq_hdn h2 {
  padding-bottom: 10px;
  border: none;
}

.faq_row .faq_hdn p {
  padding-right: 100px;
}

.faq-accordion {
  border-top: 1px solid var(--common-border);
}

.faq-accordion {
  width: 50%;
}

.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--common-border);
  background: transparent;
}

.faq-accordion .accordion-button {
  padding: 30px 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  color: #444444;
  font-size: var(--f-size-Body);
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: center;
}

.faq-accordion .accordion-button::after {
  display: none;
}

.faq-accordion .accordion-button i {
  margin-left: auto;
  font-size: 24px;
  transition: .3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) i {
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  padding: 0 50px 28px 0;
  color: var(--gray);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: #3b3b3b;
}

.no_faq {
  padding: 2rem 0px;
  background-color: #ffffff;
  font-size: var(--f-size-XL);
  font-weight: 600;
  color: var(--primary);
}

.wish-list-btn.active .fa-heart:before {
  font-weight: 900;
  color: var(--primary);
}

.contact_card {
  padding: 50px 35px 35px;
  background: #F5F2EA;
  height: 100%;
}

.contact_card img {
  max-height: 55px;
  margin-bottom: 70px;
}

.contact_card h3 {
  font-size: calc(var(--f-size-L) + 10px);
  margin-bottom: 16px;
}

.contact_card p {
  font-size: var(--f-size-L);
  font-family: var(--body-fonts);
}

.contact_card p a {
  color: var(--gray);
  font-family: var(--body-fonts);
  word-break: break-all;
}

.contact_card p:hover a {
  color: var(--primary);
}

.form_textarea {
  margin-top: 100px;
}

.contact_form .btn {
  padding: 20px;
  height: auto;
  font-weight: 500;
  width: 120px;
  margin-inline: auto;
}

.contact_form .btn::after {
  margin-left: 45px;
}

/* header search modify */
.dgwt-wcas-ico-magnifier-handler {
  height: 20px;
  margin: 0px;
  fill: var(--white);
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
  background-color: #FDF6E1;
  border-radius: 0px;
}

.dgwt-wcas-style-pirx.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  border-color: var(--common-border);
  border-radius: 0px;
  background-color: #fff;
}

.pagination-wrap,
.ajax-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}

.ajax-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.comment-page-link,
.ajax-pagination .ajax-page {
  font-family: var(--body-fonts);
  font-size: 20px;
  color: #9E9E9E !important;
}

.comment-pagination {
  padding-top: 30px;
}

.page-numbers,
.comment-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-numbers {
  font-size: 20px;
  color: #9E9E9E !important;
}

.page-numbers:hover {
  color: var(--primary) !important;
}

.page-numbers.current,
.comment-page-link.active,
.ajax-pagination .ajax-page.active {
  font-size: 24px;
  color: var(--primary) !important;
  font-weight: 700;
  line-height: 1;
}

.custom-pagination .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-pagination .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* bikram woocommerce dashboard modification  */
.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.woocommerce-MyAccount-navigation ul li {
  margin: 0px !important;
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 15px;
  color: var(--color-secondary) !important;
  font-family: var(--f-size-Body) !important;
  font-size: var(--f-size-M);
  border: 1px solid var(--common-border) !important;
  border-radius: 0px !important;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  font-size: 16px;
}

.woocommerce .woocommerce-info .button {
  border-radius: 30px !important;
}

.woocommerce .woocommerce-info .button.wc-forward {
  margin-left: 10px;
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}

.woocommerce-MyAccount-content {
  border: 1px solid var(--common-border) !important;
  padding: 30px !important;
  border-radius: 0px !important;
  box-shadow: none !important;
}

.woocommerce-MyAccount-content p a,
.woocommerce-form p a,
.lost_password a {
  font-family: var(--body-fonts);
  font-weight: 500;
  color: var(--primary);
}

.woocommerce p.lost_password a {
  color: var(--primary) !important;
  text-decoration: none !important;
  font-size: var(--f-size-S) !important;
}

.woocommerce-MyAccount-content p a:hover,
.woocommerce-form p a:hover,
.woocommerce p.lost_password a:hover {
  text-decoration: underline !important;
}

.woocommerce-Address-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px !important;
}

.woocommerce-Address-title h2 {
  font-size: var(--f-size-L) !important;
  color: var(--dark-gray) !important;
  font-family: var(--f-size-Body) !important;
  margin-bottom: 10px;
}

.woocommerce-Address-title a.edit {
  font-size: var(--f-size-S) !important;
  text-decoration: underline !important;
  color: var(--primary) !important;
  font-family: var(--f-size-Body) !important;
  margin-bottom: 0px !important;
}

address {
  font-size: var(--f-size-SM);
}

.woocommerce-Address-title h3 a {
  font-size: 14px !important;
  color: var(--color-accent) !important;
  font-family: var(--f-size-Body) !important;
}

.woocommerce-input-wrapper input {
  padding: 10px 15px !important;
  border: 1px solid #d6d6d6 !important;
  font-size: 16px;
  font-family: var(--f-size-Body);
  font-weight: 500;
  border-radius: 30px !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 16px;
}

span.select2-selection.select2-selection--single {
  border: none !important;
}

.woocommerce-input-wrapper .selection .select2-selection__rendered {
  padding: 10px 15px !important;
  border: 1px solid #d6d6d6 !important;
  font-size: 16px;
  font-family: var(--f-size-Body);
  font-weight: 500;
  border-radius: 30px !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 16px;
  appearance: none !important;
  -webkit-appearance: none !important;
  /* background: url('https://nini.weavers-web.com/wp-content/uploads/2026/04/arrow-icon-1.png') no-repeat right 12px center !important; */
  background-size: 12px !important;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  font-family: var(--f-size-Body);
  font-weight: 600;
  margin-bottom: 8px !important;
  color: var(--dark-gray);
  line-height: 1.5;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row input {
  padding: 10px 15px !important;
  border: 1px solid #d6d6d6 !important;
  font-size: 16px;
  font-family: var(--f-size-Body);
  font-weight: 500;
  border-radius: 0px !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 16px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row label {
  font-family: var(--f-size-Body);
  font-weight: 900;
  margin-bottom: 8px !important;
  color: var(--dark-gray);
}

.woocommerce-Input {
  padding: 10px 15px !important;
  border: 1px solid #d6d6d6 !important;
  font-size: 16px !important;
  font-family: var(--f-size-Body);
  font-weight: 500;
  border-radius: 0px !important;
  outline: none !important;
  box-shadow: none !important;
}

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.lost_reset_password {
  border: 1px solid #e6e6e6 !important;
  padding: 30px !important;
  border-radius: 0px !important;
  box-shadow: none !important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: flex !important;
  gap: 10px;
  cursor: pointer;
}

.woocommerce-form__input-checkbox {
  width: 16px !important;
  height: auto !important;
  padding: 0px !important;
}

.woocommerce form.login .form-row,
.woocommerce form.register .form-row {
  display: flex;
  flex-direction: column;
}

.woocommerce-form-login__submit {
  margin-right: 0px !important;
}

/* .woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
    width: 100% !important;
    float: none;
} */
.woocommerce-LostPassword a {
  font-size: var(--f-size-M) !important;
  text-decoration: underline !important;
  color: var(--color-accent) !important;
  font-family: var(--f-size-Body) !important;
}

.woocommerce button.button {
  border-radius: 0px !important;
  padding: 15px 30px !important;
  border: 1px solid var(--primary) !important;
  font-size: 20px;
  font-weight: 500 !important;
  color: var(--white) !important;
  margin-top: 10px !important;
  background-color: var(--primary) !important;
}

.woocommerce .woocommerce-info .button,
.woocommerce-MyAccount-content .button {
  border-radius: 0px !important;
  padding: 15px 30px !important;
  border: 1px solid var(--dark-gray) !important;
  font-size: 20px;
  font-weight: 500 !important;
  color: var(--dark-gray) !important;
  margin-top: 10px !important;
  text-decoration: none !important;
  background-color: transparent !important;
  margin-top: 0 !important;
}

.woocommerce-MyAccount-content .edit-account legend {
  margin-top: 16px;
  font-weight: 600;
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

.woocommerce .woocommerce-info .button:hover,
.woocommerce-MyAccount-content .button:hover {
  background-color: var(--dark-gray) !important;
  color: var(--white) !important;
}

.woocommerce button.button:hover {
  background-color: var(--white) !important;
  color: var(--primary) !important;
}

.woocommerce-MyAccount-content form h2 {
  font-size: var(--f-size-XL) !important;
  color: var(--color-accent) !important;
  font-family: var(--f-size-Body) !important;
  margin-bottom: 16px;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header th,
table.wc-block-cart-items .wc-block-cart-items__header th,
.wc-block-cart .wc-block-cart__totals-title {
  font-family: var(--f-size-Body);
  font-weight: 900;
  font-size: var(--f-size-SM) !important;
  color: var(--dark-gray);
}

.wc-block-components-button__text {
  border-radius: 0px !important;
  padding: 15px 30px !important;
  border: 1px solid var(--primary) !important;
  font-size: var(--f-size-S) !important;
  color: var(--white) !important;
  margin-top: 0px !important;
  background-color: var(--primary) !important;
  text-decoration: none !important;
}

.page-content a.wc-block-cart__submit-button {
  background: transparent !important;
  border: none !important;
  padding: 0;
  box-shadow: none !important;
  text-decoration: none !important;
}

.wc-block-components-button__text:hover {
  background-color: transparent !important;
  color: var(--primary) !important;
}

.wc-block-components-checkout-place-order-button {
  padding: 0px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.page-content a {
  color: var(--primary) !important;
  text-decoration: underline !important;
  font-size: var(--f-size-SM) !important;
  font-family: var(--f-size-Body) !important;
  font-weight: 600;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-family: var(--f-size-Body);
  font-weight: 900;
  color: var(--dark-gray);
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  line-height: 1;
  color: var(--color-accent) !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-radius: 0px !important;
  font-family: var(--ff-noche-bold);
  font-size: var(--f-size-S) !important;
  font-weight: 600;
  outline: none !important;
  box-shadow: none !important;
}

.woocommerce-info {
  border-top-color: var(--dark-gray) !important;
  color: var(--gray) !important;
}

.woocommerce-info::before {
  color: var(--gray) !important;
}

.yith-wcwl-share li a svg {
  color: var(--dark-gray) !important;
}

.woocommerce a.remove {
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid red !important;
  text-decoration: none !important;
  padding-top: 2px;
}

.woocommerce-Price-amount,
span.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value {
  font-size: var(--f-size-SM) !important;
  color: var(--dark-gray) !important;
  font-weight: 600;
}

.wc-block-components-radio-control__description-group .wc-block-components-radio-control__description,
.wc-block-components-radio-control__description-group .wc-block-components-radio-control__label,
.wc-block-components-radio-control__label-group .wc-block-components-radio-control__description,
.wc-block-components-radio-control__label-group .wc-block-components-radio-control__label {
  font-size: var(--f-size-SM);
  font-weight: 500;
}

.wc-block-components-product-metadata__description {
  display: none !important;
}

.woocommerce a.remove:hover {
  background-color: red !important;
  color: var(--color-tertiary) !important;
}

.blockUI.blockOverlay {
  z-index: 9 !important;
}

.order_details tr td,
.order_details tr th {
  font-size: var(--f-size-SM);
  color: var(--dark-gray);
}

.page-title {
  font-size: var(--f-size-XL) !important;
  color: var(--dark-gray) !important;
  font-weight: 600 !important;
  font-family: var(--f-size-Body) !important
}

.wc-block-components-totals-coupon__button {
  padding: 0 !important;
  background: transparent !important;
}

.wc-block-components-totals-coupon__button .wc-block-components-button__text {
  padding: 13px 24px !important;
  font-size: var(--f-size-SM) !important;
}

.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=password],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=password],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=url] {
  border-radius: 0px !important;
  border-color: var(--common-border) !important;
}

.LinkButton {
  border-radius: 0px !important;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
  padding: 9px !important;
  width: auto !important;
  height: auto !important;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input {
  width: 19px !important;
  height: auto !important;
  padding: 10px !important;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted,
.wc-blocks-components-select .wc-blocks-components-select__select,
.wp-block-woocommerce-checkout-order-summary-block {
  border-radius: 0px !important;
  border-color: var(--common-border) !important
}

.woocommerce table.shop_table {
  border-radius: 0px !important;
  border-color: var(--common-border) !important;
}

/* .woocommerce-account .common-pg-sec .woocommerce {
  padding-bottom: 60px;
} */
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  width: 23px;
}

.woocommerce-account .woocommerce h2,
.woocommerce-account .woocommerce .h2 {
  font-size: var(--f-size-L) !important;
  margin-bottom: 1rem !important;
  font-weight: 600 !important;
  color: var(--dark-gray) !important
}

.woocommerce ul.order_details li {
  margin-bottom: 16px !important;
}

.woocommerce ul.order_details li strong {
  font-size: var(--f-size-S) !important;
  color: var(--dark-gray) !important;
}

.woocommerce .woocommerce-customer-details address {
  padding: 1rem !important;
  border-radius: 0px !important;
  border-color: var(--common-border) !important;
  line-height: 1.4 !important;
}

.woocommerce form.login,
.woocommerce form.register {
  margin: 0px 0px 20px !important;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  padding: 0;
  display: block;
  height: fit-content;
  background: transparent;
  min-height: 0;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  font-family: var(--body-fonts);
  font-size: var(--f-size-S);
}

.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-item {
  font-size: var(--f-size-S);
}

.wc-block-components-validation-error>p {
  font-size: 14px;
  color: red;
}

.select2-container--open .select2-dropdown--above,
.select2-container--open .select2-dropdown--below {
  border: 1px solid #aaa !important;
  border-radius: 4px !important;
}

.select2-container .select2-results__options {
  font-size: var(--f-size-SM);
}

.select2-search__field {
  height: 40px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: var(--primary);
}

/* ********************************** */

/* another woocommers setting  */
.woocommerce p {
  font-size: var(--f-size-SM) !important;
}

.added_to_cart.wc-forward {
  display: none !important;
}

a.custom-add-cart-btn,
a.btn.custom-add-cart-btn,
button.custom-add-cart-btn,
button.btn.custom-add-cart-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;

  &:hover span {
    color: var(--white);
  }
}

a.custom-add-cart-btn span,
a.btn.custom-add-cart-btn span,
button.custom-add-cart-btn span,
button.btn.custom-add-cart-btn span {
  margin: 0;
}

.custom-add-cart-btn span.btn-text {
  font-size: var(--body-fonts);
}

.product-card:hover .btn span {
  color: var(--white);
}

.wishlist-products,
.no-cart-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.wishlist-products {
  padding-bottom: var(--padding-height);
}

.wishlist-products .product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* .wishlist-products .product-content .pdl_mane h3 a {
  font-size: 26px;
  line-height: 1;
} */

.wishlist-products .product-card:hover .pd-thum-img {
  visibility: visible;
  opacity: 1;
}

/* product details settings  */

.grecaptcha-badge {
  z-index: 9999999999;
}

.wc-stripe-payment-method-instruction {
  font-size: var(--f-size-SM);
  font-family: var(--body-fonts);
}

.single-product .woocommerce-breadcrumb {
  display: none !important;
}

/* 15-07-2026  */
/* empty card design  */
.wp-block-woocommerce-empty-cart-block .has-text-align-center {
  text-align: left;
  font-size: var(--f-size-XL);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 25px;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon {
  font-size: var(--f-size-L) !important;
  text-align: center !important;
  color: var(--dark);
  margin-bottom: var(--padding-height);
}

.common-pg-sec .wp-block-separator.is-style-dots {
  display: none;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
  background-color: rgb(75 133 76);
}

/*
.wp-block-woocommerce-empty-cart-block .wc-block-grid__products{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0px;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product{
  width: 100%;
  max-width: 100%;
  border: none;
  flex: 1;
  margin: 0px;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-image{
  position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    z-index: 1;
    transition: var(--common-transition);
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-image img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--common-transition);
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid__products .wc-block-grid__product:hover .wc-block-grid__product-image{
  transform: scale(1.1);
} */
.no-cart-row .product-card .pdl_mane {
  padding-inline: 20px;
}

.no-cart-row .pd-btn-box {
  padding-inline: 20px;
}

.no-cart-row .pd-btn-box a.btn {
  padding: 16px 16px;
  font-size: 16px;
}

.no-cart-row .wish-list-btn {
  min-width: 60px;

  i {
    font-size: 22px;
  }
}

/* faq section  */

.faq-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  position: relative;
  padding: 22px 60px 22px 0;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}

.faq-question::after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  transition: .3s;
}

.faq-item.active .faq-question::after {
  content: "\f068";
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 60px 25px 0;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

/* faq section  */
.faq-main .accordion-item {
  border: 1px solid var(--common-border);
  border-radius: 0;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-main .accordion-button {
  background: var(--white);
  color: var(--dark);
  font-size: var(--f-size-M);
  font-weight: 600;
  padding: 22px 70px 22px 25px;
  box-shadow: none;
  position: relative;
  border-radius: 0px !important;
}

.faq-main .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}

.faq-main .accordion-button:focus {
  box-shadow: none;
  border: none;
}

/* Remove Bootstrap default icon */
.faq-main .accordion-button::after {
  display: none;
}

/* Font Awesome + */
.faq-main .accordion-button::before {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

/* Font Awesome - */
.faq-main .accordion-button:not(.collapsed)::before {
  content: "\f068";
  border-color: var(--white);
  color: var(--white);
}

.faq-main .accordion-body {
  padding: 25px;
  font-size: var(--f-size-SM);
  color: var(--gray);
  border-top: 1px solid var(--common-border);
  background: var(--white);
}

.wishlist-empty {
  grid-column: span 4 / span 4;
}

a.view-details-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  z-index: 5;
  color: var(--white);
  transform: scale(0);
  transition: 0.3s ease-in-out;
}

.product-card:hover a.view-details-btn {
  transform: scale(1)
}

.view-details-btn::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  transform: rotate(310deg);
}

.user-sec-heading h2,
.user-sec-heading p {
  color: var(--dark);
}

.no-products {
  text-align: center;
  font-size: var(--dark);
  font-size: var(--f-size-L);
  margin: 60px 0px;
}

.no-wish img {
  max-width: 250px;
  margin-bottom: 30px;
}

.ti-nav-arrow div::after {
  content: "\f105";
  font-family: "themify";
  font-size: 20px;
  color: var(--primary);
}

.product-slider-wrap .pd-btn-box .add_to_cart_button .btn-text {
  display: none !important;
}

.product-slider-wrap .pd-btn-box .add_to_cart_button::after {
  margin: 0;
}

.product-slider-wrap .pd-btn-box .add_to_cart_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 70px;
  max-width: 70px;
}

.product-slider-wrap .pd-btn-box .buy_now_btn {
  flex: 1 !important;
  justify-content: center;
}

.products_cat_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* login and register page design  */
.signup_section {
  position: relative;
}

.signup_form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 2px solid #EEEEEE;
  border-right: 2px solid #EEEEEE;
}

.signup_form_content {
  border-right: 2px solid #EEEEEE;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.signup_form_content .form-group {
  margin-bottom: 20px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: inherit !important;
  background-color: transparent !important;
  transition: background-color 9999s ease-in-out 0s;
}

.signup_form_content .form-group .input-group input {
  padding-right: 50px !important;
}

.signup_form_content .form-group .input-group .input-group-text {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: var(--bs-border-radius) !important;
  color: var(--primary);
  z-index: 5;
}

/* .signup_form_content input[type="radio"],  */
.signup_form_content .form-group.form-check {
  padding-left: 25px;
}

.signup_form_content .form-group.form-check .form-check-label {
  margin-bottom: 0px;
}

.signup_form_content input[type="checkbox"] {
  padding: 10px !important;
  accent-color: var(--primary);
  width: 20px !important;
  height: 20px !important;
  margin-right: 10px;
}

.signup_form_content input[type="checkbox"]:focus {
  border: 1px solid var(--primary);
}

.signup_form_content form,
.signup_form_content button {
  width: 100%;
}

.signup_form_image {
  margin: 0px;
  position: relative;
  padding-bottom: 100%;
}

.signup_form_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.number_verify_wrapper {
  display: flex;
  align-items: flex-end;
}

.number_verify_wrapper button.btn {
  /* min-width: 180px; */
  font-size: 14px;
  padding: 16px 20px;
  max-width: fit-content;

}

.number_verify_wrapper button.btn::after {
  display: none;
}

.signup_form_content .mobile-verification-message,
.signup_form_content .otp-verification-message {
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

.signup_form_content p {
  font-size: var(--f-size-S);
}

.signup_form_content a {
  font-family: var(--body-fonts);
  color: var(--primary);
  font-weight: 500;
  font-size: var(--f-size-S);
}

.signup_form_content a:hover {

  text-decoration: underline;
}

.otp-action-buttons .btn.btn_border {
  color: var(--dark);
  border-color: var(--gray) !important;
  margin-top: 20px;
}

.terms_modal .modal-body p {
  font-size: var(--f-size-S);
  margin-bottom: 16px;
}

.terms_modal .modal-body p strong {
  color: var(--primary);
  margin-bottom: 10px;
  display: inline-block;
}

.login_section_customs .signup_form_image {
  padding-bottom: 80%;
}

.mc4wp-response .mc4wp-alert {
  margin-top: 10px;
}

.mc4wp-response p {
  font-size: var(--f-size-SM);
}

.mc4wp-response .mc4wp-alert.mc4wp-success p {
  color: var(--primary);
}

.mc4wp-response .mc4wp-alert.mc4wp-error p {
  color: red;
}

.wc-block-components-sidebar-layout .wc-block-must-login-prompt a {
  color: var(--primary);
  font-family: var(--body-fonts);
  font-weight: 500;
  text-decoration: underline;
}

.small,
small {
  font-size: var(--f-size-SM);
}

.input-group {
  margin-bottom: 5px;
}

#verifyAccountEmailBtn {
  margin-top: 0px !important;
}

.woocommerce-MyAccount-content span,
.signup_form span {
  font-size: var(--f-size-SM);
}

.signup_form .input-group .input-group-append {
  display: flex;
}



























@media only screen and (min-width:1299px) {
  .container {
    max-width: 1300px;
  }
}

@media only screen and (min-width:1499px) {
  .container {
    max-width: 1450px;
  }

  .main-header .container {
    max-width: 1320px;
  }

  .comments_box_hdn h3 {
    word-spacing: -5px;
  }
}

@media only screen and (min-width:1799px) {
  .container {
    max-width: 1600px;
  }

}

/* .container end */
@media only screen and (max-width:1799px) {
  .behind-section::after {
    right: -55px;
    width: 100%;
    height: 245px;
    bottom: -14px;
  }

  .contact_card img {
    max-height: 45px;
    margin-bottom: 45px;
  }

  .contact_card h3 {
    font-size: var(--f-size-L);
    margin-bottom: 12px;
  }

  .contact_card p {
    font-size: var(--f-size-M);
  }

  .main_form .form-group {
    margin-bottom: 0px;
  }

  .form_textarea {
    margin-top: 50px;
  }

  .wishlist-products .pd-btn-box a.btn {
    font-size: 16px;
  }

  .tab_wrap {
    padding: 0px 40px;
  }

  .beu_img {
    margin-left: -30%;
  }
}

@media only screen and (max-width:1599px) {
  .mv-card figure h3 {
    font-size: 7dvw;
  }

  .mv-card figure {
    margin-bottom: 25px;
  }

  .wy_card span {
    margin: 35px 0px;
  }

  .formular-hdn {
    gap: 150px;
  }

  a.custom-add-cart-btn span,
  a.btn.custom-add-cart-btn span,
  button.custom-add-cart-btn span,
  button.btn.custom-add-cart-btn span {
    font-size: 18px;
  }

  .pdl_mane h3,
  .pdl_mane .h3,
  .pdl_mane h3 a,
  .pdl_mane .h3 a {
    font-size: 24px;
    height: 52px;
  }

  .common-pg-sec h1 {
    font-size: var(--f-size-XL);
  }

  .nl_form {
    gap: 14px;
    align-items: center;
  }

  .nl_form button.btn {
    width: auto;
    min-width: 44px;
    height: 44px;
    padding: 10px;
    font-size: 16px;
  }

  .newsletter_box {
    min-width: 320px;
  }
}



@media only screen and (max-width:1499px) {

  :root {
    /* --f-size-XXXL: 100px; */
    /* --f-size-XXL: 85px; */
    --f-size-XL: 50px;
    --f-size-L: 24px;
    --f-size-M: 22px;
    --f-size-S: 18px;
    --f-size-Sm: 14px;
    --f-size-Body: 18px;
  }

  .main-menu ul li:not(:last-child) {
    margin-right: 20px;
  }

  .btn.btn_white:after {
    margin-left: 20px;
  }

  .product-card .pdl_mane {
    padding: 0px 20px 65px;
  }

  .pd-btn-box {
    gap: 10px;
    bottom: 14px;
    padding: 0px 16px 0px;
  }

  .trusted-item {
    padding: 16px;
  }

  .hdr-wrap .logo a {
    height: 60px;
  }

  .hdr-wrap .logo a img {
    height: 50px;
  }

  .hdr-wrap .hdr-btn .btn {
    height: 60px;
    min-width: 110px;
  }

  .bnr-item-card {
    /* flex-direction: column; */
    gap: 12px;
  }

  .bnr-item-card figure {
    min-width: 150px;
  }

  .pdl_mane>span {
    margin-bottom: 10px;
  }

  .btn::after,
  a.btn::after {
    margin-left: 20px;
  }

  .bnr-item-card .pdl_mane .h3 {
    font-size: 22px;
  }

  .banner-main .bnr-text {
    padding: 0px;
  }

  .banner-main .bnr-text p {
    min-width: auto;
  }

  .content_box .h2,
  .content_box h2 {
    padding-bottom: 20px;
    margin: 0 0 20px;
  }

  p {
    margin: 0 0 20px;
  }

  .content_box .btn {
    margin-top: 0px;
  }

  .strock-text {
    font-size: 110px;
    word-spacing: -40px;
    letter-spacing: -8px;
  }

  .sb_content h3 {
    /* font-size: calc(var(--f-size-XL) - 10px); */
    margin-block: 16px;
  }

  .sb_content {
    padding: 22px;
  }

  .community-item {
    padding: 30px;
  }

  .community-item ul {
    margin-bottom: 25px;
    gap: 5px;
  }

  .community-item ul li {
    font-size: 25px;
  }

  .community-item h3 {
    margin-bottom: 20px;
  }

  .community-item p {
    margin-bottom: 20px;
  }

  .splide__arrow {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  }

  .splide__arrow--next {
    right: -2vw;
  }

  .splide__arrow--prev {
    left: -2vw;
  }

  .formular-hdn {
    gap: 100px;
  }

  .formular-hdn p {
    max-width: 450px;
  }

  .formular-hdn {
    padding-bottom: 25px;
    margin: 0 0 30px;
  }

  .expertise_section ul li::before {
    width: 20px;
    height: 20px;
  }

  .expertise_section ul li {
    gap: 10px;
  }

  .expertise_section ul {
    gap: 14px;
    margin-bottom: 20px;
  }

  .behind_card {
    padding: 40px 25px 40px;
  }

  .behind_card figure {
    margin-bottom: 20px;
  }

  .behind_card figure img {
    max-height: 50px;
  }

  .behind_card h3 {
    margin-bottom: 20px;
  }

  .behind-section hr {
    margin: 50px 0px;
  }

  .section-title h2 {
    margin-bottom: 35px;
  }

  .view_st_cont p {
    margin-bottom: 30px;
  }

  .section-title h2 {
    margin-bottom: 24px;
  }

  .user_informaion {
    padding: 20px 0;
    margin-bottom: 30px;
  }

  .share_on ul li a {
    width: 50px;
    height: 50px;
  }

  .blog_categories ul {
    margin-top: 16px;
  }

  .wish-list-btn {
    min-width: 55px;

    i {
      font-size: 20px;
    }
  }

  .banner-btn-box {
    flex-wrap: wrap;
  }

  .banner-btn-box .btn::after,
  .banner-btn-box a.btn::after {
    margin-left: 20px;
  }

  .banner-btn-box .btn,
  .banner-btn-box a.btn {
    padding: 16px 13px;
  }

  a.view-details-btn {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }

  .no-cart-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .no-wish img {
    max-width: 200px;
    margin-bottom: 20px;
  }

  a.product_btn,
  .product_btn {
    font-size: 16px;
  }

  .product-slider-wrap .pd-btn-box .add_to_cart_button {
    padding: 10px;
    justify-content: center;
    min-width: 55px;
    max-width: 55px;
  }

  .signup_form_content {
    padding: 40px;
  }
}

@media only screen and (max-width:1399px) {
  :root {
    --f-size-L: 24px;
  }

  .trusted-slider {
    width: 60vw;
    padding-bottom: 80px;
  }

  .trust_img {
    padding-bottom: 80%;
  }

  .tb_content {
    padding: 40px;
  }

  .timg_bx {
    margin-left: -22%;
  }

  .trust_img {
    padding-bottom: 100%;
  }

  .founder_info {
    padding-top: 5px;
  }

  .founder_info img {
    height: 80px;
    margin-bottom: 10px;
  }

  .blog-item {
    padding: 16px;
  }

  .blog-item figure {
    margin-bottom: 30px;
  }

  .blog-item .blogsub_hdn {
    font-size: 16px;
  }

  .blog-details-section:after {
    height: 600px;
  }

  .comments_box_hdn h3 {
    word-spacing: 0px;
  }

  .details-btn-box {
    gap: 10px;
  }

  .details-btn-box a.wish-list-btn {
    min-width: 45px;
  }
}


@media only screen and (max-width:1299px) {

  .btn,
  a.btn {
    padding: 14px 16px;
    font-size: 18px;
  }

  .bnr-item-card {
    margin-right: 0px;
    margin-top: 30px;
    margin-left: 0px;
  }

  .bnr-item-card .pdl_mane .h3 {
    font-size: var(--f-size-L);
  }

  .beauty-sec-content {
    padding: 50px 0px 0 10px;
  }

  p {
    margin: 0 0 16px;
  }

  .content_box h2 {
    padding-bottom: 20px;
    margin: 0 0 20px;
  }

  .content_box .btn {
    margin-top: 10px;
  }

  .strock-text {
    font-size: 100px;
  }

  .afterbeore-slider {
    margin-top: 0px;
  }

  .tb_content {
    padding-right: 0px;
  }

  .founder_info img {
    margin-top: 10px;
  }

  .blog-item figure {
    margin-bottom: 30px;
  }

  .ftop_cont figure {
    min-width: 230px;
  }

  .ftop_cont {
    gap: 30px;
  }

  .ftop_cont p {
    font-size: 16px;
  }

  .footer-menu ul li:not(:last-child) {
    margin-bottom: 14px;
  }

  .nl_form button.btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nl_form {
    align-items: center;
  }

  .nl_form input[type="email"] {
    height: auto;
    padding: 0;
  }

  .contact_card img {
    max-height: 34px;
    margin-bottom: 35px;
  }

  .footer_right {
    padding: 41px 30px 30px;
  }

  .newsletter_box {
    padding-right: 25px;
  }

  .blog_details_content {
    padding-bottom: 30px;
    margin-bottom: 40px;
  }

  .comments_box_hdn h3,
  .comments_box_hdn h3 span {
    font-size: calc(var(--f-size-XXL) - 10px);
  }

  .contact_card {
    padding: 40px 25px 25px;
  }

  .grid-controler a[data-grid="4"] {
    display: none;
  }

  .wrap_control.grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tab_wrap {
    padding: 0px 0px;
  }

  .shop_menus button.nav-link {
    padding: 17px;
    font-size: 14px;
  }

  .product_select {
    /* max-width: 130px; */
    padding: 18px 45px 18px 18px;
    font-size: 16px;
  }

  .wishlist-products {
    grid-template-columns: repeat(3, 1fr);
  }

  .wishlist-empty {
    grid-column: span 3 / span 3;
  }

  .wrap_control .add_to_cart_button .btn-text {
    display: none;
  }

  .wrap_control .add_to_cart_button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 70px;
    max-width: 70px;
  }

  .add_to_cart_button::after {
    margin-left: 0px;
  }

  a.btn.buy_now_btn {
    flex: 1;
    justify-content: center;
  }

  .wrap_control.grid-4 .add_to_cart_button {
    justify-content: center;
    padding: 10px;
    min-width: 55px;
    max-width: 55px;
    font-size: 14px;
  }

  .products_cat_box {
    grid-template-columns: repeat(3, 1fr);
  }

  .signup_form_content {
    padding: 30px;
  }
}

@media only screen and (max-width:1199px) {
  .bnr-item-card figure {
    min-width: 200px;
    padding-bottom: 35%;
  }

  .nav-wrap-main {
    gap: 30px;
  }

  .cart_list {
    gap: 18px;
  }

  .cart_list li img {
    width: 18px;
  }

  .sb_content {
    padding: 18px;
  }

  .shop-by-slider {
    width: 65vw;
  }

  .timg_bx {
    margin-left: 0;
    height: 100%;
  }

  .trust_img {
    height: 100%;
  }


  .blog-item figure {
    margin-bottom: 20px;
  }

  .blog_categories {
    padding: 30px 0px 20px;
  }

  .blog_categories ul {
    margin-top: 12px;
  }

  .comments_box_hdn h3 span {
    font-size: var(--f-size-L);
  }

  .beauty-sec {
    background-size: 100% 113%;
  }

  .faq_row {
    gap: 30px;
  }

  .faq_row .faq_hdn {
    width: auto;
  }

  .newsletter_box {
    min-width: 270px;
  }

  .nl_form button.btn,
  .nl_form input.btn {
    min-width: 50px;
    height: 50px;
  }

  .nl_form {
    gap: 10px;
  }

  .signup_form_content input[type="checkbox"] {
    padding: 6px !important;
    width: 15px !important;
    height: 15px !important;
    margin-top: 2px;
  }

}

@media only screen and (max-width:1024px) {

  :root {
    /* --f-size-XXXL: 90px; */
    --f-size-XXL: 40px;
    --f-size-XL: 35px;
    --f-size-L: 22px;
    --f-size-M: 20px;
    --f-size-S: 18px;
    --f-size-Sm: 18px;
    --f-size-Body: 18px;
  }

  .btn,
  a.btn {
    padding: 14px 20px;
  }

  .menu-wrapper {
    width: 80%;
  }

  .header-btn .btn {
    padding: 22px 30px;
  }

  .hdr-wrap {
    margin-left: auto;
    margin-right: 0;
    max-width: 100%;
    justify-content: space-between;
  }

  .menu-main-menu-container {
    width: 100%;
  }

  .main-menu {
    /* display: none; */
    position: fixed;
    /* width: 100vw; */
    height: 100dvh;
    inset: 0;
    z-index: 999;
    margin: 0 auto;
    background-color: #f8f4eb;
    border: 0;
    padding: 30px;
    /* transform: translateY(100%) !important; */
    visibility: hidden;
    overflow-y: auto;
    transform: none !important;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    transition: var(--common-transition)
  }

  .main-menu.sidebar-open {
    /* transform: translateY(0%) !important;
    height: auto; */
    visibility: visible;
    opacity: 1;
  }

  .main-header.open-menu::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f4eb;
    z-index: 1;
  }

  .header-container {
    position: relative;
    z-index: 2;
  }

  .main-header.open-menu .nav_btn {
    width: 25px;
    top: -28px;
    right: 0;
  }

  .main-menu ul {
    transition: var(--common-transition);
  }

  .main-menu ul {
    flex-direction: column;
    width: 100%;
  }

  .main-menu ul li {
    width: 100%;
    text-align: center;
    margin: 15px 0;
    border: 0;
  }

  .main-menu ul li:not(:last-child) {
    margin-right: 0;
  }

  .main-menu ul li a {
    display: block;
    color: var(--gray);
    padding: 0;
  }

  .minus,
  .plus {
    display: block;
    cursor: pointer;
  }

  .main-menu ul li.current-menu-item a,
  .main-menu ul li:hover a {
    color: var(--gray);
  }

  .hdr-rt ul li a {
    color: var(--gray);
    padding: 10px;
  }

  .main-menu ul li.current-menu-item a {
    background: transparent;
    color: var(--color-black);
  }

  .main-menu ul li.btn {
    display: block;
    width: auto;
  }

  .header-btn {
    display: none;
  }

  .nav_btn {
    display: block;
    cursor: pointer;
    position: relative;
    margin: auto 10px auto 10px;
    width: 30px;
    height: 20px;
    z-index: 999;
  }

  .nav_btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    top: 0;
    right: 0;
    transition: ease-in-out 0.4s;
  }

  .nav_btn span {
    width: 100%;
    height: 2px;
    background: var(--white);
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav_btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    right: 0;
    bottom: 0;
    transition: ease-in-out 0.4s;
  }

  .nav_btn.sidebar_active span {
    display: none;
  }

  .nav_btn.sidebar_active::after {
    transform: rotate(45deg);
    bottom: 9px;
    background: var(--dark);
  }

  .nav_btn.sidebar_active::before {
    transform: rotate(135deg);
    top: 9px;
    background: var(--dark);
  }

  .hdr-wrap .hdr-btn {
    display: none;
  }

  .hdr-wrap .hdr-btn .btn {
    width: 100% !important;
    padding: 14px 30px;
    height: fit-content;
    font-size: 12px;
    width: fit-content;
    text-align: center;
    justify-content: center;
  }

  .hdr-wrap .mobileview {
    display: block;
    text-align: center;
    margin-top: 20px;
    width: 100%;
  }

  .main-menu ul li:not(:last-child) {
    margin-right: 28px;
  }

  .main-menu ul li:not(:last-child) {
    margin-right: 0px;
  }

  .nav-wrap-main {
    justify-content: end;
  }

  /* mobile submenu  */
  .main-menu ul.nav_list li {
    text-align: left;
    padding: 20px 0px;
    border-bottom: 1px solid var(--gray);
    margin: 0px;
    position: relative;
  }

  .main-menu li.menu-item-has-children {
    justify-content: flex-start;
    flex-direction: row-reverse;
  }

  .main-menu li.menu-item-has-children .plus,
  .main-menu li.menu-item-has-children .minus {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--gray);
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 16px;
    z-index: 5;
  }

  .main-menu li.menu-item-has-children .minus {
    display: none;
  }

  .main-menu li.menu-item-has-children.open-sub .plus {
    display: none;
  }

  .main-menu li.menu-item-has-children.open-sub .minus {
    display: flex;
  }

  .main-menu li.menu-item-has-children[class*="open-sub"] ul {
    position: static;
    display: block;
  }

  .main-menu li.menu-item-has-children ul.sub-menu {
    background: #e6e6e6;
    margin-top: 20px;
    max-height: 130px;
    overflow-y: auto;
  }

  .main-menu li.menu-item-has-children ul.sub-menu li {
    border-bottom: 1px solid #dfdede;
    padding: 0px 0px 0px 16px;

    a {
      padding: 10px 0px;
      display: block;
    }
  }

  .main-header.header-sticky.open-menu .nav_btn {
    top: 0px;
  }

  /* nenu end  */

  /* custom mobile menu  */
  /* .modile-menu_custom {
    display: flex;
  }

  .modile-menu_custom {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #dbe6d5e6;
    z-index: 9999;
    overflow-y: auto;
    transition: 0.4s ease;
    padding: 80px 25px 30px;
    box-shadow: #a6ce90 35px 14px 28px 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .mob_nav_cont {
    width: 100%;
  }

  .modile-menu_custom.menu-open {
    right: 0;
  }

  .menu-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 0;
    background: transparent;
    font-size: 24px;
  }

  .mobile-menu-list {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
  }

  .mobile-menu-list .menu-item {
    border: none;
    border-bottom: 1px solid var(--primary);
    background: transparent;
  }

  .mobile-menu-list .menu-item>a,
  .mobile-menu-list .accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 16px 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
  }

  .mobile-menu-list .accordion-button:not(.collapsed) {
    background: transparent;
    color: #000;
  }

  .mobile-menu-list .accordion-button::after {
    filter: brightness(0);
  }

  .sub-menu {
    padding: 0 0 15px 15px;
    margin: 0;
    list-style: none;
  }

  .sub-menu li {
    margin-bottom: 10px;
  }

  .sub-menu li a {
    text-decoration: none;
    color: var(--dark);
    font-family: var(--body-fonts);
    font-size: 16px;
    text-transform: uppercase;
  } */

  /* mobile menu end */
  .top-marquee-slider {
    margin-bottom: 30px;
  }

  .footer-content {
    flex-direction: column;
  }

  .newsletter_box {
    max-width: none;
    width: 100%;
    padding: var(--padding-height) 0px;
  }

  .footer_right::after {
    left: -200px;
    width: 155vw;
    height: 100%;
    background: var(--primary);
  }

  .footer-menu ul {
    margin-bottom: 0px;
  }

  .formular-hdn {
    gap: 30px;
  }

  a.view-details-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    transform: scale(1);
  }
}

@media only screen and (max-width:991px) {
  .beu_img {
    margin-left: -50%;
    padding-bottom: 200%;

    .beu_img {
      margin-left: -20%;
    }
  }

  .btn-heading {
    gap: 1rem;
    margin-bottom: 38px;
  }

  .section-title h2 {
    margin-bottom: 30px;
  }

  /* .w-choose-box {
    padding-top: 22px;
  } */

  .w-choose-box img {
    margin-bottom: 20px;
  }

  .w-choose-box h3 {
    margin-bottom: 10px;
  }

  .trusted-item h3 {
    margin-bottom: 10px;
  }

  .trusted-slider {
    width: 100%;
    padding-bottom: 75px;
  }

  .trust_cont_bx {
    padding: 20px;
    background: #1e110a2e;
    backdrop-filter: blur(10px);
  }

  .trust_cont_bx .content_box p,
  .trust_cont_bx .content_box h2 {
    color: var(--white);
    border-color: var(--white);
  }

  .trust_cont_bx hr {
    border-color: white;
  }

  .trusted-slider .splide__arrows {
    width: fit-content;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
  }

  .trusted-slider .splide__arrow {
    position: static;
  }

  .strock-text {
    font-size: 70px;
    word-spacing: -16px;
    letter-spacing: -4px;
  }

  .afterbeore-slider {
    margin-top: 20px;
  }

  .shop-by-slider {
    width: 100%;
  }

  .product_Range {
    margin-top: 40px;
  }

  .timg_bx {
    margin-left: 0;
  }

  .tb_content {
    padding: 0px;
    padding-top: 2px;
  }

  .community-slider {
    margin-bottom: 60px;
  }

  .instagram-sec {
    padding-top: 60px;
  }

  .btn-top-space {
    margin-top: 40px;
  }

  .insta-img-box {
    gap: 5px;
  }

  .btn::after,
  a.btn::after {
    margin-left: 14px;
  }

  .font_blog-sec .splide__pagination {
    top: 30px;
    position: relative;
  }

  .payment-card img {
    max-height: 35px;
  }

  .mv-section h2 span {
    max-width: 60%;
  }

  .mv-card figure h3 {
    font-size: 13dvw;
  }

  .Pur_img {
    left: auto;
    right: 0;
    z-index: -1;
  }

  .wy_card span {
    margin: 25px 0px;
  }

  .wy_content h3 {
    margin: 0 0 25px;
  }

  .formular-hdn {
    flex-direction: column;
    gap: 16px;
  }

  .formular-hdn p {
    max-width: none;
  }

  .formular-hdn {
    padding-bottom: 20px;
    margin: 0 0 25px;
  }

  .expertise_img {
    width: 100%;
    padding-bottom: 45%;
  }

  .no-banner main {
    padding-top: 170px;
  }

  .grid-controler {
    display: none;
  }

  .wrap_control {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* .tab_wrap {
    border: none;
    flex-direction: column;
    gap: 20px;
  } */

  .shop_menus {
    overflow: auto;
    padding: 4px 0;
    flex-wrap: nowrap;
    width: 100%;
  }

  .shop_menus button.nav-link {
    white-space: nowrap;
    border-top: 1px solid #AAAAAA !important;
    border-bottom: 1px solid #AAAAAA !important;
  }

  .wishlist-products,
  .no-cart-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .wishlist-empty {
    grid-column: span 2 / span 2;
  }

  /* .product_select {
    border: 1px solid #AAAAAA;
  } */

  .no-wish img {
    max-width: 150px;
    margin-bottom: 16px;
  }

  /* .sb_content h3 {
    font-size: calc(var(--f-size-XL) - 5px);
  } */
  .faq_row {
    flex-direction: column;
  }

  .faq-accordion {
    width: 100%;
  }

  .faq-accordion .accordion-header .accordion-button {
    gap: 10px;
  }

  .products_cat_box {
    grid-template-columns: repeat(2, 1fr);
  }

  .signup_form {
    grid-template-columns: repeat(1, 1fr);
  }

  .signup_form_image {
    display: none;
  }

  .signup_form_content {
    border: none;
  }
}

@media only screen and (max-width:767px) {
  :root {
    --f-size-XXXL: 50px;
    --f-size-XXL: 35px;
    --f-size-XL: 30px;
    --f-size-L: 20px;
    --f-size-M: 18px;
    --f-size-S: 16px;
    --f-size-Sm: 14px;
    --f-size-Body: 14px;
  }

  .btn,
  a.btn {
    font-size: 14px;
    padding: 14px 16px;
  }

  /* 
  .main-header {
    padding: 16px 0;
  } */

  .common-heading {
    margin-bottom: 30px;
  }

  .modile-menu_custom {
    width: 100%;
  }

  .hdr-wrap .logo a {
    max-width: 160px;
    padding: 0px 5px;
  }

  .nav-wrap-main {
    padding: 0px 10px;
  }

  .cart_list {
    gap: 14px;
  }

  .top-marquee-slider {
    margin-bottom: 20px;
  }

  .beu_img {
    padding-bottom: 120%;
    margin-left: -30%;
  }

  .beauty-sec-content {
    padding: 1rem;
    background-color: #7a752573;
    backdrop-filter: blur(15px);
  }

  .bnr-item-card figure {
    min-width: 150px;
    padding-bottom: 40%;
  }

  .product-card span.product_price {
    margin-top: 8px;
  }

  btn-heading {
    gap: 16px;
  }

  .product-card span.product_price {
    font-size: 17px;
  }

  .pdl_mane hr {
    margin: 13px 0px 16px;
  }

  .product-card .pdl_mane {
    padding: 0px 16px 65px;
  }

  .wish-list-btn {
    min-width: 55px;

    i {
      font-size: 20px;
    }
  }

  .strock-text {
    font-size: 60px;
    word-spacing: -20px;
    letter-spacing: 0px;
  }

  .btn-heading {
    margin-bottom: 26px;
  }

  .community-slider {
    margin-bottom: 40px;
  }

  .instagram-sec {
    padding-top: 40px;
  }

  .inst-hdn {
    margin-bottom: 30px;
  }

  .btn-top-space {
    margin-top: 30px;
  }

  .insta-img-box {
    grid-template-columns: repeat(3, 1fr);
    /* justify-items: center; */
  }

  .ftop_cont {
    flex-direction: column;
    text-align: center;
    gap: 0px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white);
  }

  .payment-card {
    gap: 6px;
  }

  .footer-menu ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  .payment-card img {
    max-height: 26px;
  }

  .ftop_cont figure {
    min-width: auto;
    max-width: 200px;
    margin-inline: auto;
  }

  .ftop_cont p {
    font-size: 14px;
  }

  .copyright-part {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--white);
  }

  .top-marquee-slider .splide__slide a {
    padding: 0px 16px;
  }

  .footer_right {
    padding: 40px 0px;
  }

  .w-choose-box {
    text-align: center;
  }

  .w-choose-box img {
    margin-bottom: 20px;
    min-height: 38px;
    max-height: 38px;
  }

  .mv-section h2 span {
    max-width: 90%;
  }

  .view_st_cont p {
    margin-bottom: 20px;
  }

  .section-title h2 {
    margin-bottom: 15px;
  }

  .bd-img {
    padding-bottom: 50%;
  }

  .blog-details-section:after {
    height: 480px;
  }

  .contact_form .btn {
    padding: 16px;
    height: auto;
    width: 120px;
  }

  a.custom-add-cart-btn span,
  a.btn.custom-add-cart-btn span,
  button.custom-add-cart-btn span,
  button.btn.custom-add-cart-btn span {
    font-size: 14px;
  }

  .why_about .wy_wrap {
    max-height: 400px;
    overflow: hidden;
  }

  .no-cart-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .sb_content h3 {
    font-size: calc(var(--f-size-XL) - 5px);
  }

  .pd_galary_slider .view_thumb {
    margin-bottom: 8px;
    padding-bottom: 90%;
  }

  .signup_form_content {
    padding: 24px;
  }
}

@media only screen and (max-width:575px) {
  :root {
    --f-size-XXXL: 35px;
    --f-size-XXL: 30px;
    --f-size-L: 18px;
    --f-size-M: 14px;
    --f-size-S: 14px;
    --f-size-SM: 14px;
    --f-size-Body: 14px;
  }

  p {
    line-height: 1.5;
  }

  .container {
    max-width: 95%;
  }

  .btn,
  a.btn {
    font-size: 14px;
    padding: 12px 12px;
  }

  .hdr-wrap .logo a {
    height: 53px;
    padding: 0px 2px;
  }

  .nav_btn {
    width: 25px;
  }

  .banner-main {
    padding-top: 180px;
  }

  .hdr-wrap .logo a img {
    height: 40px;
  }

  .banner-btn-box {
    gap: 16px;
    flex-direction: column;
  }

  .trust_cont_bx {
    padding: 16px;
  }

  .bnr-item-card figure {
    min-width: 120px;
    padding-bottom: 55%;
  }

  .bnr-item-card .pd-tag {
    top: 6px;
    left: 6px;
  }

  .bnr-item-card .pd-tag span {
    padding: 4px 6px;
    font-size: 8px;
  }

  .bnr-item-card {
    padding: 6px;
  }

  .pdl_mane hr {
    margin: 10px 0px 14px;
  }

  .pdl_mane h3,
  .pdl_mane .h3,
  .pdl_mane h3 a,
  .pdl_mane .h3 a {
    height: auto;
  }

  .mv-card figure h3 {
    font-size: 16dvw;
  }

  .mv-card div {
    padding: 0px 0px 10px;
  }

  .behind_card figure img {
    max-height: 40px;
  }

  .behind_card {
    padding: 30px 20px 30px;
  }

  .behind-section::after {
    right: 0px;
    height: 245px;
    bottom: -40px;
  }

  .btn-group {
    flex-direction: column;
    gap: 16px;
  }

  .view-story_container {
    padding-bottom: 200px;
  }

  .user_informaion {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    margin-bottom: 20px;
  }

  .shop_menus button.nav-link {
    padding: 12px 10px;
    font-size: 11px;
  }

  .tab_wrap {
    border: none;
    flex-direction: column;
    gap: 20px;
  }

  .product_select {
    border: 1px solid #AAAAAA;
    max-width: 100%;
    width: 100%;
    padding: 16px 45px 16px 16px;
    font-size: 12px;
  }

  .comments_box_hdn {
    flex-wrap: wrap;
    gap: 16px;
  }

  .wrap_control {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .details-btn-box {
    flex-wrap: wrap;
  }

  .btn.custom-single-add-cart {
    width: 100%;
    min-width: 100%;
  }

  .qnt_bx_row {
    flex-direction: column;
    margin-bottom: 14px;

    .share_on {
      width: 100%;
    }
  }

  .quantity-box {
    width: 100%;
    margin-bottom: 14px;
  }

  .details_product_price {
    margin: 16px 0px;
    padding: 12px;

    bdi {
      font-size: 20px;
    }
  }

  .qty-input {
    width: 100%;
    flex: 1;
  }

  .faq-main .accordion-button {
    padding: 16px 50px 16px 20px;
  }

  .faq-main .accordion-button::before {
    width: 25px;
    height: 25px;
    right: 16px;
    font-size: 12px;
  }

  .faq-main .accordion-item {
    margin-bottom: 16px;
  }

  .faq-main .accordion-body {
    padding: 14px 20px;
  }

  .wishlist-products,
  .no-cart-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .wishlist-empty {
    grid-column: span 1 / span 1;
  }

  a.view-details-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .products_cat_box {
    grid-template-columns: repeat(1, 1fr);
  }

  .beu_img {
    padding-bottom: 130%;
    margin-left: -20%;
    margin-bottom: -3%;
  }

  .pd-thumb-slider .splide__slide.video-thumb i {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .signup_form_content label {
    font-size: 14px;
    margin-bottom: 0px;
  }

  .number_verify_wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .signup_form .input-group {
    flex-wrap: wrap;
    gap: 16px;
  }

  .signup_form .input-group input {
    width: 100%;
  }
}