/*----------------------------------[Table of contents]----------------------------------
# newsletter-modal css
# home-slider css
# brand-logo css
# category-slider css
# newsletter-area css
# testimonial css
---------------------------------------------------------------------------------------*/

/************************************* newsletter-modal css start *************************************/
/*====================================
    newsletter-modal css
====================================*/
@media (min-width: 768px) {
  .newsletter-modal .modal-dialog {
    max-width: 750px;
  }
}

.mobile-bottom-bar {
  display: none;
}

.mobile-bottom-item i {
  color: #00674F !important;
}

.bottom-menu-icon i {
  color: #00674F !important;
}

/************************************* newsletter-modal css end *************************************/

/************************************* home-slider css start *************************************/
/*====================================
    home-slider swiper css
====================================*/
.slider-content .home-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
  width: 100%;
}

/*====================================
    home-slider css
====================================*/
.slider-content .home-slider {
  margin-bottom: -50px;
}

/*====================================
    slider-content css
====================================*/
.slider-content .home-slider .slider-image h2 {
  line-height: 1.18;
}

@media (min-width: 1600px) {
  .slider-content .home-slider .slider-image .slider-subtitle {
    margin-bottom: 13px;
  }

  .slider-content .home-slider .slider-image h2 {
    font-size: 45px;
  }

  .slider-content .home-slider .slider-image a {
    margin-top: 39px;
  }
}

.service-icon i {
  background-color: #00674F;
  color: #fff;
}

/*====================================
    slider-content transition css
====================================*/
.slider-content .home-slider.swiper .swiper-slide .slider-image .slider-subtitle,
.slider-content .home-slider.swiper .swiper-slide .slider-image h2,
.slider-content .home-slider.swiper .swiper-slide .slider-image a,
.slider-content .home-slider.swiper .swiper-slide .slider-image .slide-img {
  opacity: 0;
}

.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-subtitle,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image h2,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image a,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slide-img {
  opacity: 1;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-subtitle,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image h2,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slide-img {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-subtitle {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image h2 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}

.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image a {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}

/*====================================
    slider-dot css
====================================*/
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination {
  width: unset;
  position: unset;
  margin: -5px 0px 0px -5px;
}

.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: transparent;
  margin: 5px 0px 0px 5px;
  opacity: 1;
  border: 1px solid var(--secondary-font-color);
}

.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span.swiper-pagination-bullet:hover,
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--secondary-font-color);
  border-color: var(--secondary-font-color);
}

/************************************* home-slider css end *************************************/

/************************************* brand-logo css start *************************************/
/*====================================
    brand-logo swiper css
====================================*/
.brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
  width: 50%;
}

@media (min-width: 992px) {
  .brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 33.33%;
  }
}

@media (min-width: 1200px) {
  .brand-logo .brand-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 25%;
  }
}

/*====================================
    brand-content css
====================================*/
.brand-logo .brand-slider .brand-content {
  position: relative;
}

.brand-logo .brand-slider .brand-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 4px;
  background-color: var(--primary-font-color);
  transform: scaleX(0);
  z-index: 1;
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}

.brand-logo .brand-slider .brand-content:hover::after {
  transform: scaleX(-1);
}

@media (min-width: 768px) {
  .brand-logo .brand-slider .brand-content span.brand-img img {
    width: 176px;
  }
}

@media (min-width: 1200px) {
  .brand-logo .brand-slider .brand-content span.brand-img img {
    -webkit-filter: opacity(0.3) grayscale(1);
    filter: opacity(0.3) grayscale(1);
    -webkit-transition: filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;
  }

  .brand-logo .brand-slider .brand-content:hover span.brand-img img {
    -webkit-filter: opacity(1) grayscale(0);
    filter: opacity(1) grayscale(0);
  }
}

/************************************* brand-logo css end *************************************/

/************************************* category-slider css start *************************************/
/*====================================
    category-slider swiper css
====================================*/
.category-slider .cat-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
  width: 100%;
}

@media (min-width: 768px) {
  .category-slider {
    overflow-x: hidden;
  }

  .category-slider .cat-slider {
    margin-right: calc(-100% - 30px);
  }

  .category-slider .cat-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .category-slider .cat-slider {
    margin-right: calc(-33.33% - 10px);
  }
}

@media (min-width: 1400px) {
  .category-slider .cat-slider {
    margin-right: calc(-50% - 15px);
  }

  .category-slider .cat-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 33.33%;
  }
}

