@font-face {
  font-family: 'Lavish';
  src: url('../font/LavishRegular.woff2') format('woff2'),
    url('../font/LavishRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primerry: #D48D40;
  --secondary: #FFEBCD;
  --chocolate-clr: #4C3228;
  --black-light: #1E1E1E;
  --black: #000000;
  --white: #ffffff;
  --gray: #E0E0E0;
  --Charcoal: #333;
  --red: #e74c3c;
  --off-white: #eee;

  /* font-family */
  --josefin: "Josefin Sans", sans-serif;
  --lavishly: "Lavish";

  /* font-size */
  --size-14: 0.875rem;
  --size-16: 1rem;
  --size-18: 1.125rem;
  --size-20: 1.25rem;
  --size-21: 1.313rem;
  --nav-font: 1.1rem;
  --size-22: 1.375rem;
  --size-24: 1.5rem;
  --size-26: 1.625rem;
  --size-27: 1.688rem;
  --size-28: 1.75rem;
  --size-32: 2rem;
  --size-33: 2.063rem;
  --size-35: 2.313rem;
  --size-42: 2.625rem;
  --size-46: 2.875rem;
  --size-48: 3rem;
  --size-60: 3.75rem;
  --size-62: 3.875rem;
  --size-70: 4.375rem;
  --size-80: 4.813rem;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--josefin);
}

.container-xxl {
  max-width: 1730px;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--josefin);
  font-weight: normal;
}

p {
  font-size: var(--size-18);
  font-weight: 400;
  line-height: normal;
  font-family: var(--josefin);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
}

.hso-icon {
  max-width: 1.5rem !important;
  width: 100%;
}

/* Buttons */

.hBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.7rem 1.2rem;
  color: var(--white);
  background-color: var(--primerry);
  font-size: var(--size-14);
  font-family: var(--josefin);
  font-weight: 600;
  border: none;
  background-size: 300% 100%;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hBtnBgRemove {
  background: transparent;
  color: var(--primerry);
  padding-left: 0;
  padding-right: 0;
  font-weight: bold;
}

.hBtn img {
  max-width: 1.3rem;
  margin-left: 0.4rem;
}

.hBtn:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: var(--white);
}

.black.hBtn {
  background-image: linear-gradient(to right,
      var(--black),
      var(--black),
      var(--chocolate-clr),
      var(--chocolate-clr));
}

.chocolate {
  background-image: linear-gradient(to right,
      var(--primerry),
      var(--primerry),
      var(--chocolate-clr),
      var(--chocolate-clr));
}

.green {
  background-image: linear-gradient(to right,
      var(--chocolate-clr),
      var(--chocolate-clr),
      var(--primerry),
      var(--primerry));
}


/* navbar */
.navbar {
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 246, 240, 1) 100%);
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.5s ease-in-out;
}

.navbar-brand img {
  width: 10rem;
  transition: all 0.5s ease-in-out;
}

.navbar-sticky {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-sticky .navbar-brand {
  width: 9rem;
}

.navbar-sticky .navbar-brand img {
  width: 9rem;
}


.navbar-nav li {
  padding: 0 0.5rem;
  position: relative;
}

.navbar-nav .dropdown-menu {
  position: absolute;
  background-color: var(--white);
  width: 20vw;
  z-index: 999;
  list-style-type: none;
  padding: 0;
  margin-top: 0;
  display: none;
  transition: 0.8s ease;
  border-radius: 0;
  border: none;
}

.navbar-nav li.nav-item:hover .dropdown-menu {
  display: block;
}

.navbar-nav .dropdown-menu .menu-item a.dropdown-item {
  padding: 10px 20px;
  font-family: var(--lavishly);
}

.navbar-nav .dropdown-menu .menu-item a.dropdown-item:hover {
  background-color: var(--primerry);
  color: var(--white);
}

.navbar-nav .nav-item.dropdown li {
  padding: 0;
}

.dropdown-toggle::after {
  display: none;
}

.nav-link {
  font-size: var(--nav-font);
  padding: 1rem 2.5rem;
  color: var(--black-light);
  font-weight: 400;
  font-family: var(--lavishly);
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.nav-link.active {
  color: var(--primerry) !important;
}

.navbar-sticky .nav-link {
  font-size: 1rem;
}

.nav-link:focus,
.nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--primerry);
}

.dropdown-toggle::after {
  margin-left: 0.455em;
}

.mobile-navbar-canva .navbar-nav li .dropdown-item {
  white-space: inherit;
}

.navbar-nav li .dropdown-item:focus,
.navbar-nav li .dropdown-item:hover,
.navbar-nav li .dropdown-item.active,
.navbar-nav li .dropdown-item:active {
  color: var(--white);
  background-color: var(--yellow);
  border-color: var(--yellow);
}

.cha-nav-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}


.hso-heart a,
.hos-cart a,
.hos-user a,
.hos-search a {
  width: 2rem;
  margin-left: 1rem;
}

/* Mobile Navbar */
.offcanvas {
  background: var(--secondary);
}

.m-vertion {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

.m-vertion .dropdown-toggle::after {
  border-top-color: var(--white);
}

.mobile-navbar .nav-link {
  font-size: var(--size-20);
  padding: 1rem 0;
}

.mobile-navbar .nav-link:focus,
.mobile-navbar .nav-link:hover,
.mobile-navbar .navbar-nav .nav-link.active,
.mobile-navbar .navbar-nav .nav-link.show {
  color: var(--primerry);
}

.offcanvas-title,
.offcanvas-header .btn-close {
  color: var(--black);
}

.navbar-toggler,
.navbar-toggler:focus {
  border: none;
  box-shadow: 0 0 0 transparent;
}

.mobile-navbar-canva {
  display: none;
}

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

/* Banner */
.banner-hos-wrapper {
  padding: 4rem 0;
  position: relative;
  border-bottom: 2px solid #F4D9BF;
}

.banner-hos-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--primerry), transparent);
  position: absolute;
  top: 0;
  left: 0;
  opacity: .4;
}

.hos-banner-content {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-right: 6rem;
}

.hos-banner-content h1 {
  font-size: var(--size-80);
  line-height: 5rem;
  color: var(--black-light);
  font-family: var(--lavishly);
  font-weight: normal;
  margin-bottom: 2.5rem;
}

.hos-banner-content h1 span {
  color: var(--primerry);
  display: block;
}

.hos-banner-content h5 {
  color: var(--black);
  font-size: var(--size-27);
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 3px;
}

.hos-banner-content p {
  color: var(--black);
  font-size: var(--size-16);
  line-height: 24px;
  margin-bottom: 2.5rem;
}

/* footer navbar */
.footer {
  background: url('../img/footer-bg.jpg') no-repeat, var(--black-light);
  background-size: cover;
  padding: 4rem 0 0.5rem;
}

.footer-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
}

.column-footer:first-child {
  width: 28rem;
}

.column-footer:nth-of-type(2) {
  padding-left: 4rem;
}

.footermain {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.footer-barnd img {
  width: 15rem;
}

.brand-content {
  margin-top: 2rem;
}

.brand-content p {
  font-weight: 500;
  line-height: 1.8rem;
  color: var(--white);
}

.navbar-link {
  padding: 0;
  margin: 0;
}

.footer-navbar,
.footermain {
  width: 100%;
  height: 100%;
}

.footermain {
  padding-right: 4rem;
}

.footer-navbar h4 {
  color: var(--primerry);
  font-size: var(--size-24);
  font-weight: bold;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.navbar-link li {
  list-style: none;
}

.navbar-link li a {
  color: var(--white);
  font-size: var(--size-16);
  font-weight: 400;
  padding-bottom: 1rem;
  display: flex;
  transition: all 0.5s ease-in-out;
	word-break: break-word;
}

.navbar-link li a:hover {
  color: var(--primerry);
}

.information li a img {
  width: 0.875rem;
  margin-right: 0.5rem;
  position: relative;
  top: -1px;
}

.copyright {
  width: 100%;
  text-align: center;
  border-top: 1px solid #595959;
}

.copyright p {
  color: var(--white);
  font-size: var(--size-16);
  padding: 1rem;
  margin: 0;
}

/*/////////////////////////////
        Inner Pages Css
////////////////////////////*/
.categories-wrapper {
  padding: 6.25rem 0;
}

.title-main h5 {
  color: var(--black-light);
  font-size: var(--size-20);
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 3px;
  margin-bottom: 0.975rem;
}

.title-main h2 {
  font-size: var(--size-48);
  line-height: 46px;
  color: var(--primerry);
  font-family: var(--lavishly);
  font-weight: normal;
  margin-bottom: 0;
}

.categoriestabs {
  text-align: center;
  margin: 3rem auto;
  background: url('../img/line-bg.png') no-repeat;
  background-position: center 35%;
  background-size: 58%;
}

.tab-buttons button {
  border: none;
  background: transparent;
  margin: auto 3rem;
  font-size: var(--size-16);
}

.tab-buttons button img {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  display: block;
  margin: auto auto 1rem;
}

.tab-buttons button.active img {
  border: 2px solid var(--primerry);
}

.items-categories img {
  height: 20rem;
  object-fit: cover;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.3);
}

#categories .caption {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1.25rem;
  padding: 3rem;
  display: flex;
  justify-content: stretch;
  align-items: center;
  position: absolute;
  opacity: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#categories .content {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

#categories .content h4 {
  color: var(--white);
  font-size: var(--size-24);
  margin-bottom: 1rem;
}
#everyday-wear{
	margin-top:2rem;
}
#everyday-wear .caption {
  width: 100%;
  height: 100%;
}

