@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
body {
  font-family: "Quicksand", serif;
}

.container-fluid {
  width: 95%;
  margin: 0 auto;
}

header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
}
header .header-wrap .logo {
  margin-right: 70px;
}
header .header-wrap .logo a img {
  width: 130px;
  min-width: 130px;
}
header .header-wrap .header-right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-wrap .header-right .header-action-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-wrap .header-right .header-action-right .header-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
header .header-wrap .header-right .header-action-right .header-options .header-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-wrap .header-right .header-action-right .header-options .header-option .action-icon {
  position: relative;
}
header .header-wrap .header-right .header-action-right .header-options .header-option .action-icon img {
  width: 25px;
}
header .header-wrap .header-right .header-action-right .header-options .header-option .action-icon span {
  background-color: #a78640;
  position: absolute;
  right: -11px;
  top: -5px;
  color: #fff;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
}
header .header-wrap .header-right .header-action-right .header-options .header-option .label-action {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
}
header .header-wrap .header-right .header-action-right .header-options .header-option .label-action span {
  display: block;
  margin-left: 15px;
}
header .header-wrap .mobile-menu {
  display: none;
}
header .header-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}
header .header-bottom .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-bottom .header-nav .mini-categories {
  position: relative;
}
header .header-bottom .header-nav .mini-categories .btn-all-categories {
  background-color: #a78640;
  padding: 10px 15px;
  display: block;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
header .header-bottom .header-nav .main-menu nav ul {
  margin: 0;
}
header .header-bottom .header-nav .main-menu nav ul li {
  display: inline-block;
  padding: 0 15px;
}
header .header-bottom .header-nav .main-menu nav ul li:first-child {
  padding-left: 0;
}
header .header-bottom .header-nav .main-menu nav ul li:last-child {
  padding-right: 0;
}
header .header-bottom .header-nav .main-menu nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  line-height: 50px;
  font-size: 18px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
header .header-bottom .header-nav .main-menu nav ul li a:hover {
  color: #a78640;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
header .header-bottom .hotline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
header .header-bottom .hotline p {
  margin-right: 20px;
  margin-bottom: 0;
}
header .header-bottom .hotline p a {
  display: block;
  text-decoration: none;
  color: #a78640;
  font-size: 22px;
  font-weight: 500;
}
header .header-bottom .hotline p span {
  font-size: 15px;
  font-weight: 600;
}
header .header-search {
  display: none;
}

.stick {
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.stick .header-wrap .logo {
  margin-right: 20px;
}
.stick .header-wrap .logo a img {
  width: 80px;
  min-width: 80px;
}

.categories-dropdown.show {
  display: block; /* Show when 'show' class is added */
}

.categories-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  height: calc(100vh - 202px);
  overflow-y: scroll;
  margin-top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9;
  min-width: 400px;
  border: 1px solid #a78640;
  border-radius: 5px;
  padding: 10px 18px;
}
.categories-dropdown ul {
  padding: 0;
  margin: 0;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.categories-dropdown ul li {
  list-style-type: none;
  padding-bottom: 10px;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
}
.categories-dropdown ul li a {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.categories-dropdown ul li a img {
  width: 30px;
  margin-top: -10px;
}
.categories-dropdown ul li a i {
  color: #a78640;
}
.categories-dropdown ul li ul {
  padding-left: 35px;
  display: none;
}
.categories-dropdown ul li ul li {
  margin-bottom: 10px;
  border: none;
  width: 100%;
}
.categories-dropdown ul li ul li:last-child {
  padding-bottom: 0;
  margin: 0;
}

.color-theme {
  color: #a78640;
}

.side-cart-items {
  position: relative;
}
.side-cart-items .side-cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}
.side-cart-items .side-cart-item img {
  width: 60px;
}
.side-cart-items .side-cart-item .add-plus-remove {
  background-color: #a78640;
  width: 30px;
}
.side-cart-items .side-cart-item .add-plus-remove .add-cart-icon {
  display: block;
  background-color: #a78640;
  color: #fff;
  padding: 2px 9px;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
}
.side-cart-items .side-cart-item .add-plus-remove .add-cart-icon i {
  font-size: 12px;
}
.side-cart-items .side-cart-item .add-plus-remove input {
  display: block;
  width: 30px;
  border: none;
  text-align: center;
  outline: none !important;
  color: #fff;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1764705882);
}
.side-cart-items .side-cart-item .add-plus-remove input::-webkit-outer-spin-button,
.side-cart-items .side-cart-item .add-plus-remove input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.side-cart-items .side-cart-item .item-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}
.side-cart-items .side-cart-item .item-info span.price {
  color: #a78640;
  font-weight: 600;
}
.side-cart-items .side-cart-item .total-price {
  color: #000;
  font-weight: 700;
}
.side-cart-items .side-cart-item .remove {
  color: #8A92A6;
  margin-left: 20px;
}
.side-cart-items .bottom-area {
  position: fixed;
  width: -webkit-fill-available;
  bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #eaeaea;
  background-color: #fff;
}
.side-cart-items .bottom-area button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  padding-left: 20px;
  font-weight: 600;
}
.side-cart-items .bottom-area button span {
  background: #fff;
  padding: 10px 20px;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
}

section.hero-slider {
  padding: 30px 0;
}
section.hero-slider .carousel .carousel-control-prev {
  opacity: 1;
  width: auto;
  left: 20px;
}
section.hero-slider .carousel .carousel-control-prev .carousel-control-prev-icon {
  background-color: #a78640;
  opacity: 1;
  padding: 15px;
  width: 50px;
  height: 50px;
  background-size: 52%;
  border-radius: 50%;
}
section.hero-slider .carousel .carousel-control-next {
  opacity: 1;
  width: auto;
  right: 20px;
}
section.hero-slider .carousel .carousel-control-next .carousel-control-next-icon {
  background-color: #a78640;
  opacity: 1;
  padding: 15px;
  width: 50px;
  height: 50px;
  background-size: 52%;
  border-radius: 50%;
}
section.hero-slider .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a78640;
}
section.hero-slider .carousel .carousel-item img {
  border-radius: 20px;
}

.color-theme {
  color: #a78640 !important;
}

.decoration-none {
  text-decoration: none;
}

.swiper-horizontal > .swiper-scrollbar {
  display: none;
}