/*====================================
    category cat-content css
====================================*/
.category-slider .cat-slider .cat-block .cat-content a.cat-btn {
  margin-bottom: -56px;
  --s: 112px;
  width: var(--s);
  aspect-ratio: 1;
  --g: /calc(var(--s)*0.2) calc(var(--s)*0.2) radial-gradient(50% 50%, #000 99%, #0000 101%) no-repeat;
  mask: calc(50% + var(--s)*0.372) calc(50% + var(--s)*0) var(--g), calc(50% + var(--s)*0.301) calc(50% + var(--s)*0.218) var(--g), calc(50% + var(--s)*0.115) calc(50% + var(--s)*0.353) var(--g), calc(50% + var(--s)*-0.115) calc(50% + var(--s)*0.353) var(--g), calc(50% + var(--s)*-0.301) calc(50% + var(--s)*0.218) var(--g), calc(50% + var(--s)*-0.372) calc(50% + var(--s)*0) var(--g), calc(50% + var(--s)*-0.301) calc(50% + var(--s)*-0.218) var(--g), calc(50% + var(--s)*-0.115) calc(50% + var(--s)*-0.353) var(--g), calc(50% + var(--s)*0.115) calc(50% + var(--s)*-0.353) var(--g), calc(50% + var(--s)*0.301) calc(50% + var(--s)*-0.218) var(--g), radial-gradient(calc(var(--s)*0.439), #000 99%, #0000 101%) subtract, calc(50% + var(--s)*0.492) calc(50% + var(--s)*0.16) var(--g), calc(50% + var(--s)*0.304) calc(50% + var(--s)*0.418) var(--g), calc(50% + var(--s)*0) calc(50% + var(--s)*0.517) var(--g), calc(50% + var(--s)*-0.304) calc(50% + var(--s)*0.418) var(--g), calc(50% + var(--s)*-0.492) calc(50% + var(--s)*0.16) var(--g), calc(50% + var(--s)*-0.492) calc(50% + var(--s)*-0.16) var(--g), calc(50% + var(--s)*-0.304) calc(50% + var(--s)*-0.418) var(--g), calc(50% + var(--s)*0) calc(50% + var(--s)*-0.517) var(--g), calc(50% + var(--s)*0.304) calc(50% + var(--s)*-0.418) var(--g), calc(50% + var(--s)*0.492) calc(50% + var(--s)*-0.16) var(--g);
}

/************************************* category-slider css end *************************************/

/************************************* newsletter-area css start *************************************/
/*====================================
    newsletter-title css
====================================*/
.newsletter-area .newsletter-block .newsletter-title .section-capture span.sub-title {
  color: var(--heading-font-color);
}

/*====================================
    newsletter-img css
====================================*/
.newsletter-area .newsletter-block .newsletter-img {
  margin-top: -20px;
  margin-bottom: -5px;
}

@media (min-width: 768px) {
  .newsletter-area .newsletter-block .newsletter-img {
    margin-top: -30px;
  }
}

@media (min-width: 992px) {
  .newsletter-area .newsletter-block .newsletter-img {
    margin-bottom: 0px;
  }
}

/*====================================
    newsletter-form css
====================================*/
@media (min-width: 768px) {
  .newsletter-area .newsletter-block .newsletter-form form.news-form .news-wrap input {
    border-radius: var(--border-radius2) 0px 0px var(--border-radius2);
  }

  .newsletter-area .newsletter-block .newsletter-form form.news-form .news-wrap button {
    border-radius: 50px;
  }
}

/************************************* newsletter-area css end *************************************/

/************************************* testimonial css start *************************************/
/*====================================
    testimonial slider-swiper css
====================================*/
.testimonial .testi-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
  width: 100%;
}

@media (min-width: 768px) {
  .testimonial .testi-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .testimonial .testi-slider.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    width: 33.33%;
  }
}

/*-- Product --*/
.single-grid-product {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;

}

.product-content {
  background-color: #815911;
  padding: 20px 0px;
  color: #fff !important;
}

.single-grid-product.style-two .product-image a {
  position: relative;
  overflow: hidden;
  display: block;
}