#everyday-wear .content {
  width: 100%;
  margin-top: auto;
}

#everyday-wear .content h4 {
  font-size: var(--size-18);
  color: var(--black);
  padding: 20px 0 10px;
  margin: 0;
}

#everyday-wear .content h5 ins {
  text-decoration: none;
}

#everyday-wear .content h5 del {
  position: relative;
  text-decoration: none;
}

#everyday-wear .content h5 del::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #8b8b8b;
  transform: translateY(-50%);
}

#categories .owl-nav button.owl-next {
  position: absolute;
  right: 2rem;
  top: 45%;
}

#categories .owl-nav button.owl-prev {
  position: absolute;
  left: 2rem;
  top: 45%;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: transparent;
  text-decoration: none;
}

/** our-collection **/
.our-collection,
.our-specialty,
.everyday-wear-wrapper {
  padding-bottom: 6.25rem;
}

#collection {
  margin: 3rem 0;
}

#everyday-wear .items-categories img {
  height: 25rem;
}

.colecction-items .attachment-post-thumbnail {
  height: 27.5rem;
  border: 3px solid transparent;
  object-fit: cover;
  border-radius: 1.25rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease-in-out;
}

.colecction-items:hover .attachment-post-thumbnail {
  border-radius: 1.25rem;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  border-color: var(--primerry);
}

.collection-content {
  padding-right: 2rem;
}

.collection-content h4 {
  font-size: var(--size-24);
  color: var(--black);
  margin-bottom: 0.7rem;
}

.collection-content h5 {
  color: #A9A9A9;
  font-size: var(--size-18);
}

.collection-content h5 ins,
.collection-content h5 ins span,
.collection-content h5 ins span bdi {
  text-decoration: none;
  border: 0;
}

.collection-content a.hBtnBgRemove {
  color: var(--primerry);
}

.collection-content a.hBtnBgRemove:hover {
  color: var(--chocolate-clr);
}

#collection .owl-nav button.owl-next {
  position: absolute;
  right: -4rem;
  top: 45%;
}

#collection .owl-nav button.owl-prev {
  position: absolute;
  left: -4rem;
  top: 45%;
}

#collection .owl-nav button.owl-next span,
#collection .owl-nav button.owl-prev span {
  width: 3rem;
  height: 3rem;
  font-size: 40px;
  border: 2px solid #ACACAC;
  display: inline-block;
  border-radius: 100%;
  line-height: 44px;
  color: #ACACAC;
}

#collection .owl-nav [class*='owl-']:hover span {
  border-color: var(--primerry);
  color: var(--primerry);
}

/** Our Specality **/
.our-pecialty-list {
  margin: 6rem 0rem 0rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.our-pecialty-list li {
  width: 13.75rem;
  text-align: center;
  display: flex;
  background: rgba(212, 141, 64, 0.20);
  border: 1px solid rgba(255, 200, 141, 0.74);
  padding: 1.875rem;
  border-radius: 0.625rem;
  margin: 0rem 1rem;
  flex-wrap: wrap;
  align-content: center;
  position: relative;
}

.list-icon {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 100%;
  background: var(--primerry);
  margin: auto;
  margin-top: -4.5rem;
  position: absolute;
  left: 0;
  right: 0;
}

.list-icon img {
  width: 2.5rem;
}

.our-pecialty-list h4 {
  font-family: var(--lavishly);
  padding-top: 1rem;
  font-size: var(--size-24);
  margin: auto auto 0rem;
}

/** New Arrival **/
.new-arrival-row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.column-content {
  max-width: 44%;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-left: auto;
  background: url('../img/arrival-bg.jpg') no-repeat;
  background-size: cover;
  padding: 4.375rem 1.875rem;
}

.column-picture {
  max-width: 60%;
  width: 100%;
  margin-left: -4rem;
}

.title-main-content h5 {
  color: #88613B;
  font-size: var(--size-20);
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.title-main-content h2 {
  font-size: var(--size-62);
  line-height: 46px;
  color: var(--black);
  font-family: var(--lavishly);
  font-weight: normal;
  margin-bottom: 3rem;
}

.new-arrival-items,
.new-arrival-items img{
  position: relative;
  height: 600px;
}
.new-arrival-content .hBtn img {
	height:auto;
}
#newarrival .owl-nav {
  margin-top: 0;
  text-align: left;
  position: absolute;
  left: -8.5rem;
  bottom: 0;
}

#newarrival .owl-nav button.owl-next span,
#newarrival .owl-nav button.owl-prev span {
  width: 3rem;
  height: 3rem;
  font-size: 40px;
  border: 2px solid #ACACAC;
  display: inline-block;
  border-radius: 100%;
  line-height: 44px;
  color: #ACACAC;
}

#newarrival .owl-nav [class*='owl-']:hover span {
  border-color: var(--primerry);
  color: var(--primerry);
}

.overlap-box {
  width: 100%;
  height: 100%;
  padding: 2rem 9rem;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
}

.new-arrival-content {
  margin-top: auto;
}

.new-arrival-content h4 {
  font-size: var(--size-32);
  line-height: 2.5rem;
  font-weight: 600;
  color: var(--white);
}

#everyday-wear .owl-nav.disabled+.owl-dots {
  margin-top: 2rem;
}

/** Pricing **/
.pricing-wrapper {
  padding: 3.125rem 0;
  background: rgba(212, 141, 64, 0.1);
}

.pricing-main {
  width: 100%;
  margin: 1.875rem auto 0 auto;
  background: var(--white);
  padding: 0.625rem;
}

.pricing-inner {
  border: 2px solid var(--chocolate-clr);
  padding: 1.875rem;
  text-align: center;
}

.pricing-main h4 {
  font-size: var(--size-26);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primerry);
}

.pricing-main h2 {
  font-size: var(--size-70);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--chocolate-clr);
  font-family: var(--lavishly);
}

/** explore-wrapper */
/* .explore-wrapper {
  padding: 6.25rem 0;
}

#explore {
  margin-top: 3rem;
}

.explore-wrapper .explore-items img {
  border-radius: 1.25rem;
}

.explore-content {
  margin-top: 1rem;
}

#explore .owl-nav button.owl-prev {
  position: absolute;
  left: -4rem;
  top: 45%;
}

#explore .owl-nav button.owl-next {
  position: absolute;
  right: -4rem;
  top: 45%;
}

#explore .owl-nav button.owl-next span,
#explore .owl-nav button.owl-prev span {
  width: 3rem;
  height: 3rem;
  font-size: 40px;
  border: 2px solid #ACACAC;
  display: inline-block;
  border-radius: 100%;
  line-height: 44px;
  color: #ACACAC;
}

#explore .owl-nav [class*='owl-']:hover span {
  border-color: var(--primerry);
  color: var(--primerry);
}

#explore .owl-stage {
  padding-left: 0 !important;
}

#explore .item.explore-items,
#explore .owl-item {
  width: 23.125rem;
}

#explore .owl-item.active.left-only .explore-items {
  width: 90%;
  transition: all 0.5s ease-in-out;
}

#explore .owl-item.active.left-only .explore-content {
  display: none;
}

#explore .owl-item .item {
  height: 64rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 1.125rem;
  overflow: hidden;
} */