.swiper_related .swiper-wrapper .swiper-slide img {
  width: 100% !important;
  border-radius: 10px;
}

.swiper {
  width: 100%;
  padding-top: 80px;
}
.swiper .swiper-wrapper .swiper-slide img {
  width: 150px;
  border-radius: 10px;
}
.swiper .swiper-button-prev {
  background-color: #a78640;
  padding: 15px 22px;
  border-radius: 50px;
  left: unset;
  right: 65px;
  top: 27px;
}
.swiper .swiper-button-prev:after {
  color: #fff;
  font-size: 15px;
}
.swiper .swiper-button-next {
  background-color: #a78640;
  padding: 15px 22px;
  border-radius: 50px;
  top: 27px;
}
.swiper .swiper-button-next:after {
  color: #fff;
  font-size: 15px;
}

section.brands {
  padding: 50px 0;
  background-color: rgba(167, 134, 64, 0.0823529412);
  margin-bottom: 30px;
  position: relative;
}
section.brands .brand-heading {
  margin-bottom: 20px;
  position: absolute;
  top: 55px;
}
section.brands .brand-heading h2 {
  font-weight: 600;
  font-size: 30px;
}

.sec-heading {
  margin-bottom: 20px;
  position: absolute;
  top: 52px;
}
.sec-heading h2 {
  font-weight: 600;
  font-size: 30px;
}
.sec-heading h2 a {
  font-size: 17px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

section.categories {
  padding: 50px 0;
  position: relative;
}
section.categories .brand-heading {
  margin-bottom: 20px;
  position: absolute;
  top: 55px;
}
section.categories .brand-heading h2 {
  font-weight: 600;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
section.categories .brand-heading h2 a {
  font-size: 17px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.cat-card {
  padding: 25px 15px;
  text-align: center;
  background-color: rgba(167, 134, 64, 0.1019607843);
  border-radius: 5px;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cat-card:hover {
  background-color: #fff;
  border: 1px solid #a78640;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cat-card img {
  width: 80px !important;
  margin-bottom: 18px;
  border-radius: 0 !important;
}
.cat-card h3 {
  margin-bottom: 15px;
}
.cat-card h3 a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

section.popular-categories {
  padding: 50px 0;
}
section.popular-categories .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: unset;
}
section.popular-categories .sec-heading .tabs-popular nav .nav-tabs {
  border: none;
}
section.popular-categories .sec-heading .tabs-popular nav .nav-tabs button {
  border: none;
  color: #000;
  text-transform: capitalize;
  padding: 0;
  padding-left: 15px;
  font-weight: 600;
  background: transparent;
}
section.popular-categories .sec-heading .tabs-popular nav .nav-tabs .active {
  color: #a78640;
}

.bg-tr {
  background-color: rgba(167, 134, 64, 0.0823529412);
}

.categories-card {
  margin-bottom: 20px;
}
.categories-card .accordion-button:not(.collapsed) {
  background-color: rgba(167, 134, 64, 0.0980392157);
  color: #000;
  font-weight: 600;
}
.categories-card .accordion-button {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  background-color: rgba(167, 134, 64, 0.0980392157);
  color: #000;
  font-weight: 600;
}
.categories-card .accordion-button::after {
  content: none;
}
.categories-card .accordion-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
}
.categories-card .accordion-body ul {
  padding: 0;
  margin: 0;
  margin-top: 15px;
}
.categories-card .accordion-body ul li {
  list-style-type: none;
  padding-bottom: 10px;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 25px;
}
.categories-card .accordion-body ul li a {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.categories-card .accordion-body ul li a img {
  width: 30px;
  margin-top: -10px;
}
.categories-card .accordion-body ul li a i {
  color: #a78640;
}
.categories-card .accordion-body ul li ul {
  padding-left: 35px;
  display: none;
}
.categories-card .accordion-body ul li ul li {
  margin-bottom: 10px;
  border: none;
}
.categories-card .accordion-body ul li ul li:last-child {
  padding-bottom: 0;
  margin: 0;
}
.categories-card .accordion-body #rangeValue {
  position: relative;
  display: block;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}
.categories-card .accordion-body .range {
  width: 100%;
  height: 15px;
  -webkit-appearance: none;
  background: #111;
  outline: none;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: inset 0 0 5px rgb(0, 0, 0);
          box-shadow: inset 0 0 5px rgb(0, 0, 0);
}
.categories-card .accordion-body .range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #a78640;
  cursor: pointer;
  border: 4px solid #333;
  -webkit-box-shadow: -407px 0 0 400px #a78640;
          box-shadow: -407px 0 0 400px #a78640;
}

.product-card {
  margin-bottom: 20px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}
.product-card:hover .action-shorts {
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.product-card .image {
  position: relative;
  margin-bottom: 10px;
}
.product-card .image img {
  width: 100%;
  border-radius: 5px;
}
.product-card .image span {
  position: absolute;
  background-color: #a78640;
  padding: 6px 8px;
  border-radius: 7px;
  top: 10px;
  left: 10px;
  font-size: 12px;
  color: #fff;
}
.product-card .image .action-shorts {
  background-color: #fff;
  border: 1px solid #a78640;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 9;
  -webkit-box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
          box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
}
.product-card .image .action-shorts a {
  width: 35px;
  height: 36px;
  line-height: 37px;
  text-align: center;
  position: relative;
  display: inline-block;
  border-right: 1px solid #a78640;
  color: #a78640;
}
.product-card h4 {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.product-card h4 a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}
.product-card .price-option {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-card .price-option .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.product-card .price-option .price span.price {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
.product-card .price-option .price span.actual-price {
  font-size: 15px;
  font-weight: 600;
  color: #8A92A6;
  text-decoration: line-through;
}
.product-card .price-option .add-to-cart {
  text-align: right;
}
.product-card .price-option .add-to-cart .add-cart-icon-first {
  display: block;
  text-align: right;
}
.product-card .price-option .add-to-cart .add-cart-icon-first .add-cart-icon {
  background-color: #fff;
  color: #a78640;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #a78640;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.product-card .price-option .add-to-cart .add-plus-remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #a78640;
}
.product-card .price-option .add-to-cart .add-plus-remove .add-cart-icon {
  background-color: #a78640;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
}
.product-card .price-option .add-to-cart .add-plus-remove input {
  width: 50px;
  border: none;
  text-align: center;
  outline: none !important;
  color: #fff;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1764705882);
}
.product-card .price-option .add-to-cart .add-plus-remove input::-webkit-outer-spin-button,
.product-card .price-option .add-to-cart .add-plus-remove input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-theme {
  background: #a78640;
  color: #fff !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-theme:hover {
  background: #a78640;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

section.best-sells {
  padding: 50px 0;
  position: relative;
}
section.best-sells .sec-heading {
  position: unset;
}
section.best-sells .image-button img {
  width: 100%;
  height: 378px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #a78640;
}
section.best-sells .image-button .btn-theme {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  left: 20px;
  top: 40%;
}

.cat-card {
  padding: 25px 15px;
  text-align: center;
  background-color: rgba(167, 134, 64, 0.1019607843);
  border-radius: 5px;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cat-card:hover {
  background-color: #fff;
  border: 1px solid #a78640;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cat-card img {
  width: 80px !important;
  margin-bottom: 18px;
  border-radius: 0 !important;
}
.cat-card h3 {
  margin-bottom: 15px;
}
.cat-card h3 a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

section.deals {
  padding: 50px 0;
  position: relative;
}
section.deals .brand-heading {
  margin-bottom: 20px;
  position: absolute;
  top: 55px;
}
section.deals .brand-heading h2 {
  font-weight: 600;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
section.deals .brand-heading h2 a {
  font-size: 17px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.deal-card {
  text-align: center;
  border: 1.5px solid #a78640;
  padding: 25px;
  border-radius: 5px;
}
.deal-card .countdown li {
  display: inline-block;
  font-size: 15px;
  list-style-type: none;
  padding: 1em;
  text-align: center;
  text-transform: uppercase;
  background: rgba(167, 134, 64, 0.137254902);
  font-weight: 500;
  border-radius: 5px;
  color: #000;
}
.deal-card .countdown li span {
  display: block;
  font-size: 20px;
  color: #a78640;
}
.deal-card img {
  width: 180px !important;
  margin: 0 auto;
  margin-bottom: 20px;
}
.deal-card h3 {
  text-align: left;
  font-size: 20px;
}
.deal-card h3 a {
  color: #000;
  text-decoration: none;
}
.deal-card .provider {
  display: block;
  font-weight: 600;
  text-align: left;
}
.deal-card .provider a {
  color: #a78640;
  text-decoration: none;
}
.deal-card .price-option {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.deal-card .price-option .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.deal-card .price-option .price span.price {
  font-size: 20px;
  font-weight: 600;
  color: #a78640;
}
.deal-card .price-option .price span.actual-price {
  font-size: 18px;
  font-weight: 600;
  color: #8A92A6;
  text-decoration: line-through;
}
.deal-card .price-option .add-to-cart {
  text-align: right;
}
.deal-card .price-option .add-to-cart .add-cart-icon-first {
  display: block;
  text-align: right;
}
.deal-card .price-option .add-to-cart .add-cart-icon-first .add-cart-icon {
  background-color: #a78640;
  color: #a78640;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #a78640;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  outline: none;
}
.deal-card .price-option .add-to-cart .add-cart-icon-first .add-cart-icon i {
  margin-right: 0px;
}
.deal-card .price-option .add-to-cart .add-plus-remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #a78640;
}
.deal-card .price-option .add-to-cart .add-plus-remove .add-cart-icon {
  background-color: #a78640;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
}
.deal-card .price-option .add-to-cart .add-plus-remove input {
  width: 50px;
  border: none;
  text-align: center;
  outline: none !important;
  color: #fff;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1764705882);
}
.deal-card .price-option .add-to-cart .add-plus-remove input::-webkit-outer-spin-button,
.deal-card .price-option .add-to-cart .add-plus-remove input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

section.multioptions {
  padding: 30px 0;
}
section.multioptions .heading-column {
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
}
section.multioptions .heading-column::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #a78640;
  bottom: 0;
}

.mini-card {
  border: 1.5px solid #a78640;
  padding: 15px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.mini-card .image img {
  width: 90px;
}
.mini-card .content h3 {
  line-height: 18px;
  font-weight: 600;
}
.mini-card .content h3 a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
}
.mini-card .content .rating ul {
  padding: 0;
  margin: 0;
}
.mini-card .content .rating ul li {
  display: inline-block;
}
.mini-card .content .rating ul li span {
  font-weight: 600;
}
.mini-card .content .rating ul li i {
  color: #eab308;
}
.mini-card .content .price {
  color: #a78640;
  display: block;
  margin-top: 5px;
  font-weight: 600;
}

section.subscribe {
  padding: 50px 0;
}
section.subscribe .subscribe-content {
  background: #a78640;
  position: relative;
  padding: 50px 50px;
  border-radius: 10px;
}
section.subscribe img {
  position: absolute;
  right: 0;
  width: 380px;
  bottom: 0;
}
section.subscribe h3 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
}
section.subscribe h5 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}
section.subscribe p {
  color: #fff;
  font-weight: 600;
}
section.subscribe p b {
  color: #0a4833;
}
section.subscribe form {
  background-color: #fff;
  max-width: 450px;
  border-radius: 50px;
  position: relative;
  z-index: 4;
}
section.subscribe form input {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none;
  border: 0;
  height: 50px;
  border-radius: 50px 0 0 50px;
  padding-left: 58px;
  background: url("/img/icon-plane.e600e64b.png") no-repeat 25px;
}
section.subscribe form button {
  border: 0;
  border-radius: 50px;
  font-weight: 700;
  background-color: #0a4833;
  padding: 10px 30px;
}

section.about-us {
  padding: 50px 0;
}
section.about-us .carousel {
  margin-bottom: 20px;
}
section.about-us .carousel .carousel-inner .carousel-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
section.about-us .carousel .carousel-control-prev {
  opacity: 1;
}
section.about-us .carousel .carousel-control-prev span {
  background-color: #a78640;
  background-size: 60%;
  border-radius: 50px;
}
section.about-us .carousel .carousel-control-next {
  opacity: 1;
}
section.about-us .carousel .carousel-control-next span {
  background-color: #a78640;
  background-size: 60%;
  border-radius: 50px;
}
section.about-us .content h3 {
  color: #a78640;
  font-weight: 600;
  font-size: 30px;
}
section.about-us .content p {
  font-weight: 500;
  font-size: 18px;
}
section.about-us .content h4 {
  font-weight: 600;
  font-size: 25px;
}
section.about-us .content .story-content p {
  margin-bottom: 15px;
}

section.web-content {
  padding: 20px 0;
}
section.web-content h3 {
  color: #000;
  font-weight: 600;
  font-size: 30px;
}
section.web-content p {
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
  font-size: 17px;
}
section.web-content b {
  color: #000;
}
section.web-content ul {
  padding: 0;
}
section.web-content ul li {
  margin-bottom: 10px;
  list-style-type: none;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
  font-size: 17px;
}
section.web-content ul li b {
  margin-right: 3px;
}

section.what-we-provide {
  padding: 50px 0;
}
section.what-we-provide .heading-top h3 {
  position: relative;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
}
section.what-we-provide .card-provide {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 7px;
  margin-bottom: 20px;
}
section.what-we-provide .card-provide img {
  width: 80px;
  margin-bottom: 10px;
}
section.what-we-provide .card-provide h3 {
  font-size: 23px;
  font-weight: 600;
}
section.what-we-provide .card-provide p {
  font-weight: 500;
}

section.contact {
  padding: 50px 0;
}
section.contact .contact-content h3 {
  font-weight: 600;
  color: #a78640;
  font-size: 25px;
}
section.contact .contact-content p {
  font-weight: 500;
  color: #000;
}
section.contact .contact-content a {
  color: #a78640;
}
section.contact .contact-content ul {
  padding: 0;
}
section.contact .contact-content ul li {
  margin-bottom: 10px;
  list-style-type: none;
  font-weight: 600;
}
section.contact .contact-form h3 {
  font-weight: 600;
}
section.contact .contact-form p {
  font-weight: 500;
}
section.contact .contact-form form input {
  height: 50px;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-weight: 500;
}
section.contact .contact-form form input:focus {
  border: 1px solid #a78640;
}
section.contact .contact-form form textarea {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-weight: 500;
}
section.contact .contact-form form textarea:focus {
  border: 1px solid #a78640;
}
section.contact .contact-form form .input-group-text {
  background-color: #a78640;
  color: #fff;
  font-weight: 500;
}

section.mini-info {
  margin-bottom: 20px;
}
section.mini-info .mini-info-card {
  background: rgba(167, 134, 64, 0.1137254902);
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
section.mini-info .mini-info-card img {
  width: 60px;
}
section.mini-info .mini-info-card .content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
section.mini-info .mini-info-card .content p {
  font-weight: 500;
  margin-bottom: 0;
}

section.products-shop {
  padding: 50px 0;
}
section.products-shop .top-area-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}
section.products-shop .top-area-filter p {
  font-weight: 600;
}
section.products-shop .top-area-filter p b {
  color: #a78640;
}
section.products-shop .top-area-filter .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.products-shop .top-area-filter .filters .input-group-text {
  font-weight: 600;
  background-color: rgba(167, 134, 64, 0.2);
}
section.products-shop .top-area-filter .filters select {
  font-weight: 600;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}
section.products-shop .top-area-filter .filters select:focus {
  border: 1px solid #a78640;
}

.pagination-shop .pagination li a {
  background-color: #fff;
  color: #000;
  font-weight: 500;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}
.pagination-shop .pagination li.active a {
  background-color: #a78640;
  border-color: #a78640;
  color: #fff;
}

section.terms {
  padding: 50px 0;
}
section.terms .terms-content {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 30px;
  border-radius: 7px;
}
section.terms .terms-content h3, section.terms .terms-content h2, section.terms .terms-content h1, section.terms .terms-content h4, section.terms .terms-content h5, section.terms .terms-content h6 {
  font-weight: 600;
}
section.terms .terms-content p {
  font-weight: 500;
  font-size: 17px;
}
section.terms .terms-content li, section.terms .terms-content span {
  font-weight: 500;
  font-size: 17px;
}
section.terms .terms-content strong {
  font-weight: 600 !important;
}
section.terms .terms-content h3 {
  font-size: 25px;
  font-weight: 600 !important;
}

.xs-breadcumb {
  background-color: rgba(167, 134, 64, 0.1529411765);
  padding: 29px 0;
  min-height: 80px;
  margin-top: 20px;
}
.xs-breadcumb .breadcrumb {
  background-color: inherit;
  padding: 0;
  margin-bottom: 0;
}
.xs-breadcumb .breadcrumb .breadcrumb-item {
  margin-right: 0;
  color: #000;
  font-weight: 600;
}
.xs-breadcumb .breadcrumb .breadcrumb-item a {
  font-weight: 700;
  color: #a78640;
  text-decoration: none;
}

section.faq {
  padding: 50px 0;
  padding-bottom: 0;
}
section.faq .faq-content {
  padding: 30px;
}
section.faq .faq-content .faq-card {
  background-color: rgba(167, 134, 64, 0.1294117647);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}
section.faq .faq-content .faq-card h3 {
  font-size: 22px;
  font-weight: 600;
}
section.faq .faq-content .faq-card p {
  font-weight: 500;
}

.search {
  width: 100%;
}
.search form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #a78640;
  border-radius: 4px;
  max-width: 100%;
  width: 100%;
  background-color: #fff;
}
.search form input {
  width: 100%;
  padding-left: 15px;
  height: 50px;
  line-height: 50px;
  font-weight: 500;
  font-size: 16px;
}
.search form .icon-search {
  position: absolute;
  right: 15px;
  background: transparent;
  color: #000;
}
.search form .icon-search i {
  font-size: 25px;
}

.footer_bottom_menu {
  display: none;
}

.offcanvas-mobile-menu .offcanvas-header .offcanvas-title img {
  width: 70px;
}
.offcanvas-mobile-menu .offcanvas-body .accordion .accordion-item .accordion-header button {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  color: #000;
  gap: 5px;
  font-weight: 600;
}
.offcanvas-mobile-menu .offcanvas-body .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: rgba(167, 134, 64, 0.3019607843);
}
.offcanvas-mobile-menu .offcanvas-body .accordion .accordion-item .accordion-body ul {
  padding: 0;
}
.offcanvas-mobile-menu .offcanvas-body .accordion .accordion-item .accordion-body ul li {
  list-style-type: none;
  margin-bottom: 7px;
}
.offcanvas-mobile-menu .offcanvas-body .accordion .accordion-item .accordion-body ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(167, 134, 64, 0.4352941176);
}
.offcanvas-mobile-menu .offcanvas-body .menu {
  margin-top: 20px;
}
.offcanvas-mobile-menu .offcanvas-body .menu ul {
  padding: 0;
}
.offcanvas-mobile-menu .offcanvas-body .menu ul li {
  list-style-type: none;
}
.offcanvas-mobile-menu .offcanvas-body .menu ul li a {
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  color: #000;
  font-weight: 500;
}
.offcanvas-mobile-menu .offcanvas-body .menu ul li a img {
  width: 20px;
  margin-right: 7px;
}

section.related-products {
  padding: 50px 0;
  position: relative;
}
section.related-products .sec-heading {
  position: absolute;
}

.fw-500 {
  font-weight: 500 !important;
}

section.thankyou {
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
}
section.thankyou h1 {
  font-weight: 700;
}
section.thankyou p {
  font-weight: 600;
}
section.thankyou p span {
  color: #a78640;
}
section.thankyou .order-detail-thank {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  text-align: left;
}
section.thankyou .order-detail-thank h3 {
  font-size: 22px;
  font-weight: 600;
}
section.thankyou .order-detail-thank p {
  font-size: 16px;
  font-size: 500;
  margin: 0;
}
section.thankyou .order-cen {
  text-align: left;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 10px;
}
section.thankyou .order-cen h3 {
  font-weight: 600;
  font-size: 22px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}
section.thankyou .order-cen h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  background: #a78640;
}
section.thankyou .order-cen table {
  border: 1px solid #eee;
}
section.thankyou .order-cen2 {
  text-align: left;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 10px;
}
section.thankyou .order-cen2 table {
  text-align: left;
}
section.thankyou .order-cen2 table tr td {
  font-weight: 600;
}
section.thankyou .order-cen2 table tr td a {
  color: #a78640;
  text-decoration: none;
}
section.thankyou .order-cen2 table tr td a i {
  font-size: 25px;
}
section.thankyou .order-cen2 table tr td img {
  width: 50px;
}
section.thankyou .order-cen2 table tr td .icon-action {
  padding: 12px 7px 5px 7px;
  border-radius: 5px;
  border: 1px solid #eee;
}
section.thankyou .order-cen2 table tr td .icon-action:first-child {
  margin-right: 5px;
}
section.thankyou .share-section .share-title {
  font-weight: 700;
  font-size: 20px;
  color: #a78640;
}
section.thankyou .share-section ul li {
  display: inline-block;
}
section.thankyou .share-section ul li a {
  padding: 12px 12px 10px 11px;
  background: #a78640;
  color: #fff;
  border-radius: 50px;
}
section.thankyou .share-section ul li a i {
  font-size: 20px;
}

.floating-product {
  position: fixed;
  z-index: 1001;
  -webkit-transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.animate-count {
  -webkit-animation: pulse 0.5s ease-out;
          animation: pulse 0.5s ease-out;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.cart-widget {
  cursor: pointer;
  padding: 20px;
  background-color: #a78640;
  color: #fff;
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cart-widget .cart-title {
  margin-bottom: 10px;
}
.cart-widget .cart-total {
  display: block;
  padding: 5px;
  background: #fff;
  color: #a78640;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
}

section.product-detail .product-image img {
  width: 100%;
  margin-bottom: 15px;
}
section.product-detail .product-content .tag {
  background-color: #a78640;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
}
section.product-detail .product-content .title {
  font-size: 35px;
  font-weight: 600;
}
section.product-detail .product-content .description p {
  font-weight: 500;
  font-size: 16px;
}
section.product-detail .product-content .reviews .no-review {
  font-size: 15px;
  font-weight: 500;
}
section.product-detail .product-content .reviews .review i {
  color: rgb(255, 200, 0);
  font-size: 17px;
}
section.product-detail .product-content .reviews .review span {
  color: #000;
  font-weight: 500;
}
section.product-detail .product-content .price span.price-tag {
  color: #a78640;
  font-size: 35px;
  font-weight: 600;
}
section.product-detail .product-content .price span {
  font-weight: 500;
}
section.product-detail .product-content .actions-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
section.product-detail .product-content .actions-group .add-plus-remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #a78640;
}
section.product-detail .product-content .actions-group .add-plus-remove .add-cart-icon {
  background-color: #a78640;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
}
section.product-detail .product-content .actions-group .add-plus-remove input {
  width: 50px;
  border: none;
  text-align: center;
  outline: none !important;
  color: #fff;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1764705882);
}
section.product-detail .product-content .actions-group .add-plus-remove input::-webkit-outer-spin-button,
section.product-detail .product-content .actions-group .add-plus-remove input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
section.product-detail .product-content .actions-group .add-cart {
  background-color: #a78640;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  border: 2px solid #a78640;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  font-weight: 600;
}
section.product-detail .product-content .actions-group .add-cart i {
  font-size: 20px;
}
section.product-detail .product-content .extra p {
  font-weight: 600;
  font-size: 15px;
}
section.product-detail .product-content .extra p span {
  color: #a78640;
}
section.product-detail .content-tabs {
  padding: 15px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 10px;
}
section.product-detail .content-tabs .nav-pills {
  gap: 10px;
}
section.product-detail .content-tabs .nav-pills .nav-item button {
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background-color: #fff;
}
section.product-detail .content-tabs .nav-pills .nav-item button.active {
  background-color: #a78640;
  color: #fff;
}
section.product-detail .content-tabs .tab-content p {
  font-weight: 500;
}
section.product-detail .content-tabs .tab-content .reviews-box .review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
section.product-detail .content-tabs .tab-content .reviews-box .review img {
  width: 40px;
  border-radius: 50px;
}
section.product-detail .content-tabs .tab-content .reviews-box .review .review-content {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 10px;
  border-radius: 3px;
}
section.product-detail .content-tabs .tab-content .reviews-box .review .review-content .review-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
section.product-detail .content-tabs .tab-content .reviews-box .review .review-content .review-top .rating ul {
  padding: 0;
  margin: 0;
}
section.product-detail .content-tabs .tab-content .reviews-box .review .review-content .review-top .rating ul li {
  display: inline-block;
}
section.product-detail .content-tabs .tab-content .reviews-box .review .review-content .review-top .rating ul li i {
  color: rgb(255, 200, 0);
}
section.product-detail .content-tabs .tab-content .reviews-box .review .review-content .review-top h4 {
  font-size: 20px;
  margin: 0;
}
section.product-detail .content-tabs .tab-content .reviews-box .review .review-content .review-top .date {
  font-weight: 500;
  color: #a78640;
}
section.product-detail .content-tabs .tab-content .review_form {
  padding: 10px 0;
}
section.product-detail .content-tabs .tab-content .review_form form {
  margin-top: 15px;
}
section.product-detail .content-tabs .tab-content .review_form form .rating label {
  font-weight: 600;
}
section.product-detail .content-tabs .tab-content .review_form form .rating i {
  font-size: 16px;
  color: #a78640;
}

section.wishlist-products {
  padding: 50px 0;
  position: relative;
}
section.wishlist-products .sec-heading {
  position: unset;
}
section.wishlist-products .wishlist {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 5px;
}
section.wishlist-products .wishlist table tr td {
  font-weight: 600;
}
section.wishlist-products .wishlist table tr td a {
  color: #a78640;
  text-decoration: none;
}
section.wishlist-products .wishlist table tr td a i {
  font-size: 25px;
}
section.wishlist-products .wishlist table tr td .icon-action {
  padding: 12px 7px 5px 7px;
  border-radius: 5px;
  border: 1px solid #eee;
}
section.wishlist-products .wishlist table tr td .icon-action:first-child {
  margin-right: 5px;
}

.btn-add-cart {
  color: #a78640;
  background: #fff;
  border: 2px solid #a78640;
  font-weight: 600;
  -webkit-transform: all 0.5s;
          transform: all 0.5s;
}
.btn-add-cart i {
  font-size: 18px !important;
}
.btn-add-cart:hover {
  color: #fff !important;
  background-color: #a78640;
  -webkit-transform: all 0.5s;
          transform: all 0.5s;
}

footer {
  padding: 50px 0;
}
footer .logo-content img {
  width: 150px;
  margin-bottom: 20px;
}
footer .logo-content p {
  font-weight: 600;
}
footer .logo-content ul {
  padding: 0;
  margin: 0;
  margin-top: 15px;
}
footer .logo-content ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
footer .logo-content ul li a {
  color: #000;
  text-decoration: none;
}
footer .logo-content ul li a:hover {
  color: #a78640;
}
footer .logo-content ul li i {
  font-size: 18px;
  color: #a78640;
}
footer .logo-content ul li span {
  font-weight: 500;
}
footer .links h3 {
  font-size: 25px;
  font-weight: 600;
}
footer .links ul {
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
footer .links ul li {
  margin-bottom: 15px;
  list-style-type: none;
}
footer .links ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
footer .links ul li a:hover {
  color: #a78640;
  padding-left: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
footer hr {
  border-color: #a78640;
  border-width: 2px;
}
footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 15px;
}
footer .copyright p {
  font-weight: 600;
  margin: 0;
}
footer .copyright .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
footer .copyright .social-links h5 {
  margin: 0;
  font-weight: 600;
}
footer .copyright .social-links ul {
  padding: 0;
  margin: 0;
}
footer .copyright .social-links ul li {
  display: inline-block;
}
footer .copyright .social-links ul li a {
  padding: 12px 12px 10px 11px;
  background: #a78640;
  color: #fff;
  border-radius: 50px;
}
footer .copyright .social-links ul li a i {
  font-size: 20px;
}

section.login-signup {
  padding: 80px 0;
}
section.login-signup .login-signup-box {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 5px;
}
section.login-signup .login-signup-box img {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
section.login-signup .login-signup-box .login-content h3 {
  color: #a78640;
  font-weight: 700;
  font-size: 35px;
}
section.login-signup .login-signup-box .login-content p {
  font-size: 17px;
  font-weight: 600;
}
section.login-signup .login-signup-box .login-content p a {
  color: #a78640;
  font-weight: 600;
  text-decoration: none;
}
section.login-signup .login-signup-box .login-content form {
  padding-right: 20px;
}
section.login-signup .login-signup-box .login-content form label {
  font-weight: 600;
}
section.login-signup .login-signup-box .login-content form input {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
section.login-signup .login-signup-box .login-content form input:focus {
  border: 1px solid #a78640;
}
section.login-signup .login-signup-box .login-content form button {
  background-color: #a78640;
  color: #fff;
  border: 1px solid #a78640;
  font-weight: 500;
}
section.login-signup .login-signup-box .login-content form .forget {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: #a78640;
  font-weight: 600;
}
section.login-signup .login-signup-box .login-content form .with-agreement a {
  color: #a78640;
  text-decoration: none;
}

.h-40 {
  height: 40px;
}

section.account {
  padding: 50px 0;
}
section.account .account-sec {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 10px;
}
section.account .account-sec .tabs-acc .nav {
  border-bottom: 1px solid #a78640;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
section.account .account-sec .tabs-acc .nav button {
  color: #000;
  font-weight: 600;
  border-radius: 50px;
}
section.account .account-sec .tabs-acc .nav button.active {
  background: #a78640;
  color: #fff;
}
section.account .account-sec .tabs-acc .tab-content .dashboard h3 {
  font-weight: 600;
}
section.account .account-sec .tabs-acc .tab-content .dashboard p {
  font-weight: 500;
  margin-bottom: 5px;
}
section.account .account-sec .tabs-acc .tab-content .dashboard p:last-child {
  margin-bottom: 0;
}
section.account .account-sec .tabs-acc .tab-content .orders .orders-table {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 5px;
}
section.account .account-sec .tabs-acc .tab-content .orders .orders-table h4 {
  font-weight: 600;
}
section.account .account-sec .tabs-acc .tab-content .orders .orders-table table tr td {
  font-weight: 600;
}
section.account .account-sec .tabs-acc .tab-content .orders .orders-table table tr td a {
  color: #a78640;
  text-decoration: none;
}
section.account .account-sec .tabs-acc .tab-content .orders .orders-table table tr td a i {
  font-size: 25px;
}
section.account .account-sec .tabs-acc .tab-content .orders .orders-table table tr td .icon-action {
  padding: 12px 7px 5px 7px;
  border-radius: 5px;
  border: 1px solid #eee;
}
section.account .account-sec .tabs-acc .tab-content .orders .orders-table table tr td .icon-action:first-child {
  margin-right: 5px;
}
section.account .account-sec .tabs-acc .tab-content .address h4 {
  font-weight: 600;
  margin-bottom: 20px;
}
section.account .account-sec .tabs-acc .tab-content .address .address-card {
  border: 1px solid #a78640;
  padding: 15px;
  border-radius: 15px;
  position: relative;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
section.account .account-sec .tabs-acc .tab-content .address .address-card .card-delete {
  position: absolute;
  right: 10px;
  top: 10px;
}
section.account .account-sec .tabs-acc .tab-content .address .address-card .card-delete img {
  width: 20px;
}
section.account .account-sec .tabs-acc .tab-content .address .address-card .card-top h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #a78640;
}
section.account .account-sec .tabs-acc .tab-content .address .address-card .card-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.account .account-sec .tabs-acc .tab-content .address .address-card .card-bottom p {
  margin: 0;
  font-weight: 500;
}
section.account .account-sec .tabs-acc .tab-content .address .address-card .card-bottom img {
  width: 40px;
}
section.account .account-sec .tabs-acc .tab-content .my-account h4 {
  font-weight: 600;
  margin-bottom: 15px;
}
section.account .account-sec .tabs-acc .tab-content .my-account form {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 10px;
}
section.account .account-sec .tabs-acc .tab-content .my-account form label {
  font-weight: 600;
}
section.account .account-sec .tabs-acc .tab-content .my-account form button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
section.account .account-sec .tabs-acc .tab-content .change-pass h4 {
  font-weight: 600;
  margin-bottom: 15px;
}
section.account .account-sec .tabs-acc .tab-content .change-pass form {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 10px;
}
section.account .account-sec .tabs-acc .tab-content .change-pass form label {
  font-weight: 600;
}
section.account .account-sec .tabs-acc .tab-content .change-pass form button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

section.cart {
  padding: 50px 0;
}
section.cart .cart-table {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 5px;
}
section.cart .cart-table h4 {
  font-weight: 600;
}
section.cart .cart-table table tr td {
  font-weight: 600;
}
section.cart .cart-table table tr td a {
  color: #a78640;
  text-decoration: none;
}
section.cart .cart-table table tr td a i {
  font-size: 25px;
}
section.cart .cart-table table tr td .icon-action {
  padding: 12px 7px 5px 7px;
  border-radius: 5px;
  border: 1px solid #eee;
}
section.cart .cart-table table tr td .icon-action:first-child {
  margin-right: 5px;
}
section.cart .cart-table table tr td .add-plus-remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #a78640;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
section.cart .cart-table table tr td .add-plus-remove .add-cart-icon {
  background-color: #a78640;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
}
section.cart .cart-table table tr td .add-plus-remove input {
  width: 50px;
  border: none;
  text-align: center;
  outline: none !important;
  color: #fff;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1764705882);
}
section.cart .cart-table table tr td .add-plus-remove input::-webkit-outer-spin-button,
section.cart .cart-table table tr td .add-plus-remove input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
section.cart .side-total {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 10px;
  border-radius: 7px;
}
section.cart .side-total .table-responsive {
  background-color: #eee;
  padding: 0 8px;
}
section.cart .side-total .table-responsive table {
  margin: 0;
}
section.cart .side-total p {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
}
section.cart .side-total p a {
  color: #a78640;
  text-decoration: none;
}

section.checkout .returning-customer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em 2em 1em 2em !important;
  background-color: #f1f0ec;
  border-top: 2px solid #a78640;
}
section.checkout .returning-customer a {
  color: #a78640;
  text-decoration: none;
  font-weight: 500;
}
section.checkout .title-top {
  font-size: 30px;
  font-weight: 600;
}
section.checkout .order-product .form-side {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 10px;
}
section.checkout .order-product .form-side .billing-address form input[type=text] {
  height: 40px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-color: #a78640;
}
section.checkout .order-product .form-side .billing-address form label {
  font-weight: 600;
}
section.checkout .order-product .form-side .billing-address form select {
  height: 40px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-color: #a78640;
}
section.checkout .order-product .form-side .billing-address form textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-color: #a78640;
}
section.checkout .order-product .cart-table {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 5px;
}
section.checkout .order-product .cart-table h4 {
  font-weight: 600;
}
section.checkout .order-product .cart-table table tr td {
  font-weight: 600;
}
section.checkout .order-product .cart-table table tr td a {
  color: #a78640;
  text-decoration: none;
}
section.checkout .order-product .cart-table table tr td a i {
  font-size: 25px;
}
section.checkout .order-product .cart-table table tr td .icon-action {
  padding: 12px 7px 5px 7px;
  border-radius: 5px;
  border: 1px solid #eee;
}
section.checkout .order-product .cart-table table tr td .icon-action:first-child {
  margin-right: 5px;
}
section.checkout .order-product .cart-table table tr td .add-plus-remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #a78640;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
section.checkout .order-product .cart-table table tr td .add-plus-remove .add-cart-icon {
  background-color: #a78640;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: none;
}
section.checkout .order-product .cart-table table tr td .add-plus-remove input {
  width: 50px;
  border: none;
  text-align: center;
  outline: none !important;
  color: #fff;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1764705882);
}
section.checkout .order-product .cart-table table tr td .add-plus-remove input::-webkit-outer-spin-button,
section.checkout .order-product .cart-table table tr td .add-plus-remove input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
section.checkout .order-product .delivery-time {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 10px;
}
section.checkout .order-product .delivery-time h3 {
  font-weight: 600;
  font-size: 25px;
}
section.checkout .order-product .delivery-time .time {
  display: block;
}
section.checkout .order-product .delivery-time .time .form-check {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 7px;
  padding: 5px;
  border: 1px solid #a78640;
  border-radius: 5px;
}
section.checkout .order-product .delivery-time .time .form-check input {
  margin-left: 0;
  margin-right: 8px;
}
section.checkout .order-product .delivery-time .time .form-check label {
  font-weight: 600;
}
section.checkout .order-product .payment-method {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 10px;
}
section.checkout .order-product .payment-method h3 {
  font-weight: 600;
  font-size: 25px;
}
section.checkout .order-product .payment-method .time {
  display: block;
}
section.checkout .order-product .payment-method .time .form-check {
  display: inline-block;
  margin-right: 7px;
  padding: 5px;
  border: 1px solid #a78640;
  border-radius: 5px;
}
section.checkout .order-product .payment-method .time .form-check input {
  margin-left: 0;
  margin-right: 8px;
}
section.checkout .order-product .payment-method .time .form-check label {
  font-weight: 600;
}
section.checkout .order-product .payment-method .time .active {
  background-color: #a78640;
  color: #fff;
}
section.checkout .order-product .coupon-checkout {
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  padding: 15px;
  border-radius: 10px;
}
section.checkout .order-product .coupon-checkout form.apply-coupon {
  border: 2px dashed #a78640;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
section.checkout .order-product .coupon-checkout form.apply-coupon input {
  height: 51px;
  border-radius: 10px 0 0 10px;
  background-image: url("/img/coupon.png");
  background-position: 20px;
  background-repeat: no-repeat;
  padding-left: 50px;
  border: none;
  font-size: 16px;
  width: 100%;
}
section.checkout .order-product .coupon-checkout form.apply-coupon input:focus {
  border-color: #a78640;
}
section.checkout .order-product .coupon-checkout form.apply-coupon input:visited {
  border-color: #a78640;
}
section.checkout .order-product .coupon-checkout form.apply-coupon input:active {
  border-color: #a78640;
}
section.checkout .order-product .coupon-checkout form.apply-coupon button {
  min-width: 160px;
  height: 51px;
  border-radius: 0 10px 10px 0;
  margin: 0;
}

@media only screen and (max-width: 1350px) {
  header {
    padding-bottom: 25px;
  }
  header .header-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .header-wrap .header-right {
    display: none;
  }
  header .header-wrap .mobile-menu {
    display: block;
    padding: 10px 10px;
    border: 2px solid #a78640;
    border-radius: 3px;
  }
  header .header-wrap .mobile-menu .menu-opener {
    position: relative;
    width: 24px;
    height: 20px;
    cursor: pointer;
    display: block;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  header .header-wrap .mobile-menu .menu-opener span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
  }
  header .header-wrap .mobile-menu .menu-opener span.burger-icon-top {
    top: 2px;
  }
  header .header-wrap .mobile-menu .menu-opener span.burger-icon-mid {
    top: 8px;
  }
  header .header-wrap .mobile-menu .menu-opener span.burger-icon-bottom {
    top: 14px;
  }
  header .header-wrap .mobile-menu .menu-opener span:after, header .header-wrap .mobile-menu .menu-opener span:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #a78640;
  }
  header .header-bottom {
    display: none;
  }
  header .header-search {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .brand-heading {
    z-index: 9;
  }
  .brand-heading h2 {
    display: block !important;
  }
  .brand-heading h2 a {
    display: block;
  }
  section.hero-slider .carousel .carousel-indicators {
    margin-bottom: 0;
  }
  section.hero-slider .carousel .carousel-control-next {
    right: -7px;
  }
  section.hero-slider .carousel .carousel-control-next .carousel-control-next-icon {
    width: 10px;
    height: 10px;
    padding: 12px;
    background-size: 45%;
  }
  section.hero-slider .carousel .carousel-control-prev {
    left: -7px;
  }
  section.hero-slider .carousel .carousel-control-prev .carousel-control-prev-icon {
    width: 10px;
    height: 10px;
    padding: 12px;
    background-size: 45%;
  }
  .container-fluid {
    width: 100%;
  }
  .swiper .swiper-button-prev {
    background-color: #a78640;
    padding: 13px 10px;
    border-radius: 50px;
    left: unset;
    right: 40px;
    top: 42px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 20px;
  }
  .swiper .swiper-button-prev:after {
    color: #fff;
    font-size: 11px;
  }
  .swiper .swiper-button-next {
    background-color: #a78640;
    padding: 13px 10px;
    border-radius: 50px;
    top: 27px;
    border-radius: 50px;
    left: unset;
    right: 0;
    top: 42px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 20px;
  }
  .swiper .swiper-button-next:after {
    color: #fff;
    font-size: 11px;
  }
  .cart-widget {
    display: none;
  }
  section.brands .brand-heading h2 {
    font-size: 22px;
  }
  section.popular-categories .sec-heading {
    display: block;
  }
  section.popular-categories .sec-heading h2 {
    font-size: 22px;
  }
  section.hero-slider .carousel .carousel-item img {
    height: 100%;
  }
  section.categories .brand-heading h2 {
    display: block;
    font-size: 22px;
  }
  section.categories .brand-heading h2 a {
    display: block;
    margin-top: 10px;
  }
  .footer_bottom_menu {
    background: #fff;
    padding: 10px 0;
    left: 0;
    bottom: 0;
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 70px;
    display: block;
  }
  .footer_bottom_menu .footer_menu {
    text-align: center;
  }
  .footer_bottom_menu .footer_menu a {
    text-decoration: none;
  }
  .footer_bottom_menu .footer_menu .bottom_menu_icon {
    width: 100%;
    height: 25px;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    -o-object-position: center;
       object-position: center;
  }
  .footer_bottom_menu .footer_menu .footer_menu_text {
    display: block;
    font-weight: 500;
    color: #000;
  }
  footer {
    padding-bottom: 110px;
  }
  footer .copyright {
    display: block;
    text-align: center;
  }
  footer .copyright .social-links {
    margin-top: 20px;
  }
  section.brands .swiper-brand .swiper-slide a {
    display: block;
    text-align: center;
  }
  section.brands .swiper-brand .swiper-slide a img {
    width: 90%;
  }
  section.products-shop .top-area-filter {
    display: block;
  }
  section.subscribe .subscribe-content {
    padding: 20px;
  }
  section.subscribe img {
    position: unset;
    width: 100%;
  }
  section.login-signup .login-signup-box img {
    display: none;
  }
  section.login-signup .login-signup-box .login-content {
    padding: 15px;
  }
}
@media only screen and (max-width: 563px) {
  .product-card .price-option {
    display: block;
  }
  .product-card .price-option .add-to-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 437px) {
    /* .product-card{
    height: 270px;
  } */
  .product-card .price-option {
    display: block;
  }
  .product-card .price-option .add-to-cart {
    display: block;
    margin-top: 15px;
    text-align: center;
  }
  .product-card .price-option .add-to-cart .add-cart-icon-first {
    text-align: center;
  }
  .product-card .price-option .add-to-cart .add-plus-remove {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 360px) {
  .product-card {
    height: 270px;
  }
}