.single-grid-product.style-two .product-image a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 38, 38, 0.6);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single-grid-product.style-two .product-content {
  position: absolute;
  width: calc(100% - 20px);
  bottom: 0;
  left: 0;
  padding: 50px 40px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  .single-grid-product.style-two .product-content {
    padding: 30px 20px;
    width: calc(100% - 40px);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-grid-product.style-two .product-content {
    width: 100%;
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-grid-product.style-two .product-content {
    width: 100%;
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .single-grid-product.style-two .product-content {
    padding: 15px 20px;
  }

  .ingg {
    font-size: 15px !important;
  }

  .btn-style {
    margin-top: 35px !important;
  }

  .desk-v {
    display: none !important;
  }

  .mob-v {
    display: block !important;
  }

  .slider-subtitle {
    margin-top: 50px;
  }

  .header-logo {
    bottom: -83px !important;
  }

  .header-logo img {
    height: 95px !important;
    /* change depending on your logo */
    width: auto;
  }


  .single-shop-banner .shop-banner-image .shop-banner-content .shop-btn {
    top: 332px !important;
  }

  .newsletter-area {
    margin-top: 100px;
  }

  .brand-slider .slick-list .slick-track {
    display: block !important;
  }
}

.header-center {
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.header-center.hidden {
  opacity: 0;
  visibility: hidden;
}

.single-grid-product.style-two .product-content .title {
  color: #ffffff;
}

.single-grid-product.style-two .product-content .product-price {
  color: #ffffff;
}

.single-grid-product.style-two .product-content .product-rating .rating {
  color: #ffffff;
}

.single-grid-product.style-two .product-content .product-action {
  margin-top: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-grid-product.style-two .product-content .product-action {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .single-grid-product.style-two .product-content .product-action.action-rs-small {
    margin-top: 5px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-grid-product.style-two .product-content .product-action.action-rs-small ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-grid-product.style-two .product-content .product-action.action-rs-small ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}

.single-grid-product.style-two .product-content .product-action ul li {
  display: inline-block;
  opacity: 1;
}

.single-grid-product.style-two .product-content .product-action ul li a {
  background-color: #fff;
  color: #2F2F2F;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  display: block;
  padding: 0;
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 3px;
  vertical-align: middle;
}

@media only screen and (min-width: 1500px) and (max-width: 1919px) {
  .single-grid-product.style-two .product-content .product-action ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .single-grid-product.style-two .product-content .product-action ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.single-grid-product.style-two .product-content .product-action ul li a:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.single-grid-product.style-two .product-content .product-action ul li:last-child {
  padding-right: 0;
}

.single-grid-product.style-two:hover .product-image a::before {
  opacity: 1;
}

.single-grid-product.style-two:hover .product-content {
  opacity: 1;
}

.single-grid-product .product-label {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.single-grid-product .product-label span {
  font-size: 11px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  line-height: 50px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: block;
  margin-bottom: 15px;
  margin-left: auto;
}

.single-grid-product .product-label span:last-child {
  margin-bottom: 0;
}

.single-grid-product .product-label span.new {
  background-color: #1a1a1a;
}

.single-grid-product .product-label span.sale {
  background-color: #D97841;
}

.single-grid-product .product-label span.out-stock {
  width: auto;
  border-radius: 0;
  padding: 8px 20px;
  height: auto;
  line-height: 1.8;
  background-color: #1a1a1a;
}

.single-grid-product .product-image {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}

.single-grid-product .product-image.image-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.single-grid-product .product-image>a {
  display: block;
  width: 100%;
}

.single-grid-product .product-image>a img {
  width: 100%;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.single-grid-product .product-image>a img:nth-child(1) {
  visibility: visible;
  opacity: 1;
}

.single-grid-product .product-image>a img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.single-grid-product .product-image .product-action {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  width: 100%;
  z-index: 2;
  text-align: center;
}

.single-grid-product .product-image .product-action.product-action-two ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}

.single-grid-product .product-image .product-action ul li {
  display: inline-block;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
  -webkit-transform: translate(40px, 0);
  transform: translate(40px, 0);
  opacity: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-grid-product .product-image .product-action ul li {
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
}

@media only screen and (max-width: 767px) {
  .single-grid-product .product-image .product-action ul li {
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
}

.single-grid-product .product-image .product-action ul li:nth-child(2) {
  -webkit-transition-delay: 150ms;
  transition-delay: 150ms;
}

.single-grid-product .product-image .product-action ul li:nth-child(3) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.single-grid-product .product-image .product-action ul li:nth-child(4) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.single-grid-product .product-image .product-action ul li a {
  background-color: #fff;
  color: #2F2F2F;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  display: block;
  padding: 0;
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 3px;
  vertical-align: middle;
}

.single-grid-product .product-image .product-action ul li a i {
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .single-grid-product .product-image .product-action ul li a {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}

.single-grid-product .product-image .product-action ul li a:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.single-grid-product .product-image .product-action ul li:last-child {
  padding-right: 0;
}

.single-grid-product .product-image .product-action-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  background-color: #1a1a1a;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  z-index: 2;
  text-align: center;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.single-grid-product .product-image .product-action-content ul li {
  display: inline-block;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
  -webkit-transform: translate(40px, 0);
  transform: translate(40px, 0);
  opacity: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-grid-product .product-image .product-action-content ul li {
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
}

@media only screen and (max-width: 767px) {
  .single-grid-product .product-image .product-action-content ul li {
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
}

.single-grid-product .product-image .product-action-content ul li:nth-child(2) {
  -webkit-transition-delay: 150ms;
  transition-delay: 150ms;
}

.single-grid-product .product-image .product-action-content ul li:nth-child(3) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.single-grid-product .product-image .product-action-content ul li:nth-child(4) {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.single-grid-product .product-image .product-action-content ul li a span {
  display: block;
  padding: 22px 15px;
  visibility: visible;
  opacity: 0.5;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-grid-product .product-image .product-action-content ul li a span {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-grid-product .product-image .product-action-content ul li a span {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-grid-product .product-image .product-action-content ul li a span {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .single-grid-product .product-image .product-action-content ul li a span {
    display: none;
  }
}

.single-grid-product .product-image .product-action-content ul li a span:hover {
  opacity: 1;
}

.single-grid-product .product-image .product-action-content ul li a i {
  display: none;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .single-grid-product .product-image .product-action-content ul li a i {
    width: 50px;
    height: 40px;
    line-height: 40px;
  }
}

.single-grid-product .product-image .product-action-content ul li a i:hover {
  color: #fc4f4f;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-grid-product .product-image .product-action-content ul li a i {
    display: block;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-grid-product .product-image .product-action-content ul li a i {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-grid-product .product-image .product-action-content ul li a i {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .single-grid-product .product-image .product-action-content ul li a i {
    display: block;
  }
}

.single-grid-product .product-content {
  text-align: center;
}

.single-grid-product .product-content.color-white .title {
  color: #ffffff;
}

.single-grid-product .product-content.color-white p {
  color: #ffffff;
}

.single-grid-product .product-content.color-white .product-rating span {
  color: #ffffff;
}

.single-grid-product .product-content.product-content-two .title {
  font-size: 14px;
  line-height: 24px;
}

.single-grid-product .product-content .title {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 5px;
}

.single-grid-product .product-content .title a {
  display: block;
  color: #fff !important;
}

.single-grid-product .product-content .title a:hover {
  color: #fc4f4f;
}

.single-grid-product .product-content p {
  line-height: 20px;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.single-grid-product .product-content p .main-price.discounted del {
  opacity: 0.6;
}

.single-grid-product .product-content .product-rating {
  line-height: 1;
}

.single-grid-product .product-content .product-rating span {
  font-size: 12px;
  line-height: 14px;
  color: #1a1a1a;
}

.single-grid-product:hover .product-image.image-grayscale {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.single-grid-product:hover .product-image>a img:nth-child(2) {
  visibility: visible;
  opacity: 1;
}

.single-grid-product:hover .product-image .product-action ul li {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.single-grid-product:hover .product-image .product-action-content {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.single-grid-product:hover .product-image .product-action-content ul li {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.product-filter-wrapper .product-price-filter ul li {
  margin-bottom: 5px;
}

.product-filter-wrapper .product-price-filter ul li:last-child {
  margin-bottom: 0;
}

.product-filter-wrapper .product-price-filter ul li a {
  color: #1a1a1a;
  font-size: 12px;
}

.product-filter-wrapper .product-price-filter ul li a:hover {
  color: #fc4f4f;
}

.header-icon-wrap a {
  color: #fff;
}

.view-more-btn {
  text-align: center;
}

.view-more-btn a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #815911;
}

.view-more-btn a:hover {
  color: #00674F;
}

.tab-menu-two {
  margin-bottom: 50px;
}

.view-more-btn {
  margin-top: 20px;
  margin-bottom: 50px;
}

.single-shop-banner {
  position: relative;
  overflow: hidden;
}

/* ---- IMAGE WRAPPER ---- */
.shop-banner-image {
  position: relative;
}

/* ---- TOP-LEFT SALE HEADING ---- */
.shop-banner-content {
  position: absolute;
  top: 15px;
  /* Move to top-left */
  left: 15px;
  z-index: 10;
}

.shop-banner-content .title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.shop-btn {
  display: inline-block;
  padding: 6px 18px;
  background: #000;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

/* ---- BOTTOM AREA BUTTON + PRICE ---- */
.shop-banner-price {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 10;
  text-align: left;
}

.shop-banner-price .new-price {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
}

.single-shop-banner {
  position: relative;
  overflow: hidden;
}

.single-shop-banner .shop-banner-image {
  position: relative;
}

.single-shop-banner .shop-banner-image>a {
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.single-shop-banner .shop-banner-image>a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-shop-banner .shop-banner-image>a img {
  width: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.single-shop-banner .shop-banner-image .shop-banner-content {
  bottom: 10%;
  position: absolute;
  left: 0px;
  right: 0;
  max-width: 80%;
  text-align: center;
  margin: 0px auto;
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single-shop-banner .shop-banner-image .shop-banner-content span {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.single-shop-banner .shop-banner-image .shop-banner-content .title {
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 2px;
  margin: 0px 0px 0px 0px;
  text-align: center;
  color: #000;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner .shop-banner-image .shop-banner-content .title {
    font-size: 36px;
    line-height: 39px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner .shop-banner-image .shop-banner-content .title {
    font-size: 36px;
    line-height: 39px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-image .shop-banner-content .title {
    font-size: 36px;
    line-height: 39px;
  }
}

.single-shop-banner .shop-banner-image .shop-banner-content .shop-btn {
  background-color: rgba(26, 26, 26, 0);
  color: #1a1a1a;
  padding: 15px 30px;
  border: 2px solid #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 12px;
  margin-top: 30px;
  position: absolute;
  top: 352px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 1500px) {

  .single-shop-banner .shop-banner-price {
    left: 43% !important;
  }

  .single-shop-banner .shop-banner-image .shop-banner-content .title {
    font-size: 60px;
  }
}

.single-shop-banner .shop-banner-image .shop-banner-content .shop-btn:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.single-shop-banner .shop-banner-image .shop-banner-content-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  left: 80px;
  text-align: center;
  margin: 0px auto;
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single-shop-banner .shop-banner-image .shop-banner-content-two.right {
  left: auto;
  right: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two {
    left: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two {
    left: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two {
    left: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two {
    left: 40px;
  }
}

.single-shop-banner .shop-banner-image .shop-banner-content-two span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.single-shop-banner .shop-banner-image .shop-banner-content-two .title {
  font-size: 46px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 2px;
  margin: 0px 0px 16px 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two .title {
    font-size: 32px;
    line-height: 44px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two .title {
    font-size: 32px;
    line-height: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two .title {
    font-size: 28px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two .title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 5px;
  }
}

.single-shop-banner .shop-banner-image .shop-banner-content-two .shop-btn {
  background-color: rgba(26, 26, 26, 0);
  color: #1a1a1a;
  padding: 20px 0px 20px 0px;
  border: 2px solid #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 12px;
  display: inline-block;
  width: 180px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two .shop-btn {
    font-size: 14px;
    padding: 12px 0px 12px 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two .shop-btn {
    font-size: 14px;
    padding: 12px 0px 12px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two .shop-btn {
    font-size: 14px;
    padding: 12px 0px 12px 0px;
    width: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-two .shop-btn {
    font-size: 14px;
    padding: 12px 0px 12px 0px;
    width: 150px;
  }
}

.single-shop-banner .shop-banner-image .shop-banner-content-three {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  left: 80px;
  text-align: center;
  margin: 0px auto;
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single-shop-banner .shop-banner-image .shop-banner-content-three.right {
  left: auto;
  right: 35px;
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three.right {
    right: 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three {
    left: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three {
    left: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three {
    left: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three {
    left: 30px;
  }
}

.single-shop-banner .shop-banner-image .shop-banner-content-three span {
  display: block;
  font-size: 32px;
  line-height: 45px;
  font-weight: 400;
  color: #1a1a1a;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three span {
    font-size: 24px;
    line-height: 33px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three span {
    font-size: 22px;
    line-height: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three span {
    font-size: 22px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three span {
    font-size: 16px;
    line-height: 22px;
  }
}

.single-shop-banner .shop-banner-image .shop-banner-content-three .title-big-size {
  font-size: 130px;
  font-weight: 400;
  line-height: 143px;
  margin: 0px 0px 25px 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .title-big-size {
    font-size: 84px;
    line-height: 92px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .title-big-size {
    font-size: 74px;
    line-height: 82px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .title-big-size {
    font-size: 56px;
    line-height: 61px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .title-big-size {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 5px;
  }
}

.single-shop-banner .shop-banner-image .shop-banner-content-three .title {
  font-size: 64px;
  font-weight: 400;
  line-height: 89px;
  letter-spacing: 2px;
  margin: 0px 0px 25px 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .title {
    font-size: 36px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .title {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 5px;
  }
}

.single-shop-banner .shop-banner-image .shop-banner-content-three .shop-btn {
  background-color: rgba(26, 26, 26, 0);
  color: #1a1a1a;
  padding: 20px 0px 20px 0px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 12px;
  display: inline-block;
  width: 180px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .shop-btn {
    font-size: 14px;
    padding: 12px 0px 12px 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .shop-btn {
    font-size: 14px;
    padding: 12px 0px 12px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .shop-btn {
    font-size: 14px;
    padding: 12px 0px 12px 0px;
    width: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-image .shop-banner-content-three .shop-btn {
    font-size: 14px;
    padding: 12px 0px 12px 0px;
    width: 150px;
  }
}

.single-shop-banner .shop-banner-price {
  position: absolute;
  z-index: 1;
  bottom: 70px;
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  max-width: 160px;
  z-index: 9;
  left: 43%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner .shop-banner-price {
    left: 20px;
    top: 10%;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner .shop-banner-price {
    left: 20px;
    top: 10%;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner .shop-banner-price {

    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }

  .single-shop-banner .shop-banner-image .shop-banner-content .shop-btn {
    top: 354px;
  }

  .foot-c {
    text-align: left !important;
  }
}

.footer-content h2 {
  font-size: 22px;
}

.single-shop-banner .shop-banner-price .del-price {
  display: block;
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
  text-align: left;
  color: #1a1a1a;
}

.single-shop-banner .shop-banner-price .new-price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  color: #1a1a1a;
}

.single-shop-banner:hover .shop-banner-image a::before {
  opacity: 0.1;
}

.single-shop-banner:hover .shop-banner-image a img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.single-shop-banner:hover .title {
  letter-spacing: 1px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner:hover .title {
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner:hover .title {
    letter-spacing: 0px;
  }
}

.single-shop-banner:hover .shop-banner-content-two .shop-btn {
  background-color: #1a1a1a;
  color: #ffffff;
}

.single-shop-banner:hover .shop-banner-content-three .shop-btn {
  background-color: #1a1a1a;
  color: #ffffff;
}

/* Single Shop Banner CSS */
.single-shop-banner-area {
  cursor: pointer;
}

.single-shop-banner-area .shop-banner-img a {
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.single-shop-banner-area .shop-banner-img a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-shop-banner-area .shop-banner-img a img {
  width: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.single-shop-banner-area .title {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  right: 35px;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  max-width: 260px;
  z-index: 9;
  font-size: 36px;
  line-height: 50px;
  color: #1a1a1a;
  text-align: left;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-shop-banner-area .title {
    font-size: 28px;
    line-height: 32px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-shop-banner-area .title {
    font-size: 22px;
    line-height: 30px;
    max-width: 220px;
    right: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .single-shop-banner-area .title {
    font-size: 22px;
    line-height: 28px;
    max-width: 200px;
    right: 25px;
    text-align: right;
  }
}

.single-shop-banner-area:hover .shop-banner-img a::before {
  opacity: 0.4;
}

.single-shop-banner-area:hover .shop-banner-img a img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.notification-marquee .notif-item {
  font-size: 14px;
  color: #fff;
  /* change based on your theme */
  white-space: nowrap;
  margin-left: 20px;
}

.notif-item a {
  color: #fff;
}


.notification-marquee i {
  font-size: 14px;
  color: #fff;
}

.footer-content h2 {
  color: #fff !important;
}

.footer-default {
  padding: 60px 90px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-default {
    padding: 0 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .footer-default {
    padding: 0 40px 0;
  }
}

.footer-default .copyright-area {
  padding: 13px 0;
  padding-top: 37px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .footer-default .copyright-area {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-default .copyright-area {
    padding-top: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-default .copyright-area {
    padding-top: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-default .copyright-area {
    padding-top: 0px;
  }
}

.footer-default .copyright-area .content p {
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: #b4b4b4;
}

@media only screen and (max-width: 767px) {
  .footer-default .copyright-area .content p {
    font-size: 10px;
  }
}

.footer-default .copyright-area .content .cp-link li {
  margin-right: calc(25px/2);
  margin-left: calc(25px/2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-default .copyright-area .content .cp-link li {
    margin-right: calc(18px/2);
    margin-left: calc(18px/2);
  }
}

@media only screen and (max-width: 767px) {
  .footer-default .copyright-area .content .cp-link li {
    margin-right: calc(18px/2);
    margin-left: calc(18px/2);
  }
}

.footer-default .copyright-area .content .cp-link li a {
  color: #a2a2a2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
}

.footer-default .copyright-area .content .cp-link li a:hover {
  color: #1A1A1A;
}

/*=========================
    Start Footer Widget
===========================*/
.footer-widget .logo a img {
  width: 124px;
}

@media only screen and (max-width: 767px) {
  .footer-widget .logo a img {
    width: 95px;
  }
}

.footer-widget .ft-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget .ft-title {
    margin: 0 0 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget .ft-title {
    margin: 0 0 35px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-widget .ft-title {
    margin: 0 0 30px;
  }
}

.footer-widget .footer-content p.pra {
  font-size: 18px;
  line-height: 34px;
  max-width: 320px;
  color: #b4b4b4;
  margin: 30px 0px 30px 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget .footer-content p.pra {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget .footer-content p.pra {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 767px) {
  .footer-widget .footer-content p.pra {
    font-size: 14px;
    line-height: 26px;
  }
}

.footer-widget .quick-link li {
  margin-bottom: 25px;
}

.footer-widget .quick-link li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #b4b4b4;
  display: block;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-widget .quick-link li a:hover {
  color: #fc4f4f;
}

.footer-widget .quick-link li:last-child {
  margin-bottom: 0px;
}

.footer-widget .quick-link li:not(:last-child) {
  padding-bottom: calc(5px/2);
}

.footer-widget .quick-link li:not(:last-child) {
  margin-top: calc(5px/2);
}

.footer-widget .address p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #b4b4b4;
}

.footer-widget .address p .list-icon {
  border: 1px solid rgba(225, 225, 225, 0.3);
  height: 58px;
  width: 58px;
  text-align: center;
  line-height: 58px;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  color: #ffffff;
  font-size: 22px;
  margin-right: 15px;
}

.footer-widget .address p .list-content {
  font-size: 16px;
}

.footer-widget.footer-column__a {
  width: 44%;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .footer-widget.footer-column__a {
    width: 25%;
  }
}

.footer-widget.footer-column__a .inner {
  width: 370px;
  max-width: 100%;
  margin-right: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .footer-widget.footer-column__a .inner {
    width: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget.footer-column__a .inner {
    margin-left: auto;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.footer-column__a .inner {
    margin-left: auto;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer-widget.footer-column__a .inner {
    text-align: left !important;
  }
}

.footer-widget.footer-column__b {}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .footer-widget.footer-column__b {}
}

.footer-widget.widget_style--2 .logo a img {
  width: 250px;
}

@media only screen and (max-width: 767px) {
  .footer-widget.widget_style--2 .logo a img {
    width: 160px;
  }
}

.footer-widget.widget_style--2 .footer-content p.pra {
  font-size: 16px;
  line-height: 32px;
  max-width: 370px;
  color: #4d4d4d;
  margin: 30px 0px 30px 0px;
}

@media only screen and (max-width: 767px) {
  .footer-widget.widget_style--2 .footer-content p.pra {
    font-size: 14px;
    line-height: 26px;
    margin: 15px 0px 15px 0px;
  }
}

.footer-widget.widget_style--2 .footer-content .footer-social a {
  font-size: 18px;
  margin-right: 24px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .footer-widget.widget_style--2 .footer-content .footer-social a {
    margin-right: 10px;
  }
}

.footer-widget.widget_style--2 .footer-content .footer-social a:last-child {
  margin-right: 0;
}

.footer-widget.widget_style--2 .footer-content .footer-social a i {
  color: #1a1a1a;
}

.footer-widget.widget_style--2 .footer-content .footer-social a:hover i {
  color: #fc4f4f;
}

.footer-widget.widget_style--2 .quick-link li {
  margin-bottom: 0;
}

.footer-widget.widget_style--2 .quick-link li a {
  font-size: 13px;
  line-height: 18px;
  color: #fff;
  text-transform: capitalize;

}

@media only screen and (max-width: 767px) {
  .footer-widget.widget_style--2 .quick-link li a {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
  }
}

.footer-widget.widget_style--2 .quick-link li a:hover {
  color: #fc4f4f;
}

.footer-widget.widget_style--2 .address-two p {
  color: #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-widget.widget_style--2 .address-two p strong {
  height: 30px;
  float: left;
  margin-right: 8px;
  display: block;
  line-height: 25px;
}

.footer-widget.widget_style--2 .address-two p .list-content {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  display: block;
}

@media only screen and (max-width: 767px) {
  .footer-widget.widget_style--2 .address-two p .list-content {
    font-size: 14px;
    line-height: 20px;
  }
}

.footer-widget.widget_style--2.footer-column__a {
  max-width: 35%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35%;
  flex: 0 0 35%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget.widget_style--2.footer-column__a {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.widget_style--2.footer-column__a {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer-widget.widget_style--2.footer-column__a {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 479px) {
  .footer-widget.widget_style--2.footer-column__a {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }
}

.footer-widget.widget_style--2.footer-column__a .inner {
  width: 370px;
  max-width: 100%;
  margin-right: auto;
  text-align: left;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .footer-widget.widget_style--2.footer-column__a .inner {
    width: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget.widget_style--2.footer-column__a .inner {
    text-align: center !important;
    margin-left: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.widget_style--2.footer-column__a .inner {
    text-align: center !important;
    margin-left: auto;
  }
}

@media only screen and (max-width: 767px) {
  .footer-widget.widget_style--2.footer-column__a .inner {
    text-align: center !important;
    margin-left: auto;
  }
}

@media only screen and (max-width: 479px) {
  .footer-widget.widget_style--2.footer-column__a .inner {
    text-align: left !important;
  }
}

.footer-widget.widget_style--2.footer-column__b {

  -webkit-box-flex: 0;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget.widget_style--2.footer-column__b {
    max-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.widget_style--2.footer-column__b {
    max-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
}

@media only screen and (max-width: 767px) {
  .footer-widget.widget_style--2.footer-column__b {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

@media only screen and (max-width: 479px) {
  .footer-widget.widget_style--2.footer-column__b {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

.footer-widget.widget_style--2.footer-column__c {

  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget.widget_style--2.footer-column__c {

    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.widget_style--2.footer-column__c {

    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
}

@media only screen and (max-width: 767px) {
  .footer-widget.widget_style--2.footer-column__c {

    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

@media only screen and (max-width: 479px) {
  .footer-widget.widget_style--2.footer-column__c {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

.footer-coming-soon {
  margin-top: -100px;
  margin-bottom: 0;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .footer-coming-soon {
    margin-top: -180px;
    margin-bottom: 0px;
  }
}

.footer-coming-soon-two {
  padding-top: 220px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .footer-coming-soon-two {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-coming-soon-two {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-coming-soon-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-coming-soon-two {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-logo-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center !important;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-logo-content-two {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-logo-content-two {
    margin-bottom: 30px;
  }
}

.footer-logo-image {
  width: 25%;
  margin-right: 25px;
}

@media only screen and (max-width: 767px) {
  .footer-logo-image {
    margin-right: 0;
    margin: auto;
    margin-bottom: 15px;
  }
}

.foot-content.black-color p {
  color: #1a1a1a;
}

@media only screen and (max-width: 767px) {
  .foot-content.black-color p {
    text-align: center;
  }
}

.foot-content p {
  color: #ffffff;
  font-size: 11px;
  line-height: 20px;
}

.footer-social-icon.black-color a {
  border-color: #1a1a1a;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .footer-social-icon.black-color a {
    margin-right: 15px;
  }
}

.footer-social-icon.black-color a i {
  color: #1a1a1a;
}

.footer-social-icon.black-color a:hover i {
  color: #ffffff;
}

.footer-social-icon a {
  font-size: 23px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-right: 24px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .footer-social-icon a {
    margin-right: 10px;
  }
}

.footer-social-icon a:last-child {
  margin-right: 0;
}

.footer-social-icon a i {
  color: #ffffff;
}

.footer-social-icon a:hover {
  border-color: rgba(0, 0, 0, 0);
}

.footer-social-icon a.facebook:hover {
  background-color: #4867AA;
}

.footer-social-icon a.twitter:hover {
  background-color: #1DA1F2;
}

.footer-social-icon a.google:hover {
  background-color: #DD5144;
}

.footer-social-icon a.dribbble:hover {
  background-color: #EA4C8A;
}

.footer-nav {
  text-align: center;
}

.footer-nav ul li {
  display: inline-block;
  padding: 0 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .footer-nav ul li {
    padding: 0 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-nav ul li {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-nav ul li {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-nav ul li {
    display: block;
    padding: 0;
    padding-bottom: 10px;
  }
}

.footer-nav ul li a {
  font-size: 18px;
  font-weight: 600;
  line-height: 33px;
  color: #1a1a1a;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-nav ul li a {
    font-size: 14px;
    line-height: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-nav ul li a {
    font-size: 14px;
    line-height: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-nav ul li a {
    font-size: 14px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-nav ul li a {
    font-size: 14px;
    line-height: 24px;
  }
}

.footer-nav ul li a:hover {
  color: #fc4f4f;
}

.copyright-area-two .content p {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 1px;
  color: #737373;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .copyright-area-two .content p {
    font-size: 11px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright-area-two .content p {
    font-size: 11px;
  }
}

@media only screen and (max-width: 767px) {
  .copyright-area-two .content p {
    text-align: center;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-social-three {
    text-align: center !important;
    margin-top: 10px;
  }
}

.footer-social-three a {
  font-size: 22px;
  margin-right: 24px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-social-three a {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-social-three a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-social-three a {
    font-size: 18px;
  }
}

.footer-social-three a:last-child {
  margin-right: 0;
}

.footer-social-three a i {
  color: #1a1a1a;
}

.footer-social-three a:hover i {
  color: #fc4f4f;
}

/* Section background + spacing */
.brand-section {
  background: #f7f7f7;
  padding: 60px 0;
}

/* Text Section */
.palamada h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.palamada h6 {
  font-size: 18px;
  font-weight: 500;
  color: #555;
  line-height: 1.5;
}

.palamada p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.albinn {
  padding: 10px 22px;
  background: #333;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.albinn:hover {
  background: #000;
}

.foot-c {
  text-align: center;
}

.address-two p {
  display: flex;
  align-items: center;
  /* vertical align */
  gap: 8px;
  /* space between icon and text */
  margin: 8px 0;
}

.address-two i {
  font-size: 18px;
  /* equal size for all icons */
  width: 22px;
  /* fixed width so they align vertically */
  text-align: center;
  color: #fff;
  /* change color if needed */
}

.albinn {
  padding: 10px;
  font-size: 13px;
  color: #fff;
  background: #00674F;
  border-radius: 10px;
}

.albinn:hover {
  color: #fff;
}

.brand-slider .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -15px;
  z-index: 9;
  border: none;
  background-color: #ffffff;
  color: #1A1A1A;
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
}

.brand-slider .slick-arrow i {
  font-size: 24px;
  line-height: 24px;
  display: block;
}

.brand-slider .slick-arrow.slick-prev {
  left: -7px;
  margin-left: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .brand-slider .slick-arrow.slick-prev {
    left: 8px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .brand-slider .slick-arrow.slick-prev {
    left: 8px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-slider .slick-arrow.slick-prev {
    left: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .brand-slider .slick-arrow.slick-prev {
    left: 8px;
  }
}

.brand-slider .slick-arrow.slick-next {
  right: -7px;
  margin-right: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .brand-slider .slick-arrow.slick-next {
    right: 8px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .brand-slider .slick-arrow.slick-next {
    right: 8px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-slider .slick-arrow.slick-next {
    right: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .brand-slider .slick-arrow.slick-next {
    right: 8px;
  }
}

.brand-slider .slick-arrow:hover {
  background-color: #1A1A1A;
  color: #ffffff;
}

.brand-slider:hover .slick-arrow {
  opacity: 1;
}

.brand-slider:hover .slick-arrow.slick-prev {
  margin-left: 0;
}

.brand-slider:hover .slick-arrow.slick-next {
  margin-right: 0;
}

.brand-slider .slick-dots {
  width: 100%;
  padding: 0;
  margin: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-slider .slick-dots li {
  margin: 0 5px;
}

.brand-slider .slick-dots li button {
  display: block;
  padding: 0;
  width: 12px;
  height: 12px;
  border: none;
  background-color: #d8d8d8;
  text-indent: -9999px;
  border-radius: 50px;
}

.brand-slider .slick-dots li.slick-active button {
  background-color: #1A1A1A;
}

/*-- Brand --*/
.brand {
  text-align: center;
  padding: 50px;
}

.brand.brand-two a img {
  opacity: 1;
}

.brand.brand-two:hover a img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .brand {
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .brand {
    padding: 15px;
    width: 100%;
  }

  .kakal {
    display: none !important;
  }
}

.brand a {
  display: block;
  position: relative;
  overflow: hidden;
}

.brand a img {
  max-width: 100%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}

.brand:hover a img {
  transform: scale(1.1);
}

.brand-section {}

.mt-20 {
  margin-top: 20px;
}

.newsletter-area {
  margin-bottom: 30px;
}

.header-right {
  justify-content: space-between !important;
  margin-left: 150px;
}

.header-menu {
  margin-right: 50px;
}

.header-left {
  justify-content: right !important;
}

.karth {
  margin-left: 50px !important;
}

.header-icon-wrap a i {
  font-size: 25px;
}

.newsletter-img img {
  margin-top: -120px;
}

@media (min-width: 1500px) {
  .notification-marquee .notif-item {
    margin-right: 60px;
  }

  .notification-marquee .notif-item {
    margin-left: 60px;
  }

  .slick-list {
    display: flex;
    justify-content: center;
  }

  .single-shop-banner .shop-banner-image .shop-banner-content .shop-btn {
    top: 660px !important;
  }

  .single-shop-banner .shop-banner-price {
    left: 48%;
  }

  .single-shop-banner .shop-banner-price .new-price {
    font-size: 35px;
  }

  .single-shop-banner .shop-banner-image .shop-banner-content .shop-btn {
    font-size: 25px;
  }

  .bg-img {
    padding: 90px;
  }

}

@media (max-width: 1500px) {
  .single-shop-banner .shop-banner-image .shop-banner-content .shop-btn {
    top: 348px;
  }

  .sillp {
    bottom: 30px;
  }

}

.slick-list {
  display: flex;
  justify-content: center;
}

body {
  overflow-x: hidden;

}

/* Mobile — 2 items per row */
.desk-v {
  display: block;
}

.mob-v {
  display: none;
}

.desk-v {
  overflow-x: hidden;
}

@media (max-width: 767px) {

  .mob-v .slick-track,
  .mob-v .slick-list {
    transform: none !important;
    width: 100% !important;
  }

  .mob-v .slick-slide {
    width: 50% !important;
    /* 2 in a row */
    display: inline-block !important;
    float: left;
    text-align: center;
  }

  .mob-v .brand img {
    max-width: 60px;
    margin: auto;
  }

  .bg-img {
    height: 200px !important;
  }

  .munshi {
    margin-top: 85px;
  }

  .sillp {
    display: none !important;
  }
}

.poookkiie {
  font-size: 13px;
}

.bottom-5 {
  bottom: 5px;
}

.sillp {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 10px;
  line-height: 30px;
  background: #815911;

  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 56px;
  float: right;
  position: absolute;

}

.sillp i {
  font-size: 20px;
  color: #fff;
}

@media (max-width: 767px) {


  .w-50m {
    width: 70% !important;
    margin-top: -107px !important;
  }

}

@media (max-width: 767px) {
  .bottom-menu {
    background: #fff;
    /* keeps it visible */
  }
}

@media (max-width: 767px) {
  .bottom-menu {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
  }
}

/* Always apply on small screens */
@media (max-width: 767px) {

  /* Strong override to ensure fixed positioning */
  .bottom-menu.d-md-none {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 99999 !important;
    width: 100% !important;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.12) !important;
    background: #ffffff !important;
    /* or your bg color */
    -webkit-backdrop-filter: blur(6px);
    /* optional */
    backdrop-filter: blur(6px);

  }

  /* Make sure inner items still lay out */
  .bottom-menu .bottom-menu-element {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  /* Make room for bottom-menu so content is not hidden underneath */
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom)) !important;
    /* 64px = approx height of the bottom menu — adjust if different */
  }
}

/* Optional: if your bottom menu height is different, update 64px above */
.custom-sale-banner .sale-card {
  /* pink background */
  text-align: center;
  padding: 10px 10px;
  min-height: 524px;
}

.card11 {
  background: #e7eef6;
}

.card12 {
  background: #f5d9d5;
}

.card13 {
  background: #f9f9f9;
}

.sale-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 10px;
}

.sale-img img {
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* .sale-card:hover .sale-img img {
  transform: scale(1.1);
} */


.sale-price {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 25px;
  color: #000;
}

.sale-btn {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #00674F;
  color: #00674F;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  font-size: 14px;
}

.sale-btn:hover {
  background: #00674F;
  color: #fff;
}

@media (max-width: 992px) {

  .newsletter-title,
  .newsletter-form {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .newsletter-area h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .news-btn {
    margin-bottom: 50px !important;
  }

  .bg-img {
    height: 250px;
    padding-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
  }

  .mobile-bottom-bar-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
  }

  .mobile-bottom-item {
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 10px;
  }

  .mobile-bottom-item i {
    font-size: 20px;
    display: block;
    margin-bottom: 3px;
    line-height: 1;
  }

  /* SHOW ONLY in TAB screens 768px–992px */

}

@media (min-width: 768px) and (max-width: 992px) {
  .mobile-bottom-bar {
    display: block;
  }

  .icon-sticky-wrap {
    display: none;
  }
}


























/************************************* testimonial css end *************************************/

/* Fix for Flash Sale Image Sizing */
.sale-card .sale-img img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Fix for Main Slider Consistency */
.slider-content .home-slider .slide-img img {
  height: 450px;
  width: 100%;
  object-fit: contain;
}

.slider-content .home-slider .munshi h2 {
  min-height: 80px;
  /* Reserves space for roughly 2 lines */
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .slider-content .home-slider .slide-img img {
    height: 250px;
  }

  .slider-content .home-slider .munshi h2 {
    min-height: 60px;
    justify-content: center;
    /* Center align text on mobile */
  }
}