/* 6.03.2026 */
.explore-wrapper {
  padding: 6.25rem 0;
	overflow-x: hidden;
}

.explore-img {
  border-radius: 1.25rem;
}

.explore-content {
  margin-top: 1rem;
}

.slider-wrapper {
  width: 80%;
  margin: 3rem auto auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.imgSwiper {
  width: 55% !important;
}

.infoSwiper {
  width: 30% !important;
  padding-bottom: 2rem;
}

.swiper-wrapper {
  width: 100%;
}

.img-wrap {
  position: relative;
}

.img-wrap img {
  width: 100%;
}

.infoSwipersm img {
  width: 100%;
  /* height: 25rem; */
  object-fit: cover;
}

.hotspot {
  position: absolute;
  background: #ffffff;
  border-radius: 100%;
  padding: 0;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.5s ease-in-out;
}

.hotspot::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  top: -7px;
  left: -8px;
  right: 0;
  bottom: 0;
  transition: all 0.5s ease-in-out;
}

.hotspot:hover,
.hotspot:focus,
.hotspot:active {
  transform: scale(1.2);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 20px;
  color: #ACACAC;
}

.swiper-button-prev {
  width: 3rem;
  height: 3rem;
  border: 1px solid #ACACAC;
  border-radius: 100%;
  left: -3rem;
}

.swiper-button-next {
  width: 3rem;
  height: 3rem;
  border: 1px solid #ACACAC;
  border-radius: 100%;
  right: -3rem;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after,
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--primerry);
  border-color: var(--primerry);
}

.swiper-pagination {
  margin-top: 2rem;
}

.swiper-pagination-bullet-active {
  background: var(--primerry);
}

/* 6.03.2026 */

/** Testimonial **/
.testimonial-wrapper {
  padding: 3.125rem 0;
  background: rgba(212, 141, 64, 0.1);
}

.testimonial-main {
  margin: 3rem 0rem 0rem;
}

.ratting-quote {
  margin-bottom: 1rem;
}

.quote img {
  width: 2.188rem;
}

.stars img {
  width: 1rem;
}

.testimonial-content {
  background: url('../img/bg-test-items.jpg') no-repeat;
  background-size: 100% 100%;
  padding: 2.188rem 2.188rem 3.75rem 2.188rem;
  overflow: hidden;
}

.profile {
  position: relative;
  margin-top: -3rem;
  padding: 0rem 2.188rem;
}

.profile img {
  width: 4.688rem;
  height: 4.688rem;
  border-radius: 100%;
  margin-bottom: 1rem;
}

.profile h4 {
  font-size: var(--size-16);
  line-height: 1rem;
  color: var(--primerry);
}

.profile h5 {
  font-size: var(--size-14);
  color: #1E1E1E;
}

/** blogs-wrapper **/
.blogs-wrapper {
  padding: 6.25rem 0;
}

.blogs-main {
  height: 91%;
  margin-top: 3rem;
  background: #FFEBCD;
  transition: all 0.5s ease-in-out;
}

.blogs-img img {
  width: 100%;
  height: 18.75rem;
  object-fit: cover;
}

.blog-content {
  width: 100%;
  padding: 1.25rem 1.875rem;

}

.blog-content h5 {
  font-size: 0.625rem;
  color: var(--black);
}

.blog-content h2 {
  font-size: var(--size-24);
  color: var(--black);
  font-family: var(--lavishly);
}

.blogs-main:hover {
  background: var(--chocolate-clr);
}

.blogs-main:hover .blog-content h5,
.blogs-main:hover .blog-content h2 {
  color: var(--white);
}

.blogs-main:hover .blog-content .hBtn.hBtnBgRemove {
  border: 1px solid var(--white);
  padding: 0.625rem;
  color: var(--white);
}

/** About **/
.about-wrapper {
  padding-bottom: 6.25rem;
}

.about-img {
  width: 100%;
  background: linear-gradient(0deg, var(--primerry) 90%, transparent 10%);
  padding-right: 2rem;
}

.about-img img {
  width: 100%;
}

.about-home-content {
  padding-left: 2rem;
}

.about-home-content h2 {
  color: var(--primerry);
  font-size: var(--size-62);
  font-family: var(--lavishly);
  margin-bottom: 2.5rem;
}

.about-home-content p {
  color: var(--black);
  font-size: var(--size-16);
  line-height: 1.5rem;
  margin-bottom: 2.5rem;
}

/** newslatter-wrapper **/
.newslatter-wrapper {
  padding: 3.5rem 0;
  background: linear-gradient(90deg, #434343, var(--black-light));
}

.informaed {
  padding-right: 2rem;
}

.informaed h4,
.globally-connect {
  color: var(--white);
  font-size: var(--size-24);
  font-family: var(--lavishly);
  margin-bottom: 1rem;
}

.informaed p {
  color: var(--white);
  font-size: var(--size-14);
}

.subscribe p {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid #797979;
  padding: 0.6rem 0;
  margin: 0;
  display: flex;
}

.subscribe input {
  background: transparent;
  border: none;
  padding: 0rem 0.9rem;
  color: var(--white);
}

.subscribe input::placeholder {
  color: #A1A1A1;
  opacity: 1;
}

.subscribe input::-ms-input-placeholder {
  color: #A1A1A1;
}

.btn-subscribe {
  text-transform: uppercase;
  font-size: var(--size-16);
  color: var(--white) !important;
  font-weight: 600;
  background-color: transparent !important;
  border: none;
  border-left: 2px solid var(--white) !important;
  padding: 0.5rem 1rem !important;
}

.form-control:focus {
  color: var(--white);
  background-color: transparent;
  border-end-end-radius: var(--nav-font);
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0);
}

.subscribe .wpcf7-spinner {
  position: absolute;
}

.globally-connect {
  width: 80%;
  margin-left: auto;
  text-align: right;
  border-left: 2px solid var(--white);
}

.social-network {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: end;
  list-style: none;
}

.social-network li a {
  background-color: var(--primerry);
  border-radius: 50px;
  padding: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-item a i {
  font-size: var(--size-16);
  color: var(--white);
}

/**************************** Shop Page ****************************/
.shop-product-sec {
  padding: 60px 0;
}

.main-wrapper h1,
.post-type-archive .woocommerce-result-count {
  display: none;
}

.post-type-archive .woocommerce-ordering {
  text-align: right;
}

.post-type-archive .woocommerce-ordering select,
.tax-product_cat .woocommerce-ordering select {
  border: none !important;
  box-shadow: none;
  outline: none;
}

.post-type-archive .woocommerce-ordering select:focus-visible,
.tax-product_cat .woocommerce-ordering select:focus-visible {
  border: none !important;
}

.post-type-archive ul.products li.product .onsale {
  display: none;
}

.tax-product_cat ul.products li.product a img,
.post-type-archive ul.products li.product a img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin: 0;
}

.product-filter .accordion-header .accordion-button {
  font-size: var(--size-24);
  font-weight: 600;
}

.product-filter .accordion {
  gap: 15px;
  display: flex;
  flex-direction: column;
}

.product-filter h4,
.product-filter .wpfFilterWrapper .wfpDescription {
  font-size: var(--size-24);
  font-weight: 600;
  margin-bottom: 10px;
}

.product-filter .wpfFilterWrapper[data-filter-type] {
  padding: 0;
}

.product-filter .wpfFilterWrapper[data-radio="1"] .wpfCheckbox label:before {
  border-radius: 4px !important;
}

.product-filter .wpfFilterVerScroll li label {
  display: flex;
  align-items: center;
}

.product-filter .wpfFilterWrapper .wpfFilterTaxNameWrapper {
  font-size: var(--size-16);
  line-height: 39px;
  font-weight: 500;
}

.wpfFilterWrapper .wpfCheckbox input[type="checkbox"]:checked+label::before {
  background: url('../img/icon/checked.png') !important;
}

.product_type_simple {
  display: none !important;
}

.woocommerce-Price-amount bdi {
  color: var(--primerry);
  font-size: var(--size-16);
  font-weight: 600;
  text-decoration: none;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 20px 0 10px;
}

/*//////////////////////////////////
          Inner Page Css
/////////////////////////////////*/
/* About Us */
.banner-hos-inner-wrapper {
  padding: 6rem 0rem 8rem;
  position: relative;
  border-bottom: 2px solid #F4D9BF;
}

.banner-hos-inner-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--primerry), transparent);
  position: absolute;
  top: 0;
  left: 0;
  opacity: .4;
  z-index: -1;
}

.hos-banner-inner-content h1 {
  color: var(--primerry);
  font-size: var(--size-70);
  font-family: var(--lavishly);
}

.hos-banner-inner-content h1 span {
  font-family: var(--lavishly);
  display: block;
}

.bradcrum {
  margin-bottom: 5rem;
}

.bradcrum a {
  color: var(--black);
  font-size: var(--size-18);
}

/** about-journey-wrapper **/
.about-journey-wrapper {
  padding: 9rem 0rem 6.25rem;
}

.journey-img {
  width: 100%;
  background: linear-gradient(0deg, var(--primerry) 90%, transparent 10%);
  padding-right: 1rem;
}

.journey-content {
  padding-left: 4rem;
}

.journey-content h2 {
  color: var(--primerry);
  font-size: var(--size-62);
  font-family: var(--lavishly);
  margin-bottom: 1.5rem;
}

.journey-content p {
  color: var(--black);
  font-size: var(--size-16);
  line-height: 1.5rem;
  margin-bottom: 1.125rem;
}

/** different-wrapper **/
.different-wrapper {
  padding: 6.25rem 0;
  background: #FBF4EC;
}

.title-main-lg h2 {
  font-size: var(--size-62);
  line-height: 70px;
  color: var(--primerry);
  font-family: var(--lavishly);
  font-weight: normal;
  margin-bottom: 4rem;
}

.ourjourney {
  width: 69%;
  margin: auto;
}

.journey-icons {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 100%;
  background: var(--primerry);
  border: 0.625rem solid var(--white);
  filter: drop-shadow(0rem 0.375rem 0.625rem rgba(0, 0, 0, 0.1));
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto 1.125rem auto;
}

.journey-icons img {
  width: 1.875rem;
}

.ourjourney h4 {
  color: var(--primerry);
  font-size: var(--size-20);
  font-family: var(--lavishly);
}

.ourjourney p {
  color: var(--black);
  font-size: var(--size-16);
  line-height: 1.125rem;
}

/** ourcollection-wrapper **/
.ourcollection-wrapper {
  padding: 6.125rem 0;
}

#ourcollection {
  margin-top: 3rem;
}

#ourcollection .owl-nav button.owl-prev {
  position: absolute;
  left: 2rem;
  top: 45%;
}

#ourcollection .owl-nav button.owl-next {
  position: absolute;
  right: 2rem;
  top: 45%;
}

/** Our Promise **/
.promise-wrapper {
  padding-bottom: 6.25rem;
}

.promise-content {
  padding-left: 4rem;
}

.promise-img {
  position: relative;
}

.promise-img img {
  width: 100%;
  border-radius: 350px 350px 0 0;
}

.brand-name-img {
  background: url(../img/brand-name.png) no-repeat;
  background-size: 80%;
  background-position: center;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  height: 160px;
}

.brand-img-line {
  background: url(../img/brand-line.png) no-repeat;
  background-size: 90%;
  background-position: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  width: 100%;
  height: 500px;
}

.promise-content h2 {
  font-size: var(--size-70);
  color: var(--primerry);
  font-family: var(--lavishly);
  font-weight: normal;
  margin-bottom: 1.5rem;
}

.promise-content p,
.ourpromiselist li {
  color: var(--black);
  font-size: var(--size-18);
  line-height: normal;
  margin-bottom: 1.125rem;
}

.ourpromiselist {
  margin: 2rem 0;
  padding-left: 1rem;
}

.ourpromiselist li {
  margin-bottom: 1rem;
}

.ourpromiselist li::marker {
  color: var(--primerry);
}

/** Contact Us **/
.contact-us-wrapper {
  padding: 6.25rem 0;
  background: rgb(251, 244, 236, 0.60);
}

.informed-contect {
  width: 100%;
  background: #FFEBCD;
  padding: 9rem 2.2rem;
  text-align: center;
}

.contact-logo {
  margin-bottom: 2.2rem;
}

.contact-logo img {
  width: 16rem;
  margin: auto;
}

.informed-contect .social-network {
  justify-content: center;
  align-items: center;
}

.contactinformation {
  margin: 0;
  padding: 0;
}

.contactinformation li {
  list-style: none;
}

.contactinformation li a {
  color: var(--black);
  font-size: var(--size-18);
  font-weight: 400;
  padding-bottom: 1rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.contactinformation li a img {
  width: 1rem;
  margin-right: 0.5rem;
  position: relative;
  top: -1px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--primerry);
  margin: 1.5rem 0 2.5rem;
}

.contact-form {
  padding-left: 3.5rem;
}

.form-label {
  color: #888888;
  font-size: var(--size-24);
  font-weight: 500;
  position: relative;
}

.form-label::after {
  content: '*';
  position: absolute;
  color: var(--primerry);
}

.contact-form .form-control {
  padding: .75rem .75rem;
  font-size: var(--size-18);
  border-color: #FFEBCD;
}

.contact-form .form-control:focus {
  border: 1px solid var(--chocolate-clr);
  background: var(--white);
  color: var(--black);
}

.form-group {
  margin-bottom: 1.125rem;
}

.hBtn.submit {
  width: 100%;
  border-radius: 0.4rem;
  font-size: var(--size-21);
  font-weight: bold;
}

/** Blog **/
.blog-post-wrap {
  width: 100%;
  padding-right: 3.5rem;
  border-right: 1px solid #D9D9D9;
}

.blog-main-title {
  margin-bottom: 5rem;
}

.blog-main-title h2 {
  color: var(--black);
  font-size: var(--size-42);
  font-family: var(--lavishly);
  margin-bottom: 0.6rem;
}

.blog-main-title p {
  color: var(--black);
  font-size: var(--size-16);
}

.blog-header-main {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.filter-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border: 1px solid #333;
  background: #f0f0f0;
}

.filter-btn {
  border: none;
  border-right: 2px solid #888888;
  background: transparent;
  color: #888888;
  font-size: var(--size-16);
  font-weight: 500;
  line-height: 16px;
  padding: 0rem 1rem;
}

.filter-btn:first-child {
  padding-left: 0;
}

.filter-btn:last-child {
  border: none;
  padding-right: 0;
}

.filter-btn.active {
  color: #2D564E;
}

.posthidden,
.postload {
  display: none;
}

.sortbyselect {
  min-width: 10.625rem;
  border-color: #888888;
  color: var(--black);
  padding: 0.9rem;
  background-color: transparent;
  border-radius: 0.625rem;
}

.sortbyselect:focus {
  border-color: #888888;
  outline: 0;
  box-shadow: 0 0 0 .0rem rgba(13, 110, 253, .0);
}

.post-main-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.search-results .post-main-row {
  grid-template-columns: repeat(3, 1fr);
}

.post-img {
  margin-bottom: 2.5rem;
}

.blog-post img {
  width: 100%;
  height: 30rem;
  border-radius: 1rem;
  object-fit: cover;
}

.search-results .blog-post img {
  height: 25rem;
}

.blog-post h4 {
  color: #2D564E;
  font-size: var(--size-28);
  font-family: var(--lavishly);
  margin-bottom: 1.5rem;
}

.blog-post p {
  color: var(--black);
  font-size: var(--size-20);
  margin-bottom: 1.8rem;
}

.blog-post-aside {
  width: 100%;
  padding-left: 1.5rem;
}

.search-blog {
  width: 100%;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 0.5rem;
  display: inline-flex;
  justify-content: start;
  align-items: center;
  padding: 2px;
  margin-bottom: 4rem;
}

.search-blog img {
  width: 1.3rem;
  margin: 0 0 0 0.5rem;
  flex: 0 0 auto;
}

.search-blog input {
  padding: 0.8rem;
  border: none;
  font-size: var(--size-20);
  color: var(--black);
  background-color: transparent;
}

.search-blog .form-control:focus {
  color: var(--black);
}

.search-blog input::placeholder {
  color: var(--black);
  opacity: 1;
}

.search-blog input::-ms-input-placeholder {
  color: var(--black);
}

.categories-post h4 {
  color: #222222;
  font-size: var(--size-24);
  font-weight: 600;
  padding-bottom: 1.125rem;
  margin-bottom: 1.125rem;
  border-bottom: 1px solid #888888;
}

.categories-post li {
  color: #000000;
  font-size: var(--size-16);
  padding-bottom: 1.125rem;
}

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

.categories-post li:last-child {
  padding-bottom: 0;
}

.loadmorebox {
  margin-top: 3rem;
}

.loadmorebox a {
  color: var(--black);
  font-size: var(--size-20);
  font-weight: bold;
}

#loadMore img {
  width: 1.2rem;
  display: inline-block;
  transition: transform 0.6s ease;
}

#loadMore.loading .img {
  transform: rotate(360deg);
}

/* blog-details-wrapper */
.blog-details-wrapper {
  padding: 4.25rem 0 10rem;
}

.blogs-details-wrapper {
  padding-bottom: 6.25rem;
}

.blog-details-title {
  width: 100%;
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 0.4rem;
  box-shadow: 0rem -3.5rem 7.5rem rgba(0, 0, 0, 0.2);
  margin: -6rem 0rem 3rem;
}

.blog-details {
  width: 100%;
  padding-right: 3.5rem;
  border-right: 1px solid #D9D9D9;
}

.blog-details-title h2 {
  color: #2D564E;
  font-size: var(--size-48);
  font-family: var(--lavishly);
  margin-bottom: 1rem;
}

.blog-details-title p {
  color: var(--black);
  font-size: var(--size-18);
  margin-bottom: 0.5rem;
}

.blog-details-title h5 {
  color: var(--primerry);
  font-size: var(--size-18);
  font-weight: bold;
}

.datetime {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  color: var(--white);
  background: var(--primerry);
  border-radius: 0.2rem;
  margin-bottom: 2rem;
}

.blog-details h2,
.blog-details h3,
.blog-details h4,
.blog-details h5 {
  color: var(--primerry);
  font-family: var(--lavishly);
  margin-bottom: 1.125rem;
}

.blog-details h4 {
  font-size: var(--size-28);
}

.blog-details img {
  margin: 1rem 0 2rem;
}

.blog-details ul {
  margin: 0;
  padding-left: 1rem;
  list-style: none;
}

.blog-details ul li {
  position: relative;
}

.blog-details ul li::after {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  background: var(--black);
  position: absolute;
  left: -1rem;
  top: 0.4rem;
}

.sharebutton,
.pricing-heart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.sharebutton h4 {
  font-family: var(--josefin);
}

.sharebutton ul li::after {
  display: none;
}

/* Products */

.titleproducts {
  color: var(--black);
  font-size: var(--size-16);
  border-bottom: 0.125rem solid #9E9E9E;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.products-check {
  margin-bottom: 1rem;
}

.products-check .form-check-input {
  margin-top: .15em;
  border-color: #888888;
  color: #888888;
}

.products-check .form-check-label {
  border-color: #888888;
  color: #888888;
  font-family: var(--josefin);
  font-size: var(--size-16);
  font-weight: 500;
}

.products-check .form-check-input:checked {
  background-color: var(--primerry);
  border-color: var(--primerry);
}

.products-check .form-check-input:checked+.form-check-label {
  color: var(--black);
}

.products-check .form-check-input:focus {
  border-color: var(--primerry);
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0);
}

.range-products {
  width: 100%;
}

.slider-products {
  position: relative;
  height: 5px;
  background: var(--black);
  border-radius: 5px;
  margin-bottom: 40px;
}

.progress {
  position: absolute;
  height: 5px;
  background: var(--black);
  border-radius: 5px;
}

.slider-products input[type=range] {
  position: absolute;
  width: 100%;
  top: -6px;
  left: 0;
  pointer-events: none;
  -webkit-appearance: none;
  background: none;
}

.slider-products input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  -webkit-appearance: none;
}

.inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.left-price,
.right-price {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #888888;
  font-size: var(--size-16);
  color: var(--primerry);
  padding-left: 0.5rem;
}

.left-price p,
.right-price p {
  margin: 0;
  padding: 0;
}

.inputs input {
  width: 100%;
  padding: 0.5rem;
  text-align: right;
  border: none;
}

.inputs span {
  font-size: var(--size-16);
  color: var(--black);
  padding: 0rem 1rem;
}
















.title-products {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-left: 3rem;
  margin-bottom: 4rem;
}

.products-filter-content {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.products-filter-content li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 1rem;
  border: 1px solid var(--black);
}

.closeitem {
  font-size: var(--size-24);
  padding-left: 0.4rem;
}

.title-products .sortbyselect {
  width: 8rem;
  border: none;
}

.products-main-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-left: 3rem;
}

.products-img img {
  width: 100%;
  height: 19.813rem;
  object-fit: cover;
  border-radius: 1.125rem;
  margin-bottom: 1rem;
}

.tittle-product {
  color: var(--black);
  font-size: var(--size-20);
  margin-bottom: 0.5rem;
}

.pricing-heart {
  margin: 0;
}

.pricing-heart h5 {
  color: var(--primerry);
  font-size: var(--size-16);
  font-weight: 600;
}

.pricing-heart img {
  width: 1rem;
}

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

.product-filter .accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.product-filter .accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: 0;
}

.product-filter .accordion-button {
  padding: 0;
}

.product-filter .accordion-body {
  padding: 0;
}

.single-product .left {
  display: none;
}

.single-product .right {
  width: 100%;
}

/* Procuts Details */
.single-product-img {
  margin-bottom: 1rem;
}

.single-product-img,
#single-itemsl {
  width: 90%;
}

.single-product-img img {
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
  border-radius: 1.125rem;
}

.singleitems img {
  width: 75% !important;
  height: 5.438rem;
  margin: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}

#single-itemsl .owl-nav button.owl-prev {
  position: absolute;
  left: -1rem;
  top: 40%;
}

#single-itemsl .owl-nav button.owl-next {
  position: absolute;
  right: -1rem;
  top: 40%;
}

#single-itemsl .owl-nav [class*='owl-']:hover {
  color: var(--black);
}

.rattingbox {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #4C3228;
  border-radius: 0.313rem;
  padding: 0.5rem;
  margin-bottom: 1.563rem;
}

.ratting-values,
.reviews-count,
.ratting-text {
  font-size: var(--size-14);
  display: inline-block;
}

.ratting-values {
  color: var(--primerry);
}

.rattingbox img {
  width: 1rem;
}

.reviews-count {
  color: #4C3228;
}

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

.lines {
  width: 1px;
  height: 1rem;
  background-color: #4C3228;
  display: inline-block;
}

.title-single-product {
  color: var(--black);
  font-size: var(--size-35);
  margin-bottom: 1.563rem;
}

.pricing-single,
.stocks,
.skutext {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing-single p {
  margin-bottom: 0;
}

.pricing-single p bdi {
  color: var(--primerry);
  font-size: var(--size-32);
  font-weight: 600;
  padding-bottom: 0;
}

.pricing-single del bdi {
  color: #888888;
  font-size: var(--size-20);
  font-weight: 300;
}

.woocommerce-product-details__short-description p {
  color: #888888;
  font-size: var(--size-18);
  line-height: 140%;
}

.quantity {
  display: flex;
  align-items: center;
  margin-bottom: 1.125rem !important;
}

.label {
  font-size: var(--size-16);
  color: var(--black);
  padding-right: 1rem;
}

.single-product .custom-cart {
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
}

.stocks h4,
.stock-status,
.skutext h4,
.skutext p {
  margin: 0;
}

.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #979797;
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font-size: var(--size-18);
}

#qty {
  width: 2rem;
  text-align: center;
  border: none;
  font-size: var(--size-16);
}

.stocks,
.skutext {
  gap: 0.5rem;
}

.stocks h4,
.skutext h4,
.skutext p {
  color: var(--black);
  font-size: var(--size-18);
}

.stocks p {
  color: var(--primerry);
  font-size: var(--size-18);
}

.skutext h4,
.skutext p {
  text-transform: uppercase;
}

.btnsingle {
  width: 100%;
  text-transform: uppercase;
}

/* .woocommerce-tabs {
  padding-top: 80px;
} */

.products-policy {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0rem 0rem;
}

.products-policy li {
  width: 9rem;
  text-align: center;
  font-size: var(--black);
  font-size: var(--size-20);
  line-height: 160%;
}

.products-policy li img {
  width: 3.375rem;
  display: block;
  margin: auto;
}

.product-description p,
.product-description ul li {
  color: #888888;
  font-size: var(--size-18);
  padding-bottom: 2rem;
}

.product-description h5 {
  color: var(--black);
  font-size: var(--size-20);
  padding-bottom: 1.125rem;
}

.product-description ul {
  padding-left: 1rem;
}

.product-description ul li {
  padding-bottom: 0.5rem;
}

.description-pills {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #9E9E9E;
}

.description-pills .nav-link.active,
.description-pills .show>.nav-link {
  background-color: transparent;
}

.description-pills .nav-link {
  padding-left: 0rem;
}

.related-products {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.related-products h4 {
  color: var(--primerry);
  font-size: var(--size-42);
  font-family: var(--lavishly);
}

#relatedproducts .owl-nav button.owl-prev {
  position: absolute;
  right: 4rem;
  top: -5rem;
}

#relatedproducts .owl-nav button.owl-next {
  position: absolute;
  right: 0;
  top: -5rem;
}

#relatedproducts .owl-nav [class*='owl-']:hover span {
  border-color: var(--primerry);
  color: var(--primerry);
}

#relatedproducts .owl-nav button.owl-next span,
#relatedproducts .owl-nav button.owl-prev span {
  width: 3rem;
  height: 3rem;
  font-size: 40px;
  border: 2px solid #ACACAC;
  display: inline-block;
  border-radius: 100%;
  line-height: 44px;
  color: #ACACAC;
}

.relatedproductsitms img {
  height: 18.5rem;
  border-radius: 1.125rem;
  margin-bottom: 1.125rem;
  object-fit: cover;
}

.custom-add-to-cart {
  width: 100%;
  background: #c8873a;
  color: #fff;
  padding: 14px;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
	border-radius: 4px !important
}

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

.qty-box input.qty {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

#wpgs-gallery .wcgs-slider-image img {
  height: 480px !important;
  width: 670px;
  object-fit: cover;
  border-radius: 20px !important;
}

.gallery-navigation-carousel .wcgs-thumb img,
.gallery-navigation-carousel .wcgs-thumb {
  width: 85px !important;
  height: 85px !important;
  object-fit: cover;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border-bottom: 1px solid #9E9E9E;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  padding-left: 5px;
}

.woocommerce-tabs ul.tabs li a {
  font-size: var(--size-24);
  font-weight: 600 !important;
  color: var(--black) !important;
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--primerry) !important;
}

.gallery-navigation-carousel .spswiper-wrapper {
  display: flex;
  gap: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background-color: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: none;
}

#wpgs-gallery img {
  margin: 0 !important;
}

.wcgs-woocommerce-product-gallery {
  margin-right: 50px !important;
  max-width: 45% !important;
}

.single-product .shop-product-sec {
  padding: 50px 0 80px;
}

.single-product .woocommerce-Tabs-panel {
  margin: 0 !important;
}

.single-product .woocommerce-Tabs-panel p {
  font-size: var(--size-18);
  font-weight: 400;
  color: #888888;
}

.single-product .woocommerce-Tabs-panel ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.single-product .woocommerce-Tabs-panel ul li {
  position: relative;
  padding-left: 20px;
  font-size: var(--size-18);
  font-weight: 400;
  color: #888888;
}

.comment-form-rating {
  margin: 20px 0;
}

.single-product .woocommerce-Tabs-panel ul li::before {
  content: "";
  background-color: var(--black);
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50px;
}

.single-product .woocommerce-Reviews-title {
  display: none;
}

.single-product .woocommerce-Reviews .comment-form-comment textarea,
.single-product .woocommerce-Reviews .comment-form-email input,
.single-product .woocommerce-Reviews .comment-form-author input {
  box-sizing: border-box;
  width: 100%;
  border-radius: 10px;
  resize: none;
  border: 1px solid #FFEBCD;
}

.single-product .woocommerce-Reviews .comment-form-email input,
.single-product .woocommerce-Reviews .comment-form-author input {
  height: 40px;
}

.single-product .woocommerce-Reviews .comment-form-cookies-consent {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
}

.single-product .woocommerce-Reviews .form-submit .submit {
  align-items: center;
  white-space: nowrap;
  padding: 0.7rem 1.2rem !important;
  color: var(--white) !important;
  background-color: var(--primerry) !important;
  font-size: var(--size-14) !important;
  font-family: var(--josefin) !important;
  font-weight: 600 !important;
  border: none !important;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.woocommerce-Reviews .comment-form-author,
.woocommerce-Reviews .comment-form-comment,
.woocommerce-Reviews .comment-form-email {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single-product .related {
  padding: 80px 0 0;
	width: 100%;
	overflow: hidden;
}

.single-product .related h3 {
  font-family: var(--lavishly);
  font-size: var(--size-42);
  font-weight: 400;
  color: var(--primerry);
  margin-bottom: 50px;
}

/* .single-product .related ul.products li.product a img {
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--white);
  margin: 0;
} */

.single-product .related ul.products li.product a h2 {
  font-size: var(--size-20) !important;
  font-weight: 400;
}

.single-product .related ul.products li.product a .price {
  font-size: var(--size-16);
  font-weight: 600;
  margin: 0;
}

.single-product .related ul.products li.product {
  margin-bottom: 0;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 0;
}

.quantity .qty {
  height: 55px;
  text-align: center !important;
  border-left: none !important;
  border-right: none !important;
  border: 1px solid var(--black);
  outline: none !important;
  box-shadow: none !important;
}

/* Chrome, Safari, Edge */
.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity .plus,
.quantity .minus {
  padding: 0 20px;
  height: 55px;
  background: var(--white);
  color: var(--black);
  border: none;
  cursor: pointer;
  border: 1px solid var(--black);
}

.quantity .plus {
  border-left: none;
  padding-left: 0;
}

.quantity .minus {
  border-right: none;
  padding-right: 0;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--primerry);
  outline: none;
  box-shadow: none;
}

.woocommerce-message .wc-forward,
.wc-backward {
  padding: 1rem 1.2rem 0.7rem !important;
  color: var(--white) !important;
  background-color: var(--primerry) !important;
  font-size: var(--size-14) !important;
  font-family: var(--josefin) !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 0 !important;
  text-transform: uppercase;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--primerry);
}


/**************************************** Cart Page Start ****************************************/
.woocommerce-advance-sec {
  padding: 100px 0;
}

.checkout-button {
  background-color: var(--primerry) !important;
  text-transform: uppercase;
  font-size: var(--size-14) !important;
  font-family: var(--josefin) !important;
  font-weight: 600 !important;
  margin: 0 !important;
  padding: 1.3rem 1.2rem 1rem !important;
  border-radius: 0 !important;
}

.woocommerce a.remove {
  color: var(--white) !important;
  font-weight: 300;
  background: var(--primerry);
  border: 1px solid var(--primerry);
  height: 27px;
  width: 27px;
}

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

.shop_table thead tr {
  background-color: var(--secondary);
}

.cart_totals h2 {
  font-size: var(--size-24);
}

.woocommerce-cart .cart-collaterals .shipping-calculator-button {
  position: relative;
  padding-right: 30px;
}

.woocommerce-cart .cart-collaterals .shipping-calculator-button::after {
  content: "";
  background: url(../img/icon/edit-btn.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
}

.woocommerce-cart :where(.woocommerce) .select2-container .select2-dropdown,
.woocommerce-cart :where(.woocommerce) .select2-container .select2-selection,
.woocommerce-cart form .form-row .input-text,
.woocommerce-cart form .form-row select {
  border: 1px solid #FFEBCD;
}

.woocommerce-cart form .form-row label {
  color: #888888;
  font-size: var(--size-16);
  font-weight: 500;
  position: relative;
}

.woocommerce-cart .shipping-calculator-form button,
.place-order button {
  padding: 14px;
  background-color: var(--primerry) !important;
  text-transform: uppercase;
  font-size: var(--size-14) !important;
  font-family: var(--josefin) !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  border-radius: 0 !important;
}

/**************************************************** CheckOut Page ****************************************************/
.woocommerce-billing-fields label {
  color: #888888;
  font-size: var(--size-16);
  font-weight: 500;
  position: relative;
}

.woocommerce-billing-fields .input-text,
.woocommerce-billing-fields .select2-selection {
  padding: .75rem .75rem !important;
  font-size: var(--size-16);
  border-color: #FFEBCD !important;
}

.woocommerce-billing-fields .select2-selection__rendered {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.woocommerce-billing-fields .input-text:focus {
  border: 1px solid var(--chocolate-clr) !important;
  background: var(--white) !important;
  color: var(--black) !important;
}

.woocommerce-billing-fields .form-group {
  margin-bottom: 1.125rem;
}


/* Babusona css */

/* <!-- Modal Css --> */
.search-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.search-modal-content {
  background: var(--white);
  padding: 40px;
  width: 500px;
  max-width: 90%;
  margin: 150px auto;
  position: relative;
  border-radius: 8px;
  text-align: center;
}

.close-search {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: var(--size-28);
  cursor: pointer;
  color: #333;
}

.search-modal-content form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.search-modal-content input[type="text"] {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ffebcd;
  border-radius: 4px;
  font-size: var(--size-16);
  outline: none;
}

.search-modal-content input[type="text"]:focus {
  border-color: #000;
}

.search-modal-content button {
  padding: 12px 25px;
  background: var(--primerry);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: var(--size-16);
  cursor: pointer;
  transition: 0.3s;
}

.search-modal-content button:hover {
  background: var(--charcoal);
}

/*======================
    404 page
=======================*/


.page_404 {
  padding: 40px 0;
  background: var(--white);
  font-family: var(--josefin);
}

.page_404 img {
  width: 40%;
}


.four_zero_four_bg h1 {
  font-size: var(--size-80);
}

.four_zero_four_bg h3 {
  font-size: var(--size-80);
}

.link_404 {
  color: var(--black) !important;
  padding: 10px 20px;
  background: var(--primerry);
  margin: 20px 0;
  display: inline-block;
  text-decoration: none;
}

.contant_box_404 {
  margin-top: -50px;
}

/*======================
    404 page
=======================*/


.hos-cart {
  position: relative;
}

.hos-cart em {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: rgb(0, 0, 0);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--size-14);
}

.post-type-archive .woocommerce-ordering select,
.tax-product_cat .woocommerce-ordering select {
  border: none !important;
  box-shadow: none;
  outline: none;
  width: 90px;
}

.wishlist_text_icon_image {
  filter: invert(55%) sepia(30%) saturate(400%) hue-rotate(350deg);
}

.cart-coupon input[name="coupon_code"] {
  border: 1px solid var(--primerry);
  padding: 8px 10px;
  outline: none;
  width: 100%;
  margin: 5px 0px;

}

.cart-coupon input[name="coupon_code"]:focus {
  border-color: var(--primerry);
}

.cart-coupon .button.button {
  background-color: var(--primerry);
  border-color: var(--primerry);
  color: var(--white);
  padding-bottom: 13px;
  text-align: center;
  font-size: var(--size-14);
  margin: 15px 0px;
}

.cart-coupon .button.button:hover {
  background-color: var(--primerry);
  border-color: var(--primerry);
  color: var(--black);
}


/* my Account page  */

.woocommerce .u-column1,
.woocommerce .u-column2 {
  background: var(--white);
  padding: 30px;
  border: 1px solid var(--off-white);
  border-radius: 6px;
}

.woocommerce .u-column1 h2,
.woocommerce .u-column2 h2 {
  width: 100%;
  color: var(--primerry);
  font-size: var(--size-24);
  /* margin-bottom: 20px; */
}

.woocommerce form .form-row .input-text {
  border: 1px solid var(--primerry);
  padding: 10px;
  width: 100%;
}

.woocommerce form .form-row .input-text:focus {
  border-color: var(--primerry);
  outline: none;
}

.woocommerce button.button,
.woocommerce .woocommerce-button {
  background: var(--primerry);
  color: var(--white);
  border: none;
  padding: 20px;
  border-radius: 4px;
  width: 100%;
  /* margin-bottom: 15px; */
  font-weight: 600;
  border-radius: 4px !important;
}

.woocommerce button.button:hover {
  background: var(--primerry);
  color: var(--black);
}

.woocommerce-form-login__rememberme span {
  color: var(--charcoal);
}

.woocommerce-LostPassword a {
  color: var(--primerry);
  text-decoration: none;
}


/* Wishlist table */


.wt_frontend_wishlist_table {
  width: 100%;
}

.wt_frontend_wishlist_table th {
  background: var(--off-white);
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--off-white);
}

.wt_frontend_wishlist_table td {
  padding: 12px;
  border-bottom: 1px solid var(--off-white);
}

.wt_frontend_wishlist_table img {
  border-radius: 6px;
}

#bulk-add-to-cart {
  background: var(--primerry) !important;
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
}

.single-add-to-cart {
  background: var(--primerry) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 8px 16px !important;
  border-radius: 5px !important;
  font-size: var(--size-14) !important;
  line-height: 1;
}

.single-add-to-cart:hover,
#bulk-add-to-cart:hover {
  background: var(--primerry) !important;
}

.stock_column {
  background: rgba(0, 206, 45, 0.1);
  border-radius: 40px;
  padding: 4px 0;
  width: 82px;
  text-align: center;
}

.stock_column span {
  color: #00CE2D;
  font-size: var(--size-14);
}

/* My Account Navigation */

.woocommerce-MyAccount-navigation {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--off-white);
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--charcoal);
  font-size: var(--size-18);
}

.woocommerce-MyAccount-navigation a:hover {
  background: var(--primerry);
  color: var(--white);
}

.woocommerce-MyAccount-navigation .is-active a {
  background: var(--primerry);
  color: var(--white);
  font-weight: 600;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: var(--red);
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: var(--red);
  color: var(--white);
}

.woocommerce-MyAccount-content p a {
  color: var(--primerry);
  text-decoration: underline;
}


button.single_add_to_cart_button.button.alt {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
/*   background: var(--black); */
  background: var(--primerry);
  color: var(--white);
  padding: 20px;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
}

/* 20.03.2026 */
button.wpcbn-btn.wpcbn-btn-single.wpcbn-btn-simple.single_add_to_cart_button.button.alt {
    background: var(--black);
}
button.wpcbn-btn.wpcbn-btn-single.wpcbn-btn-simple.single_add_to_cart_button.button.alt:hover {
    background: var(--black);
	color: var(--white);
}
button.wpcbn-btn.wpcbn-btn-single.wpcbn-btn-variable.single_add_to_cart_button.button.alt {
    background: var(--black);
}
button.wpcbn-btn.wpcbn-btn-single.wpcbn-btn-variable.single_add_to_cart_button.button.alt:hover {
    background: var(--black);
	color: var(--white);
}
/* 20.03.2026 */

button.single_add_to_cart_button.button.alt:hover {
  background-color: var(--primerry);
  color: var(--black);
}

button.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed {
  background: var(--primerry);
}

/* Variation dropdown */
.woocommerce div.product form.cart .variations select {
  width: 100%;
  max-width: 250px;
  padding: 8px 12px;
  border: 1px solid var(--off-white);
  border-radius: 4px;
  background: var(--white);
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 10px;
}

/* Variation table spacing */
.woocommerce div.product form.cart .variations td.value {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Clear button */
.woocommerce div.product form.cart .reset_variations {
  font-size: 13px;
  color: var(--red);
  text-decoration: underline;
}

.woocommerce div.product form.cart .reset_variations:hover {
  color: var(--black);
}

.cfvsw-swatches-container.cfvsw-product-container {
  margin: 15px 0px;
}

.importent-sec
{
  display: flex;
  flex-wrap: wrap;
}
.importent-sec .important-box
{
  flex:0 0 25%;
  max-width: 25%;
  text-align: center;
  margin-top: 25px;
}
.importent-sec .important-box .iconsec
{
  width: 100px;
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #FFEBCD;
  margin: auto auto 20px;
  overflow: hidden;
  border-radius: 50%;
}
.importent-sec .important-box .iconsec img
{
  max-width: 55px;
}
.importent-sec h3
{
  color: var(--chocolate-clr);
  font-size: var(--size-16);
  font-weight: normal;
  text-transform: capitalize;
  line-height: 1.1;
  margin: 0;
}

.testimonial-content img.alignleft {
  float: left;
  margin: 0 15px 10px 0;
}

.testimonial-content img.alignright {
  float: right;
  margin: 0 0 10px 15px;
}

.testimonial-content img.aligncenter {
  display: block;
  margin: 10px auto;
}

.cr-onsite-question.cr-full-width.cr-review-form-que-req input.cr-onsite-question-inp {
  border: 1px solid #FFEBCD !important;
  border-radius: 10px !important;
  padding: 8px 10px;
  width: 100%;
}

.cr-onsite-question label {
  color: #888888;
  font-size: var(--size-18);
  font-weight: 400px;
}

.cr-onsite-question label {
  color: #888888;
  font-size: var(--size-18);
  font-weight: 400px;
}

/* // Accordion CSS */
/* Hide tab navigation */
/*.summary .woocommerce-tabs ul.wc-tabs {
  display: none;
}*/

/* Accordion title */
/*.summary .woocommerce-tabs .accordion-title {
  display: block;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 15px;
  background: var(--primerry);
  border: 1px solid var(--off-white);
  margin-top: 8px;
  cursor: pointer;
  position: relative;
  font-family: var(--josefin);
  transition: all 0.3s ease;
}

.summary .woocommerce-tabs .accordion-title::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

.summary .woocommerce-tabs .accordion-title.active::after {
  content: "-";
}

/* Panel content */
/*.summary .woocommerce-tabs .panel {
  border: 1px solid var(--off-white);
  border-top: none;
  padding: 15px;
  display: none;
}*/

/* // Accordion CSS */
div#tab-additional_information h2 {
  display: none;
}

html body.woocommerce.sptpro-smart-tabs .woocommerce-tabs ul.tabs.wc-tabs {
  border-bottom: 7px solid #E7E7E7 !important;
  display: none !important;
}

.woocommerce img,
.woocommerce-page img {
  height: auto;
  max-width: 100%;
  /* width: 20%; */
}

/* care section under tab style */
.silver-care {
  max-width: 600px;
  margin: auto;
}

.silver-care h4 {
  text-align: center;
  margin-bottom: 25px;
  margin-top: 25px;
}

.care-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.care-row {
  width: 48%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.care-row img {
  width: 60px;
  margin-bottom: 10px;
}

/* 07.03.2026 */
.cfvsw-shop-variations .cfvsw-swatches-container {
  padding: 0;
  display: none;
}

img.wishlist_text_icon_image.webtoffee_wishlist.wt-wishlist-button {
  height: auto !important;
  border-radius: 0px !important;
}

.woocommerce #reviews #comments ol.commentlist {
  padding: 10px;
}

/* 10.03.2026 */

.woocommerce table.my_account_orders .button {
  white-space: nowrap;
  background: var(--primerry) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 8px 16px !important;
  border-radius: 5px !important;
  font-size: var(--size-14) !important;
  text-align: center;
}

/* Address header alignment */
.woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#account_display_name_description {
  display: block;
  margin-top: 16px;
}

.woocommerce td.product-name .wc-item-meta dd,
.woocommerce td.product-name dl.variation dd {
  margin: 5px;
}

p.woocommerce-customer-details--email {
  line-height: inherit;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details ul {
  padding: 0px;
  line-height: normal;
}

/* 13.03.2026 */
/*span.ivf-custom-question-radio {
    display: none;
}*/
/* 14.03.2026 */ 
/*button.wpfFilterButton.wpfButton {
    color: var(--white);
    font-size: var(--size-14);
    font-family: var(--josefin);
    font-weight: 600;
    background-color: var(--primerry);
}*/

/* 16.03.2026 */
.woocommerce div.product .woocommerce-tabs .panel {
    padding: 30px !important;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
    font-family: WooCommerce;
    speak: never;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    margin-right: .618em;
    content: "\e02d";
    text-decoration: none;
    margin-left: -1.5em;
	line-height: normal;
}

/* 17.03.2026 */

.woocommerce-info .button.wc-forward{
    background: var(--primerry) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 5px !important;
    font-size: var(--size-14) !important;
    text-align: center;
    display:inline-block;
}

.woocommerce form p {
    padding: 3px;
}

.woocommerce-advance-sec .lost_reset_password {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.woocommerce-advance-sec .lost_reset_password .form-row {
    text-align: left;
}

.woocommerce-advance-sec .lost_reset_password button {
    margin: 0 auto;
    display: block;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
    width: 100%;
    overflow: visible;
}

.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
    padding: 15px 8px;
    vertical-align: middle;
}

a.woocommerce-button.woocommerce-button--next.woocommerce-Button.woocommerce-Button--next.button {
    width: 8%;
	background: var(--primerry) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 10px 16px !important;
    border-radius: 5px !important;
    font-size: var(--size-14) !important;
    text-align: center;
}

a.checkout-button.button.alt.wc-forward {
    border-radius: 4px !important;
}

input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email.form-control {
    line-height: 2.5;
}

.copyright a {
    color: var(--primerry);
}

/* 18.03.2026 */

.woocommerce-MyAccount-orders thead th{
    text-align: center;
}

.woocommerce-cart .woocommerce-advance-sec .woocommerce{
    display:flex;
    flex-wrap:wrap;
    gap:40px;
}

.woocommerce-cart-form{
    width:100%;
}

.cart-collaterals{
    width:100%;
    display:flex;
}

.coupon-main-section{
    width:60%;
}

.cart_totals{
    width:40%;
}

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

.coupon-card{
    width:310px;
    min-height:170px;
    border-radius:6px;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
    background: var(--secondary);
    padding:18px;
    position:relative;
    transition:all .3s ease;
}

.coupon-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.coupon-main{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.content h1{
    font-size:32px;
    color: var(--primerry);
    font-family:var(--josefin);
    font-weight:600;
    margin-bottom:6px;
}

.content h1 span{
    font-size:18px;
    font-weight:500;
    color: var(--black);
}

.content p{
    font-size:14px;
    color:var(--black);
    margin:10px 0;
}

.copy-button{
    margin-top:15px;
    display:flex;
    border:1px solid #eee;
    height:42px;
}

.copy-button input{
    flex:1;
    border:none;
    padding-left:10px;
    font-size:14px;
    outline:none;
}

.copy-button button{
    background:var(--primerry);
    color: var(--white);
    border:none;
    padding:0 12px;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    cursor:pointer;
    transition:0.3s;
}

.copy-button button:hover{
    color: var(--black);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #fdfdfd;
    color: #fff;
    border-width: 1px;
    margin: 13px 0 0;
}
.wpcf7-not-valid-tip {
    padding-left: 1rem;
}
.contact-img{
	flex: 0 0 auto;
}

/* 20.03.2026 */
#pincheck_wrapper .pincheck_inner p.pin_label{
	padding-bottom: 15px !important; 
}
#pincheck_wrapper .pincheck_inner .button {
  background: var(--primerry) !important;
  padding: 18px 30px !important;
  max-width: 170px !important;
}
#pincheck_wrapper .pincheck_inner .button.disabled{
  background: var(--primerry) !important;
  padding: 18px 30px !important;
  max-width: 170px !important;
}

#pincheck_wrapper .pincheck_inner .res.res_success {
  padding-top: 15px !important;
  font-size: var(--size-18) !important;
  color: var(--primerry) !important;
}

#pincheck_wrapper .pincheck_inner .res.res_error{
  font-size: var(--size-18) !important;
  color: var(--red) !important;
}

.single_variation_wrap {
    display: block;
}

img.wishlist_text_icon_image.webtoffee_wishlist_remove.wt-wishlist-button {
    height: auto !important;
}

/* sort by order */

.woocommerce-ordering {
  position: relative;
  display: inline-block;
}

.woocommerce-ordering select.orderby {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 220px;
  padding: 15px 30px 15px 15px;
  background: var(--primerry);
  color: var(--white);
  font-size: var(--size-16);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.woocommerce-ordering::after {
  content: "▼";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--white);
  pointer-events: none;
}


.woocommerce-ordering select.orderby option {
    background: var(--primerry);
    color: var(--white);
    font-size: var(--size-14);
    line-height: 35px;
}


.woocommerce-ordering select.orderby option:checked {
    background: var(--black);
    color: var(--white);
}

/* Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
.elvora-accordion-item {
    padding-bottom: 10px;
}
/* Firefox */
/*input[type="number"] {
    -moz-appearance: textfield;
}
/*.pricing-single p{
	font-size:60px;
}
.quantity .plus, .quantity .minus {
    font-size: 26px;
}*/